@ihk-gfi/lux-components-theme 14.7.0 → 15.1.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 +5662 -2653
- 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 +5679 -2984
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +41 -84
- 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 +16 -595
- package/src/base/_luxfocus.scss +7 -238
- 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 +25 -14
- package/src/base/components/_luxIcon.scss +41 -0
- package/src/base/components/_luxLinkPlain.scss +1 -4
- package/src/base/components/_luxList.scss +66 -0
- package/src/base/components/_luxMasterDetailAc.scss +83 -25
- package/src/base/components/_luxTextbox.scss +1 -1
- package/src/base/components/_luxTileAc.scss +4 -12
- package/src/green/_custom.scss +45 -316
- package/src/green/_luxcommon.scss +11 -19
- package/src/green/luxtheme.scss +84 -87
- package/src/public/global.scss +6 -6
- 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 -9151
- 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,9 @@
|
|
|
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";
|
|
12
|
+
@use "components/luxList";
|
|
10
13
|
@use "luxcommon";
|
|
11
14
|
@use "luxpalette";
|
|
12
15
|
@use "../public/global";
|
|
@@ -119,128 +122,6 @@ lux-app-header {
|
|
|
119
122
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
120
123
|
}
|
|
121
124
|
|
|
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
|
-
.lux-button-badge {
|
|
213
|
-
color: #fff;
|
|
214
|
-
border-radius: 4px;
|
|
215
|
-
padding: 1px 4px;
|
|
216
|
-
font-size: 11px;
|
|
217
|
-
line-height: normal;
|
|
218
|
-
max-width: 38px;
|
|
219
|
-
display: inline-block;
|
|
220
|
-
overflow: hidden;
|
|
221
|
-
text-overflow: ellipsis;
|
|
222
|
-
white-space: nowrap;
|
|
223
|
-
box-sizing: border-box;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
/**
|
|
228
|
-
* Theming für LUX-Checkbox
|
|
229
|
-
*/
|
|
230
|
-
lux-checkbox {
|
|
231
|
-
.mat-checkbox-disabled label {
|
|
232
|
-
color: luxcommon.$dark-disabled-text;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.mat-checkbox-checked:not(.mat-checkbox-disabled) label span.mat-checkbox-inner-container {
|
|
236
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
237
|
-
|
|
238
|
-
svg {
|
|
239
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
|
|
244
125
|
/**
|
|
245
126
|
* Theming für LUX-Card
|
|
246
127
|
*/
|
|
@@ -272,115 +153,6 @@ lux-card {
|
|
|
272
153
|
}
|
|
273
154
|
}
|
|
274
155
|
|
|
275
|
-
/**
|
|
276
|
-
* Theming für LUX-Chips
|
|
277
|
-
*/
|
|
278
|
-
|
|
279
|
-
lux-chips {
|
|
280
|
-
min-height: calc(#{luxcommon.$form-control-complete-height} + 20px);
|
|
281
|
-
margin-bottom: 20px;
|
|
282
|
-
|
|
283
|
-
.lux-chips-autocomplete-icon {
|
|
284
|
-
color: var(--lux-theme-primary-500);
|
|
285
|
-
font-size: 24px;
|
|
286
|
-
padding-right: 4px;
|
|
287
|
-
cursor: pointer;
|
|
288
|
-
|
|
289
|
-
&.lux-disabled {
|
|
290
|
-
color: var(--lux-theme-dark-disabled-text);
|
|
291
|
-
cursor: default;
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.lux-chips {
|
|
296
|
-
mat-chip {
|
|
297
|
-
// Löschicon (luxSelected=true)
|
|
298
|
-
&.mat-chip-selected .mat-chip-remove {
|
|
299
|
-
color: luxcommon.$app-data-bg !important;
|
|
300
|
-
opacity: 1 !important;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
// Löschicon (luxSelected=false)
|
|
304
|
-
&:not(.mat-chip-selected) .mat-chip-remove {
|
|
305
|
-
color: luxcommon.$app-data-bg !important;
|
|
306
|
-
opacity: 1 !important;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
&.mat-chip-disabled {
|
|
310
|
-
background-color: luxcommon.$dark-disabled-text !important;
|
|
311
|
-
color: luxcommon.$app-data-bg !important;
|
|
312
|
-
opacity: 1;
|
|
313
|
-
|
|
314
|
-
lux-icon {
|
|
315
|
-
i,
|
|
316
|
-
mat-icon {
|
|
317
|
-
color: luxcommon.$app-data-bg;
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
mat-chip-list {
|
|
323
|
-
& div.mat-chip-list-wrapper {
|
|
324
|
-
margin: 0px 0px 0px -4px;
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
.lux-chips-autocomplete-panel {
|
|
331
|
-
padding: luxcommon.$outline-width;
|
|
332
|
-
margin-top: -20px;
|
|
333
|
-
margin-left: 0;
|
|
334
|
-
margin-right: 0;
|
|
335
|
-
border-radius: 4px;
|
|
336
|
-
|
|
337
|
-
mat-option:not(:last-of-type) {
|
|
338
|
-
margin-bottom: luxcommon.$outline-width;
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
/*
|
|
343
|
-
* Theming for LUX-Datepicker
|
|
344
|
-
*/
|
|
345
|
-
lux-datepicker {
|
|
346
|
-
mat-datepicker-toggle button {
|
|
347
|
-
&:not(.mat-button-disabled) .mat-button-wrapper > svg {
|
|
348
|
-
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
&.mat-button-disabled .mat-button-wrapper > svg {
|
|
352
|
-
color: luxcommon.$dark-disabled-text;
|
|
353
|
-
}
|
|
354
|
-
}
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
/*
|
|
358
|
-
* Theming for LUX-Datetimepicker
|
|
359
|
-
*/
|
|
360
|
-
lux-datetimepicker {
|
|
361
|
-
mat-datepicker-toggle button {
|
|
362
|
-
&:not(.mat-button-disabled) .mat-button-wrapper > svg {
|
|
363
|
-
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
&.mat-button-disabled .mat-button-wrapper > svg {
|
|
367
|
-
color: luxcommon.$dark-disabled-text;
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.lux-datetime-overlay-content {
|
|
373
|
-
mat-card.mat-card {
|
|
374
|
-
@include luxelevations.lux-elevation-z4();
|
|
375
|
-
|
|
376
|
-
lux-input div.lux-form-control {
|
|
377
|
-
min-height: unset;
|
|
378
|
-
margin: luxcommon.$form-control-buffer;
|
|
379
|
-
text-align: center;
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
}
|
|
383
|
-
|
|
384
156
|
/*
|
|
385
157
|
* Theming for LUX-Dialog
|
|
386
158
|
*/
|
|
@@ -406,7 +178,7 @@ lux-divider {
|
|
|
406
178
|
* Theming for LUX-File-List
|
|
407
179
|
*/
|
|
408
180
|
lux-file-list .lux-file-list {
|
|
409
|
-
margin:
|
|
181
|
+
margin: 0px;
|
|
410
182
|
|
|
411
183
|
.lux-file-list-entry-label,
|
|
412
184
|
.lux-file-list-entry-icon {
|
|
@@ -428,8 +200,7 @@ lux-file-list .lux-file-list {
|
|
|
428
200
|
&.lux-file-list-disabled {
|
|
429
201
|
mat-card-title *,
|
|
430
202
|
mat-card-content,
|
|
431
|
-
span
|
|
432
|
-
i {
|
|
203
|
+
span {
|
|
433
204
|
color: luxcommon.$dark-disabled-text;
|
|
434
205
|
}
|
|
435
206
|
|
|
@@ -569,10 +340,6 @@ lux-file-progress {
|
|
|
569
340
|
border-radius: 8px;
|
|
570
341
|
min-width: 40px;
|
|
571
342
|
min-height: 30px;
|
|
572
|
-
|
|
573
|
-
i {
|
|
574
|
-
font-size: 24px;
|
|
575
|
-
}
|
|
576
343
|
}
|
|
577
344
|
}
|
|
578
345
|
}
|
|
@@ -636,16 +403,9 @@ lux-file-progress {
|
|
|
636
403
|
min-width: 40px;
|
|
637
404
|
min-height: 30px;
|
|
638
405
|
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
.lux-lx-icon {
|
|
643
|
-
height: 24px;
|
|
644
|
-
width: 24px;
|
|
645
|
-
mat-icon.mat-icon.lux-lx-icon-no-size {
|
|
646
|
-
width: 24px;
|
|
647
|
-
height: 24px;
|
|
648
|
-
}
|
|
406
|
+
.lux-button-icon mat-icon.mat-icon.lux-icon {
|
|
407
|
+
width: 24px !important;
|
|
408
|
+
height: 24px !important;
|
|
649
409
|
}
|
|
650
410
|
}
|
|
651
411
|
}
|
|
@@ -680,7 +440,6 @@ lux-file-progress {
|
|
|
680
440
|
min-width: 40px;
|
|
681
441
|
min-height: 40px;
|
|
682
442
|
|
|
683
|
-
i,
|
|
684
443
|
mat-icon {
|
|
685
444
|
font-size: 30px !important;
|
|
686
445
|
}
|
|
@@ -711,87 +470,6 @@ lux-file-progress {
|
|
|
711
470
|
}
|
|
712
471
|
}
|
|
713
472
|
|
|
714
|
-
/*
|
|
715
|
-
* Theming for LUX-Form-Controls
|
|
716
|
-
*/
|
|
717
|
-
.lux-form-control {
|
|
718
|
-
margin: luxcommon.$form-control-margin;
|
|
719
|
-
min-height: luxcommon.$form-control-complete-height;
|
|
720
|
-
|
|
721
|
-
.lux-label,
|
|
722
|
-
mat-hint,
|
|
723
|
-
mat-error {
|
|
724
|
-
color: luxcommon.$dark-secondary-text;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
.lux-form-control-container {
|
|
728
|
-
padding: 6px 0 0 0;
|
|
729
|
-
|
|
730
|
-
input,
|
|
731
|
-
textarea {
|
|
732
|
-
&:required {
|
|
733
|
-
@include luxelevations.lux-elevation-z0;
|
|
734
|
-
}
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
&:after {
|
|
738
|
-
border-bottom: 1px solid luxcommon.$form-border-color;
|
|
739
|
-
}
|
|
740
|
-
}
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
.lux-form-control-error {
|
|
744
|
-
.lux-form-control-label {
|
|
745
|
-
> * {
|
|
746
|
-
color: luxpalette.$lux-warn-color !important;
|
|
747
|
-
}
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
.lux-form-control-container {
|
|
751
|
-
$lux-selected-border-color: luxpalette.$lux-warn-color !important;
|
|
752
|
-
&:after {
|
|
753
|
-
// inaktives form-control hat auch eine rote Linie (anstatt schwarz)
|
|
754
|
-
border-bottom: 1px solid luxpalette.$lux-warn-color;
|
|
755
|
-
}
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
.lux-form-control-misc div {
|
|
759
|
-
> * {
|
|
760
|
-
color: luxpalette.$lux-warn-color !important;
|
|
761
|
-
}
|
|
762
|
-
}
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
.lux-form-control-disabled {
|
|
766
|
-
.lux-form-control-container {
|
|
767
|
-
color: luxcommon.$dark-disabled-text !important;
|
|
768
|
-
|
|
769
|
-
&:after {
|
|
770
|
-
border-bottom: 1px dashed luxcommon.$dark-disabled-text;
|
|
771
|
-
}
|
|
772
|
-
}
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
lux-icon.lux-error-icon {
|
|
776
|
-
font-size: 12px;
|
|
777
|
-
max-height: 12px;
|
|
778
|
-
max-width: 12px;
|
|
779
|
-
padding: 0 4px 0 4px;
|
|
780
|
-
|
|
781
|
-
mat-icon {
|
|
782
|
-
padding: 0 !important;
|
|
783
|
-
min-width: 12px;
|
|
784
|
-
max-width: 12px;
|
|
785
|
-
min-height: 12px;
|
|
786
|
-
max-height: 12px;
|
|
787
|
-
color: luxpalette.$lux-warn-color;
|
|
788
|
-
|
|
789
|
-
&:hover {
|
|
790
|
-
cursor: pointer;
|
|
791
|
-
}
|
|
792
|
-
}
|
|
793
|
-
}
|
|
794
|
-
|
|
795
473
|
/*
|
|
796
474
|
* Theming for LUX-Layout-Card-Row
|
|
797
475
|
*/
|
|
@@ -810,31 +488,9 @@ lux-layout-form-row {
|
|
|
810
488
|
}
|
|
811
489
|
}
|
|
812
490
|
|
|
813
|
-
/*
|
|
814
|
-
* Theming for LUX-List
|
|
815
|
-
*/
|
|
816
|
-
lux-list {
|
|
817
|
-
.lux-list-empty-icon,
|
|
818
|
-
.lux-list-empty-icon-text {
|
|
819
|
-
color: luxcommon.$dark-primary-text;
|
|
820
|
-
}
|
|
821
|
-
.mat-card:not([class*="mat-elevation-z"]) {
|
|
822
|
-
@include luxelevations.lux-elevation-z2;
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
lux-list-item lux-card mat-card {
|
|
826
|
-
margin: luxcommon.$outline-width;
|
|
827
|
-
}
|
|
828
|
-
|
|
829
|
-
.mat-card-content.menu-item-content {
|
|
830
|
-
margin-bottom: 0;
|
|
831
|
-
}
|
|
832
|
-
}
|
|
833
|
-
|
|
834
491
|
/*
|
|
835
492
|
* Theming for LUX-Lookup-Components
|
|
836
493
|
*/
|
|
837
|
-
lux-lookup-combobox,
|
|
838
494
|
lux-lookup-combobox-ac {
|
|
839
495
|
mat-select {
|
|
840
496
|
&[aria-disabled="true"] .mat-select-arrow {
|
|
@@ -851,30 +507,6 @@ lux-lookup-combobox-ac {
|
|
|
851
507
|
}
|
|
852
508
|
}
|
|
853
509
|
|
|
854
|
-
// Optionen werden im Cdk-Overlay dargestellt und hängen nicht unter der Component selbst.
|
|
855
|
-
.lux-autocomplete-panel,
|
|
856
|
-
.lux-select-panel {
|
|
857
|
-
.mat-option {
|
|
858
|
-
border-left: none;
|
|
859
|
-
|
|
860
|
-
&.invalid {
|
|
861
|
-
border-left: 2px solid luxpalette.$lux-warn-color;
|
|
862
|
-
}
|
|
863
|
-
}
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
/*
|
|
867
|
-
* Eineheitliche Elevation für die Components auf Cdk-Overlay-Pane
|
|
868
|
-
*/
|
|
869
|
-
.cdk-overlay-pane {
|
|
870
|
-
& > .mat-autocomplete-panel:not([class*="mat-elevation-z"]),
|
|
871
|
-
.mat-datepicker-content,
|
|
872
|
-
.mat-select-panel:not([class*="mat-elevation-z"]),
|
|
873
|
-
.mat-menu-panel {
|
|
874
|
-
@include luxelevations.lux-elevation-z4;
|
|
875
|
-
}
|
|
876
|
-
}
|
|
877
|
-
|
|
878
510
|
/*
|
|
879
511
|
* Stylings für für Elemente die im Mat-Menu-Panel im cdk-overlay-container liegen
|
|
880
512
|
*/
|
|
@@ -883,71 +515,18 @@ lux-lookup-combobox-ac {
|
|
|
883
515
|
.lux-user-name-label.mat-menu-item[disabled] {
|
|
884
516
|
color: luxcommon.$dark-primary-text;
|
|
885
517
|
}
|
|
886
|
-
|
|
887
|
-
lux-icon.lux-menu-item-icon {
|
|
888
|
-
width: 30px;
|
|
889
|
-
min-width: 30px;
|
|
890
|
-
max-width: 30px;
|
|
891
|
-
display: inline-grid;
|
|
892
|
-
|
|
893
|
-
mat-icon.mat-icon:not(.lux-lx-icon) {
|
|
894
|
-
font-size: 24px !important;
|
|
895
|
-
}
|
|
896
|
-
&.lux-lx-icon.lux-no-size {
|
|
897
|
-
width: 24px;
|
|
898
|
-
min-width: 24px;
|
|
899
|
-
max-width: 24px;
|
|
900
|
-
height: 24px;
|
|
901
|
-
}
|
|
902
|
-
}
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
/*
|
|
906
|
-
* Theming for LUX-Master-Detail
|
|
907
|
-
*/
|
|
908
|
-
lux-master-detail {
|
|
909
|
-
.lux-detail-container {
|
|
910
|
-
.lux-detail-empty-icon,
|
|
911
|
-
.lux-detail-empty-icon-text {
|
|
912
|
-
color: luxcommon.$dark-primary-text;
|
|
913
|
-
}
|
|
914
|
-
}
|
|
915
|
-
|
|
916
|
-
.lux-master-container.lux-empty-elements-aligned {
|
|
917
|
-
@include luxelevations.lux-elevation-z1;
|
|
918
|
-
}
|
|
919
|
-
|
|
920
|
-
lux-list {
|
|
921
|
-
.mat-card:not([class*="mat-elevation-z"]) {
|
|
922
|
-
@include luxelevations.lux-elevation-z0;
|
|
923
|
-
}
|
|
924
|
-
}
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
/*
|
|
928
|
-
* Theming for LUX-Master-Footer
|
|
929
|
-
*/
|
|
930
|
-
lux-master-footer {
|
|
931
|
-
background-color: luxcommon.$app-data-bg;
|
|
932
|
-
@include luxelevations.lux-elevation-z1;
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
/*
|
|
936
|
-
* Theming for LUX-Master-Header
|
|
937
|
-
*/
|
|
938
|
-
lux-master-header {
|
|
939
|
-
background-color: luxcommon.$app-data-bg;
|
|
940
|
-
@include luxelevations.lux-elevation-z1;
|
|
941
518
|
}
|
|
942
519
|
|
|
943
520
|
/*
|
|
944
521
|
* Theming for LUX-Menu
|
|
945
522
|
*/
|
|
946
|
-
.lux-menu-extended
|
|
523
|
+
.lux-menu-extended,
|
|
524
|
+
.lux-menu-trigger {
|
|
947
525
|
> lux-button {
|
|
948
526
|
button {
|
|
949
527
|
padding-left: 8px;
|
|
950
528
|
padding-right: 8px;
|
|
529
|
+
min-width: 36px;
|
|
951
530
|
}
|
|
952
531
|
}
|
|
953
532
|
}
|
|
@@ -1020,7 +599,7 @@ lux-message-box {
|
|
|
1020
599
|
.lux-message-container lux-icon:not(.lux-button-icon, .lux-button-icon-round) {
|
|
1021
600
|
display: contents;
|
|
1022
601
|
|
|
1023
|
-
mat-icon.lux-
|
|
602
|
+
mat-icon.lux-icon {
|
|
1024
603
|
width: 20px;
|
|
1025
604
|
height: 20px;
|
|
1026
605
|
}
|
|
@@ -1039,7 +618,7 @@ lux-message-box {
|
|
|
1039
618
|
snack-bar-container.mat-snack-bar-container {
|
|
1040
619
|
@include luxelevations.lux-elevation-z6();
|
|
1041
620
|
|
|
1042
|
-
mat-icon.mat-icon.lux-
|
|
621
|
+
mat-icon.mat-icon.lux-icon {
|
|
1043
622
|
width: 2em;
|
|
1044
623
|
height: 2em;
|
|
1045
624
|
}
|
|
@@ -1073,75 +652,6 @@ lux-progress {
|
|
|
1073
652
|
}
|
|
1074
653
|
}
|
|
1075
654
|
|
|
1076
|
-
lux-radio {
|
|
1077
|
-
// damit ist der Focus-Indicator rund, wie bei Toggle-Thumb und Chips
|
|
1078
|
-
.mat-radio-container {
|
|
1079
|
-
border-radius: 50%;
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
.mat-radio-checked {
|
|
1083
|
-
label.mat-radio-label .mat-radio-container {
|
|
1084
|
-
span.mat-radio-inner-circle {
|
|
1085
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1086
|
-
}
|
|
1087
|
-
|
|
1088
|
-
span.mat-radio-outer-circle {
|
|
1089
|
-
border-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1090
|
-
}
|
|
1091
|
-
}
|
|
1092
|
-
|
|
1093
|
-
&.mat-radio-disabled label .mat-radio-container {
|
|
1094
|
-
span.mat-radio-inner-circle {
|
|
1095
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
span.mat-radio-outer-circle {
|
|
1099
|
-
border-color: luxcommon.$dark-disabled-text;
|
|
1100
|
-
}
|
|
1101
|
-
}
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
.mat-radio-disabled label.mat-radio-label {
|
|
1105
|
-
.mat-radio-label-content {
|
|
1106
|
-
color: luxcommon.$dark-disabled-text;
|
|
1107
|
-
}
|
|
1108
|
-
|
|
1109
|
-
.mat-radio-container {
|
|
1110
|
-
span.mat-radio-inner-circle {
|
|
1111
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
1112
|
-
}
|
|
1113
|
-
|
|
1114
|
-
span.mat-radio-outer-circle {
|
|
1115
|
-
border-color: luxcommon.$dark-disabled-text;
|
|
1116
|
-
}
|
|
1117
|
-
}
|
|
1118
|
-
}
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
/*
|
|
1122
|
-
* Theming for LUX-Select
|
|
1123
|
-
*/
|
|
1124
|
-
lux-select {
|
|
1125
|
-
mat-select {
|
|
1126
|
-
&[aria-disabled="true"] .mat-select-arrow {
|
|
1127
|
-
border-width: 7px;
|
|
1128
|
-
margin: 0 2px 0 0;
|
|
1129
|
-
color: luxcommon.$dark-disabled-text;
|
|
1130
|
-
}
|
|
1131
|
-
|
|
1132
|
-
&[aria-disabled="false"] .mat-select-arrow {
|
|
1133
|
-
border-width: 7px;
|
|
1134
|
-
margin: 0 2px 0 0;
|
|
1135
|
-
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1136
|
-
}
|
|
1137
|
-
}
|
|
1138
|
-
}
|
|
1139
|
-
|
|
1140
|
-
// Checkbox wird im Cdk-Overlay dargestellt und hängt nicht unter der Component selbst.
|
|
1141
|
-
.lux-select-panel .mat-pseudo-checkbox-checked {
|
|
1142
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1143
|
-
}
|
|
1144
|
-
|
|
1145
655
|
/*
|
|
1146
656
|
* Theming for LUX-Side-Nav
|
|
1147
657
|
*/
|
|
@@ -1184,19 +694,6 @@ lux-side-nav {
|
|
|
1184
694
|
background-color: luxcommon.$dark-focused;
|
|
1185
695
|
}
|
|
1186
696
|
|
|
1187
|
-
/*
|
|
1188
|
-
* Theming for LUX-Slider
|
|
1189
|
-
*/
|
|
1190
|
-
lux-slider {
|
|
1191
|
-
.lux-show-thumb-label-always {
|
|
1192
|
-
&.mat-slider-disabled {
|
|
1193
|
-
.mat-slider-thumb-label {
|
|
1194
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
1195
|
-
}
|
|
1196
|
-
}
|
|
1197
|
-
}
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
697
|
/*
|
|
1201
698
|
* Theming for LUX-Spinner
|
|
1202
699
|
*/
|
|
@@ -1257,7 +754,6 @@ lux-stepper {
|
|
|
1257
754
|
&.lux-step-header-touched {
|
|
1258
755
|
.lux-stepper-edited-icon,
|
|
1259
756
|
.lux-stepper-normal-icon {
|
|
1260
|
-
i,
|
|
1261
757
|
mat-icon {
|
|
1262
758
|
color: luxcommon.$app-data-bg;
|
|
1263
759
|
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
@@ -1272,7 +768,6 @@ lux-stepper {
|
|
|
1272
768
|
&:not(.lux-step-header-touched) {
|
|
1273
769
|
.lux-stepper-edited-icon,
|
|
1274
770
|
.lux-stepper-normal-icon {
|
|
1275
|
-
i,
|
|
1276
771
|
mat-icon {
|
|
1277
772
|
color: luxcommon.$app-data-bg;
|
|
1278
773
|
background-color: luxcommon.$dark-secondary-text;
|
|
@@ -1322,22 +817,12 @@ lux-stepper {
|
|
|
1322
817
|
* Theming for LUX-Table
|
|
1323
818
|
*/
|
|
1324
819
|
lux-table {
|
|
1325
|
-
|
|
1326
|
-
|
|
820
|
+
table.mat-table {
|
|
821
|
+
font-family: luxcommon.$app-font-family;
|
|
822
|
+
}
|
|
1327
823
|
.lux-row-selected {
|
|
1328
824
|
background-color: luxcommon.$lux-selected-bg-color;
|
|
1329
825
|
}
|
|
1330
|
-
|
|
1331
|
-
table td {
|
|
1332
|
-
div.lux-form-control {
|
|
1333
|
-
min-height: luxcommon.$form-control-height-small;
|
|
1334
|
-
|
|
1335
|
-
.lux-form-control-label,
|
|
1336
|
-
.lux-form-control-misc {
|
|
1337
|
-
display: none;
|
|
1338
|
-
}
|
|
1339
|
-
}
|
|
1340
|
-
}
|
|
1341
826
|
}
|
|
1342
827
|
|
|
1343
828
|
/*
|
|
@@ -1394,66 +879,6 @@ lux-tile {
|
|
|
1394
879
|
}
|
|
1395
880
|
}
|
|
1396
881
|
|
|
1397
|
-
/*
|
|
1398
|
-
* Theming for LUX-Toggle
|
|
1399
|
-
*/
|
|
1400
|
-
lux-toggle {
|
|
1401
|
-
.mat-slide-toggle {
|
|
1402
|
-
label {
|
|
1403
|
-
color: luxcommon.$dark-primary-text;
|
|
1404
|
-
font-family: global.$app-font-family;
|
|
1405
|
-
}
|
|
1406
|
-
|
|
1407
|
-
.mat-slide-toggle-thumb {
|
|
1408
|
-
@include luxelevations.lux-elevation-z1;
|
|
1409
|
-
}
|
|
1410
|
-
|
|
1411
|
-
&.mat-checked {
|
|
1412
|
-
.mat-slide-toggle-bar {
|
|
1413
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 100);
|
|
1414
|
-
}
|
|
1415
|
-
|
|
1416
|
-
.mat-slide-toggle-thumb {
|
|
1417
|
-
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1418
|
-
}
|
|
1419
|
-
}
|
|
1420
|
-
|
|
1421
|
-
&:not(.mat-checked) {
|
|
1422
|
-
.mat-slide-toggle-bar {
|
|
1423
|
-
}
|
|
1424
|
-
|
|
1425
|
-
.mat-slide-toggle-thumb {
|
|
1426
|
-
}
|
|
1427
|
-
}
|
|
1428
|
-
|
|
1429
|
-
&.mat-disabled {
|
|
1430
|
-
label {
|
|
1431
|
-
color: black;
|
|
1432
|
-
}
|
|
1433
|
-
|
|
1434
|
-
&.mat-checked {
|
|
1435
|
-
.mat-slide-toggle-bar {
|
|
1436
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
1437
|
-
}
|
|
1438
|
-
|
|
1439
|
-
.mat-slide-toggle-thumb {
|
|
1440
|
-
background-color: black;
|
|
1441
|
-
}
|
|
1442
|
-
}
|
|
1443
|
-
|
|
1444
|
-
&:not(.mat-checked) {
|
|
1445
|
-
.mat-slide-toggle-bar {
|
|
1446
|
-
background-color: luxcommon.$dark-disabled-text;
|
|
1447
|
-
}
|
|
1448
|
-
|
|
1449
|
-
.mat-slide-toggle-thumb {
|
|
1450
|
-
background-color: black;
|
|
1451
|
-
}
|
|
1452
|
-
}
|
|
1453
|
-
}
|
|
1454
|
-
}
|
|
1455
|
-
}
|
|
1456
|
-
|
|
1457
882
|
/*
|
|
1458
883
|
* Theming for LUX-Tooltip
|
|
1459
884
|
*/
|
|
@@ -1707,10 +1132,6 @@ lux-stepper-large {
|
|
|
1707
1132
|
min-width: 45px;
|
|
1708
1133
|
display: flex;
|
|
1709
1134
|
justify-content: center;
|
|
1710
|
-
|
|
1711
|
-
i {
|
|
1712
|
-
font-size: 25px;
|
|
1713
|
-
}
|
|
1714
1135
|
}
|
|
1715
1136
|
}
|
|
1716
1137
|
}
|