@ihk-gfi/lux-components-theme 11.4.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/CHANGELOG.md +15 -0
- package/LICENSE +198 -0
- package/README.md +120 -0
- package/package.json +25 -0
- package/prebuilt-themes/luxtheme-blue-min.css +1 -0
- package/prebuilt-themes/luxtheme-blue-min.css.map +1 -0
- package/prebuilt-themes/luxtheme-blue.css +6451 -0
- package/prebuilt-themes/luxtheme-blue.css.map +1 -0
- package/prebuilt-themes/luxtheme-green-min.css +1 -0
- package/prebuilt-themes/luxtheme-green-min.css.map +1 -0
- package/prebuilt-themes/luxtheme-green.css +6598 -0
- package/prebuilt-themes/luxtheme-green.css.map +1 -0
- package/prebuilt-themes/luxtheme-orange-min.css +1 -0
- package/prebuilt-themes/luxtheme-orange-min.css.map +1 -0
- package/prebuilt-themes/luxtheme-orange.css +6490 -0
- package/prebuilt-themes/luxtheme-orange.css.map +1 -0
- package/src/base/_luxcomponents.scss +768 -0
- package/src/base/_luxfocus.scss +698 -0
- package/src/base/_luxicons.scss +2 -0
- package/src/base/_luxstyles.scss +503 -0
- package/src/base/_luxtheme.scss +7 -0
- package/src/blue/_custom.scss +0 -0
- package/src/blue/_luxcommon.scss +64 -0
- package/src/blue/_luxpalette.scss +105 -0
- package/src/blue/luxtheme.scss +11 -0
- package/src/green/_custom.scss +219 -0
- package/src/green/_luxcommon.scss +64 -0
- package/src/green/_luxpalette.scss +106 -0
- package/src/green/luxtheme.scss +13 -0
- package/src/orange/_custom.scss +66 -0
- package/src/orange/_luxcommon.scss +64 -0
- package/src/orange/_luxpalette.scss +106 -0
- package/src/orange/luxtheme.scss +11 -0
- package/src/public/global.scss +13 -0
|
@@ -0,0 +1,768 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Theming for LUX-App-Content
|
|
3
|
+
*/
|
|
4
|
+
lux-app-content {
|
|
5
|
+
background-color: $app-content-bg;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/*
|
|
9
|
+
* Theming for LUX-App-Footer
|
|
10
|
+
*/
|
|
11
|
+
lux-app-footer {
|
|
12
|
+
.lux-app-footer {
|
|
13
|
+
background-color: $app-footer-bg;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.footerFont {
|
|
17
|
+
font-family: $app-font-family;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/*
|
|
22
|
+
* Theming for LUX-App-Header
|
|
23
|
+
*/
|
|
24
|
+
lux-app-header {
|
|
25
|
+
.lux-app-header {
|
|
26
|
+
background-color: $app-header-bg;
|
|
27
|
+
|
|
28
|
+
.lux-show-border {
|
|
29
|
+
border-left: 1px solid $light-dividers;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.lux-header-title {
|
|
33
|
+
color: map-get(map-get($lux-palette-primary, contrast), 500);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
div.lux-header-action {
|
|
37
|
+
lux-button {
|
|
38
|
+
button {
|
|
39
|
+
|
|
40
|
+
&:not(.mat-accent):not(.mat-warn):not(.mat-primary):not(.mat-button-disabled) {
|
|
41
|
+
color: map-get(map-get($lux-palette-primary, contrast), 500);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&:not(.mat-accent):not(.mat-warn):not(.mat-primary).mat-button-disabled {
|
|
45
|
+
color: $dark-disabled-text;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&.mat-accent:not(.mat-button-disabled) {
|
|
49
|
+
color: map-get($lux-palette_accent, A100);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&.mat-warn:not(.mat-button-disabled) {
|
|
53
|
+
color: map-get($lux-palette_warn, A100);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&.mat-primary:not(.mat-button-disabled) {
|
|
57
|
+
color: map-get($lux-palette_primary, A100);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
button:not(.mat-primary):not(.mat-warn):not(.mat-accent):not(.lux-button-rounded) {
|
|
64
|
+
color: map-get(map-get($lux-palette-primary, contrast), 500);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.lux-header-user {
|
|
68
|
+
.lux-header-user-short {
|
|
69
|
+
> span {
|
|
70
|
+
color: map-get($lux-palette_primary, 500);
|
|
71
|
+
background-color: map-get(map-get($lux-palette-primary, contrast), 500);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.lux-side-nav-header, .lux-side-nav-footer {
|
|
78
|
+
color: map-get($lux-palette_primary, A400);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.lux-header-side-nav {
|
|
82
|
+
.lux-side-nav-trigger-active {
|
|
83
|
+
background-color: $dark-focused;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.lux-side-nav .lux-side-nav-content {
|
|
88
|
+
lux-button, .lux-menu-item, .lux-action-nav-menu lux-button {
|
|
89
|
+
color: map-get($lux-palette_primary, 500);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Menü wird im Cdk-Overlay dargestellt und hängt nicht unter dem LUX-APP-HEADER selbst.
|
|
95
|
+
.lux-right-nav-menu .lux-menu-item {
|
|
96
|
+
color: map-get($lux-palette_primary, 500);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/*
|
|
100
|
+
* Theming for LUX-Button
|
|
101
|
+
*/
|
|
102
|
+
lux-button button.lux-button {
|
|
103
|
+
&.mat-button {
|
|
104
|
+
height: 45px;
|
|
105
|
+
margin-left: $outline-width;
|
|
106
|
+
margin-right: $outline-width;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
&.mat-button.mat-button-disabled,
|
|
110
|
+
&.mat-raised-button.mat-button-disabled,
|
|
111
|
+
&.mat-fab.mat-button-disabled {
|
|
112
|
+
color: $dark-disabled-text;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
&.lux-icon-button {
|
|
116
|
+
height: 45px;
|
|
117
|
+
padding-top: 4px;
|
|
118
|
+
padding-bottom: 2px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
&.lux-button-rounded {
|
|
122
|
+
width: 45px;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Theming für LUX-Checkbox
|
|
128
|
+
*/
|
|
129
|
+
lux-checkbox {
|
|
130
|
+
.mat-checkbox-disabled label {
|
|
131
|
+
color: $dark-disabled-text;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.mat-checkbox-checked:not(.mat-checkbox-disabled) label span.mat-checkbox-inner-container {
|
|
135
|
+
background-color: map-get($lux-palette_primary, 500);
|
|
136
|
+
|
|
137
|
+
svg {
|
|
138
|
+
background-color: map-get($lux-palette_primary, 500);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Theming für LUX-Card
|
|
145
|
+
*/
|
|
146
|
+
lux-card {
|
|
147
|
+
.lux-card-content-container mat-tab-group.lux-tab-group .lux-tabs-notification-icon {
|
|
148
|
+
border-color: $app-data-bg;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.lux-highlight {
|
|
152
|
+
color: $dark-primary-text;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.mat-card-subtitle {
|
|
156
|
+
color: $dark-secondary-text;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.lux-card-content-expanded {
|
|
160
|
+
background: $app-data-bg;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* Theming für LUX-Chips
|
|
166
|
+
*/
|
|
167
|
+
lux-chips {
|
|
168
|
+
.lux-chips {
|
|
169
|
+
mat-chip {
|
|
170
|
+
// Löschicon (luxSelected=true)
|
|
171
|
+
&.mat-chip-selected .mat-chip-remove {
|
|
172
|
+
color: $app-data-bg !important;
|
|
173
|
+
opacity: 1 !important;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
// Löschicon (luxSelected=false)
|
|
177
|
+
&:not(.mat-chip-selected) .mat-chip-remove {
|
|
178
|
+
color: $app-data-bg !important;
|
|
179
|
+
opacity: 1 !important;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
&.mat-chip-disabled {
|
|
183
|
+
background-color: $dark-disabled-text !important;
|
|
184
|
+
color: $app-data-bg !important;
|
|
185
|
+
opacity: 1;
|
|
186
|
+
|
|
187
|
+
lux-icon {
|
|
188
|
+
i,
|
|
189
|
+
mat-icon {
|
|
190
|
+
color: $app-data-bg;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/*
|
|
199
|
+
* Theming for LUX-Datepicker
|
|
200
|
+
*/
|
|
201
|
+
lux-datepicker {
|
|
202
|
+
mat-datepicker-toggle button {
|
|
203
|
+
&:not(.mat-button-disabled) .mat-button-wrapper > svg {
|
|
204
|
+
color: map-get($lux-palette_primary, 500);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
&.mat-button-disabled .mat-button-wrapper > svg {
|
|
208
|
+
color: $dark-disabled-text;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/*
|
|
214
|
+
* Theming for LUX-Datetimepicker
|
|
215
|
+
*/
|
|
216
|
+
lux-datetimepicker {
|
|
217
|
+
mat-datepicker-toggle button {
|
|
218
|
+
&:not(.mat-button-disabled) .mat-button-wrapper > svg {
|
|
219
|
+
color: map-get($lux-palette_primary, 500);
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
&.mat-button-disabled .mat-button-wrapper > svg {
|
|
223
|
+
color: $dark-disabled-text;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/*
|
|
229
|
+
* Theming for LUX-Dialog
|
|
230
|
+
*/
|
|
231
|
+
.lux-dialog {
|
|
232
|
+
.lux-dialog-title {
|
|
233
|
+
color: $dark-primary-text;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
/*
|
|
239
|
+
* Theming for LUX-Divider
|
|
240
|
+
*/
|
|
241
|
+
lux-divider {
|
|
242
|
+
.mat-divider {
|
|
243
|
+
background-color: $dark-dividers;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
/*
|
|
248
|
+
* Theming for LUX-File-List
|
|
249
|
+
*/
|
|
250
|
+
lux-file-list .lux-file-list {
|
|
251
|
+
.lux-file-list-entry-label, .lux-file-list-entry-icon {
|
|
252
|
+
color: $dark-secondary-text;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.lux-card-title-container {
|
|
256
|
+
color: map-get($lux-palette_primary, 500);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.lux-file-list-entries {
|
|
260
|
+
.lux-file-list-entry {
|
|
261
|
+
.lux-file-list-entry-label:not(.lux-file-list-entry-label-disabled) {
|
|
262
|
+
color: $dark-secondary-text;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
&.lux-file-list-disabled {
|
|
268
|
+
mat-card-title *,
|
|
269
|
+
mat-card-content,
|
|
270
|
+
span,
|
|
271
|
+
i {
|
|
272
|
+
color: $dark-disabled-text;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.lux-file-icon-hint {
|
|
276
|
+
span {
|
|
277
|
+
text-decoration-color: $dark-disabled-text !important;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
/*
|
|
284
|
+
* Theming for LUX-File-Progress
|
|
285
|
+
*/
|
|
286
|
+
lux-file-progress {
|
|
287
|
+
.lux-file-overlay {
|
|
288
|
+
background: $dark-focused;
|
|
289
|
+
|
|
290
|
+
mat-spinner,
|
|
291
|
+
mat-spinner svg {
|
|
292
|
+
circle {
|
|
293
|
+
stroke: map-get($lux-palette_primary, 500);
|
|
294
|
+
background: map-get($lux-palette_primary, 500);
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
/*
|
|
301
|
+
* Theming for LUX-Form-Controls
|
|
302
|
+
*/
|
|
303
|
+
.lux-form-control {
|
|
304
|
+
.lux-form-control-container {
|
|
305
|
+
&:after {
|
|
306
|
+
border-bottom: 1px solid $form-border-color;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.lux-label, mat-hint, mat-error {
|
|
311
|
+
color: $dark-secondary-text;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.lux-form-control-error {
|
|
316
|
+
.lux-form-control-label {
|
|
317
|
+
> * {
|
|
318
|
+
color: $lux-warn-color !important;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.lux-form-control-container {
|
|
323
|
+
border-color: $lux-warn-color !important;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.lux-form-control-misc {
|
|
327
|
+
> * {
|
|
328
|
+
color: $lux-warn-color !important;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.lux-form-control-disabled {
|
|
334
|
+
.lux-form-control-container {
|
|
335
|
+
color: $dark-disabled-text !important;
|
|
336
|
+
|
|
337
|
+
&:after {
|
|
338
|
+
border-bottom: 1px dashed $dark-disabled-text;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
/*
|
|
344
|
+
* Theming for LUX-Layout-Card-Row
|
|
345
|
+
*/
|
|
346
|
+
lux-layout-card-row {
|
|
347
|
+
.row-title {
|
|
348
|
+
color: $dark-primary-text;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
/*
|
|
353
|
+
* Theming for LUX-Layout-Form-Row
|
|
354
|
+
*/
|
|
355
|
+
lux-layout-form-row {
|
|
356
|
+
.row-title {
|
|
357
|
+
color: $dark-primary-text;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
/*
|
|
362
|
+
* Theming for LUX-List
|
|
363
|
+
*/
|
|
364
|
+
lux-list {
|
|
365
|
+
.lux-list-empty-icon,
|
|
366
|
+
.lux-list-empty-icon-text {
|
|
367
|
+
color: $dark-primary-text;
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
/*
|
|
372
|
+
* Theming for LUX-Lookup-Components
|
|
373
|
+
*/
|
|
374
|
+
lux-lookup-combobox {
|
|
375
|
+
mat-select {
|
|
376
|
+
&[aria-disabled="true"] .mat-select-arrow {
|
|
377
|
+
border-width: 7px;
|
|
378
|
+
margin: 0;
|
|
379
|
+
color: $dark-disabled-text;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
&[aria-disabled="false"] .mat-select-arrow {
|
|
383
|
+
border-width: 7px;
|
|
384
|
+
margin: 0;
|
|
385
|
+
color: map-get($lux-palette_primary, 500);
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
// Optionen werden im Cdk-Overlay dargestellt und hängen nicht unter der Component selbst.
|
|
391
|
+
.lux-autocomplete-panel, .lux-select-panel {
|
|
392
|
+
.mat-option {
|
|
393
|
+
border-left: 2px solid $app-data-bg;
|
|
394
|
+
|
|
395
|
+
&.invalid {
|
|
396
|
+
border-left: 2px solid $lux-warn-color;
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
/*
|
|
402
|
+
* Theming for LUX-Master-Detail
|
|
403
|
+
*/
|
|
404
|
+
lux-master-detail {
|
|
405
|
+
.lux-detail-container {
|
|
406
|
+
.lux-detail-empty-icon,
|
|
407
|
+
.lux-detail-empty-icon-text {
|
|
408
|
+
color: $dark-primary-text;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
/*
|
|
414
|
+
* Theming for LUX-Master-Footer
|
|
415
|
+
*/
|
|
416
|
+
lux-master-footer {
|
|
417
|
+
background-color: $app-data-bg;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
/*
|
|
421
|
+
* Theming for LUX-Master-Header
|
|
422
|
+
*/
|
|
423
|
+
lux-master-header {
|
|
424
|
+
background-color: $app-data-bg;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
/*
|
|
428
|
+
* Theming for LUX-Message-Box
|
|
429
|
+
*/
|
|
430
|
+
lux-message-box {
|
|
431
|
+
&.mat-elevation-z4 {
|
|
432
|
+
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
/*
|
|
437
|
+
* Theming for LUX-Snackbar
|
|
438
|
+
*/
|
|
439
|
+
@each $colorName, $colorNameHex in $colorsForDarkBg {
|
|
440
|
+
.lux-snackbar-content .lux-bg-color-#{'' + $colorName + ''} {
|
|
441
|
+
color: $colorNameHex;
|
|
442
|
+
background-color: transparent;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
/*
|
|
447
|
+
* Theming for LUX-Progress
|
|
448
|
+
*/
|
|
449
|
+
lux-progress {
|
|
450
|
+
.mat-progress-bar-fill:after,
|
|
451
|
+
.mat-progress-spinner > svg > circle {
|
|
452
|
+
stroke: map-get($lux-palette_primary, A400);
|
|
453
|
+
background: map-get($lux-palette_primary, A400);
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
@each $colorName, $colorNameHex in $componentBgColors {
|
|
457
|
+
.lux-bg-color-#{'' + $colorName + ''} {
|
|
458
|
+
.mat-progress-bar-primary:after,
|
|
459
|
+
.mat-progress-bar-secondary:after {
|
|
460
|
+
background: $colorNameHex;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
@each $colorName, $colorNameHex in $componentBgColors {
|
|
466
|
+
mat-progress-spinner.lux-bg-color-#{'' + $colorName + ''} {
|
|
467
|
+
circle {
|
|
468
|
+
stroke: $colorNameHex;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
lux-radio {
|
|
475
|
+
.mat-radio-checked {
|
|
476
|
+
label.mat-radio-label .mat-radio-container {
|
|
477
|
+
span.mat-radio-inner-circle {
|
|
478
|
+
background-color: map-get($lux-palette_primary, 500);
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
span.mat-radio-outer-circle {
|
|
482
|
+
border-color: map-get($lux-palette_primary, 500);
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
&.mat-radio-disabled label .mat-radio-container {
|
|
487
|
+
span.mat-radio-inner-circle {
|
|
488
|
+
background-color: $dark-disabled-text;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
span.mat-radio-outer-circle {
|
|
492
|
+
border-color: $dark-disabled-text;
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.mat-radio-disabled label.mat-radio-label {
|
|
498
|
+
.mat-radio-label-content {
|
|
499
|
+
color: $dark-disabled-text;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.mat-radio-container {
|
|
503
|
+
span.mat-radio-inner-circle {
|
|
504
|
+
background-color: $dark-disabled-text;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
span.mat-radio-outer-circle {
|
|
508
|
+
border-color: $dark-disabled-text;
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
/*
|
|
515
|
+
* Theming for LUX-Select
|
|
516
|
+
*/
|
|
517
|
+
lux-select {
|
|
518
|
+
mat-select {
|
|
519
|
+
&[aria-disabled="true"] .mat-select-arrow {
|
|
520
|
+
color: $dark-disabled-text;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
&[aria-disabled="false"] .mat-select-arrow {
|
|
524
|
+
color: map-get($lux-palette_primary, 500);
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
// Checkbox wird im Cdk-Overlay dargestellt und hängt nicht unter der Component selbst.
|
|
530
|
+
.lux-select-panel .mat-pseudo-checkbox-checked {
|
|
531
|
+
background-color: map-get($lux-palette_primary, 500);
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
/*
|
|
535
|
+
* Theming for LUX-Side-Nav
|
|
536
|
+
*/
|
|
537
|
+
lux-side-nav {
|
|
538
|
+
.lux-side-nav {
|
|
539
|
+
background: $app-data-bg;
|
|
540
|
+
box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.5);
|
|
541
|
+
|
|
542
|
+
.lux-side-nav-header {
|
|
543
|
+
border-bottom: 1px solid $dark-dividers;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.lux-side-nav-footer {
|
|
547
|
+
border-top: 1px solid $dark-dividers;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.lux-side-nav-content {
|
|
551
|
+
.lux-side-nav-item {
|
|
552
|
+
.lux-side-nav-item-icon {
|
|
553
|
+
color: map-get($lux-palette_primary, 500);
|
|
554
|
+
|
|
555
|
+
&.lux-side-nav-disabled {
|
|
556
|
+
color: $dark-disabled-text;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.lux-side-nav-item-expansion-icon {
|
|
561
|
+
color: map-get($lux-palette_primary, 500);
|
|
562
|
+
|
|
563
|
+
&.lux-side-nav-disabled {
|
|
564
|
+
color: $dark-disabled-text;
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.lux-side-nav-overlay {
|
|
573
|
+
background-color: $dark-focused;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
/*
|
|
577
|
+
* Theming for LUX-Slider
|
|
578
|
+
*/
|
|
579
|
+
lux-slider {
|
|
580
|
+
.lux-show-thumb-label-always {
|
|
581
|
+
&.mat-slider-disabled {
|
|
582
|
+
.mat-slider-thumb-label {
|
|
583
|
+
background-color: $dark-disabled-text;
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
/*
|
|
590
|
+
* Theming for LUX-Spinner
|
|
591
|
+
*/
|
|
592
|
+
lux-spinner {
|
|
593
|
+
.mat-progress-spinner > svg > circle {
|
|
594
|
+
stroke: map-get($lux-palette_primary, A400);
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
/*
|
|
599
|
+
* Theming for LUX-Stepper
|
|
600
|
+
*/
|
|
601
|
+
lux-stepper {
|
|
602
|
+
|
|
603
|
+
// luxUseCustomIcons=true
|
|
604
|
+
.lux-ignore-mat-step-icons {
|
|
605
|
+
|
|
606
|
+
mat-step-header {
|
|
607
|
+
color: $dark-secondary-text;
|
|
608
|
+
|
|
609
|
+
&.lux-step-header-touched {
|
|
610
|
+
.lux-stepper-edited-icon,
|
|
611
|
+
.lux-stepper-normal-icon {
|
|
612
|
+
i, mat-icon {
|
|
613
|
+
color: $app-data-bg;
|
|
614
|
+
background-color: map-get($lux-palette_primary, 500);
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
&:not(.lux-step-header-touched) {
|
|
620
|
+
.lux-stepper-edited-icon,
|
|
621
|
+
.lux-stepper-normal-icon {
|
|
622
|
+
i, mat-icon {
|
|
623
|
+
color: $app-data-bg;
|
|
624
|
+
background-color: $dark-secondary-text;
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
// luxUseCustomIcons=false
|
|
632
|
+
.mat-step-header {
|
|
633
|
+
|
|
634
|
+
lux-step-header {
|
|
635
|
+
color: $dark-secondary-text;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
&.lux-step-header-touched {
|
|
639
|
+
.mat-step-icon {
|
|
640
|
+
color: $app-data-bg;
|
|
641
|
+
background-color: map-get($lux-palette_primary, 500);
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.mat-step-icon-selected {
|
|
645
|
+
color: $app-data-bg;
|
|
646
|
+
background-color: map-get($lux-palette_primary, 500);
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
&:not(.lux-step-header-touched) {
|
|
651
|
+
.mat-step-icon {
|
|
652
|
+
color: $app-data-bg;
|
|
653
|
+
background-color: $dark-secondary-text;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.mat-step-icon-selected {
|
|
657
|
+
color: $app-data-bg;
|
|
658
|
+
background-color: map-get($lux-palette_primary, 500);
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
/*
|
|
665
|
+
* Theming for LUX-Table
|
|
666
|
+
*/
|
|
667
|
+
lux-table {
|
|
668
|
+
.lux-row-selected {
|
|
669
|
+
background-color: $lux-selected-bg-color;
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
/*
|
|
674
|
+
* Theming for LUX-Tabs
|
|
675
|
+
*/
|
|
676
|
+
lux-tabs {
|
|
677
|
+
.mat-tab-nav-bar, .mat-tab-header {
|
|
678
|
+
border-color: $dark-dividers;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
mat-tab-group div[role="tab"]:not(.mat-tab-disabled) {
|
|
682
|
+
color: map-get($lux-palette_primary, 500);
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.lux-notification-new {
|
|
686
|
+
background-color: map-get($componentBgColors, "green");
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.lux-tabs-notification-icon {
|
|
690
|
+
border: 2px solid $app-content-bg;
|
|
691
|
+
}
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
/*
|
|
695
|
+
* Theming for LUX-Tile
|
|
696
|
+
*/
|
|
697
|
+
lux-tile {
|
|
698
|
+
.lux-notification-new {
|
|
699
|
+
background-color: map-get($lux-palette_accent, 500);
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.lux-highlight {
|
|
703
|
+
color: map-get($lux-palette_primary, A400);
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
/*
|
|
708
|
+
* Theming for LUX-Toggle
|
|
709
|
+
*/
|
|
710
|
+
lux-toggle {
|
|
711
|
+
|
|
712
|
+
.mat-slide-toggle {
|
|
713
|
+
label {
|
|
714
|
+
color: $dark-primary-text;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
&.mat-checked {
|
|
718
|
+
.mat-slide-toggle-bar {
|
|
719
|
+
background-color: map-get($lux-palette_primary, 100);
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.mat-slide-toggle-thumb {
|
|
723
|
+
background-color: map-get($lux-palette_primary, 500);
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
&:not(.mat-checked) {
|
|
728
|
+
.mat-slide-toggle-bar {
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.mat-slide-toggle-thumb {
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
&.mat-disabled {
|
|
736
|
+
label {
|
|
737
|
+
color: black;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
&.mat-checked {
|
|
741
|
+
.mat-slide-toggle-bar {
|
|
742
|
+
background-color: $dark-disabled-text;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.mat-slide-toggle-thumb {
|
|
746
|
+
background-color: black;
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
&:not(.mat-checked) {
|
|
751
|
+
.mat-slide-toggle-bar {
|
|
752
|
+
background-color: $dark-disabled-text;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.mat-slide-toggle-thumb {
|
|
756
|
+
background-color: black;
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
/*
|
|
764
|
+
* Theming for LUX-Tooltip
|
|
765
|
+
*/
|
|
766
|
+
mat-tooltip-component .mat-tooltip {
|
|
767
|
+
font-size: 14px;
|
|
768
|
+
}
|