-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@crowdstrike/glide-core': patch | ||
--- | ||
|
||
System CSS variables are no longer overridden by light or dark mode variables. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
/* | ||
Order matters here. "light" is our default. "dark" uses the same | ||
variable names but different values. So it must come after "light". | ||
Order matters here. "system.css" comes first due to its | ||
"root:" and ":host" selectors and "color-scheme: normal". | ||
Then our color stylesheets: "light.css" is our default so | ||
comes it before "dark.css". Then "miscellaneous.css" with | ||
only a root selector. | ||
*/ | ||
@import './variables/system.css'; | ||
@import './variables/light.css'; | ||
@import './variables/dark.css'; | ||
@import './variables/miscellaneous.css'; | ||
@import './variables/system.css'; |