You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice the :not([style-scope]):not(.style-scope) part is missing from .foo--bar within the media query, which means the rule with never be applied as it's specificity is too low to override the rule outside the media query.
The text was updated successfully, but these errors were encountered:
@baseten, can you clarify with more concrete example how do you import this style? What are files and how are they imported?
Tried various combinations, but can't reproduce with 1.1.5, 1.2.0 and git master code.
As a simple test case the following CSS inside shared-styles.css is imported as a custom-style:
After this is processed by Polymer (using version 1.2.0) it is output in the head like so:
Notice the
:not([style-scope]):not(.style-scope)
part is missing from.foo--bar
within the media query, which means the rule with never be applied as it's specificity is too low to override the rule outside the media query.The text was updated successfully, but these errors were encountered: