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