Skip to content

Commit 5d2e82d

Browse files
authored
Merge pull request #16 from rcoup/web-components-host
Support web components/shadow DOM.
2 parents a8bbc68 + 02c9fb6 commit 5d2e82d

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

scss/colors/utilities/_css-vars.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
$css-var-color-prefix: #{settings.$css-var-prefix}#{$color-property-name};
1111

1212
@if $enable-css-vars {
13-
:root {
13+
:root,
14+
:host {
1415
// Loop through color families
1516
@each $family, $colors in colors.$colors {
1617
@if list.index(map.get(settings.$palette, "color-families"), $family) {

scss/components/_modal.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
* Modal (<dialog>)
77
*/
88

9-
:root {
9+
:root,
10+
:host {
1011
#{$css-var-prefix}scrollbar-width: 0px;
1112
}
1213

scss/content/_embedded.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@
4747
}
4848

4949
// Hide the overflow in IE
50-
#{$parent-selector} svg:not(:root) {
50+
#{$parent-selector} svg:not(:root),
51+
#{$parent-selector} svg:not(:host) {
5152
overflow: hidden;
5253
}
5354
}

scss/layout/_document.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
// 3. Use a 4-space tab width in all browsers (opinionated)
3535
// 4. Remove the grey highlight on links in iOS (opinionated)
3636
// 5. Prevent adjustments of font size after orientation changes in iOS
37-
:where(:root) {
37+
:where(:root),
38+
:where(:host) {
3839
-webkit-tap-highlight-color: transparent; // 4
3940
-webkit-text-size-adjust: 100%; // 5
4041
text-size-adjust: 100%; // 5

scss/themes/default/_schemes.scss

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@
1212
// Light color scheme (Default)
1313
// Can be forced with data-theme="light"
1414
[data-theme="light"],
15-
:root:not([data-theme="dark"]) {
15+
:root:not([data-theme="dark"]),
16+
:host(:not([data-theme="dark"])) {
1617
@include light.theme;
1718
}
1819

1920
// Dark color scheme (Auto)
2021
// Automatically enabled if user has Dark mode enabled
2122
@media only screen and (prefers-color-scheme: dark) {
22-
:root:not([data-theme]) {
23+
:root:not([data-theme]),
24+
:host(:not([data-theme])) {
2325
@include dark.theme;
2426
}
2527
}

scss/themes/default/_styles.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
* Styles
1010
*/
1111

12-
:root {
12+
:root,
13+
:host {
1314
// Typography
1415
#{$css-var-prefix}font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
1516
"Noto Color Emoji";

0 commit comments

Comments
 (0)