@ihk-gfi/lux-components-theme 14.7.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.
Files changed (37) hide show
  1. package/README.md +13 -18
  2. package/package.json +6 -7
  3. package/prebuilt-themes/luxtheme-authentic-min.css +1 -1
  4. package/prebuilt-themes/luxtheme-authentic-min.css.map +1 -1
  5. package/prebuilt-themes/luxtheme-authentic.css +5524 -2566
  6. package/prebuilt-themes/luxtheme-authentic.css.map +1 -1
  7. package/prebuilt-themes/luxtheme-green-min.css +1 -1
  8. package/prebuilt-themes/luxtheme-green-min.css.map +1 -1
  9. package/prebuilt-themes/luxtheme-green.css +5553 -2922
  10. package/prebuilt-themes/luxtheme-green.css.map +1 -1
  11. package/src/authentic/_custom.scss +40 -76
  12. package/src/authentic/_luxcommon.scss +14 -17
  13. package/src/authentic/luxtheme.scss +78 -86
  14. package/src/base/_luxcommon.scss +0 -8
  15. package/src/base/_luxcomponents.scss +12 -572
  16. package/src/base/_luxfocus.scss +7 -205
  17. package/src/base/_luxstyles.scss +16 -15
  18. package/src/base/_luxtheme.scss +13 -1
  19. package/src/base/components/_luxAppHeaderAc.scss +3 -2
  20. package/src/base/components/_luxButton.scss +143 -0
  21. package/src/base/components/_luxFormControlWrapper.scss +9 -13
  22. package/src/base/components/_luxFormControlsAuthentic.scss +19 -14
  23. package/src/base/components/_luxIcon.scss +41 -0
  24. package/src/base/components/_luxLinkPlain.scss +1 -4
  25. package/src/base/components/_luxTextbox.scss +1 -1
  26. package/src/base/components/_luxTileAc.scss +4 -12
  27. package/src/green/_custom.scss +37 -314
  28. package/src/green/_luxcommon.scss +11 -19
  29. package/src/green/luxtheme.scss +84 -87
  30. package/prebuilt-themes/luxtheme-blue-min.css +0 -1
  31. package/prebuilt-themes/luxtheme-blue-min.css.map +0 -1
  32. package/prebuilt-themes/luxtheme-blue.css +0 -9151
  33. package/prebuilt-themes/luxtheme-blue.css.map +0 -1
  34. package/src/blue/_custom.scss +0 -120
  35. package/src/blue/_luxcommon.scss +0 -101
  36. package/src/blue/_luxpalette.scss +0 -106
  37. 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,128 +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
- .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
124
  /**
245
125
  * Theming für LUX-Card
246
126
  */
@@ -272,115 +152,6 @@ lux-card {
272
152
  }
273
153
  }
274
154
 
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
155
  /*
385
156
  * Theming for LUX-Dialog
386
157
  */
@@ -406,7 +177,7 @@ lux-divider {
406
177
  * Theming for LUX-File-List
407
178
  */
408
179
  lux-file-list .lux-file-list {
409
- margin: luxcommon.$form-control-margin;
180
+ margin: 0px;
410
181
 
411
182
  .lux-file-list-entry-label,
412
183
  .lux-file-list-entry-icon {
@@ -428,8 +199,7 @@ lux-file-list .lux-file-list {
428
199
  &.lux-file-list-disabled {
429
200
  mat-card-title *,
430
201
  mat-card-content,
431
- span,
432
- i {
202
+ span {
433
203
  color: luxcommon.$dark-disabled-text;
434
204
  }
435
205
 
@@ -569,10 +339,6 @@ lux-file-progress {
569
339
  border-radius: 8px;
570
340
  min-width: 40px;
571
341
  min-height: 30px;
572
-
573
- i {
574
- font-size: 24px;
575
- }
576
342
  }
577
343
  }
578
344
  }
@@ -636,16 +402,9 @@ lux-file-progress {
636
402
  min-width: 40px;
637
403
  min-height: 30px;
638
404
 
639
- i {
640
- font-size: 24px;
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
- }
405
+ .lux-button-icon mat-icon.mat-icon.lux-icon {
406
+ width: 24px !important;
407
+ height: 24px !important;
649
408
  }
650
409
  }
651
410
  }
@@ -680,7 +439,6 @@ lux-file-progress {
680
439
  min-width: 40px;
681
440
  min-height: 40px;
682
441
 
683
- i,
684
442
  mat-icon {
685
443
  font-size: 30px !important;
686
444
  }
@@ -711,87 +469,6 @@ lux-file-progress {
711
469
  }
712
470
  }
713
471
 
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
472
  /*
796
473
  * Theming for LUX-Layout-Card-Row
797
474
  */
@@ -834,7 +511,6 @@ lux-list {
834
511
  /*
835
512
  * Theming for LUX-Lookup-Components
836
513
  */
837
- lux-lookup-combobox,
838
514
  lux-lookup-combobox-ac {
839
515
  mat-select {
840
516
  &[aria-disabled="true"] .mat-select-arrow {
@@ -851,30 +527,6 @@ lux-lookup-combobox-ac {
851
527
  }
852
528
  }
853
529
 
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
530
  /*
879
531
  * Stylings für für Elemente die im Mat-Menu-Panel im cdk-overlay-container liegen
880
532
  */
@@ -883,71 +535,18 @@ lux-lookup-combobox-ac {
883
535
  .lux-user-name-label.mat-menu-item[disabled] {
884
536
  color: luxcommon.$dark-primary-text;
885
537
  }
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
538
  }
942
539
 
943
540
  /*
944
541
  * Theming for LUX-Menu
945
542
  */
946
- .lux-menu-extended {
543
+ .lux-menu-extended,
544
+ .lux-menu-trigger {
947
545
  > lux-button {
948
546
  button {
949
547
  padding-left: 8px;
950
548
  padding-right: 8px;
549
+ min-width: 36px;
951
550
  }
952
551
  }
953
552
  }
@@ -1020,7 +619,7 @@ lux-message-box {
1020
619
  .lux-message-container lux-icon:not(.lux-button-icon, .lux-button-icon-round) {
1021
620
  display: contents;
1022
621
 
1023
- mat-icon.lux-lx-icon-no-size {
622
+ mat-icon.lux-icon {
1024
623
  width: 20px;
1025
624
  height: 20px;
1026
625
  }
@@ -1039,7 +638,7 @@ lux-message-box {
1039
638
  snack-bar-container.mat-snack-bar-container {
1040
639
  @include luxelevations.lux-elevation-z6();
1041
640
 
1042
- mat-icon.mat-icon.lux-lx-icon-no-size {
641
+ mat-icon.mat-icon.lux-icon {
1043
642
  width: 2em;
1044
643
  height: 2em;
1045
644
  }
@@ -1073,75 +672,6 @@ lux-progress {
1073
672
  }
1074
673
  }
1075
674
 
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
675
  /*
1146
676
  * Theming for LUX-Side-Nav
1147
677
  */
@@ -1184,19 +714,6 @@ lux-side-nav {
1184
714
  background-color: luxcommon.$dark-focused;
1185
715
  }
1186
716
 
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
717
  /*
1201
718
  * Theming for LUX-Spinner
1202
719
  */
@@ -1257,7 +774,6 @@ lux-stepper {
1257
774
  &.lux-step-header-touched {
1258
775
  .lux-stepper-edited-icon,
1259
776
  .lux-stepper-normal-icon {
1260
- i,
1261
777
  mat-icon {
1262
778
  color: luxcommon.$app-data-bg;
1263
779
  background-color: map.get(luxpalette.$lux-palette_primary, 500);
@@ -1272,7 +788,6 @@ lux-stepper {
1272
788
  &:not(.lux-step-header-touched) {
1273
789
  .lux-stepper-edited-icon,
1274
790
  .lux-stepper-normal-icon {
1275
- i,
1276
791
  mat-icon {
1277
792
  color: luxcommon.$app-data-bg;
1278
793
  background-color: luxcommon.$dark-secondary-text;
@@ -1327,17 +842,6 @@ lux-table {
1327
842
  .lux-row-selected {
1328
843
  background-color: luxcommon.$lux-selected-bg-color;
1329
844
  }
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
845
  }
1342
846
 
1343
847
  /*
@@ -1394,66 +898,6 @@ lux-tile {
1394
898
  }
1395
899
  }
1396
900
 
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
901
  /*
1458
902
  * Theming for LUX-Tooltip
1459
903
  */
@@ -1707,10 +1151,6 @@ lux-stepper-large {
1707
1151
  min-width: 45px;
1708
1152
  display: flex;
1709
1153
  justify-content: center;
1710
-
1711
- i {
1712
- font-size: 25px;
1713
- }
1714
1154
  }
1715
1155
  }
1716
1156
  }