@ihk-gfi/lux-components-theme 11.13.0 → 13.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 +6 -0
- package/package.json +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 +217 -28
- 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 +259 -49
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/prebuilt-themes/luxtheme-orange-min.css +1 -1
- package/prebuilt-themes/luxtheme-orange-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-orange.css +217 -19
- package/prebuilt-themes/luxtheme-orange.css.map +1 -1
- package/src/base/_luxcomponents.scss +194 -26
- package/src/base/_luxelevations.scss +51 -0
- package/src/base/_luxfocus.scss +26 -4
- package/src/base/_luxicons.scss +2 -0
- package/src/base/_luxstyles.scss +31 -4
- package/src/blue/_custom.scss +0 -9
- package/src/blue/_luxcommon.scss +6 -0
- package/src/blue/luxtheme.scss +1 -1
- package/src/green/_custom.scss +52 -32
- package/src/green/_luxcommon.scss +6 -0
- package/src/green/luxtheme.scss +1 -0
- package/src/orange/_luxcommon.scss +6 -0
- package/src/orange/luxtheme.scss +2 -2
- package/CHANGELOG.md +0 -84
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
/*
|
|
3
3
|
Dieses Partial-SCSS dient der Verwaltung der Farb-Paletten für die LUX-Components.
|
|
4
4
|
*/
|
|
5
|
+
/*
|
|
6
|
+
Mixins für die Bestimmung der Schatten, um den Components eine "Höhe" zu geben
|
|
7
|
+
Sortierung erfolgt nach "Material Design Specification"
|
|
8
|
+
https://material.io/design/environment/elevation.html#default-elevations
|
|
9
|
+
und nutzt die "Elevation Sass mixins" von @angular/material/core/style/elevation.scss
|
|
10
|
+
https://material.angular.io/guide/elevation
|
|
11
|
+
Wichtig: Hierbei handelt es sich um eine reine optische Elevation.
|
|
12
|
+
Der z-index wird dadurch nicht verändert!
|
|
13
|
+
|
|
14
|
+
Folgenden Components wurden die lux-elevation-z# mixins zugewiesen
|
|
15
|
+
lux-elevation-z0: (kein Schatten/niedrigste Ebene)
|
|
16
|
+
- im lux-Master-Detail wird die Card ohne Schatten genutzt, im Header der lux-rounded-Button ohne Schatten
|
|
17
|
+
lux-elevation-z1: (Strukturierende Elemente ohne Funktion)
|
|
18
|
+
- lux-card,lux-master-header/-footer/detail-contianer, wegen der geringen Größe Toggle-Thumb,
|
|
19
|
+
lux-elevation-z2: ("klickbare" Elemente)
|
|
20
|
+
- lux-buttons (luxRaised/luxRounded), lux-tile, lux-accordion
|
|
21
|
+
lux-elevation-z4: (Listen/Menüs im cdk-overlay)
|
|
22
|
+
- lux-message-box, lux-datepicker, lux-datetimepicker, lux-autocomplete, lux-select, lux-menu
|
|
23
|
+
lux-elevation-z6:
|
|
24
|
+
- lux-snackbar, lux-app-header
|
|
25
|
+
lux-elevation-z16:
|
|
26
|
+
- lux-side-nav (drawer)
|
|
27
|
+
lux-elevation-z24: (höchste Ebene)
|
|
28
|
+
- lux-dialog
|
|
29
|
+
*/
|
|
5
30
|
/*
|
|
6
31
|
* Theming for LUX-App-Content
|
|
7
32
|
*/
|
|
@@ -24,6 +49,7 @@ lux-app-footer .footerFont {
|
|
|
24
49
|
*/
|
|
25
50
|
lux-app-header .lux-app-header {
|
|
26
51
|
background-color: #ffffff;
|
|
52
|
+
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
|
|
27
53
|
}
|
|
28
54
|
lux-app-header .lux-app-header .lux-show-border {
|
|
29
55
|
border-left: 1px solid #E3EBF5;
|
|
@@ -46,6 +72,9 @@ lux-app-header .lux-app-header div.lux-header-action lux-button button.mat-warn:
|
|
|
46
72
|
lux-app-header .lux-app-header div.lux-header-action lux-button button.mat-primary:not(.mat-button-disabled) {
|
|
47
73
|
color: #6e93ff;
|
|
48
74
|
}
|
|
75
|
+
lux-app-header .lux-app-header div.lux-header-action lux-button button.lux-button-rounded {
|
|
76
|
+
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
77
|
+
}
|
|
49
78
|
lux-app-header .lux-app-header button:not(.mat-primary):not(.mat-warn):not(.mat-accent):not(.lux-button-rounded) {
|
|
50
79
|
color: #ffffff;
|
|
51
80
|
}
|
|
@@ -78,17 +107,24 @@ lux-button button.lux-button.mat-button, lux-button button.lux-button.mat-raised
|
|
|
78
107
|
margin-left: 1px;
|
|
79
108
|
margin-right: 1px;
|
|
80
109
|
}
|
|
81
|
-
lux-button button.lux-button.mat-button.mat-button-disabled, lux-button button.lux-button.mat-raised-button.mat-button-disabled, lux-button button.lux-button.mat-fab.mat-button-disabled {
|
|
110
|
+
lux-button button.lux-button.mat-button.mat-button-disabled, lux-button button.lux-button.mat-raised-button.mat-button-disabled, lux-button button.lux-button.mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]), lux-button button.lux-button.mat-fab.mat-button-disabled {
|
|
82
111
|
color: #636D76;
|
|
112
|
+
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
113
|
+
}
|
|
114
|
+
lux-button button.lux-button.mat-raised-button:not([class*=mat-elevation-z]) {
|
|
115
|
+
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
83
116
|
}
|
|
84
117
|
lux-button button.lux-button.lux-icon-button {
|
|
85
118
|
height: 45px;
|
|
86
|
-
padding-top: 4px;
|
|
87
|
-
padding-bottom: 2px;
|
|
88
119
|
}
|
|
89
120
|
lux-button button.lux-button.lux-button-rounded {
|
|
90
121
|
height: 45px;
|
|
91
122
|
width: 45px;
|
|
123
|
+
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
124
|
+
}
|
|
125
|
+
lux-button button.lux-button.lux-button-rounded.lux-icon-button {
|
|
126
|
+
padding-top: 2px;
|
|
127
|
+
padding-bottom: 2px;
|
|
92
128
|
}
|
|
93
129
|
|
|
94
130
|
/**
|
|
@@ -110,6 +146,13 @@ lux-checkbox .mat-checkbox-checked:not(.mat-checkbox-disabled) label span.mat-ch
|
|
|
110
146
|
lux-card .lux-card-content-container mat-tab-group.lux-tab-group .lux-tabs-notification-icon {
|
|
111
147
|
border-color: #ffffff;
|
|
112
148
|
}
|
|
149
|
+
lux-card .lux-card-content-container {
|
|
150
|
+
overflow-x: hidden;
|
|
151
|
+
padding: 6px;
|
|
152
|
+
}
|
|
153
|
+
lux-card .lux-card-content-container > * {
|
|
154
|
+
margin-bottom: 0;
|
|
155
|
+
}
|
|
113
156
|
lux-card .lux-highlight {
|
|
114
157
|
color: #003366;
|
|
115
158
|
}
|
|
@@ -119,10 +162,17 @@ lux-card .mat-card-subtitle {
|
|
|
119
162
|
lux-card .lux-card-content-expanded {
|
|
120
163
|
background: #ffffff;
|
|
121
164
|
}
|
|
165
|
+
lux-card .mat-card:not([class*=mat-elevation-z]) {
|
|
166
|
+
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
167
|
+
}
|
|
122
168
|
|
|
123
169
|
/**
|
|
124
170
|
* Theming für LUX-Chips
|
|
125
171
|
*/
|
|
172
|
+
lux-chips {
|
|
173
|
+
min-height: calc(84px + 20px);
|
|
174
|
+
margin-bottom: 20px;
|
|
175
|
+
}
|
|
126
176
|
lux-chips .lux-chips-autocomplete-icon {
|
|
127
177
|
color: var(--lux-theme-primary-500);
|
|
128
178
|
font-size: 24px;
|
|
@@ -150,11 +200,15 @@ lux-chips .lux-chips mat-chip.mat-chip-disabled lux-icon i,
|
|
|
150
200
|
lux-chips .lux-chips mat-chip.mat-chip-disabled lux-icon mat-icon {
|
|
151
201
|
color: #ffffff;
|
|
152
202
|
}
|
|
203
|
+
lux-chips .lux-chips mat-chip-list div.mat-chip-list-wrapper {
|
|
204
|
+
margin: 0px 0px 0px -4px;
|
|
205
|
+
}
|
|
153
206
|
|
|
154
207
|
.lux-chips-autocomplete-panel {
|
|
155
208
|
padding: 1px;
|
|
156
|
-
margin-
|
|
157
|
-
margin-
|
|
209
|
+
margin-top: -20px;
|
|
210
|
+
margin-left: 0;
|
|
211
|
+
margin-right: 0;
|
|
158
212
|
border-radius: 4px;
|
|
159
213
|
}
|
|
160
214
|
.lux-chips-autocomplete-panel mat-option:not(:last-of-type) {
|
|
@@ -181,12 +235,24 @@ lux-datetimepicker mat-datepicker-toggle button.mat-button-disabled .mat-button-
|
|
|
181
235
|
color: #636D76;
|
|
182
236
|
}
|
|
183
237
|
|
|
238
|
+
.lux-datetime-overlay-content mat-card.mat-card {
|
|
239
|
+
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
240
|
+
}
|
|
241
|
+
.lux-datetime-overlay-content mat-card.mat-card lux-input div.lux-form-control {
|
|
242
|
+
min-height: unset;
|
|
243
|
+
margin: 6px;
|
|
244
|
+
text-align: center;
|
|
245
|
+
}
|
|
246
|
+
|
|
184
247
|
/*
|
|
185
248
|
* Theming for LUX-Dialog
|
|
186
249
|
*/
|
|
187
250
|
.lux-dialog .lux-dialog-title {
|
|
188
251
|
color: #003366;
|
|
189
252
|
}
|
|
253
|
+
.lux-dialog .mat-dialog-container {
|
|
254
|
+
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
255
|
+
}
|
|
190
256
|
|
|
191
257
|
/*
|
|
192
258
|
* Theming for LUX-Divider
|
|
@@ -198,6 +264,9 @@ lux-divider .mat-divider {
|
|
|
198
264
|
/*
|
|
199
265
|
* Theming for LUX-File-List
|
|
200
266
|
*/
|
|
267
|
+
lux-file-list .lux-file-list {
|
|
268
|
+
margin: 0px;
|
|
269
|
+
}
|
|
201
270
|
lux-file-list .lux-file-list .lux-file-list-entry-label, lux-file-list .lux-file-list .lux-file-list-entry-icon {
|
|
202
271
|
color: #003366;
|
|
203
272
|
}
|
|
@@ -216,6 +285,12 @@ lux-file-list .lux-file-list.lux-file-list-disabled i {
|
|
|
216
285
|
lux-file-list .lux-file-list.lux-file-list-disabled .lux-file-icon-hint span {
|
|
217
286
|
text-decoration-color: #636D76 !important;
|
|
218
287
|
}
|
|
288
|
+
lux-file-list .lux-file-list.lux-file-list-error mat-card-title .lux-card-title-container {
|
|
289
|
+
color: #ea515a;
|
|
290
|
+
}
|
|
291
|
+
lux-file-list .lux-file-list mat-card {
|
|
292
|
+
margin: 0 !important;
|
|
293
|
+
}
|
|
219
294
|
|
|
220
295
|
/*
|
|
221
296
|
* Theming for LUX-File-Progress
|
|
@@ -426,21 +501,30 @@ lux-file-progress .lux-file-overlay mat-spinner svg circle {
|
|
|
426
501
|
/*
|
|
427
502
|
* Theming for LUX-Form-Controls
|
|
428
503
|
*/
|
|
504
|
+
.lux-form-control {
|
|
505
|
+
margin: 0px;
|
|
506
|
+
min-height: 84px;
|
|
507
|
+
}
|
|
508
|
+
.lux-form-control .lux-label,
|
|
509
|
+
.lux-form-control mat-hint,
|
|
510
|
+
.lux-form-control mat-error {
|
|
511
|
+
color: #003366;
|
|
512
|
+
}
|
|
429
513
|
.lux-form-control .lux-form-control-container {
|
|
430
514
|
padding: 6px 0 0 0;
|
|
431
515
|
}
|
|
516
|
+
.lux-form-control .lux-form-control-container input:required, .lux-form-control .lux-form-control-container textarea:required {
|
|
517
|
+
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
518
|
+
}
|
|
432
519
|
.lux-form-control .lux-form-control-container:after {
|
|
433
520
|
border-bottom: 1px solid rgba(0, 0, 0, 0.42);
|
|
434
521
|
}
|
|
435
|
-
.lux-form-control .lux-label, .lux-form-control mat-hint, .lux-form-control mat-error {
|
|
436
|
-
color: #003366;
|
|
437
|
-
}
|
|
438
522
|
|
|
439
523
|
.lux-form-control-error .lux-form-control-label > * {
|
|
440
524
|
color: #ea515a !important;
|
|
441
525
|
}
|
|
442
|
-
.lux-form-control-error .lux-form-control-container {
|
|
443
|
-
border-
|
|
526
|
+
.lux-form-control-error .lux-form-control-container:after {
|
|
527
|
+
border-bottom: 1px solid #ea515a;
|
|
444
528
|
}
|
|
445
529
|
.lux-form-control-error .lux-form-control-misc > * {
|
|
446
530
|
color: #ea515a !important;
|
|
@@ -496,6 +580,16 @@ lux-lookup-combobox mat-select[aria-disabled=false] .mat-select-arrow {
|
|
|
496
580
|
border-left: 2px solid #ea515a;
|
|
497
581
|
}
|
|
498
582
|
|
|
583
|
+
/*
|
|
584
|
+
* Eineheitliche Elevation für die Components auf Cdk-Overlay-Pane
|
|
585
|
+
*/
|
|
586
|
+
.cdk-overlay-pane > .mat-autocomplete-panel:not([class*=mat-elevation-z]),
|
|
587
|
+
.cdk-overlay-pane .mat-datepicker-content,
|
|
588
|
+
.cdk-overlay-pane .mat-select-panel:not([class*=mat-elevation-z]),
|
|
589
|
+
.cdk-overlay-pane .mat-menu-panel {
|
|
590
|
+
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
591
|
+
}
|
|
592
|
+
|
|
499
593
|
/*
|
|
500
594
|
* Theming for LUX-Master-Detail
|
|
501
595
|
*/
|
|
@@ -503,12 +597,19 @@ lux-master-detail .lux-detail-container .lux-detail-empty-icon,
|
|
|
503
597
|
lux-master-detail .lux-detail-container .lux-detail-empty-icon-text {
|
|
504
598
|
color: #003366;
|
|
505
599
|
}
|
|
600
|
+
lux-master-detail .lux-master-container.lux-empty-elements-aligned {
|
|
601
|
+
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
602
|
+
}
|
|
603
|
+
lux-master-detail lux-list .mat-card:not([class*=mat-elevation-z]) {
|
|
604
|
+
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
605
|
+
}
|
|
506
606
|
|
|
507
607
|
/*
|
|
508
608
|
* Theming for LUX-Master-Footer
|
|
509
609
|
*/
|
|
510
610
|
lux-master-footer {
|
|
511
611
|
background-color: #ffffff;
|
|
612
|
+
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
512
613
|
}
|
|
513
614
|
|
|
514
615
|
/*
|
|
@@ -516,6 +617,7 @@ lux-master-footer {
|
|
|
516
617
|
*/
|
|
517
618
|
lux-master-header {
|
|
518
619
|
background-color: #ffffff;
|
|
620
|
+
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
519
621
|
}
|
|
520
622
|
|
|
521
623
|
/*
|
|
@@ -530,7 +632,7 @@ lux-master-header {
|
|
|
530
632
|
* Theming for LUX-Message-Box
|
|
531
633
|
*/
|
|
532
634
|
lux-message-box.mat-elevation-z4 {
|
|
533
|
-
box-shadow: 0px 2px
|
|
635
|
+
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
534
636
|
}
|
|
535
637
|
|
|
536
638
|
/*
|
|
@@ -576,6 +678,10 @@ lux-message-box.mat-elevation-z4 {
|
|
|
576
678
|
background-color: transparent;
|
|
577
679
|
}
|
|
578
680
|
|
|
681
|
+
snack-bar-container.mat-snack-bar-container {
|
|
682
|
+
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
|
|
683
|
+
}
|
|
684
|
+
|
|
579
685
|
/*
|
|
580
686
|
* Theming for LUX-Progress
|
|
581
687
|
*/
|
|
@@ -648,6 +754,9 @@ lux-progress mat-progress-spinner.lux-bg-color-white circle {
|
|
|
648
754
|
stroke: #ffffff;
|
|
649
755
|
}
|
|
650
756
|
|
|
757
|
+
lux-radio .mat-radio-container {
|
|
758
|
+
border-radius: 50%;
|
|
759
|
+
}
|
|
651
760
|
lux-radio .mat-radio-checked label.mat-radio-label .mat-radio-container span.mat-radio-inner-circle {
|
|
652
761
|
background-color: #003366;
|
|
653
762
|
}
|
|
@@ -689,7 +798,7 @@ lux-select mat-select[aria-disabled=false] .mat-select-arrow {
|
|
|
689
798
|
*/
|
|
690
799
|
lux-side-nav .lux-side-nav {
|
|
691
800
|
background: #ffffff;
|
|
692
|
-
box-shadow:
|
|
801
|
+
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
|
693
802
|
}
|
|
694
803
|
lux-side-nav .lux-side-nav .lux-side-nav-header {
|
|
695
804
|
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
|
@@ -731,16 +840,24 @@ lux-spinner .mat-progress-spinner > svg > circle {
|
|
|
731
840
|
/*
|
|
732
841
|
* Theming for LUX-Stepper
|
|
733
842
|
*/
|
|
843
|
+
lux-stepper .mat-stepper-horizontal, lux-stepper .mat-stepper-vertical {
|
|
844
|
+
background-color: transparent;
|
|
845
|
+
}
|
|
734
846
|
lux-stepper .lux-ignore-mat-step-icons mat-step-header {
|
|
735
847
|
color: #003366;
|
|
736
848
|
}
|
|
737
|
-
lux-stepper .lux-ignore-mat-step-icons mat-step-header.lux-step-header-touched .lux-stepper-edited-icon i,
|
|
849
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header.lux-step-header-touched .lux-stepper-edited-icon i,
|
|
850
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header.lux-step-header-touched .lux-stepper-edited-icon mat-icon,
|
|
738
851
|
lux-stepper .lux-ignore-mat-step-icons mat-step-header.lux-step-header-touched .lux-stepper-normal-icon i,
|
|
739
852
|
lux-stepper .lux-ignore-mat-step-icons mat-step-header.lux-step-header-touched .lux-stepper-normal-icon mat-icon {
|
|
740
853
|
color: #ffffff;
|
|
741
854
|
background-color: #003366;
|
|
742
855
|
}
|
|
743
|
-
lux-stepper .lux-ignore-mat-step-icons mat-step-header
|
|
856
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header.lux-step-header-touched lux-step-header {
|
|
857
|
+
color: #003366;
|
|
858
|
+
}
|
|
859
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header:not(.lux-step-header-touched) .lux-stepper-edited-icon i,
|
|
860
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header:not(.lux-step-header-touched) .lux-stepper-edited-icon mat-icon,
|
|
744
861
|
lux-stepper .lux-ignore-mat-step-icons mat-step-header:not(.lux-step-header-touched) .lux-stepper-normal-icon i,
|
|
745
862
|
lux-stepper .lux-ignore-mat-step-icons mat-step-header:not(.lux-step-header-touched) .lux-stepper-normal-icon mat-icon {
|
|
746
863
|
color: #ffffff;
|
|
@@ -757,6 +874,9 @@ lux-stepper .mat-step-header.lux-step-header-touched .mat-step-icon-selected {
|
|
|
757
874
|
color: #ffffff;
|
|
758
875
|
background-color: #003366;
|
|
759
876
|
}
|
|
877
|
+
lux-stepper .mat-step-header.lux-step-header-touched lux-step-header {
|
|
878
|
+
color: #003366;
|
|
879
|
+
}
|
|
760
880
|
lux-stepper .mat-step-header:not(.lux-step-header-touched) .mat-step-icon {
|
|
761
881
|
color: #ffffff;
|
|
762
882
|
background-color: #003366;
|
|
@@ -772,11 +892,19 @@ lux-stepper .mat-step-header:not(.lux-step-header-touched) .mat-step-icon-select
|
|
|
772
892
|
lux-table .lux-row-selected {
|
|
773
893
|
background-color: #E3EBF5;
|
|
774
894
|
}
|
|
895
|
+
lux-table table td div.lux-form-control {
|
|
896
|
+
min-height: 18px;
|
|
897
|
+
}
|
|
898
|
+
lux-table table td div.lux-form-control .lux-form-control-label,
|
|
899
|
+
lux-table table td div.lux-form-control .lux-form-control-misc {
|
|
900
|
+
display: none;
|
|
901
|
+
}
|
|
775
902
|
|
|
776
903
|
/*
|
|
777
904
|
* Theming for LUX-Tabs
|
|
778
905
|
*/
|
|
779
|
-
lux-tabs .mat-tab-nav-bar,
|
|
906
|
+
lux-tabs .mat-tab-nav-bar,
|
|
907
|
+
lux-tabs .mat-tab-header {
|
|
780
908
|
border-color: rgba(0, 0, 0, 0.2);
|
|
781
909
|
}
|
|
782
910
|
lux-tabs mat-tab-group div[role=tab]:not(.mat-tab-disabled) {
|
|
@@ -798,6 +926,17 @@ lux-tile .lux-notification-new {
|
|
|
798
926
|
lux-tile .lux-highlight {
|
|
799
927
|
color: #0846ff;
|
|
800
928
|
}
|
|
929
|
+
lux-tile .mat-card:not([class*=mat-elevation-z]) {
|
|
930
|
+
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
931
|
+
}
|
|
932
|
+
lux-tile .lux-tile-label {
|
|
933
|
+
margin: 0;
|
|
934
|
+
display: flex;
|
|
935
|
+
flex-shrink: 1;
|
|
936
|
+
flex-grow: 0;
|
|
937
|
+
min-height: 65px;
|
|
938
|
+
max-height: 65px;
|
|
939
|
+
}
|
|
801
940
|
|
|
802
941
|
/*
|
|
803
942
|
* Theming for LUX-Toggle
|
|
@@ -806,6 +945,9 @@ lux-toggle .mat-slide-toggle label {
|
|
|
806
945
|
color: #003366;
|
|
807
946
|
font-family: "Source Sans Pro", "Helvetica", "Arial", "sans-serif";
|
|
808
947
|
}
|
|
948
|
+
lux-toggle .mat-slide-toggle .mat-slide-toggle-thumb {
|
|
949
|
+
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
950
|
+
}
|
|
809
951
|
lux-toggle .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
|
|
810
952
|
background-color: #b3c2d1;
|
|
811
953
|
}
|
|
@@ -835,6 +977,20 @@ mat-tooltip-component .mat-tooltip {
|
|
|
835
977
|
font-size: 14px;
|
|
836
978
|
}
|
|
837
979
|
|
|
980
|
+
/*
|
|
981
|
+
* Theming for LUX-Accordion
|
|
982
|
+
*/
|
|
983
|
+
mat-expansion-panel.mat-expansion-panel:not([class*=mat-elevation-z]) {
|
|
984
|
+
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
/*
|
|
988
|
+
* Theming for LUX-Errorpage
|
|
989
|
+
*/
|
|
990
|
+
lux-error-page lux-card:not(.lux-error-page-desktop) .mat-card:not([class*=mat-elevation-z]) {
|
|
991
|
+
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
992
|
+
}
|
|
993
|
+
|
|
838
994
|
/*
|
|
839
995
|
* Theming für Lux-Stepper-Large
|
|
840
996
|
*/
|
|
@@ -1208,6 +1364,9 @@ lux-list lux-list-item lux-card mat-card:hover {
|
|
|
1208
1364
|
lux-chips .mat-standard-chip:focus {
|
|
1209
1365
|
outline: 1px dotted #000000 !important;
|
|
1210
1366
|
}
|
|
1367
|
+
lux-chips .mat-chip.mat-standard-chip:after {
|
|
1368
|
+
background-color: unset;
|
|
1369
|
+
}
|
|
1211
1370
|
|
|
1212
1371
|
/** ########## Form-Control ########## **/
|
|
1213
1372
|
lux-form-control .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-form-control-label > * {
|
|
@@ -1231,10 +1390,14 @@ lux-form-control .lux-form-control:not(.lux-form-control-disabled).lux-focused .
|
|
|
1231
1390
|
height: 2px;
|
|
1232
1391
|
border-bottom: 2px solid #2E8533;
|
|
1233
1392
|
}
|
|
1393
|
+
lux-form-control .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error .lux-form-control-container:after {
|
|
1394
|
+
border-bottom: 2px solid #ea515a;
|
|
1395
|
+
}
|
|
1234
1396
|
|
|
1235
1397
|
/** ########## Datepicker ########## **/
|
|
1236
1398
|
lux-datepicker mat-datepicker-toggle button:focus {
|
|
1237
1399
|
outline: 1px dotted #000000 !important;
|
|
1400
|
+
border-radius: 4px;
|
|
1238
1401
|
}
|
|
1239
1402
|
lux-datepicker mat-datepicker-toggle .mat-button-focus-overlay {
|
|
1240
1403
|
display: none;
|
|
@@ -1263,6 +1426,7 @@ lux-datepicker mat-datepicker-toggle .mat-button-focus-overlay {
|
|
|
1263
1426
|
/** ########## Datetimepicker ########## **/
|
|
1264
1427
|
lux-datetimepicker mat-datepicker-toggle button:focus {
|
|
1265
1428
|
outline: 1px dotted #000000 !important;
|
|
1429
|
+
border-radius: 4px;
|
|
1266
1430
|
}
|
|
1267
1431
|
lux-datetimepicker mat-datepicker-toggle .mat-button-focus-overlay {
|
|
1268
1432
|
display: none;
|
|
@@ -1328,9 +1492,13 @@ lux-table th.cdk-keyboard-focused div.mat-sort-header-container {
|
|
|
1328
1492
|
}
|
|
1329
1493
|
.lux-select-panel mat-option:focus {
|
|
1330
1494
|
outline: 1px dotted #000000 !important;
|
|
1495
|
+
outline-offset: -1px;
|
|
1496
|
+
border-radius: 4px;
|
|
1331
1497
|
}
|
|
1332
1498
|
.lux-select-panel mat-option.mat-active {
|
|
1333
1499
|
outline: 1px dotted #000000 !important;
|
|
1500
|
+
outline-offset: -1px;
|
|
1501
|
+
border-radius: 4px;
|
|
1334
1502
|
}
|
|
1335
1503
|
.lux-select-panel mat-option:hover {
|
|
1336
1504
|
background-color: #e3ebf5 !important;
|
|
@@ -1378,9 +1546,13 @@ lux-button button:not([disabled]).mat-fab:focus:not(:hover).mat-primary, lux-but
|
|
|
1378
1546
|
/** ########## Autocomplete ########## **/
|
|
1379
1547
|
.lux-autocomplete-panel mat-option:focus, .lux-chips-autocomplete-panel mat-option:focus {
|
|
1380
1548
|
outline: 1px dotted #000000 !important;
|
|
1549
|
+
outline-offset: -1px;
|
|
1550
|
+
border-radius: 4px;
|
|
1381
1551
|
}
|
|
1382
1552
|
.lux-autocomplete-panel mat-option.mat-active, .lux-chips-autocomplete-panel mat-option.mat-active {
|
|
1383
1553
|
outline: 1px dotted #000000 !important;
|
|
1554
|
+
outline-offset: -1px;
|
|
1555
|
+
border-radius: 4px;
|
|
1384
1556
|
}
|
|
1385
1557
|
.lux-autocomplete-panel mat-option:hover, .lux-chips-autocomplete-panel mat-option:hover {
|
|
1386
1558
|
background-color: #e3ebf5 !important;
|
|
@@ -1710,6 +1882,12 @@ lux-stepper-large .lux-stepper-large-nav-item:not(.lux-active).lux-completed .lu
|
|
|
1710
1882
|
--lux-theme-form-control-height-small: 18px;
|
|
1711
1883
|
--lux-theme-form-control-font-size: 15px;
|
|
1712
1884
|
--lux-theme-form-control-font-size-small: 12px;
|
|
1885
|
+
--lux-theme-form-control-label-padding: 2px 0 4px 0;
|
|
1886
|
+
--lux-theme-form-control-container-padding: 10px 5px 10px 5px;
|
|
1887
|
+
--lux-theme-form-control-misc-margin: 4px 0 2px 0;
|
|
1888
|
+
--lux-theme-form-control-complete-height: 84px;
|
|
1889
|
+
--lux-theme-form-control-buffer: 6px;
|
|
1890
|
+
--lux-theme-form-control-margin: 0px;
|
|
1713
1891
|
--lux-theme-button-height: 45px;
|
|
1714
1892
|
--lux-theme-button-fav-height: 45px;
|
|
1715
1893
|
--lux-theme-outline-color-bright: #ffffff;
|
|
@@ -1862,18 +2040,39 @@ h6 {
|
|
|
1862
2040
|
-webkit-border-radius: 4px;
|
|
1863
2041
|
-moz-border-radius: 4px;
|
|
1864
2042
|
border-radius: 4px;
|
|
1865
|
-
|
|
2043
|
+
margin: 16px 0;
|
|
2044
|
+
padding: 16px 16px;
|
|
1866
2045
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
1867
2046
|
display: flex;
|
|
1868
|
-
margin: 0 0 16px 0;
|
|
1869
2047
|
word-break: break-word;
|
|
1870
2048
|
}
|
|
2049
|
+
.lux-highlight-section.column {
|
|
2050
|
+
flex-direction: column;
|
|
2051
|
+
gap: 16px;
|
|
2052
|
+
}
|
|
2053
|
+
.lux-highlight-section.row {
|
|
2054
|
+
flex-direction: row;
|
|
2055
|
+
gap: 16px;
|
|
2056
|
+
}
|
|
1871
2057
|
|
|
1872
2058
|
.lux-highlight-section-label {
|
|
1873
2059
|
margin-top: 0;
|
|
1874
2060
|
margin-left: 0;
|
|
1875
2061
|
}
|
|
1876
2062
|
|
|
2063
|
+
.lux-simple-form {
|
|
2064
|
+
margin: 4px 0;
|
|
2065
|
+
display: flex;
|
|
2066
|
+
}
|
|
2067
|
+
.lux-simple-form.column {
|
|
2068
|
+
flex-direction: column;
|
|
2069
|
+
gap: 16px;
|
|
2070
|
+
}
|
|
2071
|
+
.lux-simple-form.row {
|
|
2072
|
+
flex-direction: row;
|
|
2073
|
+
gap: 16px;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
1877
2076
|
.lux-app-container {
|
|
1878
2077
|
flex-direction: column;
|
|
1879
2078
|
box-sizing: border-box;
|
|
@@ -1932,7 +2131,7 @@ lux-card.lux-card-grow mat-card-content {
|
|
|
1932
2131
|
}
|
|
1933
2132
|
|
|
1934
2133
|
.lux-display-none {
|
|
1935
|
-
display: none;
|
|
2134
|
+
display: none !important;
|
|
1936
2135
|
}
|
|
1937
2136
|
|
|
1938
2137
|
.lux-display-none-important {
|
|
@@ -2021,7 +2220,6 @@ lux-card.lux-card-grow mat-card-content {
|
|
|
2021
2220
|
position: relative;
|
|
2022
2221
|
margin: 0 !important;
|
|
2023
2222
|
min-width: unset !important;
|
|
2024
|
-
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
2025
2223
|
visibility: hidden;
|
|
2026
2224
|
}
|
|
2027
2225
|
|
|
@@ -7229,7 +7427,8 @@ lux-app-header lux-menu-trigger button.lux-right-nav-trigger:hover lux-icon, lux
|
|
|
7229
7427
|
* Theming for LUX-Button
|
|
7230
7428
|
*/
|
|
7231
7429
|
lux-button button.lux-button {
|
|
7232
|
-
font-weight:
|
|
7430
|
+
font-weight: normal !important;
|
|
7431
|
+
align-items: center;
|
|
7233
7432
|
}
|
|
7234
7433
|
lux-button button.lux-button.mat-button, lux-button button.lux-button.mat-raised-button {
|
|
7235
7434
|
border-radius: 18px;
|
|
@@ -7247,30 +7446,28 @@ lux-button button.lux-button.mat-raised-button.mat-accent:not(.mat-button-disabl
|
|
|
7247
7446
|
lux-button button.lux-button.lux-icon-button {
|
|
7248
7447
|
border-radius: 18px;
|
|
7249
7448
|
height: 45px;
|
|
7250
|
-
padding-top: 4px;
|
|
7251
|
-
padding-bottom: 2px;
|
|
7252
7449
|
}
|
|
7253
|
-
lux-button button.lux-button.lux-icon-button lux-icon
|
|
7254
|
-
|
|
7450
|
+
lux-button button.lux-button.lux-icon-button lux-icon {
|
|
7451
|
+
line-height: 1;
|
|
7452
|
+
}
|
|
7453
|
+
lux-button button.lux-button.lux-icon-button lux-icon i {
|
|
7255
7454
|
font-size: 1em;
|
|
7256
7455
|
}
|
|
7456
|
+
lux-button button.lux-button.lux-icon-button lux-icon mat-icon {
|
|
7457
|
+
font-size: 1.2em !important;
|
|
7458
|
+
}
|
|
7257
7459
|
lux-button button.lux-button.lux-button-rounded {
|
|
7258
7460
|
border-radius: 16px !important;
|
|
7259
7461
|
height: 45px;
|
|
7260
7462
|
width: 45px;
|
|
7463
|
+
font-size: 22px;
|
|
7464
|
+
}
|
|
7465
|
+
lux-button button.lux-button.lux-button-rounded lux-icon {
|
|
7466
|
+
line-height: 1;
|
|
7261
7467
|
}
|
|
7262
7468
|
lux-button button.lux-button.lux-button-rounded lux-icon i,
|
|
7263
7469
|
lux-button button.lux-button.lux-button-rounded lux-icon mat-icon {
|
|
7264
|
-
font-size: 1.
|
|
7265
|
-
}
|
|
7266
|
-
|
|
7267
|
-
/**
|
|
7268
|
-
* Theming für LUX-Chips
|
|
7269
|
-
*/
|
|
7270
|
-
.lux-chips-autocomplete-panel {
|
|
7271
|
-
margin-left: 6px;
|
|
7272
|
-
margin-right: 6px;
|
|
7273
|
-
border-radius: 4px;
|
|
7470
|
+
font-size: 1.2em !important;
|
|
7274
7471
|
}
|
|
7275
7472
|
|
|
7276
7473
|
/*
|
|
@@ -7296,22 +7493,25 @@ lux-tile h2 {
|
|
|
7296
7493
|
lux-tile .lux-highlight {
|
|
7297
7494
|
color: #003366;
|
|
7298
7495
|
}
|
|
7496
|
+
lux-tile .lux-tile-label {
|
|
7497
|
+
flex-shrink: 1;
|
|
7498
|
+
flex-grow: 0;
|
|
7499
|
+
min-height: 70px;
|
|
7500
|
+
max-height: 70px;
|
|
7501
|
+
}
|
|
7299
7502
|
|
|
7300
7503
|
lux-tile .lux-highlight:hover {
|
|
7301
7504
|
color: #56BD66;
|
|
7302
7505
|
}
|
|
7303
|
-
lux-tile mat-card[class~=lux-cursor] {
|
|
7304
|
-
box-shadow: 0px 2px 1px -1px rgba(0, 51, 102, 0.6), 0px 1px 1px 0px rgba(0, 51, 102, 0.5), 0px 1px 3px 0px rgba(0, 51, 102, 0.4) !important;
|
|
7305
|
-
}
|
|
7306
7506
|
lux-tile mat-card[class~=lux-cursor]:focus {
|
|
7307
7507
|
outline: 1px dotted #000000 !important;
|
|
7308
7508
|
}
|
|
7309
7509
|
lux-tile mat-card[class~=lux-cursor]:hover {
|
|
7310
7510
|
background-color: white !important;
|
|
7311
|
-
box-shadow: 0px
|
|
7511
|
+
box-shadow: 0px 3px 1px -2px rgba(46, 133, 51, 0.2), 0px 2px 2px 0px rgba(46, 133, 51, 0.14), 0px 1px 5px 0px rgba(46, 133, 51, 0.12);
|
|
7312
7512
|
}
|
|
7313
7513
|
lux-tile mat-card[class~=lux-cursor]:hover h2 {
|
|
7314
|
-
color: #
|
|
7514
|
+
color: #56bd66;
|
|
7315
7515
|
}
|
|
7316
7516
|
|
|
7317
7517
|
/*
|
|
@@ -7324,10 +7524,6 @@ lux-tile mat-card[class~=lux-cursor]:hover h2 {
|
|
|
7324
7524
|
/*
|
|
7325
7525
|
* Theming for LUX-Form-Controls
|
|
7326
7526
|
*/
|
|
7327
|
-
lux-checkbox .lux-form-control, lux-toggle .lux-form-control, lux-radio .lux-form-control, lux-slider .lux-form-control {
|
|
7328
|
-
margin-right: 4px;
|
|
7329
|
-
margin-left: 4px;
|
|
7330
|
-
}
|
|
7331
7527
|
lux-checkbox .lux-form-control .lux-form-control-label, lux-toggle .lux-form-control .lux-form-control-label, lux-radio .lux-form-control .lux-form-control-label, lux-slider .lux-form-control .lux-form-control-label {
|
|
7332
7528
|
padding-bottom: 4px;
|
|
7333
7529
|
}
|
|
@@ -7339,13 +7535,9 @@ lux-checkbox .lux-form-control:not(.lux-form-control-disabled) .lux-form-control
|
|
|
7339
7535
|
}
|
|
7340
7536
|
|
|
7341
7537
|
.mat-select-value {
|
|
7342
|
-
color:
|
|
7538
|
+
color: rgba(0, 0, 0, 0.54);
|
|
7343
7539
|
}
|
|
7344
7540
|
|
|
7345
|
-
lux-input .lux-form-control, lux-select .lux-form-control, lux-file-input .lux-form-control, lux-textarea .lux-form-control, lux-autocomplete .lux-form-control, lux-datepicker .lux-form-control, lux-datetimepicker .lux-form-control, lux-chips .lux-form-control {
|
|
7346
|
-
margin-right: 4px;
|
|
7347
|
-
margin-left: 4px;
|
|
7348
|
-
}
|
|
7349
7541
|
lux-input .lux-form-control .lux-form-control-label, lux-select .lux-form-control .lux-form-control-label, lux-file-input .lux-form-control .lux-form-control-label, lux-textarea .lux-form-control .lux-form-control-label, lux-autocomplete .lux-form-control .lux-form-control-label, lux-datepicker .lux-form-control .lux-form-control-label, lux-datetimepicker .lux-form-control .lux-form-control-label, lux-chips .lux-form-control .lux-form-control-label {
|
|
7350
7542
|
padding-bottom: 4px;
|
|
7351
7543
|
}
|
|
@@ -7367,6 +7559,9 @@ lux-input .lux-form-control-error .lux-form-control-container, lux-select .lux-f
|
|
|
7367
7559
|
border-color: #2E8533 !important;
|
|
7368
7560
|
box-shadow: 0 0 0 2px #ea515a, 0 0 4px 2px #ea515a;
|
|
7369
7561
|
}
|
|
7562
|
+
lux-input .lux-form-control-error .lux-form-control-container:after, lux-select .lux-form-control-error .lux-form-control-container:after, lux-file-input .lux-form-control-error .lux-form-control-container:after, lux-textarea .lux-form-control-error .lux-form-control-container:after, lux-autocomplete .lux-form-control-error .lux-form-control-container:after, lux-datepicker .lux-form-control-error .lux-form-control-container:after, lux-datetimepicker .lux-form-control-error .lux-form-control-container:after, lux-chips .lux-form-control-error .lux-form-control-container:after {
|
|
7563
|
+
border-bottom: 0px;
|
|
7564
|
+
}
|
|
7370
7565
|
lux-input .lux-form-control-error .lux-form-control-misc > *, lux-select .lux-form-control-error .lux-form-control-misc > *, lux-file-input .lux-form-control-error .lux-form-control-misc > *, lux-textarea .lux-form-control-error .lux-form-control-misc > *, lux-autocomplete .lux-form-control-error .lux-form-control-misc > *, lux-datepicker .lux-form-control-error .lux-form-control-misc > *, lux-datetimepicker .lux-form-control-error .lux-form-control-misc > *, lux-chips .lux-form-control-error .lux-form-control-misc > * {
|
|
7371
7566
|
color: #ea515a !important;
|
|
7372
7567
|
}
|
|
@@ -7386,7 +7581,14 @@ lux-input .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-for
|
|
|
7386
7581
|
box-shadow: 0 0 0 2px #2E8533, 0 0 4px 2px #2E8533;
|
|
7387
7582
|
}
|
|
7388
7583
|
lux-input .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-form-control-container:after, lux-select .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-form-control-container:after, lux-file-input .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-form-control-container:after, lux-textarea .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-form-control-container:after, lux-autocomplete .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-form-control-container:after, lux-datepicker .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-form-control-container:after, lux-datetimepicker .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-form-control-container:after, lux-chips .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-form-control-container:after {
|
|
7389
|
-
border-bottom: 0px;
|
|
7584
|
+
border-bottom: 0px !important;
|
|
7585
|
+
}
|
|
7586
|
+
lux-input .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error .lux-form-control-container, lux-select .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error .lux-form-control-container, lux-file-input .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error .lux-form-control-container, lux-textarea .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error .lux-form-control-container, lux-autocomplete .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error .lux-form-control-container, lux-datepicker .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error .lux-form-control-container, lux-datetimepicker .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error .lux-form-control-container, lux-chips .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error .lux-form-control-container {
|
|
7587
|
+
border-color: #ea515a !important;
|
|
7588
|
+
box-shadow: 0 0 0 2px #ea515a, 0 0 4px 2px #ea515a;
|
|
7589
|
+
}
|
|
7590
|
+
lux-input .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error:after, lux-select .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error:after, lux-file-input .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error:after, lux-textarea .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error:after, lux-autocomplete .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error:after, lux-datepicker .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error:after, lux-datetimepicker .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error:after, lux-chips .lux-form-control:not(.lux-form-control-disabled).lux-focused.lux-form-control-error:after {
|
|
7591
|
+
border-bottom: 0px !important;
|
|
7390
7592
|
}
|
|
7391
7593
|
|
|
7392
7594
|
.lux-form-control-error .lux-form-control-label > * {
|
|
@@ -7399,6 +7601,14 @@ lux-input .lux-form-control:not(.lux-form-control-disabled).lux-focused .lux-for
|
|
|
7399
7601
|
color: #ea515a !important;
|
|
7400
7602
|
}
|
|
7401
7603
|
|
|
7604
|
+
/*
|
|
7605
|
+
* Theming für LUX-Layout-Form-Row
|
|
7606
|
+
*/
|
|
7607
|
+
lux-layout-form-row lux-input .lux-form-control, lux-layout-form-row lux-select .lux-form-control, lux-layout-form-row lux-file-input .lux-form-control, lux-layout-form-row lux-textarea .lux-form-control, lux-layout-form-row lux-autocomplete .lux-form-control, lux-layout-form-row lux-datepicker .lux-form-control, lux-layout-form-row lux-datetimepicker .lux-form-control, lux-layout-form-row lux-chips .lux-form-control {
|
|
7608
|
+
margin-right: 0px;
|
|
7609
|
+
margin-left: 0px;
|
|
7610
|
+
}
|
|
7611
|
+
|
|
7402
7612
|
/*
|
|
7403
7613
|
* Theming für LUX-Checkbox
|
|
7404
7614
|
*/
|