@kaizen/components 1.42.6 → 1.42.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -29,6 +29,14 @@ $dt-color-radio-border-color-focus-reversed: $color-blue-300;
|
|
|
29
29
|
&.reversed {
|
|
30
30
|
background: $color-white;
|
|
31
31
|
}
|
|
32
|
+
|
|
33
|
+
@media (forced-colors: active) {
|
|
34
|
+
// High contrast mode with remove the background color so we have to use border to create the selected icon state.
|
|
35
|
+
// Transparent is used so the user defined colors for borders will be used here
|
|
36
|
+
border: $icon-offset solid transparent;
|
|
37
|
+
width: 0;
|
|
38
|
+
height: 0;
|
|
39
|
+
}
|
|
32
40
|
}
|
|
33
41
|
|
|
34
42
|
.box {
|
|
@@ -113,6 +113,18 @@
|
|
|
113
113
|
}
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
|
+
|
|
117
|
+
@media (forced-colors: active) {
|
|
118
|
+
&.active,
|
|
119
|
+
&:focus {
|
|
120
|
+
&::before {
|
|
121
|
+
background: transparent;
|
|
122
|
+
// instead of height we're using the border to create a active tab mark to make it friendlier for Windows High Contrast Mode.
|
|
123
|
+
border: $active-tab-marker-height solid transparent;
|
|
124
|
+
height: 0;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
116
128
|
}
|
|
117
129
|
|
|
118
130
|
.linkAnchor.lightBackground {
|