@ihk-gfi/lux-components-theme 19.2.0 → 19.3.0
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 +8 -1
- package/prebuilt-themes/luxtheme-authentic-min.css +1 -1
- package/prebuilt-themes/luxtheme-authentic-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-authentic.css +13 -0
- package/prebuilt-themes/luxtheme-authentic.css.map +1 -1
- package/prebuilt-themes/luxtheme-green-min.css +1 -1
- package/prebuilt-themes/luxtheme-green-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-green.css +13 -0
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/base/_luxfocus.scss +9 -0
- package/src/base/components/_luxFormControlsAuthentic.scss +7 -1
package/src/base/_luxfocus.scss
CHANGED
|
@@ -268,6 +268,15 @@ lux-datetimepicker-ac {
|
|
|
268
268
|
}
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
+
lux-select-ac,
|
|
272
|
+
lux-lookup-combobox-ac {
|
|
273
|
+
@media (prefers-contrast: more) {
|
|
274
|
+
.mat-mdc-select:focus {
|
|
275
|
+
@include focus-dark-mixin;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
271
280
|
.lux-select-panel-ac,
|
|
272
281
|
.lux-select-panel-ac-multiple {
|
|
273
282
|
mat-option {
|
|
@@ -89,6 +89,12 @@ lux-lookup-combobox-ac {
|
|
|
89
89
|
mask-repeat: no-repeat;
|
|
90
90
|
mask-position: center;
|
|
91
91
|
mask-size: cover;
|
|
92
|
+
|
|
93
|
+
@media (prefers-contrast: more) {
|
|
94
|
+
svg {
|
|
95
|
+
background-color: ButtonText; // Systemfarbe für hohen Kontrast
|
|
96
|
+
}
|
|
97
|
+
}
|
|
92
98
|
}
|
|
93
99
|
}
|
|
94
100
|
|
|
@@ -547,7 +553,7 @@ lux-chips-ac {
|
|
|
547
553
|
}
|
|
548
554
|
|
|
549
555
|
&.lux-chip-color-warn {
|
|
550
|
-
background-color: map-get(map-get(luxpalette.$lux-palettes-new,
|
|
556
|
+
background-color: map-get(map-get(luxpalette.$lux-palettes-new, "error"), 40);
|
|
551
557
|
|
|
552
558
|
.mat-mdc-chip-action-label {
|
|
553
559
|
color: white;
|