@ihk-gfi/lux-components-theme 14.6.0 → 15.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 +13 -18
- package/package.json +6 -7
- 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 +5561 -2555
- 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 +5602 -2917
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +47 -81
- package/src/authentic/_luxcommon.scss +14 -17
- package/src/authentic/luxtheme.scss +78 -86
- package/src/base/_luxcommon.scss +0 -8
- package/src/base/_luxcomponents.scss +41 -558
- package/src/base/_luxfocus.scss +7 -205
- package/src/base/_luxstyles.scss +16 -15
- package/src/base/_luxtheme.scss +13 -1
- package/src/base/components/_luxAppHeaderAc.scss +4 -2
- package/src/base/components/_luxButton.scss +143 -0
- package/src/base/components/_luxFormControlWrapper.scss +9 -13
- package/src/base/components/_luxFormControlsAuthentic.scss +19 -14
- package/src/base/components/_luxIcon.scss +41 -0
- package/src/base/components/_luxLinkPlain.scss +1 -4
- package/src/base/components/_luxMasterDetailAc.scss +27 -21
- package/src/base/components/_luxTextbox.scss +1 -1
- package/src/base/components/_luxTileAc.scss +4 -12
- package/src/green/_custom.scss +44 -314
- package/src/green/_luxcommon.scss +11 -19
- package/src/green/luxtheme.scss +84 -87
- package/prebuilt-themes/luxtheme-blue-min.css +0 -1
- package/prebuilt-themes/luxtheme-blue-min.css.map +0 -1
- package/prebuilt-themes/luxtheme-blue.css +0 -9103
- package/prebuilt-themes/luxtheme-blue.css.map +0 -1
- package/src/blue/_custom.scss +0 -120
- package/src/blue/_luxcommon.scss +0 -101
- package/src/blue/_luxpalette.scss +0 -106
- package/src/blue/luxtheme.scss +0 -102
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
@use "components/luxMasterDetailAc.scss";
|
|
8
8
|
@use "components/luxCheckboxContainerAc.scss";
|
|
9
9
|
@use "components/luxTextbox.scss";
|
|
10
|
+
@use "components/luxIcon";
|
|
11
|
+
@use "components/luxButton";
|
|
10
12
|
@use "luxcommon";
|
|
11
13
|
@use "luxpalette";
|
|
12
14
|
@use "../public/global";
|
|
@@ -119,114 +121,6 @@ lux-app-header {
|
|
|
119
121
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
120
122
|
}
|
|
121
123
|
|
|
122
|
-
/*
|
|
123
|
-
* Theming for LUX-Button
|
|
124
|
-
*/
|
|
125
|
-
lux-button button.lux-button {
|
|
126
|
-
font-family: global.$app-font-family;
|
|
127
|
-
font-size: luxcommon.$button-font-size;
|
|
128
|
-
font-weight: 600;
|
|
129
|
-
|
|
130
|
-
&.mat-button,
|
|
131
|
-
&.mat-raised-button,
|
|
132
|
-
&.mat-stroked-button,
|
|
133
|
-
&.mat-flat-button {
|
|
134
|
-
height: luxcommon.$button-height;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
&.mat-button.mat-button-disabled,
|
|
138
|
-
&.mat-raised-button.mat-button-disabled,
|
|
139
|
-
&.mat-flat-button.mat-button-disabled,
|
|
140
|
-
&.mat-stroked-button.mat-button-disabled,
|
|
141
|
-
&.mat-raised-button.mat-button-disabled:not([class*="mat-elevation-z"]),
|
|
142
|
-
&.mat-fab.mat-button-disabled {
|
|
143
|
-
color: luxcommon.$dark-disabled-text;
|
|
144
|
-
@include luxelevations.lux-elevation-z0;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
&.mat-raised-button:not([class*="mat-elevation-z"]) {
|
|
148
|
-
@include luxelevations.lux-elevation-z2;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
&.lux-icon-button {
|
|
152
|
-
height: luxcommon.$button-height;
|
|
153
|
-
lux-icon {
|
|
154
|
-
display: inline-block;
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
&.lux-button-rounded {
|
|
159
|
-
height: luxcommon.$button-fav-height;
|
|
160
|
-
width: luxcommon.$button-fav-height;
|
|
161
|
-
|
|
162
|
-
@include luxelevations.lux-elevation-z2;
|
|
163
|
-
|
|
164
|
-
.mat-button-wrapper {
|
|
165
|
-
padding: 0;
|
|
166
|
-
font-size: 15px;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
lux-icon.lux-button-icon-round {
|
|
170
|
-
height: 20px;
|
|
171
|
-
width: 20px;
|
|
172
|
-
line-height: 1;
|
|
173
|
-
i {
|
|
174
|
-
line-height: 1;
|
|
175
|
-
display: inline-block;
|
|
176
|
-
}
|
|
177
|
-
mat-icon.mat-icon.lux-material-icon,
|
|
178
|
-
mat-icon.mat-icon.lux-lx-icon-no-size {
|
|
179
|
-
height: 20px;
|
|
180
|
-
width: 20px;
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
lux-icon.lux-button-icon:not(.lux-button-icon-round) {
|
|
186
|
-
line-height: 1em;
|
|
187
|
-
&.lux-lx-icon {
|
|
188
|
-
height: luxcommon.$button-font-size;
|
|
189
|
-
width: luxcommon.$button-font-size;
|
|
190
|
-
font-size: luxcommon.$button-font-size;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
i {
|
|
194
|
-
line-height: 1;
|
|
195
|
-
font-size: luxcommon.$button-font-size;
|
|
196
|
-
vertical-align: middle;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
mat-icon.mat-icon.lux-material-icon:not(.lux-lx-icon, .lux-lx-icon-no-size) {
|
|
200
|
-
line-height: 1;
|
|
201
|
-
font-size: luxcommon.$button-font-size;
|
|
202
|
-
vertical-align: middle;
|
|
203
|
-
height: unset !important;
|
|
204
|
-
width: unset !important;
|
|
205
|
-
}
|
|
206
|
-
mat-icon.lux-lx-icon-no-size {
|
|
207
|
-
height: luxcommon.$button-font-size;
|
|
208
|
-
width: luxcommon.$button-font-size;
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
/**
|
|
214
|
-
* Theming für LUX-Checkbox
|
|
215
|
-
*/
|
|
216
|
-
lux-checkbox {
|
|
217
|
-
.mat-checkbox-disabled label {
|
|
218
|
-
color: luxcommon.$dark-disabled-text;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.mat-checkbox-checked:not(.mat-checkbox-disabled) label span.mat-checkbox-inner-container {
|
|
222
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
223
|
-
|
|
224
|
-
svg {
|
|
225
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
|
|
230
124
|
/**
|
|
231
125
|
* Theming für LUX-Card
|
|
232
126
|
*/
|
|
@@ -258,115 +152,6 @@ lux-card {
|
|
|
258
152
|
}
|
|
259
153
|
}
|
|
260
154
|
|
|
261
|
-
/**
|
|
262
|
-
* Theming für LUX-Chips
|
|
263
|
-
*/
|
|
264
|
-
|
|
265
|
-
lux-chips {
|
|
266
|
-
min-height: calc(#{luxcommon.$form-control-complete-height} + 20px);
|
|
267
|
-
margin-bottom: 20px;
|
|
268
|
-
|
|
269
|
-
.lux-chips-autocomplete-icon {
|
|
270
|
-
color: var(--lux-theme-primary-500);
|
|
271
|
-
font-size: 24px;
|
|
272
|
-
padding-right: 4px;
|
|
273
|
-
cursor: pointer;
|
|
274
|
-
|
|
275
|
-
&.lux-disabled {
|
|
276
|
-
color: var(--lux-theme-dark-disabled-text);
|
|
277
|
-
cursor: default;
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.lux-chips {
|
|
282
|
-
mat-chip {
|
|
283
|
-
// Löschicon (luxSelected=true)
|
|
284
|
-
&.mat-chip-selected .mat-chip-remove {
|
|
285
|
-
color: luxcommon.$app-data-bg !important;
|
|
286
|
-
opacity: 1 !important;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
// Löschicon (luxSelected=false)
|
|
290
|
-
&:not(.mat-chip-selected) .mat-chip-remove {
|
|
291
|
-
color: luxcommon.$app-data-bg !important;
|
|
292
|
-
opacity: 1 !important;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
&.mat-chip-disabled {
|
|
296
|
-
background-color: luxcommon.$dark-disabled-text !important;
|
|
297
|
-
color: luxcommon.$app-data-bg !important;
|
|
298
|
-
opacity: 1;
|
|
299
|
-
|
|
300
|
-
lux-icon {
|
|
301
|
-
i,
|
|
302
|
-
mat-icon {
|
|
303
|
-
color: luxcommon.$app-data-bg;
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
mat-chip-list {
|
|
309
|
-
& div.mat-chip-list-wrapper {
|
|
310
|
-
margin: 0px 0px 0px -4px;
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
.lux-chips-autocomplete-panel {
|
|
317
|
-
padding: luxcommon.$outline-width;
|
|
318
|
-
margin-top: -20px;
|
|
319
|
-
margin-left: 0;
|
|
320
|
-
margin-right: 0;
|
|
321
|
-
border-radius: 4px;
|
|
322
|
-
|
|
323
|
-
mat-option:not(:last-of-type) {
|
|
324
|
-
margin-bottom: luxcommon.$outline-width;
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
/*
|
|
329
|
-
* Theming for LUX-Datepicker
|
|
330
|
-
*/
|
|
331
|
-
lux-datepicker {
|
|
332
|
-
mat-datepicker-toggle button {
|
|
333
|
-
&:not(.mat-button-disabled) .mat-button-wrapper > svg {
|
|
334
|
-
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
&.mat-button-disabled .mat-button-wrapper > svg {
|
|
338
|
-
color: luxcommon.$dark-disabled-text;
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
/*
|
|
344
|
-
* Theming for LUX-Datetimepicker
|
|
345
|
-
*/
|
|
346
|
-
lux-datetimepicker {
|
|
347
|
-
mat-datepicker-toggle button {
|
|
348
|
-
&:not(.mat-button-disabled) .mat-button-wrapper > svg {
|
|
349
|
-
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
&.mat-button-disabled .mat-button-wrapper > svg {
|
|
353
|
-
color: luxcommon.$dark-disabled-text;
|
|
354
|
-
}
|
|
355
|
-
}
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
.lux-datetime-overlay-content {
|
|
359
|
-
mat-card.mat-card {
|
|
360
|
-
@include luxelevations.lux-elevation-z4();
|
|
361
|
-
|
|
362
|
-
lux-input div.lux-form-control {
|
|
363
|
-
min-height: unset;
|
|
364
|
-
margin: luxcommon.$form-control-buffer;
|
|
365
|
-
text-align: center;
|
|
366
|
-
}
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
|
|
370
155
|
/*
|
|
371
156
|
* Theming for LUX-Dialog
|
|
372
157
|
*/
|
|
@@ -392,7 +177,7 @@ lux-divider {
|
|
|
392
177
|
* Theming for LUX-File-List
|
|
393
178
|
*/
|
|
394
179
|
lux-file-list .lux-file-list {
|
|
395
|
-
margin:
|
|
180
|
+
margin: 0px;
|
|
396
181
|
|
|
397
182
|
.lux-file-list-entry-label,
|
|
398
183
|
.lux-file-list-entry-icon {
|
|
@@ -414,8 +199,7 @@ lux-file-list .lux-file-list {
|
|
|
414
199
|
&.lux-file-list-disabled {
|
|
415
200
|
mat-card-title *,
|
|
416
201
|
mat-card-content,
|
|
417
|
-
span
|
|
418
|
-
i {
|
|
202
|
+
span {
|
|
419
203
|
color: luxcommon.$dark-disabled-text;
|
|
420
204
|
}
|
|
421
205
|
|
|
@@ -555,10 +339,6 @@ lux-file-progress {
|
|
|
555
339
|
border-radius: 8px;
|
|
556
340
|
min-width: 40px;
|
|
557
341
|
min-height: 30px;
|
|
558
|
-
|
|
559
|
-
i {
|
|
560
|
-
font-size: 24px;
|
|
561
|
-
}
|
|
562
342
|
}
|
|
563
343
|
}
|
|
564
344
|
}
|
|
@@ -622,16 +402,9 @@ lux-file-progress {
|
|
|
622
402
|
min-width: 40px;
|
|
623
403
|
min-height: 30px;
|
|
624
404
|
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
.lux-lx-icon {
|
|
629
|
-
height: 24px;
|
|
630
|
-
width: 24px;
|
|
631
|
-
mat-icon.mat-icon.lux-lx-icon-no-size {
|
|
632
|
-
width: 24px;
|
|
633
|
-
height: 24px;
|
|
634
|
-
}
|
|
405
|
+
.lux-button-icon mat-icon.mat-icon.lux-icon {
|
|
406
|
+
width: 24px !important;
|
|
407
|
+
height: 24px !important;
|
|
635
408
|
}
|
|
636
409
|
}
|
|
637
410
|
}
|
|
@@ -666,7 +439,6 @@ lux-file-progress {
|
|
|
666
439
|
min-width: 40px;
|
|
667
440
|
min-height: 40px;
|
|
668
441
|
|
|
669
|
-
i,
|
|
670
442
|
mat-icon {
|
|
671
443
|
font-size: 30px !important;
|
|
672
444
|
}
|
|
@@ -697,87 +469,6 @@ lux-file-progress {
|
|
|
697
469
|
}
|
|
698
470
|
}
|
|
699
471
|
|
|
700
|
-
/*
|
|
701
|
-
* Theming for LUX-Form-Controls
|
|
702
|
-
*/
|
|
703
|
-
.lux-form-control {
|
|
704
|
-
margin: luxcommon.$form-control-margin;
|
|
705
|
-
min-height: luxcommon.$form-control-complete-height;
|
|
706
|
-
|
|
707
|
-
.lux-label,
|
|
708
|
-
mat-hint,
|
|
709
|
-
mat-error {
|
|
710
|
-
color: luxcommon.$dark-secondary-text;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.lux-form-control-container {
|
|
714
|
-
padding: 6px 0 0 0;
|
|
715
|
-
|
|
716
|
-
input,
|
|
717
|
-
textarea {
|
|
718
|
-
&:required {
|
|
719
|
-
@include luxelevations.lux-elevation-z0;
|
|
720
|
-
}
|
|
721
|
-
}
|
|
722
|
-
|
|
723
|
-
&:after {
|
|
724
|
-
border-bottom: 1px solid luxcommon.$form-border-color;
|
|
725
|
-
}
|
|
726
|
-
}
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
.lux-form-control-error {
|
|
730
|
-
.lux-form-control-label {
|
|
731
|
-
> * {
|
|
732
|
-
color: luxpalette.$lux-warn-color !important;
|
|
733
|
-
}
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
.lux-form-control-container {
|
|
737
|
-
$lux-selected-border-color: luxpalette.$lux-warn-color !important;
|
|
738
|
-
&:after {
|
|
739
|
-
// inaktives form-control hat auch eine rote Linie (anstatt schwarz)
|
|
740
|
-
border-bottom: 1px solid luxpalette.$lux-warn-color;
|
|
741
|
-
}
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
.lux-form-control-misc div {
|
|
745
|
-
> * {
|
|
746
|
-
color: luxpalette.$lux-warn-color !important;
|
|
747
|
-
}
|
|
748
|
-
}
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
.lux-form-control-disabled {
|
|
752
|
-
.lux-form-control-container {
|
|
753
|
-
color: luxcommon.$dark-disabled-text !important;
|
|
754
|
-
|
|
755
|
-
&:after {
|
|
756
|
-
border-bottom: 1px dashed luxcommon.$dark-disabled-text;
|
|
757
|
-
}
|
|
758
|
-
}
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
lux-icon.lux-error-icon {
|
|
762
|
-
font-size: 12px;
|
|
763
|
-
max-height: 12px;
|
|
764
|
-
max-width: 12px;
|
|
765
|
-
padding: 0 4px 0 4px;
|
|
766
|
-
|
|
767
|
-
mat-icon {
|
|
768
|
-
padding: 0 !important;
|
|
769
|
-
min-width: 12px;
|
|
770
|
-
max-width: 12px;
|
|
771
|
-
min-height: 12px;
|
|
772
|
-
max-height: 12px;
|
|
773
|
-
color: luxpalette.$lux-warn-color;
|
|
774
|
-
|
|
775
|
-
&:hover {
|
|
776
|
-
cursor: pointer;
|
|
777
|
-
}
|
|
778
|
-
}
|
|
779
|
-
}
|
|
780
|
-
|
|
781
472
|
/*
|
|
782
473
|
* Theming for LUX-Layout-Card-Row
|
|
783
474
|
*/
|
|
@@ -820,7 +511,6 @@ lux-list {
|
|
|
820
511
|
/*
|
|
821
512
|
* Theming for LUX-Lookup-Components
|
|
822
513
|
*/
|
|
823
|
-
lux-lookup-combobox,
|
|
824
514
|
lux-lookup-combobox-ac {
|
|
825
515
|
mat-select {
|
|
826
516
|
&[aria-disabled="true"] .mat-select-arrow {
|
|
@@ -837,30 +527,6 @@ lux-lookup-combobox-ac {
|
|
|
837
527
|
}
|
|
838
528
|
}
|
|
839
529
|
|
|
840
|
-
// Optionen werden im Cdk-Overlay dargestellt und hängen nicht unter der Component selbst.
|
|
841
|
-
.lux-autocomplete-panel,
|
|
842
|
-
.lux-select-panel {
|
|
843
|
-
.mat-option {
|
|
844
|
-
border-left: none;
|
|
845
|
-
|
|
846
|
-
&.invalid {
|
|
847
|
-
border-left: 2px solid luxpalette.$lux-warn-color;
|
|
848
|
-
}
|
|
849
|
-
}
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
/*
|
|
853
|
-
* Eineheitliche Elevation für die Components auf Cdk-Overlay-Pane
|
|
854
|
-
*/
|
|
855
|
-
.cdk-overlay-pane {
|
|
856
|
-
& > .mat-autocomplete-panel:not([class*="mat-elevation-z"]),
|
|
857
|
-
.mat-datepicker-content,
|
|
858
|
-
.mat-select-panel:not([class*="mat-elevation-z"]),
|
|
859
|
-
.mat-menu-panel {
|
|
860
|
-
@include luxelevations.lux-elevation-z4;
|
|
861
|
-
}
|
|
862
|
-
}
|
|
863
|
-
|
|
864
530
|
/*
|
|
865
531
|
* Stylings für für Elemente die im Mat-Menu-Panel im cdk-overlay-container liegen
|
|
866
532
|
*/
|
|
@@ -869,71 +535,18 @@ lux-lookup-combobox-ac {
|
|
|
869
535
|
.lux-user-name-label.mat-menu-item[disabled] {
|
|
870
536
|
color: luxcommon.$dark-primary-text;
|
|
871
537
|
}
|
|
872
|
-
|
|
873
|
-
lux-icon.lux-menu-item-icon {
|
|
874
|
-
width: 30px;
|
|
875
|
-
min-width: 30px;
|
|
876
|
-
max-width: 30px;
|
|
877
|
-
display: inline-grid;
|
|
878
|
-
|
|
879
|
-
mat-icon.mat-icon:not(.lux-lx-icon) {
|
|
880
|
-
font-size: 24px !important;
|
|
881
|
-
}
|
|
882
|
-
&.lux-lx-icon.lux-no-size {
|
|
883
|
-
width: 24px;
|
|
884
|
-
min-width: 24px;
|
|
885
|
-
max-width: 24px;
|
|
886
|
-
height: 24px;
|
|
887
|
-
}
|
|
888
|
-
}
|
|
889
|
-
}
|
|
890
|
-
|
|
891
|
-
/*
|
|
892
|
-
* Theming for LUX-Master-Detail
|
|
893
|
-
*/
|
|
894
|
-
lux-master-detail {
|
|
895
|
-
.lux-detail-container {
|
|
896
|
-
.lux-detail-empty-icon,
|
|
897
|
-
.lux-detail-empty-icon-text {
|
|
898
|
-
color: luxcommon.$dark-primary-text;
|
|
899
|
-
}
|
|
900
|
-
}
|
|
901
|
-
|
|
902
|
-
.lux-master-container.lux-empty-elements-aligned {
|
|
903
|
-
@include luxelevations.lux-elevation-z1;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
lux-list {
|
|
907
|
-
.mat-card:not([class*="mat-elevation-z"]) {
|
|
908
|
-
@include luxelevations.lux-elevation-z0;
|
|
909
|
-
}
|
|
910
|
-
}
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
/*
|
|
914
|
-
* Theming for LUX-Master-Footer
|
|
915
|
-
*/
|
|
916
|
-
lux-master-footer {
|
|
917
|
-
background-color: luxcommon.$app-data-bg;
|
|
918
|
-
@include luxelevations.lux-elevation-z1;
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
/*
|
|
922
|
-
* Theming for LUX-Master-Header
|
|
923
|
-
*/
|
|
924
|
-
lux-master-header {
|
|
925
|
-
background-color: luxcommon.$app-data-bg;
|
|
926
|
-
@include luxelevations.lux-elevation-z1;
|
|
927
538
|
}
|
|
928
539
|
|
|
929
540
|
/*
|
|
930
541
|
* Theming for LUX-Menu
|
|
931
542
|
*/
|
|
932
|
-
.lux-menu-extended
|
|
543
|
+
.lux-menu-extended,
|
|
544
|
+
.lux-menu-trigger {
|
|
933
545
|
> lux-button {
|
|
934
546
|
button {
|
|
935
547
|
padding-left: 8px;
|
|
936
548
|
padding-right: 8px;
|
|
549
|
+
min-width: 36px;
|
|
937
550
|
}
|
|
938
551
|
}
|
|
939
552
|
}
|
|
@@ -943,6 +556,35 @@ lux-master-header {
|
|
|
943
556
|
.lux-menu-item {
|
|
944
557
|
font-size: 16px;
|
|
945
558
|
display: block;
|
|
559
|
+
&.with-badge {
|
|
560
|
+
display: inline-flex;
|
|
561
|
+
align-items: center;
|
|
562
|
+
justify-content: flex-start;
|
|
563
|
+
flex-wrap: nowrap;
|
|
564
|
+
width: 100%;
|
|
565
|
+
max-width: 100%;
|
|
566
|
+
}
|
|
567
|
+
.lux-button-label.with-badge {
|
|
568
|
+
display: inline-block;
|
|
569
|
+
overflow: hidden;
|
|
570
|
+
text-overflow: ellipsis;
|
|
571
|
+
white-space: nowrap;
|
|
572
|
+
}
|
|
573
|
+
.lux-button-badge {
|
|
574
|
+
color: #fff;
|
|
575
|
+
border-radius: 4px;
|
|
576
|
+
padding: 1px 4px;
|
|
577
|
+
font-size: 11px;
|
|
578
|
+
line-height: normal;
|
|
579
|
+
min-width: 15px;
|
|
580
|
+
max-width: 38px;
|
|
581
|
+
display: inline-block;
|
|
582
|
+
overflow: hidden;
|
|
583
|
+
text-overflow: ellipsis;
|
|
584
|
+
white-space: nowrap;
|
|
585
|
+
box-sizing: border-box;
|
|
586
|
+
letter-spacing: 1.25px;
|
|
587
|
+
}
|
|
946
588
|
}
|
|
947
589
|
.lux-menu-item-icon {
|
|
948
590
|
vertical-align: middle;
|
|
@@ -977,7 +619,7 @@ lux-message-box {
|
|
|
977
619
|
.lux-message-container lux-icon:not(.lux-button-icon, .lux-button-icon-round) {
|
|
978
620
|
display: contents;
|
|
979
621
|
|
|
980
|
-
mat-icon.lux-
|
|
622
|
+
mat-icon.lux-icon {
|
|
981
623
|
width: 20px;
|
|
982
624
|
height: 20px;
|
|
983
625
|
}
|
|
@@ -996,7 +638,7 @@ lux-message-box {
|
|
|
996
638
|
snack-bar-container.mat-snack-bar-container {
|
|
997
639
|
@include luxelevations.lux-elevation-z6();
|
|
998
640
|
|
|
999
|
-
mat-icon.mat-icon.lux-
|
|
641
|
+
mat-icon.mat-icon.lux-icon {
|
|
1000
642
|
width: 2em;
|
|
1001
643
|
height: 2em;
|
|
1002
644
|
}
|
|
@@ -1030,75 +672,6 @@ lux-progress {
|
|
|
1030
672
|
}
|
|
1031
673
|
}
|
|
1032
674
|
|
|
1033
|
-
lux-radio {
|
|
1034
|
-
// damit ist der Focus-Indicator rund, wie bei Toggle-Thumb und Chips
|
|
1035
|
-
.mat-radio-container {
|
|
1036
|
-
border-radius: 50%;
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
.mat-radio-checked {
|
|
1040
|
-
label.mat-radio-label .mat-radio-container {
|
|
1041
|
-
span.mat-radio-inner-circle {
|
|
1042
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1043
|
-
}
|
|
1044
|
-
|
|
1045
|
-
span.mat-radio-outer-circle {
|
|
1046
|
-
border-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1047
|
-
}
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
&.mat-radio-disabled label .mat-radio-container {
|
|
1051
|
-
span.mat-radio-inner-circle {
|
|
1052
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
span.mat-radio-outer-circle {
|
|
1056
|
-
border-color: luxcommon.$dark-disabled-text;
|
|
1057
|
-
}
|
|
1058
|
-
}
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
.mat-radio-disabled label.mat-radio-label {
|
|
1062
|
-
.mat-radio-label-content {
|
|
1063
|
-
color: luxcommon.$dark-disabled-text;
|
|
1064
|
-
}
|
|
1065
|
-
|
|
1066
|
-
.mat-radio-container {
|
|
1067
|
-
span.mat-radio-inner-circle {
|
|
1068
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
span.mat-radio-outer-circle {
|
|
1072
|
-
border-color: luxcommon.$dark-disabled-text;
|
|
1073
|
-
}
|
|
1074
|
-
}
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
/*
|
|
1079
|
-
* Theming for LUX-Select
|
|
1080
|
-
*/
|
|
1081
|
-
lux-select {
|
|
1082
|
-
mat-select {
|
|
1083
|
-
&[aria-disabled="true"] .mat-select-arrow {
|
|
1084
|
-
border-width: 7px;
|
|
1085
|
-
margin: 0 2px 0 0;
|
|
1086
|
-
color: luxcommon.$dark-disabled-text;
|
|
1087
|
-
}
|
|
1088
|
-
|
|
1089
|
-
&[aria-disabled="false"] .mat-select-arrow {
|
|
1090
|
-
border-width: 7px;
|
|
1091
|
-
margin: 0 2px 0 0;
|
|
1092
|
-
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1093
|
-
}
|
|
1094
|
-
}
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
// Checkbox wird im Cdk-Overlay dargestellt und hängt nicht unter der Component selbst.
|
|
1098
|
-
.lux-select-panel .mat-pseudo-checkbox-checked {
|
|
1099
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
675
|
/*
|
|
1103
676
|
* Theming for LUX-Side-Nav
|
|
1104
677
|
*/
|
|
@@ -1141,19 +714,6 @@ lux-side-nav {
|
|
|
1141
714
|
background-color: luxcommon.$dark-focused;
|
|
1142
715
|
}
|
|
1143
716
|
|
|
1144
|
-
/*
|
|
1145
|
-
* Theming for LUX-Slider
|
|
1146
|
-
*/
|
|
1147
|
-
lux-slider {
|
|
1148
|
-
.lux-show-thumb-label-always {
|
|
1149
|
-
&.mat-slider-disabled {
|
|
1150
|
-
.mat-slider-thumb-label {
|
|
1151
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
1152
|
-
}
|
|
1153
|
-
}
|
|
1154
|
-
}
|
|
1155
|
-
}
|
|
1156
|
-
|
|
1157
717
|
/*
|
|
1158
718
|
* Theming for LUX-Spinner
|
|
1159
719
|
*/
|
|
@@ -1214,7 +774,6 @@ lux-stepper {
|
|
|
1214
774
|
&.lux-step-header-touched {
|
|
1215
775
|
.lux-stepper-edited-icon,
|
|
1216
776
|
.lux-stepper-normal-icon {
|
|
1217
|
-
i,
|
|
1218
777
|
mat-icon {
|
|
1219
778
|
color: luxcommon.$app-data-bg;
|
|
1220
779
|
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
@@ -1229,7 +788,6 @@ lux-stepper {
|
|
|
1229
788
|
&:not(.lux-step-header-touched) {
|
|
1230
789
|
.lux-stepper-edited-icon,
|
|
1231
790
|
.lux-stepper-normal-icon {
|
|
1232
|
-
i,
|
|
1233
791
|
mat-icon {
|
|
1234
792
|
color: luxcommon.$app-data-bg;
|
|
1235
793
|
background-color: luxcommon.$dark-secondary-text;
|
|
@@ -1284,17 +842,6 @@ lux-table {
|
|
|
1284
842
|
.lux-row-selected {
|
|
1285
843
|
background-color: luxcommon.$lux-selected-bg-color;
|
|
1286
844
|
}
|
|
1287
|
-
|
|
1288
|
-
table td {
|
|
1289
|
-
div.lux-form-control {
|
|
1290
|
-
min-height: luxcommon.$form-control-height-small;
|
|
1291
|
-
|
|
1292
|
-
.lux-form-control-label,
|
|
1293
|
-
.lux-form-control-misc {
|
|
1294
|
-
display: none;
|
|
1295
|
-
}
|
|
1296
|
-
}
|
|
1297
|
-
}
|
|
1298
845
|
}
|
|
1299
846
|
|
|
1300
847
|
/*
|
|
@@ -1351,66 +898,6 @@ lux-tile {
|
|
|
1351
898
|
}
|
|
1352
899
|
}
|
|
1353
900
|
|
|
1354
|
-
/*
|
|
1355
|
-
* Theming for LUX-Toggle
|
|
1356
|
-
*/
|
|
1357
|
-
lux-toggle {
|
|
1358
|
-
.mat-slide-toggle {
|
|
1359
|
-
label {
|
|
1360
|
-
color: luxcommon.$dark-primary-text;
|
|
1361
|
-
font-family: global.$app-font-family;
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
|
-
.mat-slide-toggle-thumb {
|
|
1365
|
-
@include luxelevations.lux-elevation-z1;
|
|
1366
|
-
}
|
|
1367
|
-
|
|
1368
|
-
&.mat-checked {
|
|
1369
|
-
.mat-slide-toggle-bar {
|
|
1370
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 100);
|
|
1371
|
-
}
|
|
1372
|
-
|
|
1373
|
-
.mat-slide-toggle-thumb {
|
|
1374
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1375
|
-
}
|
|
1376
|
-
}
|
|
1377
|
-
|
|
1378
|
-
&:not(.mat-checked) {
|
|
1379
|
-
.mat-slide-toggle-bar {
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
.mat-slide-toggle-thumb {
|
|
1383
|
-
}
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
|
-
&.mat-disabled {
|
|
1387
|
-
label {
|
|
1388
|
-
color: black;
|
|
1389
|
-
}
|
|
1390
|
-
|
|
1391
|
-
&.mat-checked {
|
|
1392
|
-
.mat-slide-toggle-bar {
|
|
1393
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
1394
|
-
}
|
|
1395
|
-
|
|
1396
|
-
.mat-slide-toggle-thumb {
|
|
1397
|
-
background-color: black;
|
|
1398
|
-
}
|
|
1399
|
-
}
|
|
1400
|
-
|
|
1401
|
-
&:not(.mat-checked) {
|
|
1402
|
-
.mat-slide-toggle-bar {
|
|
1403
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
1404
|
-
}
|
|
1405
|
-
|
|
1406
|
-
.mat-slide-toggle-thumb {
|
|
1407
|
-
background-color: black;
|
|
1408
|
-
}
|
|
1409
|
-
}
|
|
1410
|
-
}
|
|
1411
|
-
}
|
|
1412
|
-
}
|
|
1413
|
-
|
|
1414
901
|
/*
|
|
1415
902
|
* Theming for LUX-Tooltip
|
|
1416
903
|
*/
|
|
@@ -1664,10 +1151,6 @@ lux-stepper-large {
|
|
|
1664
1151
|
min-width: 45px;
|
|
1665
1152
|
display: flex;
|
|
1666
1153
|
justify-content: center;
|
|
1667
|
-
|
|
1668
|
-
i {
|
|
1669
|
-
font-size: 25px;
|
|
1670
|
-
}
|
|
1671
1154
|
}
|
|
1672
1155
|
}
|
|
1673
1156
|
}
|