@ihk-gfi/lux-components-theme 16.2.0 → 18.0.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/README.md +1 -1
- package/package.json +31 -5
- 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 +1147 -696
- 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 +1130 -671
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +42 -30
- package/src/authentic/_luxcommon.scss +1 -8
- package/src/base/_luxcomponents.scss +24 -50
- package/src/base/_luxfocus.scss +71 -64
- package/src/base/_luxstyles.scss +101 -2
- package/src/base/components/_luxAppHeader.scss +5 -37
- package/src/base/components/_luxAppHeaderAc.scss +6 -4
- package/src/base/components/_luxBreadcrumb.scss +90 -0
- package/src/base/components/_luxButton.scss +63 -26
- package/src/base/components/_luxCard.scss +20 -6
- package/src/base/components/_luxDialog.scss +23 -4
- package/src/base/components/_luxFilter.scss +22 -2
- package/src/base/components/_luxFormControlWrapper.scss +5 -2
- package/src/base/components/_luxFormControlsAuthentic.scss +402 -158
- package/src/base/components/_luxList.scss +3 -3
- package/src/base/components/_luxMasterDetailAc.scss +6 -6
- package/src/base/components/_luxMenu.scss +28 -14
- package/src/base/components/_luxMessagebox.scss +28 -33
- package/src/base/components/_luxProgressBar.scss +5 -0
- package/src/base/components/_luxProgressSpinner.scss +13 -0
- package/src/base/components/_luxSnackbar.scss +12 -8
- package/src/base/components/_luxStepper.scss +1 -0
- package/src/base/components/_luxTable.scss +41 -24
- package/src/base/components/_luxTabs.scss +33 -17
- package/src/base/components/_luxTile.scss +16 -5
- package/src/base/components/_luxTileAc.scss +11 -2
- package/src/base/components/_luxToolTip.scss +9 -0
- package/src/base/components/_luxTourHint.scss +16 -1
- package/src/green/_custom.scss +87 -76
- package/src/public/global.scss +42 -1
|
@@ -6,9 +6,39 @@
|
|
|
6
6
|
@use "../luxfocus";
|
|
7
7
|
@use "../../base/luxSvgIcons" as luxicons;
|
|
8
8
|
|
|
9
|
+
/*
|
|
10
|
+
* Theming for LUX-Autocomplete
|
|
11
|
+
*/
|
|
12
|
+
div.mat-mdc-autocomplete-panel.lux-autocomplete-panel-ac {
|
|
13
|
+
padding-top: 0;
|
|
14
|
+
padding-bottom: 0;
|
|
15
|
+
|
|
16
|
+
mat-option {
|
|
17
|
+
.mat-pseudo-checkbox {
|
|
18
|
+
display: none;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
9
23
|
/*
|
|
10
24
|
* Theming for LUX-Select
|
|
11
25
|
*/
|
|
26
|
+
.mat-mdc-select-panel {
|
|
27
|
+
--mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
div.mat-mdc-select-panel.lux-select-panel-ac {
|
|
31
|
+
padding-top: 0;
|
|
32
|
+
padding-bottom: 0;
|
|
33
|
+
|
|
34
|
+
.mat-mdc-option {
|
|
35
|
+
--mat-option-selected-state-label-text-color: #ffffff;
|
|
36
|
+
--mat-option-selected-state-layer-color: #{luxcommon.$lux-hover-color};
|
|
37
|
+
--mat-option-focus-state-layer-color: #{luxcommon.$lux-hover-color};
|
|
38
|
+
--mat-option-hover-state-layer-color: #{luxcommon.$lux-hover-color};
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
12
42
|
lux-select-ac,
|
|
13
43
|
lux-lookup-combobox-ac {
|
|
14
44
|
mat-select {
|
|
@@ -17,12 +47,12 @@ lux-lookup-combobox-ac {
|
|
|
17
47
|
// bisher noch nicht klar, warum das mat-select einen Pixel an Höhe mehr beansprucht, als es tatsächlich Hoch ist
|
|
18
48
|
// daher wird hier die Höhe korrigiert, damit die Baseline eingehalten ist
|
|
19
49
|
|
|
20
|
-
.mat-select-arrow-wrapper {
|
|
50
|
+
.mat-mdc-select-arrow-wrapper {
|
|
21
51
|
margin-left: 2px;
|
|
22
52
|
height: 24px;
|
|
23
53
|
width: 24px;
|
|
24
54
|
|
|
25
|
-
.mat-select-arrow {
|
|
55
|
+
.mat-mdc-select-arrow {
|
|
26
56
|
border: none;
|
|
27
57
|
width: 100%;
|
|
28
58
|
height: 100%;
|
|
@@ -39,24 +69,24 @@ lux-lookup-combobox-ac {
|
|
|
39
69
|
}
|
|
40
70
|
}
|
|
41
71
|
|
|
42
|
-
&[aria-disabled="true"] .mat-select-arrow {
|
|
43
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
&[aria-disabled="false"] .mat-select-arrow {
|
|
47
|
-
background-color: luxpalette.$lux-primary-color;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
72
|
&[aria-readonly="true"] {
|
|
51
|
-
.mat-select-arrow {
|
|
73
|
+
.mat-mdc-select-arrow {
|
|
52
74
|
background-color: luxcommon.$dark-disabled-text;
|
|
53
75
|
}
|
|
54
|
-
.mat-select-trigger {
|
|
76
|
+
.mat-mdc-select-trigger {
|
|
55
77
|
cursor: text;
|
|
56
78
|
}
|
|
57
79
|
}
|
|
58
80
|
|
|
59
|
-
&[aria-readonly="false"] .mat-select-arrow {
|
|
81
|
+
&[aria-readonly="false"] .mat-mdc-select-arrow {
|
|
82
|
+
background-color: luxpalette.$lux-primary-color;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&[aria-disabled="true"] .mat-mdc-select-arrow {
|
|
86
|
+
background-color: luxcommon.$dark-disabled-text;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
&[aria-disabled="false"] .mat-mdc-select-arrow {
|
|
60
90
|
background-color: luxpalette.$lux-primary-color;
|
|
61
91
|
}
|
|
62
92
|
}
|
|
@@ -72,27 +102,13 @@ lux-lookup-combobox-ac {
|
|
|
72
102
|
.mat-option {
|
|
73
103
|
font-family: luxcommon.$app-font-family;
|
|
74
104
|
}
|
|
75
|
-
.mat-autocomplete-panel.lux-autocomplete-panel-ac,
|
|
76
|
-
.mat-autocomplete-panel.lux-autocomplete-panel-dense-ac,
|
|
77
|
-
.mat-select-panel.lux-select-panel-ac,
|
|
78
|
-
.mat-select-panel.lux-select-panel-ac-multiple {
|
|
105
|
+
.mat-mdc-autocomplete-panel.lux-autocomplete-panel-ac,
|
|
106
|
+
.mat-mdc-autocomplete-panel.lux-autocomplete-panel-dense-ac,
|
|
107
|
+
.mat-mdc-select-panel.lux-select-panel-ac,
|
|
108
|
+
.mat-mdc-select-panel.lux-select-panel-ac-multiple {
|
|
79
109
|
border: 2px solid luxpalette.$lux-primary-color;
|
|
80
|
-
border-radius:
|
|
110
|
+
border-radius: luxcommon.$app-border-radius !important;
|
|
81
111
|
box-shadow: none !important;
|
|
82
|
-
|
|
83
|
-
.mat-pseudo-checkbox {
|
|
84
|
-
color: luxpalette.$lux-primary-color;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.mat-autocomplete-panel.lux-autocomplete-panel-ac,
|
|
89
|
-
.mat-autocomplete-panel.lux-autocomplete-panel-dense-ac {
|
|
90
|
-
min-width: calc(100% + 14px) !important;
|
|
91
|
-
max-width: calc(100% + 14px) !important;
|
|
92
|
-
margin: 13px -9px 0px;
|
|
93
|
-
}
|
|
94
|
-
.mat-autocomplete-panel.lux-autocomplete-panel-dense-ac {
|
|
95
|
-
margin-top: 7px;
|
|
96
112
|
}
|
|
97
113
|
}
|
|
98
114
|
|
|
@@ -100,44 +116,45 @@ lux-lookup-combobox-ac {
|
|
|
100
116
|
* Theming für Lux-Checkbox
|
|
101
117
|
*/
|
|
102
118
|
lux-checkbox-ac {
|
|
119
|
+
input:focus ~ .mdc-checkbox__background,
|
|
120
|
+
input:hover ~ .mdc-checkbox__background,
|
|
121
|
+
.mat-mdc-checkbox-touch-target:hover ~ .mdc-checkbox__background {
|
|
122
|
+
border-color: luxcommon.$dark-secondary-text !important;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
input:focus-visible ~ .mdc-checkbox__background {
|
|
126
|
+
border-color: luxcommon.$dark-secondary-text !important;
|
|
127
|
+
@include luxfocus.focus-dark-mixin;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.mdc-checkbox {
|
|
131
|
+
padding: 0;
|
|
132
|
+
//Bei mehrzeiligen Labels soll die Checkbox oben und nicht zentriert angezeigt werden.
|
|
133
|
+
//Deswegen wird hier das Margin-top: auto überschrieben.
|
|
134
|
+
align-self: flex-start;
|
|
135
|
+
margin-top: 0.2em;
|
|
136
|
+
|
|
137
|
+
.mdc-checkbox__background {
|
|
138
|
+
top: 0;
|
|
139
|
+
left: 0;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
103
143
|
label {
|
|
104
144
|
font-family: luxcommon.$app-font-family;
|
|
105
145
|
font-size: luxcommon.$form-control-font-size;
|
|
106
146
|
color: luxcommon.$dark-primary-text;
|
|
107
147
|
cursor: pointer;
|
|
108
|
-
|
|
109
|
-
.mat-checkbox-label {
|
|
110
|
-
-ms-word-break: break-word;
|
|
111
|
-
word-break: break-word;
|
|
112
|
-
white-space: normal;
|
|
113
|
-
}
|
|
114
148
|
}
|
|
115
149
|
|
|
116
|
-
.mat-checkbox-ripple
|
|
150
|
+
.mat-mdc-checkbox-ripple,
|
|
151
|
+
.mdc-checkbox__ripple {
|
|
117
152
|
display: none;
|
|
118
153
|
}
|
|
119
|
-
.mat-checkbox-inner-container {
|
|
120
|
-
// die Checkbox soll größer sein, als von Material vorgegeben
|
|
121
|
-
width: 1.25em;
|
|
122
|
-
height: 1.25em;
|
|
123
|
-
margin-top: 0.125em;
|
|
124
|
-
.mat-checkbox-frame {
|
|
125
|
-
border-color: luxpalette.$lux-primary-color;
|
|
126
|
-
}
|
|
127
|
-
//bei mehrzeiligen Labels soll die Checkbox oben und nicht zentriert angezeigt werden
|
|
128
|
-
//Deswegen wird hier das Margin-top: auto überschrieben
|
|
129
|
-
//da wir die Größe der Box geändert haben mussten wir das Margin ebenfalls anpassen
|
|
130
|
-
.mat-checkbox-frame {
|
|
131
|
-
border-color: luxpalette.$lux-primary-color;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
154
|
|
|
135
|
-
& .mat-checkbox-disabled {
|
|
136
|
-
|
|
137
|
-
color:
|
|
138
|
-
}
|
|
139
|
-
.mat-checkbox-inner-container .mat-checkbox-frame {
|
|
140
|
-
border-color: luxcommon.$dark-disabled-text;
|
|
155
|
+
& .mat-mdc-checkbox-disabled {
|
|
156
|
+
.mdc-checkbox {
|
|
157
|
+
color: #ffffff;
|
|
141
158
|
}
|
|
142
159
|
}
|
|
143
160
|
|
|
@@ -176,7 +193,9 @@ lux-datetimepicker-ac {
|
|
|
176
193
|
}
|
|
177
194
|
}
|
|
178
195
|
.cdk-overlay-pane .mat-datepicker-content,
|
|
179
|
-
.lux-datetimepicker-overlay .mat-card.lux-card {
|
|
196
|
+
.lux-datetimepicker-overlay .mat-mdc-card.lux-card {
|
|
197
|
+
--mat-datepicker-calendar-container-shape: #{luxcommon.$app-border-radius};
|
|
198
|
+
|
|
180
199
|
border: 2px solid luxpalette.$lux-primary-color;
|
|
181
200
|
box-shadow: none !important;
|
|
182
201
|
margin: 13px -9px 0;
|
|
@@ -190,46 +209,137 @@ lux-datetimepicker-ac {
|
|
|
190
209
|
/*
|
|
191
210
|
* Theming für lux-Toggle
|
|
192
211
|
*/
|
|
212
|
+
$toggleControlWidth: 50;
|
|
213
|
+
$toggleControlHeight: 30;
|
|
214
|
+
$toggleBorderRadius: 15;
|
|
215
|
+
$toggleBorderWidth: 2;
|
|
216
|
+
$toggleImageWidth: $toggleControlHeight - (2 * $toggleBorderWidth) - 3;
|
|
217
|
+
$toggleImageHeight: $toggleControlHeight - (2 * $toggleBorderWidth) - 3;
|
|
218
|
+
$toggleMarginLeft: $toggleBorderWidth + 1;
|
|
219
|
+
|
|
193
220
|
lux-toggle-ac {
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
font-family: luxcommon.$app-font-family;
|
|
198
|
-
}
|
|
199
|
-
&.mat-checked .mat-slide-toggle-bar {
|
|
200
|
-
background-color: map-get(luxpalette.$lux-palette_primary, 50);
|
|
201
|
-
}
|
|
202
|
-
.mat-slide-toggle-thumb {
|
|
203
|
-
@include luxelevations.lux-elevation-z1;
|
|
221
|
+
mat-slide-toggle {
|
|
222
|
+
.mdc-switch__ripple {
|
|
223
|
+
display: none;
|
|
204
224
|
}
|
|
205
225
|
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
226
|
+
// Farben
|
|
227
|
+
button {
|
|
228
|
+
&.mdc-switch--disabled {
|
|
229
|
+
&.mdc-switch--checked {
|
|
230
|
+
.mdc-switch__track {
|
|
231
|
+
&::before {
|
|
232
|
+
border-color: #e0e0e0 !important;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
&::after {
|
|
236
|
+
border-color: #e0e0e0 !important;
|
|
237
|
+
background: #e0e0e0;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.mdc-switch__icons {
|
|
242
|
+
svg.mdc-switch__icon--on {
|
|
243
|
+
fill: luxcommon.$dark-disabled-text;
|
|
244
|
+
background-color: white;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
&:not(.mdc-switch--checked) {
|
|
250
|
+
.mdc-switch__track {
|
|
251
|
+
&::before {
|
|
252
|
+
border-color: #e0e0e0 !important;
|
|
253
|
+
background: White;
|
|
254
|
+
}
|
|
213
255
|
|
|
214
|
-
|
|
215
|
-
|
|
256
|
+
&::after {
|
|
257
|
+
border-color: #e0e0e0 !important;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.mdc-switch__icons {
|
|
262
|
+
svg.mdc-switch__icon--off {
|
|
263
|
+
fill: white;
|
|
264
|
+
background-color: #a9a9a9;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
216
268
|
}
|
|
217
269
|
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
270
|
+
&:not(.mdc-switch--disabled) {
|
|
271
|
+
&.mdc-switch--checked {
|
|
272
|
+
.mdc-switch__track {
|
|
273
|
+
&::before {
|
|
274
|
+
border-color: map-get(luxpalette.$lux-palette_primary, 500) !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
&::after {
|
|
278
|
+
border-color: map-get(luxpalette.$lux-palette_primary, 500) !important;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.mdc-switch__icons {
|
|
283
|
+
svg.mdc-switch__icon--on {
|
|
284
|
+
fill: map-get(luxpalette.$lux-palette_primary, 500);
|
|
285
|
+
background-color: white;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
221
288
|
}
|
|
222
289
|
|
|
223
|
-
.
|
|
224
|
-
|
|
225
|
-
|
|
290
|
+
&:not(.mdc-switch--checked) {
|
|
291
|
+
.mdc-switch__track {
|
|
292
|
+
&::before {
|
|
293
|
+
border-color: luxcommon.$dark-secondary-text !important;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
&::after {
|
|
297
|
+
border-color: luxcommon.$dark-secondary-text !important;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
// Layout
|
|
305
|
+
button {
|
|
306
|
+
width: #{$toggleControlWidth}px;
|
|
307
|
+
height: #{$toggleImageHeight + 1}px;
|
|
308
|
+
|
|
309
|
+
.mdc-switch__track {
|
|
310
|
+
width: #{$toggleControlWidth}px;
|
|
311
|
+
height: #{$toggleControlHeight}px;
|
|
312
|
+
border-radius: #{$toggleBorderRadius}px;
|
|
313
|
+
|
|
314
|
+
&::before {
|
|
315
|
+
border-width: #{$toggleBorderWidth}px !important;
|
|
316
|
+
}
|
|
317
|
+
&::after {
|
|
318
|
+
border-width: #{$toggleBorderWidth}px !important;
|
|
226
319
|
}
|
|
227
320
|
}
|
|
228
321
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
322
|
+
.mdc-switch__handle {
|
|
323
|
+
width: #{$toggleImageWidth}px;
|
|
324
|
+
height: #{$toggleImageHeight}px;
|
|
325
|
+
margin-left: #{$toggleMarginLeft}px !important;
|
|
326
|
+
border-radius: #{$toggleBorderRadius}px;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.mdc-switch__handle-track {
|
|
330
|
+
width: #{$toggleControlWidth - $toggleImageWidth - $toggleMarginLeft - (2 * $toggleBorderWidth)}px;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.mdc-switch__icons {
|
|
334
|
+
width: #{$toggleImageWidth}px;
|
|
335
|
+
height: #{$toggleImageHeight}px;
|
|
336
|
+
|
|
337
|
+
svg.mdc-switch__icon--on {
|
|
338
|
+
border-radius: #{$toggleBorderRadius}px;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
svg.mdc-switch__icon--off {
|
|
342
|
+
border-radius: #{$toggleBorderRadius}px;
|
|
233
343
|
}
|
|
234
344
|
}
|
|
235
345
|
}
|
|
@@ -237,6 +347,42 @@ lux-toggle-ac {
|
|
|
237
347
|
|
|
238
348
|
&.lux-form-control-readonly {
|
|
239
349
|
pointer-events: none;
|
|
350
|
+
|
|
351
|
+
button {
|
|
352
|
+
pointer-events: none;
|
|
353
|
+
|
|
354
|
+
.mdc-switch__track {
|
|
355
|
+
pointer-events: none;
|
|
356
|
+
|
|
357
|
+
&::before {
|
|
358
|
+
pointer-events: none;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
&::after {
|
|
362
|
+
pointer-events: none;
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.mdc-switch__handle {
|
|
367
|
+
pointer-events: none;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.mdc-switch__handle-track {
|
|
371
|
+
pointer-events: none;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.mdc-switch__icons {
|
|
375
|
+
pointer-events: none;
|
|
376
|
+
|
|
377
|
+
svg.mdc-switch__icon--on {
|
|
378
|
+
pointer-events: none;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
svg.mdc-switch__icon--off {
|
|
382
|
+
pointer-events: none;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
}
|
|
240
386
|
}
|
|
241
387
|
}
|
|
242
388
|
|
|
@@ -244,67 +390,64 @@ lux-toggle-ac {
|
|
|
244
390
|
* Theming for LUX-Radio
|
|
245
391
|
*/
|
|
246
392
|
lux-radio-ac {
|
|
247
|
-
.mat-radio-
|
|
393
|
+
.mat-mdc-radio-button .mdc-radio {
|
|
394
|
+
padding: 0;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
mat-radio-button:not(.mat-mdc-radio-checked) input:hover ~ .mdc-radio__background div.mdc-radio__outer-circle,
|
|
398
|
+
mat-radio-button:not(.mat-mdc-radio-checked) .mat-mdc-radio-touch-target:hover ~ .mdc-radio__background div.mdc-radio__outer-circle {
|
|
399
|
+
border-color: luxcommon.$dark-secondary-text !important;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
input:focus-visible ~ .mdc-radio__background {
|
|
403
|
+
border-color: luxcommon.$dark-secondary-text !important;
|
|
404
|
+
@include luxfocus.focus-dark-mixin;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.mdc-radio__background {
|
|
248
408
|
// damit ist der Focus-Indicator rund, wie bei Toggle-Thumb und Chips
|
|
249
409
|
border-radius: 50%;
|
|
250
410
|
|
|
251
|
-
|
|
252
|
-
|
|
411
|
+
&::before {
|
|
412
|
+
// Ripple ausblenden
|
|
413
|
+
display: none;
|
|
253
414
|
}
|
|
254
415
|
}
|
|
255
|
-
.
|
|
416
|
+
.mdc-label {
|
|
256
417
|
color: luxcommon.$dark-primary-text;
|
|
257
418
|
font-family: luxcommon.$app-font-family;
|
|
258
419
|
}
|
|
259
420
|
|
|
260
|
-
.mat-radio-
|
|
261
|
-
&.mat-radio-disabled label .mat-radio-container {
|
|
262
|
-
span.mat-radio-inner-circle {
|
|
263
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
span.mat-radio-outer-circle {
|
|
267
|
-
border-color: luxcommon.$dark-disabled-text;
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
.mat-radio-group {
|
|
421
|
+
.mat-mdc-radio-group {
|
|
273
422
|
display: flex;
|
|
274
423
|
box-sizing: border-box;
|
|
275
|
-
gap: 0.75em;
|
|
276
424
|
place-content: stretch flex-start;
|
|
277
425
|
align-items: stretch;
|
|
278
426
|
|
|
279
427
|
&.lux-horizontal {
|
|
280
|
-
|
|
428
|
+
gap: 0.75em;
|
|
281
429
|
flex-direction: row;
|
|
282
430
|
flex-flow: wrap;
|
|
283
431
|
max-height: 100%;
|
|
284
432
|
}
|
|
285
433
|
&.lux-vertical {
|
|
434
|
+
gap: 0;
|
|
286
435
|
flex-direction: column;
|
|
287
436
|
max-width: 100%;
|
|
288
437
|
}
|
|
289
438
|
|
|
290
|
-
.mat-radio-button {
|
|
439
|
+
.mat-mdc-radio-button {
|
|
291
440
|
flex: 0 0 auto;
|
|
292
441
|
box-sizing: border-box;
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
442
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
.mat-radio-container {
|
|
302
|
-
span.mat-radio-inner-circle {
|
|
303
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
304
|
-
}
|
|
443
|
+
.mdc-radio__native-control:disabled + .mdc-radio__background {
|
|
444
|
+
div.mdc-radio__inner-circle {
|
|
445
|
+
border-color: luxcommon.$dark-disabled-text;
|
|
446
|
+
}
|
|
305
447
|
|
|
306
|
-
|
|
307
|
-
|
|
448
|
+
div.mdc-radio__outer-circle {
|
|
449
|
+
border-color: luxcommon.$dark-disabled-text;
|
|
450
|
+
}
|
|
308
451
|
}
|
|
309
452
|
}
|
|
310
453
|
}
|
|
@@ -341,7 +484,69 @@ lux-textarea-ac text-area {
|
|
|
341
484
|
/**
|
|
342
485
|
* Theming für LUX-Chips
|
|
343
486
|
*/
|
|
487
|
+
// $chipsBorderRadius: 20;
|
|
344
488
|
lux-chips-ac {
|
|
489
|
+
--mdc-chip-container-shape-radius: 20px;
|
|
490
|
+
--mdc-chip-outline-width: 1px;
|
|
491
|
+
|
|
492
|
+
.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) {
|
|
493
|
+
span.mdc-evolution-chip__action::before {
|
|
494
|
+
border: none;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
&.lux-chip-color-default {
|
|
498
|
+
background-color: var(--lux-theme-primary-500) !important;
|
|
499
|
+
|
|
500
|
+
.mat-mdc-chip-action-label {
|
|
501
|
+
color: white;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
lux-icon {
|
|
505
|
+
color: white;
|
|
506
|
+
opacity: 1;
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
&.lux-chip-color-primary {
|
|
511
|
+
background-color: var(--lux-theme-primary-500) !important;
|
|
512
|
+
|
|
513
|
+
.mat-mdc-chip-action-label {
|
|
514
|
+
color: white;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
lux-icon {
|
|
518
|
+
color: white;
|
|
519
|
+
opacity: 1;
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
&.lux-chip-color-accent {
|
|
524
|
+
background-color: var(--lux-theme-accent-500) !important;
|
|
525
|
+
|
|
526
|
+
.mat-mdc-chip-action-label {
|
|
527
|
+
color: white;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
lux-icon {
|
|
531
|
+
color: white;
|
|
532
|
+
opacity: 1;
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
&.lux-chip-color-warn {
|
|
537
|
+
background-color: var(--lux-theme-warn-500) !important;
|
|
538
|
+
|
|
539
|
+
.mat-mdc-chip-action-label {
|
|
540
|
+
color: white;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
lux-icon {
|
|
544
|
+
color: white;
|
|
545
|
+
opacity: 1;
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
|
|
345
550
|
.lux-chips-autocomplete-icon {
|
|
346
551
|
color: var(--lux-theme-primary-500);
|
|
347
552
|
font-size: 1.5rem;
|
|
@@ -353,37 +558,22 @@ lux-chips-ac {
|
|
|
353
558
|
cursor: default;
|
|
354
559
|
}
|
|
355
560
|
}
|
|
561
|
+
|
|
356
562
|
.lux-chips {
|
|
357
|
-
mat-chip {
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
color: luxcommon.$app-data-bg !important;
|
|
361
|
-
opacity: 1 !important;
|
|
362
|
-
}
|
|
563
|
+
.mat-mdc-chip-list-disabled {
|
|
564
|
+
color: luxcommon.$app-data-bg !important;
|
|
565
|
+
opacity: 1;
|
|
363
566
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
color: luxcommon.$app-data-bg !important;
|
|
367
|
-
opacity: 1 !important;
|
|
567
|
+
.mdc-evolution-chip__text-label {
|
|
568
|
+
color: luxcommon.$app-data-bg;
|
|
368
569
|
}
|
|
369
570
|
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
opacity: 1;
|
|
374
|
-
|
|
375
|
-
lux-icon {
|
|
376
|
-
mat-icon {
|
|
377
|
-
color: luxcommon.$app-data-bg;
|
|
378
|
-
}
|
|
571
|
+
lux-icon {
|
|
572
|
+
mat-icon {
|
|
573
|
+
color: luxcommon.$app-data-bg;
|
|
379
574
|
}
|
|
380
575
|
}
|
|
381
576
|
}
|
|
382
|
-
mat-chip-list {
|
|
383
|
-
& div.mat-chip-list-wrapper {
|
|
384
|
-
margin: 0px 0px 0px -4px;
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
577
|
}
|
|
388
578
|
|
|
389
579
|
.lux-hide-input-border .lux-form-control-container-authentic {
|
|
@@ -392,8 +582,8 @@ lux-chips-ac {
|
|
|
392
582
|
box-shadow: none !important; // den Focus-indicator für das Inputausblenden
|
|
393
583
|
}
|
|
394
584
|
}
|
|
395
|
-
.lux-chips-ac-autocomplete-panel.mat-autocomplete-panel,
|
|
396
|
-
.lux-chips-ac-autocomplete-panel-dense.mat-autocomplete-panel {
|
|
585
|
+
.lux-chips-ac-autocomplete-panel.mat-mdc-autocomplete-panel,
|
|
586
|
+
.lux-chips-ac-autocomplete-panel-dense.mat-mdc-autocomplete-panel {
|
|
397
587
|
margin-top: -18px;
|
|
398
588
|
margin-left: 0;
|
|
399
589
|
margin-right: 0;
|
|
@@ -402,7 +592,7 @@ lux-chips-ac {
|
|
|
402
592
|
box-shadow: none !important;
|
|
403
593
|
border: 2px solid luxpalette.$lux-primary-color;
|
|
404
594
|
}
|
|
405
|
-
.lux-chips-ac-autocomplete-panel-dense.mat-autocomplete-panel {
|
|
595
|
+
.lux-chips-ac-autocomplete-panel-dense.mat-mdc-autocomplete-panel {
|
|
406
596
|
margin-top: -18px;
|
|
407
597
|
}
|
|
408
598
|
|
|
@@ -410,15 +600,69 @@ lux-chips-ac {
|
|
|
410
600
|
* Theming for LUX-Slider
|
|
411
601
|
*/
|
|
412
602
|
lux-slider-ac {
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
603
|
+
lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-authentic.lux-no-input-row {
|
|
604
|
+
padding-top: 20px;
|
|
605
|
+
padding-bottom: 4px;
|
|
606
|
+
|
|
607
|
+
mat-slider,
|
|
608
|
+
mat-slider input {
|
|
609
|
+
max-height: 24px;
|
|
416
610
|
}
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
611
|
+
|
|
612
|
+
mat-slider.mat-primary .mdc-slider__value-indicator {
|
|
613
|
+
background-color: var(--lux-theme-primary-500);
|
|
614
|
+
|
|
615
|
+
&::before {
|
|
616
|
+
border-top-color: var(--lux-theme-primary-500);
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
mat-slider.mat-accent .mdc-slider__value-indicator {
|
|
621
|
+
background-color: var(--lux-theme-accent-500);
|
|
622
|
+
|
|
623
|
+
&::before {
|
|
624
|
+
border-top-color: var(--lux-theme-accent-500);
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
mat-slider.mat-warn .mdc-slider__value-indicator {
|
|
629
|
+
background-color: var(--lux-theme-warn-500);
|
|
630
|
+
|
|
631
|
+
&::before {
|
|
632
|
+
border-top-color: var(--lux-theme-warn-500);
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.mdc-slider__track {
|
|
637
|
+
background-color: luxcommon.$dark-disabled-text;
|
|
638
|
+
height: 2px;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.mdc-slider__value-indicator-container {
|
|
642
|
+
left: 26%;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.mdc-slider__thumb-knob {
|
|
646
|
+
height: 15px;
|
|
647
|
+
width: 15px;
|
|
648
|
+
top: 27%;
|
|
649
|
+
border-radius: 50%;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
mat-slider-visual-thumb div.mdc-slider__value-indicator-container {
|
|
653
|
+
bottom: 48px;
|
|
654
|
+
|
|
655
|
+
.mdc-slider__value-indicator {
|
|
656
|
+
border-radius: 50%;
|
|
657
|
+
min-height: 25px;
|
|
658
|
+
min-width: 20px;
|
|
659
|
+
padding-left: 2px;
|
|
660
|
+
padding-right: 2px;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.mdc-slider__value-indicator-text {
|
|
664
|
+
min-width: 100%;
|
|
665
|
+
font-size: 12px;
|
|
422
666
|
}
|
|
423
667
|
}
|
|
424
668
|
}
|