-
Notifications
You must be signed in to change notification settings - Fork 2k
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
styling: using var() splits a rule in two with different specificities, causes problems with shorthands #1761
Labels
Comments
Fixed via #1948 |
The fix in #1948 was reverted because it was incomplete and caused some breakage. This issue can be addressed either by interleaving property and static rules or making sure property sheets include all static rules. |
Fixed in 1.3.0. |
what PR fixed this? |
thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gets split into:
Because
.my-host-0 foo.my-host
has higher specificity thanfoo.my-host
theborder-width
property is overridden by the shorthandborder
property. In this example this results in the border width being the default from the user style sheet (3px).The text was updated successfully, but these errors were encountered: