-
Notifications
You must be signed in to change notification settings - Fork 602
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
Fix CSS custom property precedence issue #6907
Conversation
@chrisdholt while we are waiting for reviewers (not sure how long to expect), could the workflows be run to pre-emptively catch any issues? |
change/@microsoft-fast-element-af94cffe-06a2-45f2-a5d6-ea40b67867ec.json
Outdated
Show resolved
Hide resolved
change/@microsoft-fast-foundation-5af478ef-11f0-4516-8bd1-36a6844f5e29.json
Outdated
Show resolved
Hide resolved
packages/web-components/fast-foundation/src/design-token/custom-property-manager.ts
Outdated
Show resolved
Hide resolved
Co-authored-by: John Kreitlow <[email protected]>
Of the reviewers who have merged PRs recently @chrisdholt @scomea @radium-v would someone be willing to run the workflow so we can see if the tests pass so we can make progress on this PR? |
My primary issue with this change is that we end up paying a runtime cost for what I consider a very niche problem, I believe structuring CSS properly is more the correct move on a project without the need for allowing overrides. We're in process to remove the |
It's not clear to me if/how this issue could manifest outside the use case of design tokens (i.e. without |
@m-akinc sounds good, I'll close for now then we can always re-open and discuss if there's a pressing need in future. |
Pull Request
📖 Description
Overriding a design token's value in a stylesheet does not always work. A stylesheet containing custom properties for design tokens is added to
adoptedStyleSheets
alongside other client-defined stylesheets. If a client attempts to override a design token value for an element in CSS, in most cases the order of stylesheets inadoptedStyleSheets
won't matter because of specificity-based precedence. But if the client stylesheet overrides the token property using the selector:host
, then whichever stylesheet appears later inadoptedStyleSheets
will be the one that wins. It seems that the client CSS's override should always take precedence.This change causes the special stylesheet for design token CSS properties to always be prepended to
adoptedStyleSheets
so that client stylesheets take precedence when order matters.🎫 Issues
N/A
👩💻 Reviewer Notes
This change was conceived as a workaround to a Chromium bug that affected
archives/fast-element-1
. See PR #6906 into that branch.📑 Test Plan
One test case added.
✅ Checklist
General
$ yarn change