@ihk-gfi/lux-components-theme 14.3.0 → 14.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prebuilt-themes/luxtheme-authentic-min.css +1 -1
- package/prebuilt-themes/luxtheme-authentic-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-authentic.css +368 -104
- package/prebuilt-themes/luxtheme-authentic.css.map +1 -1
- package/prebuilt-themes/luxtheme-blue-min.css +1 -1
- package/prebuilt-themes/luxtheme-blue-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-blue.css +323 -87
- package/prebuilt-themes/luxtheme-blue.css.map +1 -1
- package/prebuilt-themes/luxtheme-green-min.css +1 -1
- package/prebuilt-themes/luxtheme-green-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-green.css +776 -137
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +149 -135
- package/src/base/_luxcomponents.scss +55 -50
- package/src/base/_luxfocus.scss +54 -51
- package/src/base/components/_luxCheckboxContainerAc.scss +35 -0
- package/src/base/components/_luxFormControlWrapper.scss +27 -25
- package/src/base/components/_luxFormControlsAuthentic.scss +51 -28
- package/src/base/components/_luxLinkPlain.scss +52 -38
- package/src/base/components/_luxTileAc.scss +10 -11
- package/src/blue/_custom.scss +21 -11
- package/src/green/_custom.scss +358 -70
- package/src/green/luxtheme.scss +2 -1
|
@@ -7,29 +7,36 @@
|
|
|
7
7
|
@use "luxpalette";
|
|
8
8
|
@use "../base/luxSvgIcons" as luxicons;
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
$light-gray: #eff3f6; //für die Table
|
|
11
|
+
|
|
12
|
+
h1,
|
|
13
|
+
h2,
|
|
14
|
+
h3,
|
|
15
|
+
h4,
|
|
16
|
+
h5,
|
|
17
|
+
h6 {
|
|
14
18
|
color: rgba(black, 0.87);
|
|
15
19
|
font-weight: normal;
|
|
16
20
|
font-family: luxcommon.$app-headline-font, luxcommon.$app-font-family;
|
|
17
21
|
}
|
|
18
22
|
|
|
19
|
-
div,
|
|
23
|
+
div,
|
|
24
|
+
span,
|
|
25
|
+
p,
|
|
26
|
+
label {
|
|
20
27
|
font-family: luxcommon.$app-font-family;
|
|
21
28
|
}
|
|
22
29
|
|
|
23
30
|
@mixin lux-hovered-mixin-ac {
|
|
24
31
|
color: #fff;
|
|
25
|
-
background-color: luxcommon.$lux-hover-color;
|
|
32
|
+
background-color: luxcommon.$lux-hover-color;
|
|
26
33
|
}
|
|
27
34
|
|
|
28
35
|
// Stylings für lux-menu-items im cdk-overlay-panel
|
|
29
|
-
.mat-menu-panel{
|
|
36
|
+
.mat-menu-panel {
|
|
30
37
|
border: 2px solid luxpalette.$lux-primary-color;
|
|
31
38
|
box-shadow: none !important;
|
|
32
|
-
|
|
39
|
+
|
|
33
40
|
.lux-menu-item {
|
|
34
41
|
color: luxpalette.$lux-primary-color;
|
|
35
42
|
}
|
|
@@ -38,11 +45,11 @@ div, span, p, label {
|
|
|
38
45
|
color: luxpalette.$lux-primary-color;
|
|
39
46
|
}
|
|
40
47
|
|
|
41
|
-
.mat-menu-content:not(:empty){
|
|
48
|
+
.mat-menu-content:not(:empty) {
|
|
42
49
|
padding: 0;
|
|
43
50
|
}
|
|
44
|
-
|
|
45
|
-
.lux-menu-item:not([disabled=true]):hover {
|
|
51
|
+
|
|
52
|
+
.lux-menu-item:not([disabled="true"]):hover {
|
|
46
53
|
@include lux-hovered-mixin-ac;
|
|
47
54
|
& .mat-icon-no-color {
|
|
48
55
|
color: #fff;
|
|
@@ -59,7 +66,9 @@ lux-menu {
|
|
|
59
66
|
|
|
60
67
|
// Optionen werden im Cdk-Overlay dargestellt und hängen nicht unter der Component selbst.
|
|
61
68
|
// eigentlich nur für select-panel nötig
|
|
62
|
-
.lux-autocomplete-panel-ac,
|
|
69
|
+
.lux-autocomplete-panel-ac,
|
|
70
|
+
.lux-select-panel-ac,
|
|
71
|
+
.lux-select-panel-ac-multiple {
|
|
63
72
|
.mat-option {
|
|
64
73
|
&.invalid {
|
|
65
74
|
color: luxpalette.$lux-warn-color;
|
|
@@ -71,7 +80,7 @@ lux-menu {
|
|
|
71
80
|
}
|
|
72
81
|
}
|
|
73
82
|
|
|
74
|
-
// Hintergrundfarbe
|
|
83
|
+
// Hintergrundfarbe
|
|
75
84
|
lux-app-content {
|
|
76
85
|
background-color: #fff; //Fallback
|
|
77
86
|
background-image: luxcommon.$app-gradient;
|
|
@@ -80,7 +89,7 @@ lux-app-content {
|
|
|
80
89
|
/*
|
|
81
90
|
* Theming for LUX-App-Footer
|
|
82
91
|
*/
|
|
83
|
-
|
|
92
|
+
lux-app-footer {
|
|
84
93
|
.lux-app-footer {
|
|
85
94
|
border-bottom: 8px solid map.get(luxpalette.$lux-palette_primary, 600);
|
|
86
95
|
}
|
|
@@ -88,8 +97,8 @@ lux-app-content {
|
|
|
88
97
|
|
|
89
98
|
//Tabs außerhalb einer LUX-Card (z.B. Master-Detail)
|
|
90
99
|
|
|
91
|
-
lux-tabs,
|
|
92
|
-
|
|
100
|
+
lux-tabs,
|
|
101
|
+
mat-card lux-tabs {
|
|
93
102
|
.mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled) {
|
|
94
103
|
font-size: 14px;
|
|
95
104
|
font-weight: 600;
|
|
@@ -105,16 +114,16 @@ lux-tabs, mat-card lux-tabs {
|
|
|
105
114
|
color: luxcommon.$lux-hover-color !important;
|
|
106
115
|
}
|
|
107
116
|
}
|
|
108
|
-
|
|
117
|
+
|
|
109
118
|
&:hover:not(.mat-tab-disabled) {
|
|
110
119
|
background-color: transparent;
|
|
111
120
|
color: luxcommon.$lux-hover-color !important;
|
|
112
121
|
.lux-tab-title {
|
|
113
122
|
color: luxcommon.$lux-hover-color !important;
|
|
114
123
|
}
|
|
115
|
-
}
|
|
124
|
+
}
|
|
116
125
|
}
|
|
117
|
-
|
|
126
|
+
|
|
118
127
|
lux-icon.lux-tab-icon mat-icon.lux-lx-icon {
|
|
119
128
|
width: 24px !important;
|
|
120
129
|
height: 24px !important;
|
|
@@ -127,11 +136,13 @@ lux-tabs, mat-card lux-tabs {
|
|
|
127
136
|
lux-table {
|
|
128
137
|
font-family: luxcommon.$app-font-family;
|
|
129
138
|
.lux-table {
|
|
130
|
-
th,
|
|
139
|
+
th,
|
|
140
|
+
.lux-table-header-no-data th {
|
|
131
141
|
vertical-align: middle;
|
|
132
142
|
}
|
|
133
143
|
|
|
134
|
-
th.mat-header-cell,
|
|
144
|
+
th.mat-header-cell,
|
|
145
|
+
td.mat-cell {
|
|
135
146
|
border: none;
|
|
136
147
|
}
|
|
137
148
|
td.mat-footer-cell {
|
|
@@ -145,28 +156,34 @@ lux-table {
|
|
|
145
156
|
.lux-table-content {
|
|
146
157
|
border: 1px solid luxcommon.$app-border-color;
|
|
147
158
|
border-radius: 4px;
|
|
148
|
-
|
|
159
|
+
|
|
149
160
|
table {
|
|
150
161
|
border-spacing: 0 !important;
|
|
151
|
-
td .lux-form-control-
|
|
152
|
-
|
|
162
|
+
td .lux-form-control-wrapper {
|
|
163
|
+
margin: 0;
|
|
164
|
+
.lux-form-control-container-authentic {
|
|
165
|
+
padding: 0.25em 0.5em; // bei den Form-Controls in einer Tabellen-Zelle wird die Höhe reduziert
|
|
166
|
+
&.lux-no-input-row {
|
|
167
|
+
padding: 0.25em 0em;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
153
170
|
}
|
|
154
171
|
}
|
|
155
|
-
|
|
172
|
+
|
|
156
173
|
thead th {
|
|
157
174
|
font-size: 16px;
|
|
158
175
|
color: luxcommon.$dark-primary-text;
|
|
159
176
|
font-weight: 700;
|
|
160
177
|
}
|
|
161
178
|
|
|
162
|
-
.mat-row:nth-child(odd){
|
|
179
|
+
.mat-row:nth-child(odd) {
|
|
163
180
|
background-color: $light-gray;
|
|
164
181
|
}
|
|
165
|
-
.mat-row:nth-child(even){
|
|
166
|
-
background-color
|
|
182
|
+
.mat-row:nth-child(even) {
|
|
183
|
+
background-color: #ffffff;
|
|
167
184
|
}
|
|
168
185
|
}
|
|
169
|
-
|
|
186
|
+
|
|
170
187
|
.lux-paginator-xs:not(.lux-hide) {
|
|
171
188
|
.mat-paginator-container {
|
|
172
189
|
justify-content: flex-end;
|
|
@@ -202,9 +219,9 @@ lux-filter-form {
|
|
|
202
219
|
background-color: #fff !important;
|
|
203
220
|
color: luxcommon.$lux-hover-color;
|
|
204
221
|
}
|
|
205
|
-
.lux-filter-menu-trigger button:not([disabled]).mat-fab.lux-button-rounded:focus-visible {
|
|
222
|
+
.lux-filter-menu-trigger button:not([disabled]).mat-fab.lux-button-rounded:focus-visible {
|
|
206
223
|
@include luxfocus.focus-dark-mixin-inline;
|
|
207
|
-
background-color: #fff !important;
|
|
224
|
+
background-color: #fff !important;
|
|
208
225
|
}
|
|
209
226
|
.lux-filter-menu-trigger button:not([disabled]).mat-fab.lux-button-rounded:active {
|
|
210
227
|
background-color: transparent !important;
|
|
@@ -217,13 +234,13 @@ lux-filter-form {
|
|
|
217
234
|
* Theming für LUX-Card
|
|
218
235
|
*/
|
|
219
236
|
lux-card {
|
|
220
|
-
.lux-highlight{
|
|
237
|
+
.lux-highlight {
|
|
221
238
|
color: map.get(luxpalette.$lux-palette-primary, 500);
|
|
222
239
|
}
|
|
223
240
|
.mat-card.lux-card {
|
|
224
241
|
border: 1px solid rgba(black, 0.12);
|
|
225
242
|
background-color: #fff;
|
|
226
|
-
|
|
243
|
+
|
|
227
244
|
&:not([class*="mat-elevation-z"]) {
|
|
228
245
|
@include luxelevations.lux-elevation-z0;
|
|
229
246
|
}
|
|
@@ -235,22 +252,29 @@ lux-card {
|
|
|
235
252
|
font-family: luxcommon.$app-font-family;
|
|
236
253
|
}
|
|
237
254
|
}
|
|
255
|
+
mat-card {
|
|
256
|
+
&[class~="lux-cursor"]:hover {
|
|
257
|
+
background-image: luxcommon.$app-gradient;
|
|
258
|
+
background-color: #ffffff;
|
|
259
|
+
border-color: luxcommon.$dark-primary-text;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
238
262
|
}
|
|
239
263
|
|
|
240
264
|
/*
|
|
241
265
|
* Theming for LUX-Accordion
|
|
242
266
|
*/
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
267
|
+
lux-accordion lux-panel {
|
|
268
|
+
padding: 0px;
|
|
269
|
+
}
|
|
246
270
|
|
|
247
|
-
|
|
271
|
+
mat-expansion-panel.mat-expansion-panel:not([class*="mat-elevation-z"]) {
|
|
248
272
|
@include luxelevations.lux-elevation-z0;
|
|
249
273
|
border: 1px solid rgba(black, 0.12);
|
|
250
274
|
border-radius: 4px;
|
|
251
275
|
}
|
|
252
276
|
|
|
253
|
-
lux-accordion {
|
|
277
|
+
lux-accordion {
|
|
254
278
|
.mat-expansion-panel-header .mat-content {
|
|
255
279
|
flex-direction: column; //damit sind Title und Description untereinander
|
|
256
280
|
|
|
@@ -270,7 +294,7 @@ lux-accordion {
|
|
|
270
294
|
width: 16px;
|
|
271
295
|
height: 16px;
|
|
272
296
|
&::after {
|
|
273
|
-
content:
|
|
297
|
+
content: "";
|
|
274
298
|
position: absolute;
|
|
275
299
|
width: 16px;
|
|
276
300
|
height: 16px;
|
|
@@ -290,7 +314,7 @@ lux-accordion {
|
|
|
290
314
|
}
|
|
291
315
|
}
|
|
292
316
|
|
|
293
|
-
mat-expansion-panel-header.mat-expansion-panel-header,
|
|
317
|
+
mat-expansion-panel-header.mat-expansion-panel-header,
|
|
294
318
|
mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded,
|
|
295
319
|
mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded:focus {
|
|
296
320
|
border-bottom-left-radius: 0px;
|
|
@@ -298,7 +322,7 @@ lux-accordion {
|
|
|
298
322
|
font-family: luxcommon.$app-headline-font, luxcommon.$app-font-family;
|
|
299
323
|
font-weight: 500;
|
|
300
324
|
|
|
301
|
-
&[aria-disabled=false] {
|
|
325
|
+
&[aria-disabled="false"] {
|
|
302
326
|
background-color: map.get(luxpalette.$lux-palette-primary, 50);
|
|
303
327
|
color: luxcommon.$dark-primary-text;
|
|
304
328
|
&:hover {
|
|
@@ -308,16 +332,14 @@ lux-accordion {
|
|
|
308
332
|
}
|
|
309
333
|
}
|
|
310
334
|
|
|
311
|
-
|
|
312
335
|
/**
|
|
313
336
|
* Theming für lux-Badge-notification
|
|
314
337
|
*/
|
|
315
338
|
.lux-badge-notification {
|
|
316
|
-
|
|
317
339
|
&.mat-badge:not(.mat-badge-disabled).mat-badge-accent .mat-badge-content {
|
|
318
340
|
background-color: map.get(luxpalette.$lux-palette_accent, 500);
|
|
319
341
|
}
|
|
320
|
-
|
|
342
|
+
|
|
321
343
|
&.mat-badge .mat-badge-content {
|
|
322
344
|
font-family: luxcommon.$app-headline-font, luxcommon.$app-font-family;
|
|
323
345
|
border: 1px solid #fff;
|
|
@@ -330,7 +352,7 @@ lux-accordion {
|
|
|
330
352
|
&.lux-badge-color-default {
|
|
331
353
|
&.mat-badge:not(.mat-badge-disabled) .mat-badge-content {
|
|
332
354
|
color: white;
|
|
333
|
-
background: map.get(luxcommon.$componentBgColors,
|
|
355
|
+
background: map.get(luxcommon.$componentBgColors, "gray");
|
|
334
356
|
}
|
|
335
357
|
}
|
|
336
358
|
&.mat-badge-disabled .mat-badge-content {
|
|
@@ -348,14 +370,14 @@ lux-accordion {
|
|
|
348
370
|
}
|
|
349
371
|
.mat-dialog-container {
|
|
350
372
|
@include luxelevations.lux-elevation-z24;
|
|
351
|
-
border:1px solid luxcommon.$dark-disabled-text;
|
|
373
|
+
border: 1px solid luxcommon.$dark-disabled-text;
|
|
352
374
|
}
|
|
353
375
|
}
|
|
354
376
|
lux-dialog-structure {
|
|
355
377
|
// x-Button oben rechts im Dialog-Fenster
|
|
356
|
-
.lux-icon-close {
|
|
378
|
+
.lux-icon-close {
|
|
357
379
|
&:hover {
|
|
358
|
-
background-color: #fff !important;
|
|
380
|
+
background-color: #fff !important;
|
|
359
381
|
mat-icon.mat-icon-no-color {
|
|
360
382
|
color: luxcommon.$lux-hover-color;
|
|
361
383
|
}
|
|
@@ -371,7 +393,6 @@ lux-dialog-structure {
|
|
|
371
393
|
* Theming for LUX-List
|
|
372
394
|
*/
|
|
373
395
|
lux-list {
|
|
374
|
-
|
|
375
396
|
.mat-card:not([class*="mat-elevation-z"]) {
|
|
376
397
|
@include luxelevations.lux-elevation-z0;
|
|
377
398
|
}
|
|
@@ -402,7 +423,7 @@ lux-list {
|
|
|
402
423
|
}
|
|
403
424
|
}
|
|
404
425
|
|
|
405
|
-
mat-card[class~=lux-cursor]:not([class*=mat-elevation-z]) {
|
|
426
|
+
mat-card[class~="lux-cursor"]:not([class*="mat-elevation-z"]) {
|
|
406
427
|
@include luxfocus.lux-selectable-mixin;
|
|
407
428
|
|
|
408
429
|
&:hover {
|
|
@@ -419,7 +440,6 @@ lux-list {
|
|
|
419
440
|
*/
|
|
420
441
|
example-root {
|
|
421
442
|
.example-base-components-list {
|
|
422
|
-
|
|
423
443
|
mat-expansion-panel-header {
|
|
424
444
|
font-weight: 600;
|
|
425
445
|
.mat-expansion-indicator {
|
|
@@ -428,7 +448,7 @@ example-root {
|
|
|
428
448
|
width: 16px;
|
|
429
449
|
height: 16px;
|
|
430
450
|
&::after {
|
|
431
|
-
content:
|
|
451
|
+
content: "";
|
|
432
452
|
position: absolute;
|
|
433
453
|
width: 16px;
|
|
434
454
|
height: 16px;
|
|
@@ -447,21 +467,20 @@ example-root {
|
|
|
447
467
|
mask-size: cover;
|
|
448
468
|
}
|
|
449
469
|
}
|
|
450
|
-
|
|
470
|
+
|
|
451
471
|
&:hover {
|
|
452
472
|
background-color: #fff !important;
|
|
453
473
|
}
|
|
454
474
|
}
|
|
455
475
|
|
|
456
476
|
.example-component-list-item {
|
|
457
|
-
|
|
458
477
|
&.example-component-list-item-selected {
|
|
459
478
|
font-weight: 600;
|
|
460
479
|
color: luxpalette.$lux-primary-color;
|
|
461
480
|
border: none;
|
|
462
481
|
background-color: #fff !important;
|
|
463
482
|
&::after {
|
|
464
|
-
content:
|
|
483
|
+
content: "";
|
|
465
484
|
position: absolute;
|
|
466
485
|
width: 16px;
|
|
467
486
|
height: 16px;
|
|
@@ -479,7 +498,7 @@ example-root {
|
|
|
479
498
|
mask-repeat: no-repeat;
|
|
480
499
|
mask-position: center;
|
|
481
500
|
mask-size: cover;
|
|
482
|
-
border: none
|
|
501
|
+
border: none;
|
|
483
502
|
}
|
|
484
503
|
}
|
|
485
504
|
&:hover,
|
|
@@ -500,22 +519,22 @@ example-root {
|
|
|
500
519
|
/*
|
|
501
520
|
* Theming for LUX-Master-Detail
|
|
502
521
|
*/
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
lux-button.lux-master-toggle{
|
|
522
|
+
.lux-master-container {
|
|
523
|
+
height: 100%;
|
|
524
|
+
lux-button.lux-master-toggle {
|
|
506
525
|
position: absolute;
|
|
507
526
|
right: -18px;
|
|
508
527
|
top: 18px;
|
|
509
528
|
z-index: 1000;
|
|
510
|
-
|
|
529
|
+
|
|
511
530
|
button.lux-button.lux-button-rounded {
|
|
512
|
-
@include luxelevations.lux-elevation-z0;
|
|
531
|
+
@include luxelevations.lux-elevation-z0;
|
|
513
532
|
border: 1px solid luxcommon.$app-border-color;
|
|
514
533
|
color: map.get(luxpalette.$lux-palette-primary, 500);
|
|
515
|
-
|
|
516
|
-
&:not([disabled]):focus:hover{
|
|
534
|
+
|
|
535
|
+
&:not([disabled]):focus:hover {
|
|
517
536
|
background-color: luxcommon.$lux-hover-color;
|
|
518
|
-
border-radius: 50
|
|
537
|
+
border-radius: 50%;
|
|
519
538
|
}
|
|
520
539
|
}
|
|
521
540
|
}
|
|
@@ -539,7 +558,7 @@ lux-message-box {
|
|
|
539
558
|
&.mat-elevation-z4 {
|
|
540
559
|
@include luxelevations.lux-elevation-z0();
|
|
541
560
|
}
|
|
542
|
-
|
|
561
|
+
|
|
543
562
|
& div.lux-message-box-content {
|
|
544
563
|
margin: 0 !important;
|
|
545
564
|
|
|
@@ -555,8 +574,8 @@ lux-message-box {
|
|
|
555
574
|
}
|
|
556
575
|
|
|
557
576
|
& div.lux-message-container:not(.lux-bg-color-white) {
|
|
558
|
-
& button:not([disabled]):hover {
|
|
559
|
-
.mat-icon-no-color {
|
|
577
|
+
& button:not([disabled]):hover {
|
|
578
|
+
.mat-icon-no-color {
|
|
560
579
|
color: #fff;
|
|
561
580
|
}
|
|
562
581
|
}
|
|
@@ -564,7 +583,6 @@ lux-message-box {
|
|
|
564
583
|
}
|
|
565
584
|
}
|
|
566
585
|
|
|
567
|
-
|
|
568
586
|
/*
|
|
569
587
|
* Theming for LUX-Button
|
|
570
588
|
*/
|
|
@@ -593,30 +611,30 @@ lux-button button.lux-button {
|
|
|
593
611
|
background-color: transparent !important;
|
|
594
612
|
}
|
|
595
613
|
&:focus-visible:not(:hover) {
|
|
596
|
-
color: map.get(luxpalette.$lux-palette-primary, 700)!important;
|
|
614
|
+
color: map.get(luxpalette.$lux-palette-primary, 700) !important;
|
|
597
615
|
background-color: transparent !important;
|
|
598
616
|
}
|
|
599
617
|
&:active {
|
|
600
|
-
color: map.get(luxpalette.$lux-palette-primary, 700)!important;
|
|
618
|
+
color: map.get(luxpalette.$lux-palette-primary, 700) !important;
|
|
601
619
|
}
|
|
602
620
|
}
|
|
603
621
|
|
|
604
622
|
&.mat-accent {
|
|
605
623
|
&:hover {
|
|
606
|
-
|
|
607
|
-
|
|
624
|
+
color: map.get(luxpalette.$lux-palette-accent, 300) !important;
|
|
625
|
+
background-color: transparent !important;
|
|
608
626
|
}
|
|
609
|
-
&:focus-visible:not(:hover) {
|
|
627
|
+
&:focus-visible:not(:hover) {
|
|
610
628
|
background-color: transparent !important;
|
|
611
629
|
}
|
|
612
630
|
&:active {
|
|
613
|
-
color: map.get(luxpalette.$lux-palette-accent, 700)!important;
|
|
631
|
+
color: map.get(luxpalette.$lux-palette-accent, 700) !important;
|
|
614
632
|
}
|
|
615
633
|
}
|
|
616
|
-
|
|
634
|
+
|
|
617
635
|
&.mat-warn {
|
|
618
636
|
&:hover {
|
|
619
|
-
color: map.get(luxpalette.$lux-palette-warn, 300)
|
|
637
|
+
color: map.get(luxpalette.$lux-palette-warn, 300);
|
|
620
638
|
background-color: transparent !important;
|
|
621
639
|
}
|
|
622
640
|
&:focus-visible:not(:hover) {
|
|
@@ -624,16 +642,15 @@ lux-button button.lux-button {
|
|
|
624
642
|
background-color: transparent !important;
|
|
625
643
|
}
|
|
626
644
|
&:active {
|
|
627
|
-
color: map.get(luxpalette.$lux-palette-warn, 700)!important;
|
|
645
|
+
color: map.get(luxpalette.$lux-palette-warn, 700) !important;
|
|
628
646
|
}
|
|
629
647
|
}
|
|
630
648
|
}
|
|
631
649
|
|
|
632
650
|
//Theming für den Stroked-Button
|
|
633
651
|
&.mat-stroked-button:not(.mat-button-disabled) {
|
|
634
|
-
|
|
635
652
|
border-color: luxcommon.$dark-secondary-text;
|
|
636
|
-
|
|
653
|
+
|
|
637
654
|
&:hover {
|
|
638
655
|
color: luxcommon.$dark-secondary-text;
|
|
639
656
|
background-color: transparent !important;
|
|
@@ -651,14 +668,14 @@ lux-button button.lux-button {
|
|
|
651
668
|
}
|
|
652
669
|
&.mat-primary {
|
|
653
670
|
border-color: map.get(luxpalette.$lux-palette-primary, 400);
|
|
654
|
-
|
|
671
|
+
|
|
655
672
|
&:hover {
|
|
656
|
-
color: map.get(luxpalette.$lux-palette-primary, 300);
|
|
673
|
+
color: map.get(luxpalette.$lux-palette-primary, 300);
|
|
657
674
|
background-color: transparent !important;
|
|
658
675
|
border-color: map.get(luxpalette.$lux-palette-primary, 300);
|
|
659
676
|
}
|
|
660
677
|
&:focus-visible:not(:hover) {
|
|
661
|
-
color: map.get(luxpalette.$lux-palette-primary, 300);
|
|
678
|
+
color: map.get(luxpalette.$lux-palette-primary, 300);
|
|
662
679
|
background-color: transparent !important;
|
|
663
680
|
border-color: map.get(luxpalette.$lux-palette-primary, 700);
|
|
664
681
|
}
|
|
@@ -688,16 +705,16 @@ lux-button button.lux-button {
|
|
|
688
705
|
border-color: map.get(luxpalette.$lux-palette-accent, 700);
|
|
689
706
|
}
|
|
690
707
|
}
|
|
691
|
-
|
|
708
|
+
|
|
692
709
|
&.mat-warn {
|
|
693
710
|
border-color: map.get(luxpalette.$lux-palette-warn, 500);
|
|
694
711
|
&:hover {
|
|
695
|
-
color: map.get(luxpalette.$lux-palette-warn, 300);
|
|
712
|
+
color: map.get(luxpalette.$lux-palette-warn, 300);
|
|
696
713
|
background-color: transparent !important;
|
|
697
714
|
border-color: map.get(luxpalette.$lux-palette-warn, 300);
|
|
698
715
|
}
|
|
699
716
|
&:focus-visible:not(:hover) {
|
|
700
|
-
color: map.get(luxpalette.$lux-palette-warn, 300);
|
|
717
|
+
color: map.get(luxpalette.$lux-palette-warn, 300);
|
|
701
718
|
background-color: transparent !important;
|
|
702
719
|
border-color: map.get(luxpalette.$lux-palette-warn, 700);
|
|
703
720
|
}
|
|
@@ -714,7 +731,7 @@ lux-button button.lux-button {
|
|
|
714
731
|
}
|
|
715
732
|
|
|
716
733
|
//Theming für den Raised-Button, Flat-Button, Fab(Rounded)-Button
|
|
717
|
-
&.mat-raised-button:not(.mat-button-disabled),
|
|
734
|
+
&.mat-raised-button:not(.mat-button-disabled),
|
|
718
735
|
&.mat-flat-button:not(.mat-button-disabled),
|
|
719
736
|
&.mat-fab:not(.mat-button-disabled) {
|
|
720
737
|
&:hover {
|
|
@@ -730,7 +747,7 @@ lux-button button.lux-button {
|
|
|
730
747
|
color: luxcommon.$dark-primary-text;
|
|
731
748
|
background-color: #ffffff !important;
|
|
732
749
|
}
|
|
733
|
-
|
|
750
|
+
|
|
734
751
|
&.mat-primary {
|
|
735
752
|
&:hover {
|
|
736
753
|
color: #ffffff;
|
|
@@ -738,7 +755,7 @@ lux-button button.lux-button {
|
|
|
738
755
|
}
|
|
739
756
|
&:focus-visible:not(:hover) {
|
|
740
757
|
color: #ffffff;
|
|
741
|
-
background-color: map.get(luxpalette.$lux-palette-primary, 700)!important;
|
|
758
|
+
background-color: map.get(luxpalette.$lux-palette-primary, 700) !important;
|
|
742
759
|
}
|
|
743
760
|
&:active {
|
|
744
761
|
background-color: map.get(luxpalette.$lux-palette-primary, 700) !important;
|
|
@@ -757,7 +774,7 @@ lux-button button.lux-button {
|
|
|
757
774
|
background-color: map.get(luxpalette.$lux-palette-accent, 700) !important;
|
|
758
775
|
}
|
|
759
776
|
}
|
|
760
|
-
|
|
777
|
+
|
|
761
778
|
&.mat-warn {
|
|
762
779
|
&:hover {
|
|
763
780
|
color: #ffffff;
|
|
@@ -772,8 +789,8 @@ lux-button button.lux-button {
|
|
|
772
789
|
}
|
|
773
790
|
}
|
|
774
791
|
}
|
|
775
|
-
|
|
776
|
-
&.mat-raised-button.mat-button-disabled,
|
|
792
|
+
|
|
793
|
+
&.mat-raised-button.mat-button-disabled,
|
|
777
794
|
&.mat-flat-button.mat-button-disabled,
|
|
778
795
|
&.mat-fab.mat-button-disabled {
|
|
779
796
|
color: luxcommon.$dark-disabled-text;
|
|
@@ -804,13 +821,14 @@ lux-button button.lux-button {
|
|
|
804
821
|
* Übergangsweise wird hier nur die Schriftgröße angepasst, damit die Schrift vollständig im Input etc angezeigt wird
|
|
805
822
|
* gilt bis die alten Form-Controls abgelöst sind
|
|
806
823
|
*/
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
824
|
+
.lux-form-control {
|
|
825
|
+
margin: luxcommon.$form-control-margin;
|
|
826
|
+
min-height: luxcommon.$form-control-complete-height;
|
|
810
827
|
|
|
811
828
|
.lux-form-control-container {
|
|
812
|
-
|
|
813
|
-
input,
|
|
829
|
+
font-size: 14px;
|
|
830
|
+
input,
|
|
831
|
+
textarea {
|
|
814
832
|
font-size: 14px !important;
|
|
815
833
|
}
|
|
816
834
|
}
|
|
@@ -820,15 +838,14 @@ lux-button button.lux-button {
|
|
|
820
838
|
* Theming für Stepper
|
|
821
839
|
*/
|
|
822
840
|
lux-stepper {
|
|
823
|
-
|
|
824
841
|
mat-step-header {
|
|
825
842
|
&:hover {
|
|
826
843
|
background-color: transparent !important;
|
|
827
844
|
|
|
828
|
-
&[aria-selected="false"],
|
|
845
|
+
&[aria-selected="false"],
|
|
829
846
|
&[aria-selected="true"] {
|
|
830
847
|
div.mat-step-icon.mat-step-icon-state-number,
|
|
831
|
-
div.mat-step-icon.mat-step-icon-state-edit
|
|
848
|
+
div.mat-step-icon.mat-step-icon-state-edit {
|
|
832
849
|
background-color: luxcommon.$lux-hover-color;
|
|
833
850
|
color: #fff;
|
|
834
851
|
border-color: luxcommon.$lux-hover-color;
|
|
@@ -846,15 +863,14 @@ lux-stepper {
|
|
|
846
863
|
}
|
|
847
864
|
|
|
848
865
|
lux-stepper-vertical mat-step-header {
|
|
849
|
-
|
|
850
866
|
&[aria-selected="true"] {
|
|
851
867
|
@include luxfocus.lux-selected-mixin-ac;
|
|
852
868
|
}
|
|
853
|
-
|
|
869
|
+
|
|
854
870
|
&[aria-selected="false"] {
|
|
855
871
|
div.mat-step-icon.mat-step-icon-state-number,
|
|
856
872
|
div.mat-step-icon.mat-step-icon-state-edit {
|
|
857
|
-
background-color: #fff
|
|
873
|
+
background-color: #fff;
|
|
858
874
|
color: luxpalette.$lux-primary-color;
|
|
859
875
|
border: 1px solid luxcommon.$app-border-color;
|
|
860
876
|
}
|
|
@@ -863,9 +879,8 @@ lux-stepper {
|
|
|
863
879
|
}
|
|
864
880
|
}
|
|
865
881
|
}
|
|
866
|
-
|
|
867
|
-
lux-stepper-horizontal mat-step-header{
|
|
868
882
|
|
|
883
|
+
lux-stepper-horizontal mat-step-header {
|
|
869
884
|
&[aria-selected="true"] {
|
|
870
885
|
div.mat-step-label.mat-step-label-active.mat-step-label-selected lux-step-header {
|
|
871
886
|
font-weight: 500;
|
|
@@ -878,7 +893,7 @@ lux-stepper {
|
|
|
878
893
|
&[aria-selected="false"] {
|
|
879
894
|
div.mat-step-icon.mat-step-icon-state-number,
|
|
880
895
|
div.mat-step-icon.mat-step-icon-state-edit {
|
|
881
|
-
background-color: #fff
|
|
896
|
+
background-color: #fff;
|
|
882
897
|
color: luxpalette.$lux-primary-color;
|
|
883
898
|
border: 1px solid luxcommon.$app-border-color;
|
|
884
899
|
}
|
|
@@ -888,48 +903,50 @@ lux-stepper {
|
|
|
888
903
|
}
|
|
889
904
|
}
|
|
890
905
|
|
|
891
|
-
|
|
892
|
-
&[aria-selected="false"] {
|
|
893
|
-
.lux-stepper-edited-icon,
|
|
906
|
+
.lux-ignore-mat-step-icons mat-step-header {
|
|
907
|
+
&[aria-selected="false"] {
|
|
908
|
+
.lux-stepper-edited-icon,
|
|
894
909
|
.lux-stepper-normal-icon {
|
|
895
|
-
i,
|
|
910
|
+
i,
|
|
911
|
+
mat-icon {
|
|
896
912
|
color: luxpalette.$lux-primary-color;
|
|
897
913
|
background-color: #fff;
|
|
898
914
|
border: 1px solid luxcommon.$app-border-color;
|
|
899
915
|
}
|
|
900
916
|
}
|
|
901
917
|
}
|
|
902
|
-
&[aria-selected="true"] {
|
|
903
|
-
.lux-stepper-edited-icon,
|
|
918
|
+
&[aria-selected="true"] {
|
|
919
|
+
.lux-stepper-edited-icon,
|
|
904
920
|
.lux-stepper-normal-icon {
|
|
905
|
-
i,
|
|
906
|
-
|
|
907
|
-
|
|
921
|
+
i,
|
|
922
|
+
mat-icon {
|
|
923
|
+
color: #fff;
|
|
924
|
+
background-color: luxpalette.$lux-primary-color;
|
|
908
925
|
border: 1px solid luxcommon.$app-border-color;
|
|
909
926
|
}
|
|
910
927
|
}
|
|
911
928
|
}
|
|
912
929
|
&:hover {
|
|
913
930
|
background-color: transparent !important;
|
|
914
|
-
|
|
915
|
-
&[aria-selected="false"],
|
|
931
|
+
|
|
932
|
+
&[aria-selected="false"],
|
|
916
933
|
&[aria-selected="true"] {
|
|
917
|
-
.lux-stepper-edited-icon,
|
|
934
|
+
.lux-stepper-edited-icon,
|
|
918
935
|
.lux-stepper-normal-icon {
|
|
919
|
-
i,
|
|
936
|
+
i,
|
|
937
|
+
mat-icon {
|
|
920
938
|
background-color: luxcommon.$lux-hover-color;
|
|
921
939
|
color: #fff;
|
|
922
|
-
border-color: luxcommon.$lux-hover-color;
|
|
940
|
+
border-color: luxcommon.$lux-hover-color;
|
|
923
941
|
}
|
|
924
|
-
|
|
925
|
-
}
|
|
926
|
-
div.mat-step-label lux-step-header {
|
|
927
|
-
color: luxcommon.$lux-hover-color;
|
|
928
942
|
}
|
|
929
943
|
}
|
|
944
|
+
div.mat-step-label lux-step-header {
|
|
945
|
+
color: luxcommon.$lux-hover-color;
|
|
946
|
+
}
|
|
930
947
|
}
|
|
931
948
|
}
|
|
932
|
-
|
|
949
|
+
}
|
|
933
950
|
|
|
934
951
|
/*
|
|
935
952
|
* Theming für Stepper-Large
|
|
@@ -957,28 +974,28 @@ lux-stepper-large {
|
|
|
957
974
|
color: luxcommon.$lux-stepper-large-nav-item-active-fc;
|
|
958
975
|
background-color: luxcommon.$lux-stepper-large-nav-item-active-bg;
|
|
959
976
|
}
|
|
960
|
-
|
|
977
|
+
|
|
961
978
|
.lux-stepper-large-nav-item-label {
|
|
962
979
|
color: #003366;
|
|
963
980
|
}
|
|
964
981
|
}
|
|
965
|
-
|
|
982
|
+
|
|
966
983
|
&.lux-touched:not(.lux-disabled) {
|
|
967
984
|
a {
|
|
968
985
|
text-decoration: underline;
|
|
969
986
|
font-weight: 500;
|
|
970
987
|
}
|
|
971
|
-
|
|
988
|
+
|
|
972
989
|
&.lux-completed:not(.lux-active) {
|
|
973
990
|
.lux-stepper-large-nav-item-number-container {
|
|
974
991
|
border: 1px solid luxcommon.$app-border-color;
|
|
975
992
|
}
|
|
976
|
-
|
|
993
|
+
|
|
977
994
|
a {
|
|
978
995
|
font-weight: 400;
|
|
979
996
|
}
|
|
980
997
|
}
|
|
981
|
-
|
|
998
|
+
|
|
982
999
|
&:not(.lux-completed):not(.lux-active) {
|
|
983
1000
|
.lux-stepper-large-nav-item-number-container {
|
|
984
1001
|
color: luxcommon.$lux-stepper-large-nav-item-completed-fg;
|
|
@@ -990,7 +1007,7 @@ lux-stepper-large {
|
|
|
990
1007
|
&:not(.lux-touched) {
|
|
991
1008
|
opacity: 1;
|
|
992
1009
|
color: #003366;
|
|
993
|
-
|
|
1010
|
+
|
|
994
1011
|
.lux-stepper-large-nav-item-number-container {
|
|
995
1012
|
color: luxpalette.$lux-primary-color;
|
|
996
1013
|
background-color: #fff;
|
|
@@ -998,16 +1015,14 @@ lux-stepper-large {
|
|
|
998
1015
|
}
|
|
999
1016
|
}
|
|
1000
1017
|
&.lux-disabled {
|
|
1001
|
-
|
|
1002
1018
|
.lux-stepper-large-nav-item-number-container {
|
|
1003
1019
|
color: luxcommon.$dark-disabled-text;
|
|
1004
1020
|
background-color: #fff;
|
|
1005
1021
|
border: 1px solid luxcommon.$app-border-color;
|
|
1006
1022
|
}
|
|
1007
|
-
|
|
1023
|
+
|
|
1008
1024
|
.lux-stepper-large-nav-item-label {
|
|
1009
1025
|
color: luxcommon.$dark-disabled-text;
|
|
1010
|
-
|
|
1011
1026
|
}
|
|
1012
1027
|
}
|
|
1013
1028
|
}
|
|
@@ -1026,7 +1041,7 @@ lux-stepper-large {
|
|
|
1026
1041
|
align-items: center;
|
|
1027
1042
|
|
|
1028
1043
|
font-size: 18px;
|
|
1029
|
-
|
|
1044
|
+
|
|
1030
1045
|
.lux-stepper-large-mobile-nav-item-number-container {
|
|
1031
1046
|
border-radius: 50%;
|
|
1032
1047
|
}
|
|
@@ -1080,7 +1095,6 @@ lux-stepper-large {
|
|
|
1080
1095
|
}
|
|
1081
1096
|
}
|
|
1082
1097
|
&.lux-disabled {
|
|
1083
|
-
|
|
1084
1098
|
.lux-stepper-large-nav-item-number-container {
|
|
1085
1099
|
color: luxcommon.$dark-disabled-text;
|
|
1086
1100
|
background-color: #fff;
|