@ihk-gfi/lux-components-theme 13.0.0 → 14.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 +9 -0
- package/package.json +7 -7
- package/prebuilt-themes/luxtheme-authentic-min.css +1 -0
- package/prebuilt-themes/luxtheme-authentic-min.css.map +1 -0
- package/prebuilt-themes/{luxtheme-orange.css → luxtheme-authentic.css} +7303 -5035
- package/prebuilt-themes/luxtheme-authentic.css.map +1 -0
- 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 +4734 -3248
- 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 +4920 -3449
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +1101 -0
- package/src/authentic/_luxcommon.scss +128 -0
- package/src/authentic/_luxpalette.scss +106 -0
- package/src/authentic/luxtheme.scss +103 -0
- package/src/base/_luxSvgIcons.scss +5 -0
- package/src/base/_luxcommon.scss +98 -0
- package/src/base/_luxcomponents.scss +422 -190
- package/src/base/_luxelevations.scss +8 -10
- package/src/base/_luxfocus.scss +276 -107
- package/src/base/_luxpalette.scss +9 -0
- package/src/base/_luxstyles.scss +132 -116
- package/src/base/_luxtheme.scss +10 -6
- package/src/base/components/_luxAppHeaderAc.scss +187 -0
- package/src/base/components/_luxFormControlWrapper.scss +174 -0
- package/src/base/components/_luxFormControlsAuthentic.scss +357 -0
- package/src/base/components/_luxLinkPlain.scss +61 -0
- package/src/base/components/_luxMasterDetailAc.scss +206 -0
- package/src/base/components/_luxTileAc.scss +63 -0
- package/src/blue/_custom.scss +103 -1
- package/src/blue/_luxcommon.scss +13 -2
- package/src/blue/_luxpalette.scss +4 -3
- package/src/blue/luxtheme.scss +102 -10
- package/src/green/_custom.scss +201 -104
- package/src/green/_luxcommon.scss +16 -5
- package/src/green/_luxpalette.scss +4 -3
- package/src/green/luxtheme.scss +103 -13
- package/src/public/global.scss +6 -10
- package/prebuilt-themes/luxtheme-orange-min.css +0 -1
- package/prebuilt-themes/luxtheme-orange-min.css.map +0 -1
- package/prebuilt-themes/luxtheme-orange.css.map +0 -1
- package/src/base/_luxicons.scss +0 -2
- package/src/orange/_custom.scss +0 -66
- package/src/orange/_luxcommon.scss +0 -90
- package/src/orange/_luxpalette.scss +0 -106
- package/src/orange/luxtheme.scss +0 -10
|
@@ -1,8 +1,22 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "components/luxAppHeaderAc.scss";
|
|
3
|
+
@use "components/luxLinkPlain.scss";
|
|
4
|
+
@use "components/luxTileAc.scss";
|
|
5
|
+
@use "components/luxFormControlWrapper.scss";
|
|
6
|
+
@use "components/luxFormControlsAuthentic.scss";
|
|
7
|
+
@use "components/luxMasterDetailAc.scss";
|
|
8
|
+
@use "luxcommon";
|
|
9
|
+
@use "luxpalette";
|
|
10
|
+
@use "../public/global";
|
|
11
|
+
@use "luxelevations";
|
|
12
|
+
@use "../base/luxSvgIcons" as luxicons;
|
|
13
|
+
|
|
14
|
+
|
|
1
15
|
/*
|
|
2
16
|
* Theming for LUX-App-Content
|
|
3
17
|
*/
|
|
4
18
|
lux-app-content {
|
|
5
|
-
background-color:
|
|
19
|
+
background-color: luxcommon.$app-content-bg;
|
|
6
20
|
}
|
|
7
21
|
|
|
8
22
|
/*
|
|
@@ -10,11 +24,11 @@ lux-app-content {
|
|
|
10
24
|
*/
|
|
11
25
|
lux-app-footer {
|
|
12
26
|
.lux-app-footer {
|
|
13
|
-
background-color:
|
|
27
|
+
background-color: luxcommon.$app-footer-bg;
|
|
14
28
|
}
|
|
15
29
|
|
|
16
30
|
.footerFont {
|
|
17
|
-
font-family:
|
|
31
|
+
font-family: global.$app-font-family;
|
|
18
32
|
}
|
|
19
33
|
}
|
|
20
34
|
|
|
@@ -23,120 +37,170 @@ lux-app-footer {
|
|
|
23
37
|
*/
|
|
24
38
|
lux-app-header {
|
|
25
39
|
.lux-app-header {
|
|
26
|
-
background-color:
|
|
27
|
-
@include lux-elevation-z6();
|
|
40
|
+
background-color: luxcommon.$app-header-bg;
|
|
41
|
+
@include luxelevations.lux-elevation-z6();
|
|
28
42
|
|
|
29
43
|
.lux-show-border {
|
|
30
|
-
border-left: 1px solid
|
|
44
|
+
border-left: 1px solid luxcommon.$light-dividers;
|
|
31
45
|
}
|
|
32
46
|
|
|
33
47
|
.lux-header-title {
|
|
34
|
-
color: map
|
|
48
|
+
color: map.get(map.get(luxpalette.$lux-palette-primary, contrast), 500);
|
|
35
49
|
}
|
|
36
50
|
|
|
37
51
|
div.lux-header-action {
|
|
38
52
|
lux-button {
|
|
39
53
|
button {
|
|
40
54
|
&:not(.mat-accent):not(.mat-warn):not(.mat-primary):not(.mat-button-disabled) {
|
|
41
|
-
color: map
|
|
55
|
+
color: map.get(map.get(luxpalette.$lux-palette-primary, contrast), 500);
|
|
42
56
|
}
|
|
43
57
|
|
|
44
58
|
&:not(.mat-accent):not(.mat-warn):not(.mat-primary).mat-button-disabled {
|
|
45
|
-
color:
|
|
59
|
+
color: luxcommon.$dark-disabled-text;
|
|
46
60
|
}
|
|
47
61
|
|
|
48
62
|
&.mat-accent:not(.mat-button-disabled) {
|
|
49
|
-
color: map
|
|
63
|
+
color: map.get(luxpalette.$lux-palette_accent, A100);
|
|
50
64
|
}
|
|
51
65
|
|
|
52
66
|
&.mat-warn:not(.mat-button-disabled) {
|
|
53
|
-
color: map
|
|
67
|
+
color: map.get(luxpalette.$lux-palette_warn, A100);
|
|
54
68
|
}
|
|
55
69
|
|
|
56
70
|
&.mat-primary:not(.mat-button-disabled) {
|
|
57
|
-
color: map
|
|
71
|
+
color: map.get(luxpalette.$lux-palette_primary, A100);
|
|
58
72
|
}
|
|
59
73
|
|
|
60
74
|
&.lux-button-rounded {
|
|
61
|
-
@include lux-elevation-z0;
|
|
75
|
+
@include luxelevations.lux-elevation-z0;
|
|
62
76
|
}
|
|
63
77
|
}
|
|
64
78
|
}
|
|
65
79
|
}
|
|
66
80
|
|
|
67
81
|
button:not(.mat-primary):not(.mat-warn):not(.mat-accent):not(.lux-button-rounded) {
|
|
68
|
-
color: map
|
|
82
|
+
color: map.get(map.get(luxpalette.$lux-palette-primary, contrast), 500);
|
|
69
83
|
}
|
|
70
84
|
|
|
71
85
|
.lux-header-user {
|
|
72
86
|
.lux-header-user-short {
|
|
73
87
|
> span {
|
|
74
|
-
color: map
|
|
75
|
-
background-color: map
|
|
88
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
89
|
+
background-color: map.get(map.get(luxpalette.$lux-palette-primary, contrast), 500);
|
|
76
90
|
}
|
|
77
91
|
}
|
|
78
92
|
}
|
|
79
93
|
}
|
|
80
94
|
|
|
81
95
|
.lux-side-nav-header, .lux-side-nav-footer {
|
|
82
|
-
color: map
|
|
96
|
+
color: map.get(luxpalette.$lux-palette_primary, A400);
|
|
83
97
|
}
|
|
84
98
|
|
|
85
99
|
.lux-header-side-nav {
|
|
86
100
|
.lux-side-nav-trigger-active {
|
|
87
|
-
background-color:
|
|
101
|
+
background-color: luxcommon.$dark-focused;
|
|
88
102
|
}
|
|
89
103
|
}
|
|
90
104
|
|
|
91
105
|
.lux-side-nav .lux-side-nav-content {
|
|
92
106
|
lux-button, .lux-menu-item, .lux-action-nav-menu lux-button {
|
|
93
|
-
color: map
|
|
107
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
108
|
+
font-weight: 600;
|
|
94
109
|
}
|
|
95
110
|
}
|
|
96
111
|
}
|
|
97
112
|
|
|
98
113
|
// Menü wird im Cdk-Overlay dargestellt und hängt nicht unter dem LUX-APP-HEADER selbst.
|
|
99
114
|
.lux-right-nav-menu .lux-menu-item {
|
|
100
|
-
color: map
|
|
115
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
101
116
|
}
|
|
102
117
|
|
|
103
118
|
/*
|
|
104
119
|
* Theming for LUX-Button
|
|
105
120
|
*/
|
|
106
121
|
lux-button button.lux-button {
|
|
107
|
-
font-family:
|
|
122
|
+
font-family: global.$app-font-family;
|
|
123
|
+
font-size: luxcommon.$button-font-size;
|
|
124
|
+
font-weight: 600;
|
|
108
125
|
|
|
109
|
-
&.mat-button, &.mat-raised-button {
|
|
110
|
-
height:
|
|
111
|
-
margin-left: $outline-width;
|
|
112
|
-
margin-right: $outline-width;
|
|
126
|
+
&.mat-button, &.mat-raised-button, &.mat-stroked-button, &.mat-flat-button {
|
|
127
|
+
height: luxcommon.$button-height;
|
|
113
128
|
}
|
|
114
129
|
|
|
115
130
|
&.mat-button.mat-button-disabled,
|
|
116
131
|
&.mat-raised-button.mat-button-disabled,
|
|
132
|
+
&.mat-flat-button.mat-button-disabled,
|
|
133
|
+
&.mat-stroked-button.mat-button-disabled,
|
|
117
134
|
&.mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]),
|
|
118
135
|
&.mat-fab.mat-button-disabled {
|
|
119
|
-
color:
|
|
120
|
-
@include lux-elevation-z0;
|
|
136
|
+
color: luxcommon.$dark-disabled-text;
|
|
137
|
+
@include luxelevations.lux-elevation-z0;
|
|
121
138
|
}
|
|
122
139
|
|
|
123
140
|
&.mat-raised-button:not([class*=mat-elevation-z]) {
|
|
124
|
-
@include lux-elevation-z2;
|
|
141
|
+
@include luxelevations.lux-elevation-z2;
|
|
125
142
|
}
|
|
126
143
|
|
|
127
144
|
&.lux-icon-button {
|
|
128
|
-
height:
|
|
145
|
+
height: luxcommon.$button-height;
|
|
146
|
+
lux-icon {
|
|
147
|
+
display: inline-block;
|
|
148
|
+
}
|
|
129
149
|
}
|
|
130
150
|
|
|
131
151
|
&.lux-button-rounded {
|
|
132
|
-
height:
|
|
133
|
-
width:
|
|
152
|
+
height: luxcommon.$button-fav-height;
|
|
153
|
+
width: luxcommon.$button-fav-height;
|
|
134
154
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
155
|
+
|
|
156
|
+
@include luxelevations.lux-elevation-z2;
|
|
157
|
+
|
|
158
|
+
.mat-button-wrapper {
|
|
159
|
+
padding: 0;
|
|
160
|
+
font-size: 15px;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
lux-icon.lux-button-icon-round {
|
|
164
|
+
height: 20px;
|
|
165
|
+
width: 20px;
|
|
166
|
+
line-height: 1;
|
|
167
|
+
i {
|
|
168
|
+
line-height: 1;
|
|
169
|
+
display: inline-block;
|
|
170
|
+
}
|
|
171
|
+
mat-icon.mat-icon.lux-material-icon,
|
|
172
|
+
mat-icon.mat-icon.lux-lx-icon-no-size {
|
|
173
|
+
height: 20px;
|
|
174
|
+
width: 20px;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
lux-icon.lux-button-icon:not(.lux-button-icon-round) {
|
|
180
|
+
line-height: 1em;
|
|
181
|
+
&.lux-lx-icon {
|
|
182
|
+
height: luxcommon.$button-font-size;
|
|
183
|
+
width: luxcommon.$button-font-size;
|
|
184
|
+
font-size: luxcommon.$button-font-size;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
i {
|
|
188
|
+
line-height: 1;
|
|
189
|
+
font-size: luxcommon.$button-font-size;
|
|
190
|
+
vertical-align: middle;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
mat-icon.mat-icon.lux-material-icon:not(.lux-lx-icon, .lux-lx-icon-no-size) {
|
|
194
|
+
line-height: 1;
|
|
195
|
+
font-size: luxcommon.$button-font-size;
|
|
196
|
+
vertical-align: middle;
|
|
197
|
+
height: unset !important;
|
|
198
|
+
width: unset !important;
|
|
199
|
+
}
|
|
200
|
+
mat-icon.lux-lx-icon-no-size{
|
|
201
|
+
height: luxcommon.$button-font-size;
|
|
202
|
+
width: luxcommon.$button-font-size;
|
|
138
203
|
}
|
|
139
|
-
@include lux-elevation-z2;
|
|
140
204
|
}
|
|
141
205
|
}
|
|
142
206
|
|
|
@@ -145,14 +209,14 @@ lux-button button.lux-button {
|
|
|
145
209
|
*/
|
|
146
210
|
lux-checkbox {
|
|
147
211
|
.mat-checkbox-disabled label {
|
|
148
|
-
color:
|
|
212
|
+
color: luxcommon.$dark-disabled-text;
|
|
149
213
|
}
|
|
150
214
|
|
|
151
215
|
.mat-checkbox-checked:not(.mat-checkbox-disabled) label span.mat-checkbox-inner-container {
|
|
152
|
-
background-color: map
|
|
216
|
+
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
153
217
|
|
|
154
218
|
svg {
|
|
155
|
-
background-color: map
|
|
219
|
+
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
156
220
|
}
|
|
157
221
|
}
|
|
158
222
|
}
|
|
@@ -160,14 +224,16 @@ lux-checkbox {
|
|
|
160
224
|
/**
|
|
161
225
|
* Theming für LUX-Card
|
|
162
226
|
*/
|
|
163
|
-
lux-card
|
|
227
|
+
lux-card{
|
|
228
|
+
|
|
164
229
|
.lux-card-content-container mat-tab-group.lux-tab-group .lux-tabs-notification-icon {
|
|
165
|
-
border-color:
|
|
230
|
+
border-color: luxcommon.$app-data-bg;
|
|
166
231
|
}
|
|
167
232
|
|
|
168
233
|
.lux-card-content-container {
|
|
169
234
|
overflow-x: hidden;
|
|
170
|
-
padding:
|
|
235
|
+
padding: luxcommon.$form-control-buffer;
|
|
236
|
+
font-family: luxcommon.$app-font-family;
|
|
171
237
|
|
|
172
238
|
> * {
|
|
173
239
|
margin-bottom: 0;
|
|
@@ -175,27 +241,24 @@ lux-card {
|
|
|
175
241
|
}
|
|
176
242
|
|
|
177
243
|
.lux-highlight {
|
|
178
|
-
color:
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.mat-card-subtitle {
|
|
182
|
-
color: $dark-secondary-text;
|
|
244
|
+
color: luxcommon.$dark-primary-text;
|
|
183
245
|
}
|
|
184
246
|
|
|
185
247
|
.lux-card-content-expanded {
|
|
186
|
-
background:
|
|
248
|
+
background: luxcommon.$app-data-bg;
|
|
187
249
|
}
|
|
188
250
|
|
|
189
251
|
.mat-card:not([class*="mat-elevation-z"]) {
|
|
190
|
-
@include lux-elevation-z1;
|
|
252
|
+
@include luxelevations.lux-elevation-z1;
|
|
191
253
|
}
|
|
192
254
|
}
|
|
193
255
|
|
|
194
256
|
/**
|
|
195
257
|
* Theming für LUX-Chips
|
|
196
258
|
*/
|
|
259
|
+
|
|
197
260
|
lux-chips {
|
|
198
|
-
min-height: calc(#{
|
|
261
|
+
min-height: calc(#{luxcommon.$form-control-complete-height} + 20px);
|
|
199
262
|
margin-bottom: 20px;
|
|
200
263
|
|
|
201
264
|
.lux-chips-autocomplete-icon {
|
|
@@ -214,25 +277,25 @@ lux-chips {
|
|
|
214
277
|
mat-chip {
|
|
215
278
|
// Löschicon (luxSelected=true)
|
|
216
279
|
&.mat-chip-selected .mat-chip-remove {
|
|
217
|
-
color:
|
|
280
|
+
color: luxcommon.$app-data-bg !important;
|
|
218
281
|
opacity: 1 !important;
|
|
219
282
|
}
|
|
220
283
|
|
|
221
284
|
// Löschicon (luxSelected=false)
|
|
222
285
|
&:not(.mat-chip-selected) .mat-chip-remove {
|
|
223
|
-
color:
|
|
286
|
+
color: luxcommon.$app-data-bg !important;
|
|
224
287
|
opacity: 1 !important;
|
|
225
288
|
}
|
|
226
289
|
|
|
227
290
|
&.mat-chip-disabled {
|
|
228
|
-
background-color:
|
|
229
|
-
color:
|
|
291
|
+
background-color: luxcommon.$dark-disabled-text !important;
|
|
292
|
+
color: luxcommon.$app-data-bg !important;
|
|
230
293
|
opacity: 1;
|
|
231
294
|
|
|
232
295
|
lux-icon {
|
|
233
296
|
i,
|
|
234
297
|
mat-icon {
|
|
235
|
-
color:
|
|
298
|
+
color: luxcommon.$app-data-bg;
|
|
236
299
|
}
|
|
237
300
|
}
|
|
238
301
|
}
|
|
@@ -246,14 +309,14 @@ lux-chips {
|
|
|
246
309
|
}
|
|
247
310
|
|
|
248
311
|
.lux-chips-autocomplete-panel {
|
|
249
|
-
padding:
|
|
312
|
+
padding: luxcommon.$outline-width;
|
|
250
313
|
margin-top: -20px;
|
|
251
314
|
margin-left: 0;
|
|
252
315
|
margin-right: 0;
|
|
253
316
|
border-radius: 4px;
|
|
254
317
|
|
|
255
318
|
mat-option:not(:last-of-type) {
|
|
256
|
-
margin-bottom:
|
|
319
|
+
margin-bottom: luxcommon.$outline-width;
|
|
257
320
|
}
|
|
258
321
|
}
|
|
259
322
|
|
|
@@ -263,11 +326,11 @@ lux-chips {
|
|
|
263
326
|
lux-datepicker {
|
|
264
327
|
mat-datepicker-toggle button {
|
|
265
328
|
&:not(.mat-button-disabled) .mat-button-wrapper > svg {
|
|
266
|
-
color: map
|
|
329
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
267
330
|
}
|
|
268
331
|
|
|
269
332
|
&.mat-button-disabled .mat-button-wrapper > svg {
|
|
270
|
-
color:
|
|
333
|
+
color: luxcommon.$dark-disabled-text;
|
|
271
334
|
}
|
|
272
335
|
}
|
|
273
336
|
}
|
|
@@ -278,22 +341,22 @@ lux-datepicker {
|
|
|
278
341
|
lux-datetimepicker {
|
|
279
342
|
mat-datepicker-toggle button {
|
|
280
343
|
&:not(.mat-button-disabled) .mat-button-wrapper > svg {
|
|
281
|
-
color: map
|
|
344
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
282
345
|
}
|
|
283
346
|
|
|
284
347
|
&.mat-button-disabled .mat-button-wrapper > svg {
|
|
285
|
-
color:
|
|
348
|
+
color: luxcommon.$dark-disabled-text;
|
|
286
349
|
}
|
|
287
350
|
}
|
|
288
351
|
}
|
|
289
352
|
|
|
290
353
|
.lux-datetime-overlay-content {
|
|
291
354
|
mat-card.mat-card {
|
|
292
|
-
@include lux-elevation-z4();
|
|
355
|
+
@include luxelevations.lux-elevation-z4();
|
|
293
356
|
|
|
294
357
|
lux-input div.lux-form-control {
|
|
295
358
|
min-height: unset;
|
|
296
|
-
margin:
|
|
359
|
+
margin: luxcommon.$form-control-buffer;
|
|
297
360
|
text-align: center;
|
|
298
361
|
}
|
|
299
362
|
}
|
|
@@ -304,10 +367,10 @@ lux-datetimepicker {
|
|
|
304
367
|
*/
|
|
305
368
|
.lux-dialog {
|
|
306
369
|
.lux-dialog-title {
|
|
307
|
-
color:
|
|
370
|
+
color: luxcommon.$dark-primary-text;
|
|
308
371
|
}
|
|
309
372
|
.mat-dialog-container {
|
|
310
|
-
@include lux-elevation-z24;
|
|
373
|
+
@include luxelevations.lux-elevation-z24;
|
|
311
374
|
}
|
|
312
375
|
}
|
|
313
376
|
|
|
@@ -316,7 +379,7 @@ lux-datetimepicker {
|
|
|
316
379
|
*/
|
|
317
380
|
lux-divider {
|
|
318
381
|
.mat-divider {
|
|
319
|
-
background-color:
|
|
382
|
+
background-color: luxcommon.$dark-dividers;
|
|
320
383
|
}
|
|
321
384
|
}
|
|
322
385
|
|
|
@@ -324,20 +387,20 @@ lux-divider {
|
|
|
324
387
|
* Theming for LUX-File-List
|
|
325
388
|
*/
|
|
326
389
|
lux-file-list .lux-file-list {
|
|
327
|
-
margin:
|
|
390
|
+
margin: luxcommon.$form-control-margin;
|
|
328
391
|
|
|
329
392
|
.lux-file-list-entry-label, .lux-file-list-entry-icon {
|
|
330
|
-
color:
|
|
393
|
+
color: luxcommon.$dark-secondary-text;
|
|
331
394
|
}
|
|
332
395
|
|
|
333
396
|
.lux-card-title-container {
|
|
334
|
-
color: map
|
|
397
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
335
398
|
}
|
|
336
399
|
|
|
337
400
|
.lux-file-list-entries {
|
|
338
401
|
.lux-file-list-entry {
|
|
339
402
|
.lux-file-list-entry-label:not(.lux-file-list-entry-label-disabled) {
|
|
340
|
-
color:
|
|
403
|
+
color: luxcommon.$dark-secondary-text;
|
|
341
404
|
}
|
|
342
405
|
}
|
|
343
406
|
}
|
|
@@ -347,19 +410,19 @@ lux-file-list .lux-file-list {
|
|
|
347
410
|
mat-card-content,
|
|
348
411
|
span,
|
|
349
412
|
i {
|
|
350
|
-
color:
|
|
413
|
+
color: luxcommon.$dark-disabled-text;
|
|
351
414
|
}
|
|
352
415
|
|
|
353
416
|
.lux-file-icon-hint {
|
|
354
417
|
span {
|
|
355
|
-
text-decoration-color:
|
|
418
|
+
text-decoration-color: luxcommon.$dark-disabled-text !important;
|
|
356
419
|
}
|
|
357
420
|
}
|
|
358
421
|
}
|
|
359
422
|
|
|
360
423
|
&.lux-file-list-error {
|
|
361
424
|
mat-card-title .lux-card-title-container {
|
|
362
|
-
color:
|
|
425
|
+
color: luxpalette.$lux-warn-color;
|
|
363
426
|
}
|
|
364
427
|
}
|
|
365
428
|
|
|
@@ -373,13 +436,13 @@ lux-file-list .lux-file-list {
|
|
|
373
436
|
*/
|
|
374
437
|
lux-file-progress {
|
|
375
438
|
.lux-file-overlay {
|
|
376
|
-
background:
|
|
439
|
+
background: luxcommon.$dark-focused;
|
|
377
440
|
|
|
378
441
|
mat-spinner,
|
|
379
442
|
mat-spinner svg {
|
|
380
443
|
circle {
|
|
381
|
-
stroke: map
|
|
382
|
-
background: map
|
|
444
|
+
stroke: map.get(luxpalette.$lux-palette_primary, 500);
|
|
445
|
+
background: map.get(luxpalette.$lux-palette_primary, 500);
|
|
383
446
|
}
|
|
384
447
|
}
|
|
385
448
|
}
|
|
@@ -545,7 +608,7 @@ lux-file-progress {
|
|
|
545
608
|
display: flex;
|
|
546
609
|
align-items: center;
|
|
547
610
|
|
|
548
|
-
button {
|
|
611
|
+
button.mat-button {
|
|
549
612
|
padding: 0;
|
|
550
613
|
margin: 0;
|
|
551
614
|
border-radius: 8px;
|
|
@@ -555,6 +618,15 @@ lux-file-progress {
|
|
|
555
618
|
i {
|
|
556
619
|
font-size: 24px;
|
|
557
620
|
}
|
|
621
|
+
.lux-lx-icon {
|
|
622
|
+
height: 24px;
|
|
623
|
+
width: 24px;
|
|
624
|
+
mat-icon.mat-icon.lux-lx-icon-no-size {
|
|
625
|
+
width: 24px;
|
|
626
|
+
height: 24px;
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
|
|
558
630
|
}
|
|
559
631
|
}
|
|
560
632
|
}
|
|
@@ -624,13 +696,13 @@ lux-file-progress {
|
|
|
624
696
|
* Theming for LUX-Form-Controls
|
|
625
697
|
*/
|
|
626
698
|
.lux-form-control {
|
|
627
|
-
margin:
|
|
628
|
-
min-height:
|
|
699
|
+
margin: luxcommon.$form-control-margin;
|
|
700
|
+
min-height: luxcommon.$form-control-complete-height;
|
|
629
701
|
|
|
630
702
|
.lux-label,
|
|
631
703
|
mat-hint,
|
|
632
704
|
mat-error {
|
|
633
|
-
color:
|
|
705
|
+
color: luxcommon.$dark-secondary-text;
|
|
634
706
|
}
|
|
635
707
|
|
|
636
708
|
.lux-form-control-container {
|
|
@@ -638,12 +710,12 @@ lux-file-progress {
|
|
|
638
710
|
|
|
639
711
|
input, textarea {
|
|
640
712
|
&:required {
|
|
641
|
-
@include lux-elevation-z0;
|
|
713
|
+
@include luxelevations.lux-elevation-z0;
|
|
642
714
|
}
|
|
643
715
|
}
|
|
644
716
|
|
|
645
717
|
&:after {
|
|
646
|
-
border-bottom: 1px solid
|
|
718
|
+
border-bottom: 1px solid luxcommon.$form-border-color;
|
|
647
719
|
}
|
|
648
720
|
}
|
|
649
721
|
}
|
|
@@ -651,30 +723,50 @@ lux-file-progress {
|
|
|
651
723
|
.lux-form-control-error {
|
|
652
724
|
.lux-form-control-label {
|
|
653
725
|
> * {
|
|
654
|
-
color:
|
|
726
|
+
color: luxpalette.$lux-warn-color !important;
|
|
655
727
|
}
|
|
656
728
|
}
|
|
657
729
|
|
|
658
730
|
.lux-form-control-container {
|
|
659
|
-
$lux-selected-border-color:
|
|
731
|
+
$lux-selected-border-color: luxpalette.$lux-warn-color !important;
|
|
660
732
|
&:after { // inaktives form-control hat auch eine rote Linie (anstatt schwarz)
|
|
661
|
-
border-bottom: 1px solid
|
|
733
|
+
border-bottom: 1px solid luxpalette.$lux-warn-color;
|
|
662
734
|
}
|
|
663
735
|
}
|
|
664
736
|
|
|
665
|
-
.lux-form-control-misc {
|
|
737
|
+
.lux-form-control-misc div {
|
|
666
738
|
> * {
|
|
667
|
-
color:
|
|
739
|
+
color: luxpalette.$lux-warn-color !important;
|
|
668
740
|
}
|
|
669
741
|
}
|
|
670
742
|
}
|
|
671
743
|
|
|
672
744
|
.lux-form-control-disabled {
|
|
673
745
|
.lux-form-control-container {
|
|
674
|
-
color:
|
|
746
|
+
color: luxcommon.$dark-disabled-text !important;
|
|
675
747
|
|
|
676
748
|
&:after {
|
|
677
|
-
border-bottom: 1px dashed
|
|
749
|
+
border-bottom: 1px dashed luxcommon.$dark-disabled-text;
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
lux-icon.lux-error-icon {
|
|
755
|
+
font-size: 12px;
|
|
756
|
+
max-height: 12px;
|
|
757
|
+
max-width: 12px;
|
|
758
|
+
padding: 0 4px 0 4px;
|
|
759
|
+
|
|
760
|
+
mat-icon {
|
|
761
|
+
padding: 0 !important;
|
|
762
|
+
min-width: 12px;
|
|
763
|
+
max-width: 12px;
|
|
764
|
+
min-height: 12px;
|
|
765
|
+
max-height: 12px;
|
|
766
|
+
color: luxpalette.$lux-warn-color;
|
|
767
|
+
|
|
768
|
+
&:hover {
|
|
769
|
+
cursor: pointer;
|
|
678
770
|
}
|
|
679
771
|
}
|
|
680
772
|
}
|
|
@@ -684,7 +776,7 @@ lux-file-progress {
|
|
|
684
776
|
*/
|
|
685
777
|
lux-layout-card-row {
|
|
686
778
|
.row-title {
|
|
687
|
-
color:
|
|
779
|
+
color: luxcommon.$dark-primary-text;
|
|
688
780
|
}
|
|
689
781
|
}
|
|
690
782
|
|
|
@@ -693,7 +785,7 @@ lux-layout-card-row {
|
|
|
693
785
|
*/
|
|
694
786
|
lux-layout-form-row {
|
|
695
787
|
.row-title {
|
|
696
|
-
color:
|
|
788
|
+
color: luxcommon.$dark-primary-text;
|
|
697
789
|
}
|
|
698
790
|
}
|
|
699
791
|
|
|
@@ -703,25 +795,36 @@ lux-layout-form-row {
|
|
|
703
795
|
lux-list {
|
|
704
796
|
.lux-list-empty-icon,
|
|
705
797
|
.lux-list-empty-icon-text {
|
|
706
|
-
color:
|
|
798
|
+
color: luxcommon.$dark-primary-text;
|
|
799
|
+
}
|
|
800
|
+
.mat-card:not([class*="mat-elevation-z"]) {
|
|
801
|
+
@include luxelevations.lux-elevation-z2;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
lux-list-item lux-card mat-card {
|
|
805
|
+
margin: luxcommon.$outline-width;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.mat-card-content.menu-item-content {
|
|
809
|
+
margin-bottom: 0;
|
|
707
810
|
}
|
|
708
811
|
}
|
|
709
812
|
|
|
710
813
|
/*
|
|
711
814
|
* Theming for LUX-Lookup-Components
|
|
712
815
|
*/
|
|
713
|
-
lux-lookup-combobox {
|
|
816
|
+
lux-lookup-combobox, lux-lookup-combobox-ac {
|
|
714
817
|
mat-select {
|
|
715
818
|
&[aria-disabled="true"] .mat-select-arrow {
|
|
716
819
|
border-width: 7px;
|
|
717
820
|
margin: 0;
|
|
718
|
-
color:
|
|
821
|
+
color: luxcommon.$dark-disabled-text;
|
|
719
822
|
}
|
|
720
823
|
|
|
721
824
|
&[aria-disabled="false"] .mat-select-arrow {
|
|
722
825
|
border-width: 7px;
|
|
723
826
|
margin: 0;
|
|
724
|
-
color: map
|
|
827
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
725
828
|
}
|
|
726
829
|
}
|
|
727
830
|
}
|
|
@@ -729,10 +832,10 @@ lux-lookup-combobox {
|
|
|
729
832
|
// Optionen werden im Cdk-Overlay dargestellt und hängen nicht unter der Component selbst.
|
|
730
833
|
.lux-autocomplete-panel, .lux-select-panel {
|
|
731
834
|
.mat-option {
|
|
732
|
-
border-left:
|
|
835
|
+
border-left: none;
|
|
733
836
|
|
|
734
837
|
&.invalid {
|
|
735
|
-
border-left: 2px solid
|
|
838
|
+
border-left: 2px solid luxpalette.$lux-warn-color;
|
|
736
839
|
}
|
|
737
840
|
}
|
|
738
841
|
}
|
|
@@ -745,7 +848,34 @@ lux-lookup-combobox {
|
|
|
745
848
|
.mat-datepicker-content,
|
|
746
849
|
.mat-select-panel:not([class*="mat-elevation-z"]),
|
|
747
850
|
.mat-menu-panel {
|
|
748
|
-
@include lux-elevation-z4;
|
|
851
|
+
@include luxelevations.lux-elevation-z4;
|
|
852
|
+
}
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
/*
|
|
856
|
+
* Stylings für für Elemente die im Mat-Menu-Panel im cdk-overlay-container liegen
|
|
857
|
+
*/
|
|
858
|
+
.cdk-overlay-container {
|
|
859
|
+
// spezielles Styling für das neue User-Menu-Label
|
|
860
|
+
.lux-user-name-label.mat-menu-item[disabled] {
|
|
861
|
+
color: luxcommon.$dark-primary-text;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
lux-icon.lux-menu-item-icon {
|
|
865
|
+
width: 30px;
|
|
866
|
+
min-width: 30px;
|
|
867
|
+
max-width: 30px;
|
|
868
|
+
display: inline-grid;
|
|
869
|
+
|
|
870
|
+
mat-icon.mat-icon:not(.lux-lx-icon){
|
|
871
|
+
font-size: 24px !important;
|
|
872
|
+
}
|
|
873
|
+
&.lux-lx-icon.lux-no-size {
|
|
874
|
+
width: 24px;
|
|
875
|
+
min-width: 24px;
|
|
876
|
+
max-width: 24px;
|
|
877
|
+
height: 24px;
|
|
878
|
+
}
|
|
749
879
|
}
|
|
750
880
|
}
|
|
751
881
|
|
|
@@ -756,17 +886,17 @@ lux-master-detail {
|
|
|
756
886
|
.lux-detail-container {
|
|
757
887
|
.lux-detail-empty-icon,
|
|
758
888
|
.lux-detail-empty-icon-text {
|
|
759
|
-
color:
|
|
889
|
+
color: luxcommon.$dark-primary-text;
|
|
760
890
|
}
|
|
761
891
|
}
|
|
762
892
|
|
|
763
893
|
.lux-master-container.lux-empty-elements-aligned {
|
|
764
|
-
@include lux-elevation-z1;
|
|
894
|
+
@include luxelevations.lux-elevation-z1;
|
|
765
895
|
}
|
|
766
896
|
|
|
767
897
|
lux-list {
|
|
768
898
|
.mat-card:not([class*="mat-elevation-z"]) {
|
|
769
|
-
@include lux-elevation-z0;
|
|
899
|
+
@include luxelevations.lux-elevation-z0;
|
|
770
900
|
}
|
|
771
901
|
}
|
|
772
902
|
}
|
|
@@ -775,16 +905,16 @@ lux-master-detail {
|
|
|
775
905
|
* Theming for LUX-Master-Footer
|
|
776
906
|
*/
|
|
777
907
|
lux-master-footer {
|
|
778
|
-
background-color:
|
|
779
|
-
@include lux-elevation-z1;
|
|
908
|
+
background-color: luxcommon.$app-data-bg;
|
|
909
|
+
@include luxelevations.lux-elevation-z1;
|
|
780
910
|
}
|
|
781
911
|
|
|
782
912
|
/*
|
|
783
913
|
* Theming for LUX-Master-Header
|
|
784
914
|
*/
|
|
785
915
|
lux-master-header {
|
|
786
|
-
background-color:
|
|
787
|
-
@include lux-elevation-z1;
|
|
916
|
+
background-color: luxcommon.$app-data-bg;
|
|
917
|
+
@include luxelevations.lux-elevation-z1;
|
|
788
918
|
}
|
|
789
919
|
|
|
790
920
|
/*
|
|
@@ -804,21 +934,51 @@ lux-master-header {
|
|
|
804
934
|
*/
|
|
805
935
|
lux-message-box {
|
|
806
936
|
&.mat-elevation-z4 {
|
|
807
|
-
@include lux-elevation-z4();
|
|
937
|
+
@include luxelevations.lux-elevation-z4();
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
.lux-message-container lux-button {
|
|
941
|
+
button.mat-fab.lux-icon-button.lux-button-rounded:not([class*=mat-elevation-z]) {
|
|
942
|
+
color: #fff;
|
|
943
|
+
background-color: transparent;
|
|
944
|
+
height: 36px;
|
|
945
|
+
width: 36px;
|
|
946
|
+
@include luxelevations.lux-elevation-z0();
|
|
947
|
+
|
|
948
|
+
|
|
949
|
+
}
|
|
950
|
+
.mat-button-ripple,
|
|
951
|
+
.mat-button-focus-overlay {
|
|
952
|
+
display: none;
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.lux-message-container lux-icon:not(.lux-button-icon, .lux-button-icon-round) {
|
|
957
|
+
display: contents;
|
|
958
|
+
|
|
959
|
+
mat-icon.lux-lx-icon-no-size {
|
|
960
|
+
width: 20px;
|
|
961
|
+
height: 20px;
|
|
962
|
+
}
|
|
808
963
|
}
|
|
809
964
|
}
|
|
810
965
|
|
|
811
966
|
/*
|
|
812
967
|
* Theming for LUX-Snackbar
|
|
813
968
|
*/
|
|
814
|
-
@each $colorName, $colorNameHex in
|
|
969
|
+
@each $colorName, $colorNameHex in luxcommon.$colorsForDarkBg {
|
|
815
970
|
.lux-snackbar-content .lux-bg-color-#{"" + $colorName + ""} {
|
|
816
971
|
color: $colorNameHex;
|
|
817
972
|
background-color: transparent;
|
|
818
973
|
}
|
|
819
974
|
}
|
|
820
975
|
snack-bar-container.mat-snack-bar-container {
|
|
821
|
-
@include lux-elevation-z6();
|
|
976
|
+
@include luxelevations.lux-elevation-z6();
|
|
977
|
+
|
|
978
|
+
mat-icon.mat-icon.lux-lx-icon-no-size {
|
|
979
|
+
width: 2em;
|
|
980
|
+
height: 2em;
|
|
981
|
+
}
|
|
822
982
|
}
|
|
823
983
|
|
|
824
984
|
/*
|
|
@@ -827,11 +987,11 @@ snack-bar-container.mat-snack-bar-container {
|
|
|
827
987
|
lux-progress {
|
|
828
988
|
.mat-progress-bar-fill:after,
|
|
829
989
|
.mat-progress-spinner > svg > circle {
|
|
830
|
-
stroke: map
|
|
831
|
-
background: map
|
|
990
|
+
stroke: map.get(luxpalette.$lux-palette_primary, A400);
|
|
991
|
+
background: map.get(luxpalette.$lux-palette_primary, A400);
|
|
832
992
|
}
|
|
833
993
|
|
|
834
|
-
@each $colorName, $colorNameHex in
|
|
994
|
+
@each $colorName, $colorNameHex in luxcommon.$componentBgColors {
|
|
835
995
|
.lux-bg-color-#{"" + $colorName + ""} {
|
|
836
996
|
.mat-progress-bar-primary:after,
|
|
837
997
|
.mat-progress-bar-secondary:after {
|
|
@@ -840,7 +1000,7 @@ lux-progress {
|
|
|
840
1000
|
}
|
|
841
1001
|
}
|
|
842
1002
|
|
|
843
|
-
@each $colorName, $colorNameHex in
|
|
1003
|
+
@each $colorName, $colorNameHex in luxcommon.$componentBgColors {
|
|
844
1004
|
mat-progress-spinner.lux-bg-color-#{"" + $colorName + ""} {
|
|
845
1005
|
circle {
|
|
846
1006
|
stroke: $colorNameHex;
|
|
@@ -858,37 +1018,37 @@ lux-radio {
|
|
|
858
1018
|
.mat-radio-checked {
|
|
859
1019
|
label.mat-radio-label .mat-radio-container {
|
|
860
1020
|
span.mat-radio-inner-circle {
|
|
861
|
-
background-color: map
|
|
1021
|
+
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
862
1022
|
}
|
|
863
1023
|
|
|
864
1024
|
span.mat-radio-outer-circle {
|
|
865
|
-
border-color: map
|
|
1025
|
+
border-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
866
1026
|
}
|
|
867
1027
|
}
|
|
868
1028
|
|
|
869
1029
|
&.mat-radio-disabled label .mat-radio-container {
|
|
870
1030
|
span.mat-radio-inner-circle {
|
|
871
|
-
background-color:
|
|
1031
|
+
background-color: luxcommon.$dark-disabled-text;
|
|
872
1032
|
}
|
|
873
1033
|
|
|
874
1034
|
span.mat-radio-outer-circle {
|
|
875
|
-
border-color:
|
|
1035
|
+
border-color: luxcommon.$dark-disabled-text;
|
|
876
1036
|
}
|
|
877
1037
|
}
|
|
878
1038
|
}
|
|
879
1039
|
|
|
880
1040
|
.mat-radio-disabled label.mat-radio-label {
|
|
881
1041
|
.mat-radio-label-content {
|
|
882
|
-
color:
|
|
1042
|
+
color: luxcommon.$dark-disabled-text;
|
|
883
1043
|
}
|
|
884
1044
|
|
|
885
1045
|
.mat-radio-container {
|
|
886
1046
|
span.mat-radio-inner-circle {
|
|
887
|
-
background-color:
|
|
1047
|
+
background-color: luxcommon.$dark-disabled-text;
|
|
888
1048
|
}
|
|
889
1049
|
|
|
890
1050
|
span.mat-radio-outer-circle {
|
|
891
|
-
border-color:
|
|
1051
|
+
border-color: luxcommon.$dark-disabled-text;
|
|
892
1052
|
}
|
|
893
1053
|
}
|
|
894
1054
|
}
|
|
@@ -900,18 +1060,22 @@ lux-radio {
|
|
|
900
1060
|
lux-select {
|
|
901
1061
|
mat-select {
|
|
902
1062
|
&[aria-disabled="true"] .mat-select-arrow {
|
|
903
|
-
|
|
1063
|
+
border-width: 7px;
|
|
1064
|
+
margin: 0 2px 0 0;
|
|
1065
|
+
color: luxcommon.$dark-disabled-text;
|
|
904
1066
|
}
|
|
905
1067
|
|
|
906
1068
|
&[aria-disabled="false"] .mat-select-arrow {
|
|
907
|
-
|
|
1069
|
+
border-width: 7px;
|
|
1070
|
+
margin: 0 2px 0 0;
|
|
1071
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
908
1072
|
}
|
|
909
1073
|
}
|
|
910
1074
|
}
|
|
911
1075
|
|
|
912
1076
|
// Checkbox wird im Cdk-Overlay dargestellt und hängt nicht unter der Component selbst.
|
|
913
1077
|
.lux-select-panel .mat-pseudo-checkbox-checked {
|
|
914
|
-
background-color: map
|
|
1078
|
+
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
915
1079
|
}
|
|
916
1080
|
|
|
917
1081
|
/*
|
|
@@ -919,32 +1083,32 @@ lux-select {
|
|
|
919
1083
|
*/
|
|
920
1084
|
lux-side-nav {
|
|
921
1085
|
.lux-side-nav {
|
|
922
|
-
background:
|
|
923
|
-
@include lux-elevation-z16();
|
|
1086
|
+
background: luxcommon.$app-data-bg;
|
|
1087
|
+
@include luxelevations.lux-elevation-z16();
|
|
924
1088
|
|
|
925
1089
|
.lux-side-nav-header {
|
|
926
|
-
border-bottom: 1px solid
|
|
1090
|
+
border-bottom: 1px solid luxcommon.$dark-dividers;
|
|
927
1091
|
}
|
|
928
1092
|
|
|
929
1093
|
.lux-side-nav-footer {
|
|
930
|
-
border-top: 1px solid
|
|
1094
|
+
border-top: 1px solid luxcommon.$dark-dividers;
|
|
931
1095
|
}
|
|
932
1096
|
|
|
933
1097
|
.lux-side-nav-content {
|
|
934
1098
|
.lux-side-nav-item {
|
|
935
1099
|
.lux-side-nav-item-icon {
|
|
936
|
-
color: map
|
|
1100
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
937
1101
|
|
|
938
1102
|
&.lux-side-nav-disabled {
|
|
939
|
-
color:
|
|
1103
|
+
color: luxcommon.$dark-disabled-text;
|
|
940
1104
|
}
|
|
941
1105
|
}
|
|
942
1106
|
|
|
943
1107
|
.lux-side-nav-item-expansion-icon {
|
|
944
|
-
color: map
|
|
1108
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
945
1109
|
|
|
946
1110
|
&.lux-side-nav-disabled {
|
|
947
|
-
color:
|
|
1111
|
+
color: luxcommon.$dark-disabled-text;
|
|
948
1112
|
}
|
|
949
1113
|
}
|
|
950
1114
|
}
|
|
@@ -953,7 +1117,7 @@ lux-side-nav {
|
|
|
953
1117
|
}
|
|
954
1118
|
|
|
955
1119
|
.lux-side-nav-overlay {
|
|
956
|
-
background-color:
|
|
1120
|
+
background-color: luxcommon.$dark-focused;
|
|
957
1121
|
}
|
|
958
1122
|
|
|
959
1123
|
/*
|
|
@@ -963,7 +1127,7 @@ lux-slider {
|
|
|
963
1127
|
.lux-show-thumb-label-always {
|
|
964
1128
|
&.mat-slider-disabled {
|
|
965
1129
|
.mat-slider-thumb-label {
|
|
966
|
-
background-color:
|
|
1130
|
+
background-color: luxcommon.$dark-disabled-text;
|
|
967
1131
|
}
|
|
968
1132
|
}
|
|
969
1133
|
}
|
|
@@ -974,10 +1138,44 @@ lux-slider {
|
|
|
974
1138
|
*/
|
|
975
1139
|
lux-spinner {
|
|
976
1140
|
.mat-progress-spinner > svg > circle {
|
|
977
|
-
stroke: map
|
|
1141
|
+
stroke: map.get(luxpalette.$lux-palette_primary, A400);
|
|
978
1142
|
}
|
|
979
1143
|
}
|
|
980
1144
|
|
|
1145
|
+
lux-filter-form {
|
|
1146
|
+
lux-accordion {
|
|
1147
|
+
lux-panel-header-title {
|
|
1148
|
+
width: 100%;
|
|
1149
|
+
mat-panel-title.mat-expansion-panel-header-title {
|
|
1150
|
+
align-items: center;
|
|
1151
|
+
justify-content: space-between;
|
|
1152
|
+
margin: 0px;
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
h2.lux-card-title-container {
|
|
1158
|
+
font-size: 16px;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
lux-menu.filter-menu {
|
|
1162
|
+
.lux-menu-extended {
|
|
1163
|
+
padding: 0 !important;
|
|
1164
|
+
}
|
|
1165
|
+
.lux-filter-menu-trigger button.lux-button-rounded {
|
|
1166
|
+
height: 36px;
|
|
1167
|
+
width: 36px;
|
|
1168
|
+
min-width: 36px;
|
|
1169
|
+
max-width: 36px;
|
|
1170
|
+
background-color: transparent;
|
|
1171
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1172
|
+
padding: 0px !important;
|
|
1173
|
+
margin: 0px 4px !important;
|
|
1174
|
+
|
|
1175
|
+
@include luxelevations.lux-elevation-z0;
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
}
|
|
981
1179
|
/*
|
|
982
1180
|
* Theming for LUX-Stepper
|
|
983
1181
|
*/
|
|
@@ -989,20 +1187,20 @@ lux-stepper {
|
|
|
989
1187
|
// luxUseCustomIcons=true
|
|
990
1188
|
.lux-ignore-mat-step-icons {
|
|
991
1189
|
mat-step-header {
|
|
992
|
-
color:
|
|
1190
|
+
color: luxcommon.$dark-secondary-text;
|
|
993
1191
|
|
|
994
1192
|
&.lux-step-header-touched {
|
|
995
1193
|
.lux-stepper-edited-icon,
|
|
996
1194
|
.lux-stepper-normal-icon {
|
|
997
1195
|
i,
|
|
998
1196
|
mat-icon {
|
|
999
|
-
color:
|
|
1000
|
-
background-color: map
|
|
1197
|
+
color: luxcommon.$app-data-bg;
|
|
1198
|
+
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1001
1199
|
}
|
|
1002
1200
|
}
|
|
1003
1201
|
|
|
1004
1202
|
lux-step-header {
|
|
1005
|
-
color: map
|
|
1203
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1006
1204
|
}
|
|
1007
1205
|
}
|
|
1008
1206
|
|
|
@@ -1011,8 +1209,8 @@ lux-stepper {
|
|
|
1011
1209
|
.lux-stepper-normal-icon {
|
|
1012
1210
|
i,
|
|
1013
1211
|
mat-icon {
|
|
1014
|
-
color:
|
|
1015
|
-
background-color:
|
|
1212
|
+
color: luxcommon.$app-data-bg;
|
|
1213
|
+
background-color: luxcommon.$dark-secondary-text;
|
|
1016
1214
|
}
|
|
1017
1215
|
}
|
|
1018
1216
|
}
|
|
@@ -1022,34 +1220,34 @@ lux-stepper {
|
|
|
1022
1220
|
// luxUseCustomIcons=false
|
|
1023
1221
|
.mat-step-header {
|
|
1024
1222
|
lux-step-header {
|
|
1025
|
-
color:
|
|
1223
|
+
color: luxcommon.$dark-secondary-text;;
|
|
1026
1224
|
}
|
|
1027
1225
|
|
|
1028
1226
|
&.lux-step-header-touched {
|
|
1029
1227
|
.mat-step-icon {
|
|
1030
|
-
color:
|
|
1031
|
-
background-color: map
|
|
1228
|
+
color: luxcommon.$app-data-bg;
|
|
1229
|
+
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1032
1230
|
}
|
|
1033
1231
|
|
|
1034
1232
|
.mat-step-icon-selected {
|
|
1035
|
-
color:
|
|
1036
|
-
background-color: map
|
|
1233
|
+
color: luxcommon.$app-data-bg;
|
|
1234
|
+
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1037
1235
|
}
|
|
1038
1236
|
|
|
1039
1237
|
lux-step-header {
|
|
1040
|
-
color: map
|
|
1238
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1041
1239
|
}
|
|
1042
1240
|
}
|
|
1043
1241
|
|
|
1044
1242
|
&:not(.lux-step-header-touched) {
|
|
1045
1243
|
.mat-step-icon {
|
|
1046
|
-
color:
|
|
1047
|
-
background-color:
|
|
1244
|
+
color: luxcommon.$app-data-bg;
|
|
1245
|
+
background-color: luxcommon.$dark-secondary-text;
|
|
1048
1246
|
}
|
|
1049
1247
|
|
|
1050
1248
|
.mat-step-icon-selected {
|
|
1051
|
-
color:
|
|
1052
|
-
background-color: map
|
|
1249
|
+
color: luxcommon.$app-data-bg;
|
|
1250
|
+
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1053
1251
|
}
|
|
1054
1252
|
}
|
|
1055
1253
|
}
|
|
@@ -1059,20 +1257,21 @@ lux-stepper {
|
|
|
1059
1257
|
* Theming for LUX-Table
|
|
1060
1258
|
*/
|
|
1061
1259
|
lux-table {
|
|
1260
|
+
font-family: global.$app-font-family;
|
|
1261
|
+
|
|
1062
1262
|
.lux-row-selected {
|
|
1063
|
-
background-color:
|
|
1263
|
+
background-color: luxcommon.$lux-selected-bg-color;
|
|
1064
1264
|
}
|
|
1065
1265
|
|
|
1066
1266
|
table td {
|
|
1067
|
-
|
|
1068
|
-
|
|
1267
|
+
div.lux-form-control {
|
|
1268
|
+
min-height: luxcommon.$form-control-height-small;
|
|
1069
1269
|
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1270
|
+
.lux-form-control-label,
|
|
1271
|
+
.lux-form-control-misc {
|
|
1272
|
+
display: none;
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1076
1275
|
}
|
|
1077
1276
|
}
|
|
1078
1277
|
|
|
@@ -1082,19 +1281,25 @@ lux-table {
|
|
|
1082
1281
|
lux-tabs {
|
|
1083
1282
|
.mat-tab-nav-bar,
|
|
1084
1283
|
.mat-tab-header {
|
|
1085
|
-
border-color:
|
|
1284
|
+
border-color: rgba(black, 0.38);
|
|
1285
|
+
font-size: 16px;
|
|
1086
1286
|
}
|
|
1087
1287
|
|
|
1088
1288
|
mat-tab-group div[role="tab"]:not(.mat-tab-disabled) {
|
|
1089
|
-
color: map
|
|
1289
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1090
1290
|
}
|
|
1091
1291
|
|
|
1092
1292
|
.lux-notification-new {
|
|
1093
|
-
background-color: map
|
|
1293
|
+
background-color: map.get(luxcommon.$componentBgColors, "green");
|
|
1094
1294
|
}
|
|
1095
1295
|
|
|
1096
1296
|
.lux-tabs-notification-icon {
|
|
1097
|
-
border: 2px solid
|
|
1297
|
+
border: 2px solid luxcommon.$app-content-bg;
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
.lux-tabs-show-border {
|
|
1301
|
+
border: 1px solid luxcommon.$app-border-color;
|
|
1302
|
+
border-radius: 4px;
|
|
1098
1303
|
}
|
|
1099
1304
|
}
|
|
1100
1305
|
|
|
@@ -1103,15 +1308,15 @@ lux-tabs {
|
|
|
1103
1308
|
*/
|
|
1104
1309
|
lux-tile {
|
|
1105
1310
|
.lux-notification-new {
|
|
1106
|
-
background-color: map
|
|
1311
|
+
background-color: map.get(luxpalette.$lux-palette_accent, 500);
|
|
1107
1312
|
}
|
|
1108
1313
|
|
|
1109
1314
|
.lux-highlight {
|
|
1110
|
-
color: map
|
|
1315
|
+
color: map.get(luxpalette.$lux-palette_primary, A400);
|
|
1111
1316
|
}
|
|
1112
1317
|
|
|
1113
1318
|
.mat-card:not([class*="mat-elevation-z"]) {
|
|
1114
|
-
@include lux-elevation-z2;
|
|
1319
|
+
@include luxelevations.lux-elevation-z2;
|
|
1115
1320
|
}
|
|
1116
1321
|
|
|
1117
1322
|
.lux-tile-label {
|
|
@@ -1130,21 +1335,21 @@ lux-tile {
|
|
|
1130
1335
|
lux-toggle {
|
|
1131
1336
|
.mat-slide-toggle {
|
|
1132
1337
|
label {
|
|
1133
|
-
color:
|
|
1134
|
-
font-family:
|
|
1338
|
+
color: luxcommon.$dark-primary-text;
|
|
1339
|
+
font-family: global.$app-font-family;
|
|
1135
1340
|
}
|
|
1136
1341
|
|
|
1137
1342
|
.mat-slide-toggle-thumb {
|
|
1138
|
-
@include lux-elevation-z1;
|
|
1343
|
+
@include luxelevations.lux-elevation-z1;
|
|
1139
1344
|
}
|
|
1140
1345
|
|
|
1141
1346
|
&.mat-checked {
|
|
1142
1347
|
.mat-slide-toggle-bar {
|
|
1143
|
-
background-color: map
|
|
1348
|
+
background-color: map.get(luxpalette.$lux-palette_primary, 100);
|
|
1144
1349
|
}
|
|
1145
1350
|
|
|
1146
1351
|
.mat-slide-toggle-thumb {
|
|
1147
|
-
background-color: map
|
|
1352
|
+
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
1148
1353
|
}
|
|
1149
1354
|
}
|
|
1150
1355
|
|
|
@@ -1163,7 +1368,7 @@ lux-toggle {
|
|
|
1163
1368
|
|
|
1164
1369
|
&.mat-checked {
|
|
1165
1370
|
.mat-slide-toggle-bar {
|
|
1166
|
-
background-color:
|
|
1371
|
+
background-color: luxcommon.$dark-disabled-text;
|
|
1167
1372
|
}
|
|
1168
1373
|
|
|
1169
1374
|
.mat-slide-toggle-thumb {
|
|
@@ -1173,7 +1378,7 @@ lux-toggle {
|
|
|
1173
1378
|
|
|
1174
1379
|
&:not(.mat-checked) {
|
|
1175
1380
|
.mat-slide-toggle-bar {
|
|
1176
|
-
background-color:
|
|
1381
|
+
background-color: luxcommon.$dark-disabled-text;
|
|
1177
1382
|
}
|
|
1178
1383
|
|
|
1179
1384
|
.mat-slide-toggle-thumb {
|
|
@@ -1195,7 +1400,7 @@ mat-tooltip-component .mat-tooltip {
|
|
|
1195
1400
|
* Theming for LUX-Accordion
|
|
1196
1401
|
*/
|
|
1197
1402
|
mat-expansion-panel.mat-expansion-panel:not([class*="mat-elevation-z"]) {
|
|
1198
|
-
@include lux-elevation-z2;
|
|
1403
|
+
@include luxelevations.lux-elevation-z2;
|
|
1199
1404
|
}
|
|
1200
1405
|
|
|
1201
1406
|
|
|
@@ -1205,7 +1410,7 @@ mat-expansion-panel.mat-expansion-panel:not([class*="mat-elevation-z"]) {
|
|
|
1205
1410
|
lux-error-page {
|
|
1206
1411
|
lux-card:not(.lux-error-page-desktop) {
|
|
1207
1412
|
.mat-card:not([class*="mat-elevation-z"]) {
|
|
1208
|
-
@include lux-elevation-z0;
|
|
1413
|
+
@include luxelevations.lux-elevation-z0;
|
|
1209
1414
|
}
|
|
1210
1415
|
|
|
1211
1416
|
}
|
|
@@ -1247,7 +1452,7 @@ lux-stepper-large {
|
|
|
1247
1452
|
flex-direction: column;
|
|
1248
1453
|
flex: 0 1 30%;
|
|
1249
1454
|
gap: 12px;
|
|
1250
|
-
padding: 12px;
|
|
1455
|
+
padding: 12px 33px 12px 12px;
|
|
1251
1456
|
|
|
1252
1457
|
overflow-y: auto;
|
|
1253
1458
|
min-width: 400px;
|
|
@@ -1264,8 +1469,8 @@ lux-stepper-large {
|
|
|
1264
1469
|
|
|
1265
1470
|
&.lux-active:not(.lux-disabled) {
|
|
1266
1471
|
.lux-stepper-large-nav-item-number-container {
|
|
1267
|
-
color:
|
|
1268
|
-
background-color:
|
|
1472
|
+
color: luxcommon.$lux-stepper-large-nav-item-active-fc;
|
|
1473
|
+
background-color: luxcommon.$lux-stepper-large-nav-item-active-bg;
|
|
1269
1474
|
}
|
|
1270
1475
|
|
|
1271
1476
|
.lux-stepper-large-nav-item-label {
|
|
@@ -1280,19 +1485,38 @@ lux-stepper-large {
|
|
|
1280
1485
|
|
|
1281
1486
|
&.lux-completed:not(.lux-active) {
|
|
1282
1487
|
.lux-stepper-large-nav-item-number-container {
|
|
1283
|
-
color:
|
|
1284
|
-
background-color:
|
|
1488
|
+
color: luxcommon.$lux-stepper-large-nav-item-completed-fg;
|
|
1489
|
+
background-color: luxcommon.$lux-stepper-large-nav-item-completed-bg;
|
|
1285
1490
|
}
|
|
1286
1491
|
|
|
1287
1492
|
a {
|
|
1288
1493
|
color: #2E8533;
|
|
1494
|
+
position: relative;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
a::after {
|
|
1498
|
+
content: '';
|
|
1499
|
+
position: absolute;
|
|
1500
|
+
display: inline-block;
|
|
1501
|
+
width: 23px;
|
|
1502
|
+
height: 23px;
|
|
1503
|
+
margin: 5px 10px 0px;
|
|
1504
|
+
background-color: #2E8533;
|
|
1505
|
+
-webkit-mask: url(luxicons.$checkmark);
|
|
1506
|
+
-webkit-mask-repeat: no-repeat;
|
|
1507
|
+
-webkit-mask-position: center;
|
|
1508
|
+
-webkit-mask-size: cover;
|
|
1509
|
+
mask: url(luxicons.$checkmark);
|
|
1510
|
+
mask-repeat: no-repeat;
|
|
1511
|
+
mask-position: center;
|
|
1512
|
+
mask-size: cover;
|
|
1289
1513
|
}
|
|
1290
1514
|
}
|
|
1291
1515
|
|
|
1292
1516
|
&:not(.lux-completed):not(.lux-active) {
|
|
1293
1517
|
.lux-stepper-large-nav-item-number-container {
|
|
1294
|
-
color:
|
|
1295
|
-
background-color:
|
|
1518
|
+
color: luxcommon.$lux-stepper-large-nav-item-completed-fg;
|
|
1519
|
+
background-color: luxcommon.$lux-stepper-large-nav-item-completed-bg;
|
|
1296
1520
|
}
|
|
1297
1521
|
}
|
|
1298
1522
|
}
|
|
@@ -1302,8 +1526,8 @@ lux-stepper-large {
|
|
|
1302
1526
|
color: #003366;
|
|
1303
1527
|
|
|
1304
1528
|
.lux-stepper-large-nav-item-number-container {
|
|
1305
|
-
color:
|
|
1306
|
-
background-color:
|
|
1529
|
+
color: luxcommon.$lux-stepper-large-nav-item-disabled-fg;
|
|
1530
|
+
background-color: luxcommon.$lux-stepper-large-nav-item-disabled-bg;
|
|
1307
1531
|
}
|
|
1308
1532
|
}
|
|
1309
1533
|
|
|
@@ -1311,12 +1535,12 @@ lux-stepper-large {
|
|
|
1311
1535
|
opacity: 0.6;
|
|
1312
1536
|
|
|
1313
1537
|
.lux-stepper-large-nav-item-number-container {
|
|
1314
|
-
color:
|
|
1315
|
-
background-color:
|
|
1538
|
+
color: luxcommon.$lux-stepper-large-nav-item-disabled-fg;
|
|
1539
|
+
background-color: luxcommon.$lux-stepper-large-nav-item-disabled-bg;
|
|
1316
1540
|
}
|
|
1317
1541
|
|
|
1318
1542
|
.lux-stepper-large-nav-item-label {
|
|
1319
|
-
color:
|
|
1543
|
+
color: luxcommon.$lux-stepper-large-nav-item-disabled-fg;
|
|
1320
1544
|
}
|
|
1321
1545
|
}
|
|
1322
1546
|
|
|
@@ -1346,8 +1570,10 @@ lux-stepper-large {
|
|
|
1346
1570
|
}
|
|
1347
1571
|
|
|
1348
1572
|
.lux-stepper-large-nav-item-complete {
|
|
1349
|
-
color:
|
|
1573
|
+
color: luxcommon.$lux-stepper-large-completed-fc;
|
|
1350
1574
|
font-size: 23px;
|
|
1575
|
+
height: 23px;
|
|
1576
|
+
width: 23px;
|
|
1351
1577
|
}
|
|
1352
1578
|
}
|
|
1353
1579
|
}
|
|
@@ -1430,7 +1656,7 @@ lux-stepper-large {
|
|
|
1430
1656
|
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
|
|
1431
1657
|
&.lux-stepper-large-mobile-overlay-backdrop {
|
|
1432
1658
|
opacity: 0.6;
|
|
1433
|
-
background-color:
|
|
1659
|
+
background-color: luxcommon.$lux-stepper-large-backdrop-bg;
|
|
1434
1660
|
}
|
|
1435
1661
|
}
|
|
1436
1662
|
|
|
@@ -1442,7 +1668,7 @@ lux-stepper-large {
|
|
|
1442
1668
|
max-height: calc(100% - 0px);
|
|
1443
1669
|
|
|
1444
1670
|
padding: 0;
|
|
1445
|
-
background:
|
|
1671
|
+
background: luxcommon.$app-data-bg;
|
|
1446
1672
|
}
|
|
1447
1673
|
.lux-stepper-large-mobile-nav-close-button-container {
|
|
1448
1674
|
display: flex;
|
|
@@ -1459,7 +1685,7 @@ lux-stepper-large {
|
|
|
1459
1685
|
padding: 0 30px 24px 30px;
|
|
1460
1686
|
|
|
1461
1687
|
div {
|
|
1462
|
-
font-family:
|
|
1688
|
+
font-family: Korb, global.$app-font-family;
|
|
1463
1689
|
font-size: 28px;
|
|
1464
1690
|
}
|
|
1465
1691
|
}
|
|
@@ -1518,8 +1744,14 @@ lux-stepper-large {
|
|
|
1518
1744
|
}
|
|
1519
1745
|
|
|
1520
1746
|
.lux-stepper-large-mobile-nav-item-complete {
|
|
1521
|
-
color:
|
|
1747
|
+
color: luxcommon.$lux-stepper-large-completed-fc;
|
|
1522
1748
|
font-size: 18px;
|
|
1523
1749
|
}
|
|
1524
1750
|
}
|
|
1751
|
+
|
|
1752
|
+
&.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a::after{
|
|
1753
|
+
width: 18px;
|
|
1754
|
+
height: 18px;
|
|
1755
|
+
margin-top: 4px;
|
|
1756
|
+
}
|
|
1525
1757
|
}
|