-
-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fallback for css variables doesn't seem to be replaced correctly in combination with logical properties #619
Comments
@benjamingries Thank you for reporting this! :root {
--size: 1rem;
}
.stage__container {
inset-inline-start: var(--size);
} becomes : :root {
--size: 1rem;
}
[dir="ltr"] .stage__container {
left: 1rem;
left: var(--size);
}
[dir="ltr"] .stage__container {
left: 1rem;
left: 1rem;
left: var(--size);
}
.stage__container:dir(ltr) {
left: 1rem;
left: var(--size);
}
[dir="rtl"] .stage__container {
right: 1rem;
right: var(--size);
}
[dir="rtl"] .stage__container {
right: 1rem;
right: 1rem;
right: var(--size);
}
.stage__container:dir(rtl) {
right: 1rem;
right: var(--size);
}
[dir="ltr"] .stage__container {
left: 1rem;
}
.stage__container:dir(ltr) {
left: 1rem;
}
[dir="rtl"] .stage__container {
right: 1rem;
}
.stage__container:dir(rtl) {
right: 1rem;
}
.stage__container {
inset-inline-start: 1rem;
inset-inline-start: var(--size);
} .stage__container {
inset-inline-start: var(--size, 1rem);
} becomes : [dir="ltr"] .stage__container {
left: 1rem;
left: var(--size, 1rem);
}
[dir="ltr"] .stage__container {
left: 1rem;
left: 1rem;
left: var(--size, 1rem);
}
.stage__container:dir(ltr) {
left: 1rem;
left: var(--size, 1rem);
}
[dir="rtl"] .stage__container {
right: 1rem;
right: var(--size, 1rem);
}
[dir="rtl"] .stage__container {
right: 1rem;
right: 1rem;
right: var(--size, 1rem);
}
.stage__container:dir(rtl) {
right: 1rem;
right: var(--size, 1rem);
}
[dir="ltr"] .stage__container {
left: 1rem;
}
.stage__container:dir(ltr) {
left: 1rem;
}
[dir="rtl"] .stage__container {
right: 1rem;
}
.stage__container:dir(rtl) {
right: 1rem;
}
.stage__container {
inset-inline-start: 1rem;
inset-inline-start: var(--size, 1rem);
} |
Definitely a bug, or more precisely a whole class of bugs.
The expected execution order is by declaration order. When a declaration is inserted by another plugin the plugin in question will revisit that node. This will be out of order. |
@benjamingries Fixing this will require a major refactor of I think this bug can be fixed and released as a patch (semver) where the work for planned for I don't want to spend the time on two major rewrites if we can avoid it. |
@romainmenke Thanks for your fast investigations. For me it's ok to fix this bug in version 8. Do you already have a plan when version 8 should be released? |
@benjamingries Thank you again for reporting this, it is crucial for us to receive feedback like this to improve the plugins. Also thank you for understanding. You can follow along a bit here : Refactoring logical was planned for the upcoming batch of updates. |
That sounds good. Let me know if there's anything I can help with. |
@benjamingries We have released a new version of https://www.npmjs.com/package/postcss-logical This issue is fixed because the plugin will no longer generate all these extra rules. |
Hi,
first of all: this is a great plugin and I appreciate that you are spending your (free) time to help all of us.
I don't know whether it's a bug or not but I think I found a combination where the fallback for css variables isn't replaced correctly (I'm using webpack 5.74.0 with the dependencies postcss 8.4.16, postcss-loader 7.0.1 and postcss-preset-env 7.8.1).
In the past I wrote a (scss) definition like this:
This works as expected.
Now I am trying to use logical properties in order to use modern css and prevent duplicate code (in the scss file) for the arabic landingpage:
But this doesn't seem to work because in the end the fallback is rendered twice - once with the var style and its fallback and once with only the fallback (please take a look at the order):
The same behavior occurs when I'm setting the fallback as a root variable instead of the custom property:
Setting the preserve option doesn't change this behavior for me.
The only way that works for me is this one:
But then there is no fallback for older browsers (we build a global website that is accessed by many older browsers following the usage stats).
I found out that the logical properties plugin seems to handle these (incorrect) replacements and that disabling it prevents the duplicate code. But then again there is no fallback for older browsers.
Can you recreate this behavior?
Best regards,
Benjamin
The text was updated successfully, but these errors were encountered: