@ihk-gfi/lux-components-theme 14.3.0 → 14.5.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/package.json +1 -1
- 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 +368 -104
- package/prebuilt-themes/luxtheme-authentic.css.map +1 -1
- package/prebuilt-themes/luxtheme-blue-min.css +1 -1
- package/prebuilt-themes/luxtheme-blue-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-blue.css +323 -87
- package/prebuilt-themes/luxtheme-blue.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 +776 -137
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +149 -135
- package/src/base/_luxcomponents.scss +55 -50
- package/src/base/_luxfocus.scss +54 -51
- package/src/base/components/_luxCheckboxContainerAc.scss +35 -0
- package/src/base/components/_luxFormControlWrapper.scss +27 -25
- package/src/base/components/_luxFormControlsAuthentic.scss +51 -28
- package/src/base/components/_luxLinkPlain.scss +52 -38
- package/src/base/components/_luxTileAc.scss +10 -11
- package/src/blue/_custom.scss +21 -11
- package/src/green/_custom.scss +358 -70
- package/src/green/luxtheme.scss +2 -1
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
@use "components/luxFormControlWrapper.scss";
|
|
6
6
|
@use "components/luxFormControlsAuthentic.scss";
|
|
7
7
|
@use "components/luxMasterDetailAc.scss";
|
|
8
|
+
@use "components/luxCheckboxContainerAc.scss";
|
|
8
9
|
@use "luxcommon";
|
|
9
10
|
@use "luxpalette";
|
|
10
11
|
@use "../public/global";
|
|
11
12
|
@use "luxelevations";
|
|
12
13
|
@use "../base/luxSvgIcons" as luxicons;
|
|
13
14
|
|
|
14
|
-
|
|
15
15
|
/*
|
|
16
16
|
* Theming for LUX-App-Content
|
|
17
17
|
*/
|
|
@@ -92,7 +92,8 @@ lux-app-header {
|
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
.lux-side-nav-header,
|
|
95
|
+
.lux-side-nav-header,
|
|
96
|
+
.lux-side-nav-footer {
|
|
96
97
|
color: map.get(luxpalette.$lux-palette_primary, A400);
|
|
97
98
|
}
|
|
98
99
|
|
|
@@ -103,7 +104,9 @@ lux-app-header {
|
|
|
103
104
|
}
|
|
104
105
|
|
|
105
106
|
.lux-side-nav .lux-side-nav-content {
|
|
106
|
-
lux-button,
|
|
107
|
+
lux-button,
|
|
108
|
+
.lux-menu-item,
|
|
109
|
+
.lux-action-nav-menu lux-button {
|
|
107
110
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
108
111
|
font-weight: 600;
|
|
109
112
|
}
|
|
@@ -123,7 +126,10 @@ lux-button button.lux-button {
|
|
|
123
126
|
font-size: luxcommon.$button-font-size;
|
|
124
127
|
font-weight: 600;
|
|
125
128
|
|
|
126
|
-
&.mat-button,
|
|
129
|
+
&.mat-button,
|
|
130
|
+
&.mat-raised-button,
|
|
131
|
+
&.mat-stroked-button,
|
|
132
|
+
&.mat-flat-button {
|
|
127
133
|
height: luxcommon.$button-height;
|
|
128
134
|
}
|
|
129
135
|
|
|
@@ -131,13 +137,13 @@ lux-button button.lux-button {
|
|
|
131
137
|
&.mat-raised-button.mat-button-disabled,
|
|
132
138
|
&.mat-flat-button.mat-button-disabled,
|
|
133
139
|
&.mat-stroked-button.mat-button-disabled,
|
|
134
|
-
&.mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]),
|
|
140
|
+
&.mat-raised-button.mat-button-disabled:not([class*="mat-elevation-z"]),
|
|
135
141
|
&.mat-fab.mat-button-disabled {
|
|
136
142
|
color: luxcommon.$dark-disabled-text;
|
|
137
143
|
@include luxelevations.lux-elevation-z0;
|
|
138
144
|
}
|
|
139
145
|
|
|
140
|
-
&.mat-raised-button:not([class*=mat-elevation-z]) {
|
|
146
|
+
&.mat-raised-button:not([class*="mat-elevation-z"]) {
|
|
141
147
|
@include luxelevations.lux-elevation-z2;
|
|
142
148
|
}
|
|
143
149
|
|
|
@@ -151,7 +157,6 @@ lux-button button.lux-button {
|
|
|
151
157
|
&.lux-button-rounded {
|
|
152
158
|
height: luxcommon.$button-fav-height;
|
|
153
159
|
width: luxcommon.$button-fav-height;
|
|
154
|
-
|
|
155
160
|
|
|
156
161
|
@include luxelevations.lux-elevation-z2;
|
|
157
162
|
|
|
@@ -175,7 +180,7 @@ lux-button button.lux-button {
|
|
|
175
180
|
}
|
|
176
181
|
}
|
|
177
182
|
}
|
|
178
|
-
|
|
183
|
+
|
|
179
184
|
lux-icon.lux-button-icon:not(.lux-button-icon-round) {
|
|
180
185
|
line-height: 1em;
|
|
181
186
|
&.lux-lx-icon {
|
|
@@ -197,7 +202,7 @@ lux-button button.lux-button {
|
|
|
197
202
|
height: unset !important;
|
|
198
203
|
width: unset !important;
|
|
199
204
|
}
|
|
200
|
-
mat-icon.lux-lx-icon-no-size{
|
|
205
|
+
mat-icon.lux-lx-icon-no-size {
|
|
201
206
|
height: luxcommon.$button-font-size;
|
|
202
207
|
width: luxcommon.$button-font-size;
|
|
203
208
|
}
|
|
@@ -224,8 +229,7 @@ lux-checkbox {
|
|
|
224
229
|
/**
|
|
225
230
|
* Theming für LUX-Card
|
|
226
231
|
*/
|
|
227
|
-
lux-card{
|
|
228
|
-
|
|
232
|
+
lux-card {
|
|
229
233
|
.lux-card-content-container mat-tab-group.lux-tab-group .lux-tabs-notification-icon {
|
|
230
234
|
border-color: luxcommon.$app-data-bg;
|
|
231
235
|
}
|
|
@@ -389,7 +393,8 @@ lux-divider {
|
|
|
389
393
|
lux-file-list .lux-file-list {
|
|
390
394
|
margin: luxcommon.$form-control-margin;
|
|
391
395
|
|
|
392
|
-
.lux-file-list-entry-label,
|
|
396
|
+
.lux-file-list-entry-label,
|
|
397
|
+
.lux-file-list-entry-icon {
|
|
393
398
|
color: luxcommon.$dark-secondary-text;
|
|
394
399
|
}
|
|
395
400
|
|
|
@@ -419,7 +424,7 @@ lux-file-list .lux-file-list {
|
|
|
419
424
|
}
|
|
420
425
|
}
|
|
421
426
|
}
|
|
422
|
-
|
|
427
|
+
|
|
423
428
|
&.lux-file-list-error {
|
|
424
429
|
mat-card-title .lux-card-title-container {
|
|
425
430
|
color: luxpalette.$lux-warn-color;
|
|
@@ -478,7 +483,8 @@ lux-file-progress {
|
|
|
478
483
|
padding: 24px 48px;
|
|
479
484
|
}
|
|
480
485
|
|
|
481
|
-
.lux-file-upload-drop-container-progress,
|
|
486
|
+
.lux-file-upload-drop-container-progress,
|
|
487
|
+
.lux-file-upload-drop-container-no-progress {
|
|
482
488
|
height: 8px;
|
|
483
489
|
}
|
|
484
490
|
|
|
@@ -626,7 +632,6 @@ lux-file-progress {
|
|
|
626
632
|
height: 24px;
|
|
627
633
|
}
|
|
628
634
|
}
|
|
629
|
-
|
|
630
635
|
}
|
|
631
636
|
}
|
|
632
637
|
}
|
|
@@ -691,14 +696,13 @@ lux-file-progress {
|
|
|
691
696
|
}
|
|
692
697
|
}
|
|
693
698
|
|
|
694
|
-
|
|
695
699
|
/*
|
|
696
700
|
* Theming for LUX-Form-Controls
|
|
697
701
|
*/
|
|
698
702
|
.lux-form-control {
|
|
699
703
|
margin: luxcommon.$form-control-margin;
|
|
700
704
|
min-height: luxcommon.$form-control-complete-height;
|
|
701
|
-
|
|
705
|
+
|
|
702
706
|
.lux-label,
|
|
703
707
|
mat-hint,
|
|
704
708
|
mat-error {
|
|
@@ -708,7 +712,8 @@ lux-file-progress {
|
|
|
708
712
|
.lux-form-control-container {
|
|
709
713
|
padding: 6px 0 0 0;
|
|
710
714
|
|
|
711
|
-
input,
|
|
715
|
+
input,
|
|
716
|
+
textarea {
|
|
712
717
|
&:required {
|
|
713
718
|
@include luxelevations.lux-elevation-z0;
|
|
714
719
|
}
|
|
@@ -729,7 +734,8 @@ lux-file-progress {
|
|
|
729
734
|
|
|
730
735
|
.lux-form-control-container {
|
|
731
736
|
$lux-selected-border-color: luxpalette.$lux-warn-color !important;
|
|
732
|
-
&:after {
|
|
737
|
+
&:after {
|
|
738
|
+
// inaktives form-control hat auch eine rote Linie (anstatt schwarz)
|
|
733
739
|
border-bottom: 1px solid luxpalette.$lux-warn-color;
|
|
734
740
|
}
|
|
735
741
|
}
|
|
@@ -800,7 +806,7 @@ lux-list {
|
|
|
800
806
|
.mat-card:not([class*="mat-elevation-z"]) {
|
|
801
807
|
@include luxelevations.lux-elevation-z2;
|
|
802
808
|
}
|
|
803
|
-
|
|
809
|
+
|
|
804
810
|
lux-list-item lux-card mat-card {
|
|
805
811
|
margin: luxcommon.$outline-width;
|
|
806
812
|
}
|
|
@@ -813,7 +819,8 @@ lux-list {
|
|
|
813
819
|
/*
|
|
814
820
|
* Theming for LUX-Lookup-Components
|
|
815
821
|
*/
|
|
816
|
-
lux-lookup-combobox,
|
|
822
|
+
lux-lookup-combobox,
|
|
823
|
+
lux-lookup-combobox-ac {
|
|
817
824
|
mat-select {
|
|
818
825
|
&[aria-disabled="true"] .mat-select-arrow {
|
|
819
826
|
border-width: 7px;
|
|
@@ -830,7 +837,8 @@ lux-lookup-combobox, lux-lookup-combobox-ac {
|
|
|
830
837
|
}
|
|
831
838
|
|
|
832
839
|
// Optionen werden im Cdk-Overlay dargestellt und hängen nicht unter der Component selbst.
|
|
833
|
-
.lux-autocomplete-panel,
|
|
840
|
+
.lux-autocomplete-panel,
|
|
841
|
+
.lux-select-panel {
|
|
834
842
|
.mat-option {
|
|
835
843
|
border-left: none;
|
|
836
844
|
|
|
@@ -867,7 +875,7 @@ lux-lookup-combobox, lux-lookup-combobox-ac {
|
|
|
867
875
|
max-width: 30px;
|
|
868
876
|
display: inline-grid;
|
|
869
877
|
|
|
870
|
-
mat-icon.mat-icon:not(.lux-lx-icon){
|
|
878
|
+
mat-icon.mat-icon:not(.lux-lx-icon) {
|
|
871
879
|
font-size: 24px !important;
|
|
872
880
|
}
|
|
873
881
|
&.lux-lx-icon.lux-no-size {
|
|
@@ -936,16 +944,14 @@ lux-message-box {
|
|
|
936
944
|
&.mat-elevation-z4 {
|
|
937
945
|
@include luxelevations.lux-elevation-z4();
|
|
938
946
|
}
|
|
939
|
-
|
|
947
|
+
|
|
940
948
|
.lux-message-container lux-button {
|
|
941
|
-
button.mat-fab.lux-icon-button.lux-button-rounded:not([class*=mat-elevation-z]) {
|
|
949
|
+
button.mat-fab.lux-icon-button.lux-button-rounded:not([class*="mat-elevation-z"]) {
|
|
942
950
|
color: #fff;
|
|
943
951
|
background-color: transparent;
|
|
944
952
|
height: 36px;
|
|
945
953
|
width: 36px;
|
|
946
954
|
@include luxelevations.lux-elevation-z0();
|
|
947
|
-
|
|
948
|
-
|
|
949
955
|
}
|
|
950
956
|
.mat-button-ripple,
|
|
951
957
|
.mat-button-focus-overlay {
|
|
@@ -1180,7 +1186,8 @@ lux-filter-form {
|
|
|
1180
1186
|
* Theming for LUX-Stepper
|
|
1181
1187
|
*/
|
|
1182
1188
|
lux-stepper {
|
|
1183
|
-
.mat-stepper-horizontal,
|
|
1189
|
+
.mat-stepper-horizontal,
|
|
1190
|
+
.mat-stepper-vertical {
|
|
1184
1191
|
background-color: transparent;
|
|
1185
1192
|
}
|
|
1186
1193
|
|
|
@@ -1188,7 +1195,7 @@ lux-stepper {
|
|
|
1188
1195
|
.lux-ignore-mat-step-icons {
|
|
1189
1196
|
mat-step-header {
|
|
1190
1197
|
color: luxcommon.$dark-secondary-text;
|
|
1191
|
-
|
|
1198
|
+
|
|
1192
1199
|
&.lux-step-header-touched {
|
|
1193
1200
|
.lux-stepper-edited-icon,
|
|
1194
1201
|
.lux-stepper-normal-icon {
|
|
@@ -1220,9 +1227,9 @@ lux-stepper {
|
|
|
1220
1227
|
// luxUseCustomIcons=false
|
|
1221
1228
|
.mat-step-header {
|
|
1222
1229
|
lux-step-header {
|
|
1223
|
-
color: luxcommon.$dark-secondary-text
|
|
1230
|
+
color: luxcommon.$dark-secondary-text;
|
|
1224
1231
|
}
|
|
1225
|
-
|
|
1232
|
+
|
|
1226
1233
|
&.lux-step-header-touched {
|
|
1227
1234
|
.mat-step-icon {
|
|
1228
1235
|
color: luxcommon.$app-data-bg;
|
|
@@ -1264,14 +1271,14 @@ lux-table {
|
|
|
1264
1271
|
}
|
|
1265
1272
|
|
|
1266
1273
|
table td {
|
|
1267
|
-
|
|
1268
|
-
|
|
1274
|
+
div.lux-form-control {
|
|
1275
|
+
min-height: luxcommon.$form-control-height-small;
|
|
1269
1276
|
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1277
|
+
.lux-form-control-label,
|
|
1278
|
+
.lux-form-control-misc {
|
|
1279
|
+
display: none;
|
|
1280
|
+
}
|
|
1281
|
+
}
|
|
1275
1282
|
}
|
|
1276
1283
|
}
|
|
1277
1284
|
|
|
@@ -1403,18 +1410,16 @@ mat-expansion-panel.mat-expansion-panel:not([class*="mat-elevation-z"]) {
|
|
|
1403
1410
|
@include luxelevations.lux-elevation-z2;
|
|
1404
1411
|
}
|
|
1405
1412
|
|
|
1406
|
-
|
|
1407
1413
|
/*
|
|
1408
1414
|
* Theming for LUX-Errorpage
|
|
1409
1415
|
*/
|
|
1410
|
-
|
|
1416
|
+
lux-error-page {
|
|
1411
1417
|
lux-card:not(.lux-error-page-desktop) {
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
}
|
|
1418
|
+
.mat-card:not([class*="mat-elevation-z"]) {
|
|
1419
|
+
@include luxelevations.lux-elevation-z0;
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1418
1423
|
|
|
1419
1424
|
/*
|
|
1420
1425
|
* Theming für Lux-Stepper-Large
|
|
@@ -1490,18 +1495,18 @@ lux-stepper-large {
|
|
|
1490
1495
|
}
|
|
1491
1496
|
|
|
1492
1497
|
a {
|
|
1493
|
-
color: #
|
|
1498
|
+
color: #2e8533;
|
|
1494
1499
|
position: relative;
|
|
1495
1500
|
}
|
|
1496
1501
|
|
|
1497
1502
|
a::after {
|
|
1498
|
-
content:
|
|
1503
|
+
content: "";
|
|
1499
1504
|
position: absolute;
|
|
1500
1505
|
display: inline-block;
|
|
1501
1506
|
width: 23px;
|
|
1502
1507
|
height: 23px;
|
|
1503
1508
|
margin: 5px 10px 0px;
|
|
1504
|
-
background-color: #
|
|
1509
|
+
background-color: #2e8533;
|
|
1505
1510
|
-webkit-mask: url(luxicons.$checkmark);
|
|
1506
1511
|
-webkit-mask-repeat: no-repeat;
|
|
1507
1512
|
-webkit-mask-position: center;
|
|
@@ -1749,7 +1754,7 @@ lux-stepper-large {
|
|
|
1749
1754
|
}
|
|
1750
1755
|
}
|
|
1751
1756
|
|
|
1752
|
-
&.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a::after{
|
|
1757
|
+
&.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a::after {
|
|
1753
1758
|
width: 18px;
|
|
1754
1759
|
height: 18px;
|
|
1755
1760
|
margin-top: 4px;
|
package/src/base/_luxfocus.scss
CHANGED
|
@@ -41,7 +41,7 @@ $outline-bright: luxcommon.$outline-width luxcommon.$outline-style luxcommon.$ou
|
|
|
41
41
|
border-radius: 4px;
|
|
42
42
|
|
|
43
43
|
&:after {
|
|
44
|
-
content:
|
|
44
|
+
content: "";
|
|
45
45
|
left: 0;
|
|
46
46
|
width: 6px;
|
|
47
47
|
top: 0;
|
|
@@ -61,7 +61,7 @@ $outline-bright: luxcommon.$outline-width luxcommon.$outline-style luxcommon.$ou
|
|
|
61
61
|
border-radius: 4px;
|
|
62
62
|
&:after {
|
|
63
63
|
width: 0px;
|
|
64
|
-
border:none;
|
|
64
|
+
border: none;
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
|
|
@@ -69,7 +69,7 @@ $outline-bright: luxcommon.$outline-width luxcommon.$outline-style luxcommon.$ou
|
|
|
69
69
|
position: relative;
|
|
70
70
|
|
|
71
71
|
&:after {
|
|
72
|
-
content:
|
|
72
|
+
content: "";
|
|
73
73
|
left: 0;
|
|
74
74
|
top: 0;
|
|
75
75
|
bottom: 0;
|
|
@@ -145,7 +145,8 @@ lux-app-header {
|
|
|
145
145
|
&:hover {
|
|
146
146
|
@include lux-hovered-mixin;
|
|
147
147
|
|
|
148
|
-
& lux-icon,
|
|
148
|
+
& lux-icon,
|
|
149
|
+
.lux-header-username {
|
|
149
150
|
color: luxcommon.$lux-hover-color-for-dark-background !important;
|
|
150
151
|
}
|
|
151
152
|
}
|
|
@@ -175,11 +176,11 @@ lux-side-nav {
|
|
|
175
176
|
|
|
176
177
|
/** ########## Card ########## **/
|
|
177
178
|
lux-card mat-card {
|
|
178
|
-
&[class~=lux-cursor]:focus-visible {
|
|
179
|
+
&[class~="lux-cursor"]:focus-visible {
|
|
179
180
|
@include focus-dark-mixin-inline;
|
|
180
181
|
}
|
|
181
182
|
|
|
182
|
-
&[class~=lux-cursor]:hover {
|
|
183
|
+
&[class~="lux-cursor"]:hover {
|
|
183
184
|
@include lux-hovered-mixin;
|
|
184
185
|
}
|
|
185
186
|
}
|
|
@@ -230,11 +231,13 @@ lux-filter-form {
|
|
|
230
231
|
}
|
|
231
232
|
|
|
232
233
|
/** ########## Chips ########## **/
|
|
233
|
-
lux-chips,
|
|
234
|
+
lux-chips,
|
|
235
|
+
lux-chips-ac {
|
|
234
236
|
& .mat-standard-chip:focus-visible {
|
|
235
237
|
@include focus-dark-mixin;
|
|
236
238
|
}
|
|
237
|
-
.mat-chip.mat-standard-chip:after {
|
|
239
|
+
.mat-chip.mat-standard-chip:after {
|
|
240
|
+
//mat-overlay für focus deaktivieren
|
|
238
241
|
background-color: unset;
|
|
239
242
|
}
|
|
240
243
|
}
|
|
@@ -256,7 +259,7 @@ lux-form-control {
|
|
|
256
259
|
}
|
|
257
260
|
|
|
258
261
|
.lux-form-control-container:after {
|
|
259
|
-
content:
|
|
262
|
+
content: "";
|
|
260
263
|
display: block;
|
|
261
264
|
-webkit-box-sizing: border-box;
|
|
262
265
|
-moz-box-sizing: border-box;
|
|
@@ -267,7 +270,7 @@ lux-form-control {
|
|
|
267
270
|
height: 2px;
|
|
268
271
|
border-bottom: 2px solid luxcommon.$lux-selected-border-color;
|
|
269
272
|
}
|
|
270
|
-
|
|
273
|
+
|
|
271
274
|
&.lux-form-control-error {
|
|
272
275
|
.lux-form-control-container:after {
|
|
273
276
|
border-bottom: 2px solid luxpalette.$lux-warn-color;
|
|
@@ -278,13 +281,13 @@ lux-form-control {
|
|
|
278
281
|
|
|
279
282
|
.lux-form-control-wrapper {
|
|
280
283
|
&.lux-focused-authentic .cdk-keyboard-focused {
|
|
281
|
-
.mat-radio-container,
|
|
284
|
+
.mat-radio-container,
|
|
282
285
|
.mat-checkbox-inner-container,
|
|
283
286
|
.mat-slide-toggle-thumb {
|
|
284
287
|
position: relative;
|
|
285
288
|
@include focus-dark-mixin;
|
|
286
289
|
}
|
|
287
|
-
|
|
290
|
+
}
|
|
288
291
|
}
|
|
289
292
|
|
|
290
293
|
lux-icon.lux-error-icon:focus-visible {
|
|
@@ -299,7 +302,7 @@ lux-datepicker {
|
|
|
299
302
|
border-radius: 4px;
|
|
300
303
|
}
|
|
301
304
|
|
|
302
|
-
button:hover {
|
|
305
|
+
button:hover {
|
|
303
306
|
@include lux-hovered-mixin();
|
|
304
307
|
border-radius: 4px;
|
|
305
308
|
}
|
|
@@ -308,16 +311,16 @@ lux-datepicker {
|
|
|
308
311
|
}
|
|
309
312
|
}
|
|
310
313
|
}
|
|
311
|
-
lux-datepicker-ac,
|
|
314
|
+
lux-datepicker-ac,
|
|
315
|
+
lux-datetimepicker-ac {
|
|
312
316
|
mat-datepicker-toggle {
|
|
313
317
|
button:focus-visible {
|
|
314
318
|
@include focus-dark-mixin;
|
|
315
|
-
|
|
319
|
+
outline-offset: 2px;
|
|
320
|
+
border-radius: 2px;
|
|
316
321
|
}
|
|
317
322
|
|
|
318
323
|
button:hover {
|
|
319
|
-
background-color: #fff;
|
|
320
|
-
border-radius: 4px;
|
|
321
324
|
lux-icon.lux-datepicker-toggle-icon.lux-color-blue {
|
|
322
325
|
color: luxcommon.$lux-hover-color;
|
|
323
326
|
}
|
|
@@ -369,7 +372,7 @@ lux-datetimepicker {
|
|
|
369
372
|
border-radius: 4px;
|
|
370
373
|
}
|
|
371
374
|
|
|
372
|
-
button:hover {
|
|
375
|
+
button:hover {
|
|
373
376
|
@include lux-hovered-mixin();
|
|
374
377
|
border-radius: 4px;
|
|
375
378
|
}
|
|
@@ -415,7 +418,7 @@ lux-datetimepicker {
|
|
|
415
418
|
/** ########## Lux-Dialog ########## **/
|
|
416
419
|
lux-dialog-structure {
|
|
417
420
|
// x-Button oben rechts im Dialog-Fenster
|
|
418
|
-
.lux-icon-close {
|
|
421
|
+
.lux-icon-close {
|
|
419
422
|
&:hover {
|
|
420
423
|
@include lux-hovered-mixin;
|
|
421
424
|
cursor: pointer;
|
|
@@ -428,7 +431,6 @@ lux-dialog-structure {
|
|
|
428
431
|
}
|
|
429
432
|
/** ########## Table ########## **/
|
|
430
433
|
lux-table {
|
|
431
|
-
|
|
432
434
|
tr:hover {
|
|
433
435
|
> td,
|
|
434
436
|
> th {
|
|
@@ -439,7 +441,8 @@ lux-table {
|
|
|
439
441
|
}
|
|
440
442
|
}
|
|
441
443
|
|
|
442
|
-
tr:focus-visible,
|
|
444
|
+
tr:focus-visible,
|
|
445
|
+
td:focus-visible {
|
|
443
446
|
@include focus-dark-mixin-inline;
|
|
444
447
|
}
|
|
445
448
|
|
|
@@ -465,7 +468,7 @@ lux-table {
|
|
|
465
468
|
@include lux-selected-mixin;
|
|
466
469
|
}
|
|
467
470
|
|
|
468
|
-
// Der Focus bei mat-option wird über die Klasse .mat-active gesteuert
|
|
471
|
+
// Der Focus bei mat-option wird über die Klasse .mat-active gesteuert
|
|
469
472
|
// bisher noch keine Lösung um den mouse-focus auszuschalten
|
|
470
473
|
&.mat-active:not(.cdk-mouse-focused) {
|
|
471
474
|
@include focus-dark-mixin-inline;
|
|
@@ -487,10 +490,10 @@ lux-table {
|
|
|
487
490
|
}
|
|
488
491
|
.mat-pseudo-checkbox-checked {
|
|
489
492
|
background-color: #ffffff;
|
|
490
|
-
}
|
|
493
|
+
}
|
|
491
494
|
.mat-pseudo-checkbox-checked::after {
|
|
492
495
|
border-color: map.get(luxpalette.$lux-palette_primary, 500) !important;
|
|
493
|
-
}
|
|
496
|
+
}
|
|
494
497
|
}
|
|
495
498
|
|
|
496
499
|
.lux-select-panel-ac {
|
|
@@ -498,7 +501,7 @@ lux-table {
|
|
|
498
501
|
&.mat-selected.mat-option:not(.mat-option-disabled) .mat-option-text {
|
|
499
502
|
position: relative;
|
|
500
503
|
&::after {
|
|
501
|
-
content:
|
|
504
|
+
content: "";
|
|
502
505
|
position: absolute;
|
|
503
506
|
width: 18px;
|
|
504
507
|
height: 18px;
|
|
@@ -518,7 +521,12 @@ lux-table {
|
|
|
518
521
|
}
|
|
519
522
|
}
|
|
520
523
|
|
|
521
|
-
.lux-select-panel-ac,
|
|
524
|
+
.lux-select-panel-ac,
|
|
525
|
+
.lux-select-panel-ac-multiple,
|
|
526
|
+
.lux-autocomplete-panel-ac,
|
|
527
|
+
.lux-autocomplete-panel-dense-ac,
|
|
528
|
+
.lux-chips-ac-autocomplete-panel,
|
|
529
|
+
.lux-chips-ac-autocomplete-panel-dense {
|
|
522
530
|
&.mat-select-panel mat-option,
|
|
523
531
|
&.mat-autocomplete-panel mat-option {
|
|
524
532
|
&.mat-selected.mat-option:not(.mat-option-disabled):not(:hover):not(.mat-active) {
|
|
@@ -555,12 +563,13 @@ lux-button:not(.lang-select-trigger-ac, .user-menu-trigger-ac, .lux-action-nav-i
|
|
|
555
563
|
.mat-button-focus-overlay {
|
|
556
564
|
display: none;
|
|
557
565
|
}
|
|
558
|
-
|
|
559
|
-
&:focus-visible{
|
|
566
|
+
|
|
567
|
+
&:focus-visible {
|
|
560
568
|
@include focus-dark-mixin;
|
|
561
569
|
}
|
|
562
570
|
|
|
563
|
-
&:not(.mat-fab):not(.mat-raised-button):not(.mat-flat-button),
|
|
571
|
+
&:not(.mat-fab):not(.mat-raised-button):not(.mat-flat-button),
|
|
572
|
+
&.mat-stroked-button {
|
|
564
573
|
&:hover {
|
|
565
574
|
background-color: color.adjust(luxcommon.$lux-hover-color, $lightness: -10%);
|
|
566
575
|
|
|
@@ -617,9 +626,9 @@ lux-button:not(.lang-select-trigger-ac, .user-menu-trigger-ac, .lux-action-nav-i
|
|
|
617
626
|
|
|
618
627
|
/** ########## Autocomplete ########## **/
|
|
619
628
|
// Class, welche das aufgeklappte Panel referenziert
|
|
620
|
-
.lux-autocomplete-panel,
|
|
629
|
+
.lux-autocomplete-panel,
|
|
630
|
+
.lux-chips-autocomplete-panel {
|
|
621
631
|
mat-option {
|
|
622
|
-
|
|
623
632
|
&:focus-visible {
|
|
624
633
|
@include focus-dark-mixin-inline;
|
|
625
634
|
border-radius: 4px;
|
|
@@ -654,16 +663,15 @@ lux-tabs {
|
|
|
654
663
|
}
|
|
655
664
|
|
|
656
665
|
.mat-tab-label:not(.mat-tab-disabled) {
|
|
657
|
-
|
|
666
|
+
&:focus-visible {
|
|
658
667
|
@include focus-dark-mixin-inline;
|
|
659
668
|
border-radius: 4px;
|
|
660
669
|
}
|
|
661
|
-
|
|
662
|
-
|
|
670
|
+
|
|
663
671
|
&:hover:not(.mat-tab-disabled) {
|
|
664
672
|
background-color: luxcommon.$lux-hover-color;
|
|
665
673
|
border-radius: 4px;
|
|
666
|
-
}
|
|
674
|
+
}
|
|
667
675
|
}
|
|
668
676
|
|
|
669
677
|
mat-ink-bar.mat-ink-bar {
|
|
@@ -678,7 +686,7 @@ mat-card lux-tabs {
|
|
|
678
686
|
}
|
|
679
687
|
|
|
680
688
|
.mat-tab-label:not(.mat-tab-disabled) {
|
|
681
|
-
|
|
689
|
+
&:focus-visible {
|
|
682
690
|
@include focus-dark-mixin-inline;
|
|
683
691
|
border-radius: 4px;
|
|
684
692
|
}
|
|
@@ -716,7 +724,6 @@ lux-stepper {
|
|
|
716
724
|
@include lux-selected-bottom-mixin;
|
|
717
725
|
background-color: transparent;
|
|
718
726
|
}
|
|
719
|
-
|
|
720
727
|
}
|
|
721
728
|
|
|
722
729
|
/** ########## Html ########## **/
|
|
@@ -741,12 +748,12 @@ lux-tile {
|
|
|
741
748
|
|
|
742
749
|
/** ########## Panel ########## **/
|
|
743
750
|
lux-panel {
|
|
744
|
-
mat-expansion-panel-header:not([aria-disabled=
|
|
751
|
+
mat-expansion-panel-header:not([aria-disabled="true"]) {
|
|
745
752
|
&:focus-visible {
|
|
746
753
|
//background-color: white !important;
|
|
747
754
|
@include focus-dark-mixin-inline;
|
|
748
755
|
}
|
|
749
|
-
|
|
756
|
+
|
|
750
757
|
&:hover {
|
|
751
758
|
@include lux-hovered-mixin;
|
|
752
759
|
}
|
|
@@ -810,7 +817,7 @@ lux-file-preview-toolbar lux-button button.lux-icon-button {
|
|
|
810
817
|
border-radius: 0;
|
|
811
818
|
&:after {
|
|
812
819
|
width: 0px;
|
|
813
|
-
border:none;
|
|
820
|
+
border: none;
|
|
814
821
|
}
|
|
815
822
|
}
|
|
816
823
|
|
|
@@ -825,7 +832,6 @@ lux-file-preview-toolbar lux-button button.lux-icon-button {
|
|
|
825
832
|
/** ########## Example-Root ########## **/
|
|
826
833
|
example-root {
|
|
827
834
|
.example-base-components-list {
|
|
828
|
-
|
|
829
835
|
mat-expansion-panel-header,
|
|
830
836
|
.example-component-list-item {
|
|
831
837
|
@include lux-selectable-mixin;
|
|
@@ -847,9 +853,7 @@ example-root {
|
|
|
847
853
|
|
|
848
854
|
/** ########## Message-Box ########## **/
|
|
849
855
|
lux-message-box {
|
|
850
|
-
|
|
851
856
|
& div.lux-message-box-content {
|
|
852
|
-
|
|
853
857
|
&:focus-visible {
|
|
854
858
|
@include focus-dark-mixin;
|
|
855
859
|
}
|
|
@@ -890,7 +894,6 @@ lux-message-box {
|
|
|
890
894
|
/** ########## Stepper large ########## **/
|
|
891
895
|
lux-stepper-large {
|
|
892
896
|
.lux-stepper-large-nav-item {
|
|
893
|
-
|
|
894
897
|
// Links allgemein
|
|
895
898
|
a {
|
|
896
899
|
&:focus-visible {
|
|
@@ -920,21 +923,21 @@ lux-stepper-large {
|
|
|
920
923
|
.lux-stepper-large-nav-item-label-container {
|
|
921
924
|
a.lux-stepper-large-nav-item-label-link {
|
|
922
925
|
&:hover {
|
|
923
|
-
color: #
|
|
926
|
+
color: #2e8533;
|
|
924
927
|
}
|
|
925
928
|
}
|
|
926
929
|
}
|
|
927
930
|
}
|
|
928
931
|
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
}
|
|
932
|
+
&.lux-completed {
|
|
933
|
+
.lux-stepper-large-nav-item-label-container {
|
|
934
|
+
a.lux-stepper-large-nav-item-label-link {
|
|
935
|
+
&:hover {
|
|
936
|
+
color: #56bd66;
|
|
935
937
|
}
|
|
936
938
|
}
|
|
937
939
|
}
|
|
940
|
+
}
|
|
938
941
|
}
|
|
939
942
|
}
|
|
940
943
|
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
@use "../luxpalette";
|
|
2
|
+
|
|
3
|
+
lux-checkbox-container-ac {
|
|
4
|
+
.lux-label-container {
|
|
5
|
+
min-height: 1.2em;
|
|
6
|
+
font-size: 0.75rem;
|
|
7
|
+
line-height: 1.2em;
|
|
8
|
+
color: luxpalette.$lux-primary-color;
|
|
9
|
+
margin: 0 calc(0.5em + 1px) 0.25em calc(0.5em + 1px);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.lux-checkbox-container {
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-flow: row wrap;
|
|
15
|
+
place-content: stretch flex-start;
|
|
16
|
+
align-items: stretch;
|
|
17
|
+
gap: 10px;
|
|
18
|
+
max-width: 100%;
|
|
19
|
+
|
|
20
|
+
&.lux-vertical {
|
|
21
|
+
flex-direction: column;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
lux-form-control-wrapper .lux-form-control-wrapper {
|
|
25
|
+
margin: 0;
|
|
26
|
+
.lux-form-control-label-authentic,
|
|
27
|
+
.lux-form-control-misc-authentic {
|
|
28
|
+
display: none !important;
|
|
29
|
+
}
|
|
30
|
+
.lux-form-control-container-authentic.lux-no-input-row {
|
|
31
|
+
padding: 0;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|