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