@ihk-gfi/lux-components-theme 16.2.0 → 18.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 +1 -1
- package/package.json +31 -5
- 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 +1147 -696
- package/prebuilt-themes/luxtheme-authentic.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 +1130 -671
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +42 -30
- package/src/authentic/_luxcommon.scss +1 -8
- package/src/base/_luxcomponents.scss +24 -50
- package/src/base/_luxfocus.scss +71 -64
- package/src/base/_luxstyles.scss +101 -2
- package/src/base/components/_luxAppHeader.scss +5 -37
- package/src/base/components/_luxAppHeaderAc.scss +6 -4
- package/src/base/components/_luxBreadcrumb.scss +90 -0
- package/src/base/components/_luxButton.scss +63 -26
- package/src/base/components/_luxCard.scss +20 -6
- package/src/base/components/_luxDialog.scss +23 -4
- package/src/base/components/_luxFilter.scss +22 -2
- package/src/base/components/_luxFormControlWrapper.scss +5 -2
- package/src/base/components/_luxFormControlsAuthentic.scss +402 -158
- package/src/base/components/_luxList.scss +3 -3
- package/src/base/components/_luxMasterDetailAc.scss +6 -6
- package/src/base/components/_luxMenu.scss +28 -14
- package/src/base/components/_luxMessagebox.scss +28 -33
- package/src/base/components/_luxProgressBar.scss +5 -0
- package/src/base/components/_luxProgressSpinner.scss +13 -0
- package/src/base/components/_luxSnackbar.scss +12 -8
- package/src/base/components/_luxStepper.scss +1 -0
- package/src/base/components/_luxTable.scss +41 -24
- package/src/base/components/_luxTabs.scss +33 -17
- package/src/base/components/_luxTile.scss +16 -5
- package/src/base/components/_luxTileAc.scss +11 -2
- package/src/base/components/_luxToolTip.scss +9 -0
- package/src/base/components/_luxTourHint.scss +16 -1
- package/src/green/_custom.scss +87 -76
- package/src/public/global.scss +42 -1
|
@@ -66,10 +66,6 @@ lux-app-header {
|
|
|
66
66
|
min-width: 45px;
|
|
67
67
|
max-height: 45px !important;
|
|
68
68
|
min-height: 45px !important;
|
|
69
|
-
.mat-button-wrapper {
|
|
70
|
-
display: inline-flex;
|
|
71
|
-
height: 100%;
|
|
72
|
-
}
|
|
73
69
|
}
|
|
74
70
|
|
|
75
71
|
&.lux-button-with-label button {
|
|
@@ -100,23 +96,23 @@ lux-app-header {
|
|
|
100
96
|
font-weight: normal !important;
|
|
101
97
|
}
|
|
102
98
|
|
|
103
|
-
&:not(.mat-accent):not(.mat-warn):not(.mat-primary):not(
|
|
99
|
+
&:not(.mat-accent):not(.mat-warn):not(.mat-primary):not([disabled]) {
|
|
104
100
|
color: map.get(luxpalette.$lux-palette-primary, 500);
|
|
105
101
|
}
|
|
106
102
|
|
|
107
|
-
&:not(.mat-accent):not(.mat-warn):not(.mat-primary)
|
|
103
|
+
&:not(.mat-accent):not(.mat-warn):not(.mat-primary):disabled {
|
|
108
104
|
color: luxcommon.$dark-disabled-text;
|
|
109
105
|
}
|
|
110
106
|
|
|
111
|
-
&.mat-accent:not(
|
|
107
|
+
&.mat-accent:not([disabled]) {
|
|
112
108
|
color: map.get(luxpalette.$lux-palette_accent, A100);
|
|
113
109
|
}
|
|
114
110
|
|
|
115
|
-
&.mat-warn:not(
|
|
111
|
+
&.mat-warn:not([disabled]) {
|
|
116
112
|
color: map.get(luxpalette.$lux-palette_warn, A100);
|
|
117
113
|
}
|
|
118
114
|
|
|
119
|
-
&.mat-primary:not(
|
|
115
|
+
&.mat-primary:not([disabled]) {
|
|
120
116
|
color: map.get(luxpalette.$lux-palette_primary, A100);
|
|
121
117
|
}
|
|
122
118
|
|
|
@@ -191,10 +187,6 @@ lux-app-header {
|
|
|
191
187
|
cursor: pointer;
|
|
192
188
|
padding-right: 8px;
|
|
193
189
|
padding-left: 8px;
|
|
194
|
-
|
|
195
|
-
.mat-button-wrapper > span {
|
|
196
|
-
display: inline-block;
|
|
197
|
-
}
|
|
198
190
|
}
|
|
199
191
|
|
|
200
192
|
.lux-side-nav-trigger-active {
|
|
@@ -315,32 +307,12 @@ $sideNavZIndex: 11000;
|
|
|
315
307
|
}
|
|
316
308
|
}
|
|
317
309
|
|
|
318
|
-
// Anpassungen an den (ausgeklappten) Menus im Header
|
|
319
|
-
.lux-right-nav-menu,
|
|
320
|
-
.lux-side-nav .lux-side-nav-content {
|
|
321
|
-
lux-button,
|
|
322
|
-
.lux-menu-item,
|
|
323
|
-
.lux-action-nav-menu lux-button {
|
|
324
|
-
.mat-button-wrapper {
|
|
325
|
-
font-weight: normal !important;
|
|
326
|
-
font-size: 1rem;
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
|
|
331
310
|
// Anpassungen für die Mobile Ansicht
|
|
332
311
|
.lux-header-menu-mobile {
|
|
333
312
|
.lux-menu-trigger {
|
|
334
313
|
padding: 0 4px;
|
|
335
314
|
margin: 0;
|
|
336
315
|
|
|
337
|
-
.mat-button-wrapper {
|
|
338
|
-
display: inherit;
|
|
339
|
-
lux-icon {
|
|
340
|
-
align-items: center;
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
|
|
344
316
|
button {
|
|
345
317
|
padding: 0 6px;
|
|
346
318
|
}
|
|
@@ -435,10 +407,6 @@ lux-app-header {
|
|
|
435
407
|
}
|
|
436
408
|
}
|
|
437
409
|
}
|
|
438
|
-
|
|
439
|
-
.lux-menu-trigger-default .mat-button-wrapper {
|
|
440
|
-
display: block;
|
|
441
|
-
}
|
|
442
410
|
}
|
|
443
411
|
/** ########## Side-Nav ########## **/
|
|
444
412
|
lux-side-nav {
|
|
@@ -40,12 +40,12 @@ lux-app-header-ac {
|
|
|
40
40
|
box-sizing: border-box;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
&:hover:not([disabled]).mat-fab:hover.mat-primary {
|
|
43
|
+
&:hover:not([disabled]).mat-mdc-fab:hover.mat-primary {
|
|
44
44
|
lux-icon {
|
|
45
45
|
color: #ffffff !important;
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
-
&:focus-visible:not([disabled]).mat-fab.mat-primary.cdk-focused.cdk-keyboard-focused {
|
|
48
|
+
&:focus-visible:not([disabled]).mat-mdc-fab.mat-primary.cdk-focused.cdk-keyboard-focused {
|
|
49
49
|
background-color: transparent !important;
|
|
50
50
|
lux-icon {
|
|
51
51
|
color: map.get(luxpalette.$lux-palette_primary, 700) !important;
|
|
@@ -64,7 +64,7 @@ lux-app-header-ac {
|
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
&.lux-menu-trigger-default {
|
|
67
|
-
button.mat-button.lux-button {
|
|
67
|
+
button.mat-mdc-button.lux-button {
|
|
68
68
|
&:hover {
|
|
69
69
|
background-color: map.get(luxpalette.$lux-palette-primary, 300) !important;
|
|
70
70
|
color: #ffffff !important;
|
|
@@ -153,7 +153,9 @@ lux-app-header-ac {
|
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
&.nav-item-selected button.lux-button .lux-button-label {
|
|
156
|
-
text-shadow:
|
|
156
|
+
text-shadow:
|
|
157
|
+
0 0 0.65px #003366,
|
|
158
|
+
0 0 0.65px #003366;
|
|
157
159
|
}
|
|
158
160
|
}
|
|
159
161
|
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
@use "../luxfocus";
|
|
2
|
+
@use "../luxpalette";
|
|
3
|
+
@use "../luxcommon";
|
|
4
|
+
@use "../luxbreakpoints";
|
|
5
|
+
@use "sass:map";
|
|
6
|
+
|
|
7
|
+
lux-breadcrumb {
|
|
8
|
+
padding: 8px; //Für Focusindicator
|
|
9
|
+
margin: 20px 0 36px 0; //Stylevorgaben
|
|
10
|
+
display: flex;
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
|
|
13
|
+
@include luxbreakpoints.lt-md {
|
|
14
|
+
margin: 14px 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.lux-breadcrumb {
|
|
18
|
+
margin: -8px; //Fü Focusindicator
|
|
19
|
+
padding: 8px;
|
|
20
|
+
display: inline-flex;
|
|
21
|
+
flex-wrap: nowrap;
|
|
22
|
+
white-space: nowrap;
|
|
23
|
+
justify-content: flex-start;
|
|
24
|
+
gap: 9px;
|
|
25
|
+
align-items: baseline;
|
|
26
|
+
overflow: auto;
|
|
27
|
+
max-width: 100%;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.lux-breadcrumb-container {
|
|
31
|
+
padding: 0%;
|
|
32
|
+
margin: 0px -2px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.lux-breadcrumb-item {
|
|
36
|
+
display: inline-flex;
|
|
37
|
+
font-family: luxcommon.$app-font-family;
|
|
38
|
+
font-size: 1.125rem;
|
|
39
|
+
font-weight: 500;
|
|
40
|
+
text-decoration: underline;
|
|
41
|
+
color: var(--lux-theme-primary-color);
|
|
42
|
+
list-style-type: none;
|
|
43
|
+
box-sizing: border-box;
|
|
44
|
+
|
|
45
|
+
&.lux-breadcrumb-item-mobile {
|
|
46
|
+
font-size: 1rem;
|
|
47
|
+
gap: 6px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
:focus-visible {
|
|
51
|
+
@include luxfocus.focus-dark-mixin;
|
|
52
|
+
border-radius: 2px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
:hover {
|
|
56
|
+
color: luxcommon.$lux-hover-color;
|
|
57
|
+
text-decoration: underline;
|
|
58
|
+
cursor: pointer;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
lux-icon {
|
|
62
|
+
cursor: default;
|
|
63
|
+
:hover {
|
|
64
|
+
color: var(--lux-theme-primary-color);
|
|
65
|
+
cursor: default;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
a {
|
|
70
|
+
padding: 2px 4px;
|
|
71
|
+
color: var(--lux-theme-primary-color);
|
|
72
|
+
margin: 0px -2px;
|
|
73
|
+
white-space: nowrap;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.lux-breadcrumb-current-item {
|
|
78
|
+
font-family: luxcommon.$app-font-family;
|
|
79
|
+
font-size: 1.125rem;
|
|
80
|
+
font-weight: 500;
|
|
81
|
+
color: var(--lux-theme-primary-color);
|
|
82
|
+
list-style-type: none;
|
|
83
|
+
padding: 4px;
|
|
84
|
+
box-sizing: border-box;
|
|
85
|
+
|
|
86
|
+
&.lux-breadcrumb-current-item-mobile {
|
|
87
|
+
font-size: 1rem;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -15,6 +15,24 @@ lux-button button.lux-button {
|
|
|
15
15
|
font-weight: 600;
|
|
16
16
|
height: luxcommon.$button-height;
|
|
17
17
|
|
|
18
|
+
&.mat-mdc-fab {
|
|
19
|
+
border-radius: 50%;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&:not(.mat-mdc-fab) {
|
|
23
|
+
border-radius: 4px;
|
|
24
|
+
border-width: 1px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.mdc-button {
|
|
28
|
+
padding: 0 16px;
|
|
29
|
+
letter-spacing: 1.25px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&.mat-mdc-button.mat-unthemed {
|
|
33
|
+
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
34
|
+
}
|
|
35
|
+
|
|
18
36
|
.lux-button-content-container {
|
|
19
37
|
display: flex;
|
|
20
38
|
justify-content: center;
|
|
@@ -23,17 +41,17 @@ lux-button button.lux-button {
|
|
|
23
41
|
flex-wrap: nowrap;
|
|
24
42
|
}
|
|
25
43
|
|
|
26
|
-
&.mat-
|
|
27
|
-
&.mat-raised-button
|
|
28
|
-
&.mat-
|
|
29
|
-
&.mat-
|
|
30
|
-
&.mat-
|
|
31
|
-
&.mat-fab
|
|
44
|
+
&.mat-mdc-button:disabled,
|
|
45
|
+
&.mat-mdc-raised-button:disabled,
|
|
46
|
+
&.mat-mdc-raised-button:disabled:not([class*="mat-elevation-z"]),
|
|
47
|
+
&.mat-mdc-unelevated-button:disabled,
|
|
48
|
+
&.mat-mdc-outlined-button:disabled,
|
|
49
|
+
&.mat-mdc-fab:disabled {
|
|
32
50
|
color: luxcommon.$dark-disabled-text;
|
|
33
51
|
@include luxelevations.lux-elevation-z0;
|
|
34
52
|
}
|
|
35
53
|
|
|
36
|
-
&.mat-raised-button:not([class*="mat-elevation-z"]) {
|
|
54
|
+
&.mat-mdc-raised-button:not([class*="mat-elevation-z"]) {
|
|
37
55
|
@include luxelevations.lux-elevation-z2;
|
|
38
56
|
}
|
|
39
57
|
|
|
@@ -43,13 +61,6 @@ lux-button button.lux-button {
|
|
|
43
61
|
|
|
44
62
|
@include luxelevations.lux-elevation-z2;
|
|
45
63
|
|
|
46
|
-
.mat-button-wrapper {
|
|
47
|
-
padding: 0;
|
|
48
|
-
height: 100%;
|
|
49
|
-
display: inline-flex;
|
|
50
|
-
align-items: center;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
64
|
lux-icon.lux-button-icon-round {
|
|
54
65
|
line-height: 1;
|
|
55
66
|
}
|
|
@@ -94,18 +105,40 @@ lux-button button.lux-button {
|
|
|
94
105
|
/*
|
|
95
106
|
* Focus / Hover / Disabled
|
|
96
107
|
*/
|
|
97
|
-
lux-button
|
|
108
|
+
lux-button {
|
|
98
109
|
button:not([disabled]) {
|
|
99
|
-
.mat-button-
|
|
100
|
-
|
|
110
|
+
.mat-mdc-button-persistent-ripple::before {
|
|
111
|
+
background-color: transparent;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&.mat-mdc-fab:active,
|
|
115
|
+
&.mat-mdc-fab:focus {
|
|
116
|
+
box-shadow: none;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
&.lux-button-rounded.mat-accent.lux-fab-rounded-default {
|
|
120
|
+
background-color: white;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
&.lux-button-rounded.mat-primary:not(.lux-stroked) {
|
|
124
|
+
color: white;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
&.lux-button-rounded.mat-warn {
|
|
128
|
+
color: white;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
&.lux-button-rounded.lux-stroked.mat-accent.lux-fab-stroked-default {
|
|
132
|
+
background-color: white;
|
|
133
|
+
border-color: rgba(0, 0, 0, 0.2);
|
|
101
134
|
}
|
|
102
135
|
|
|
103
136
|
&:focus-visible {
|
|
104
137
|
@include luxfocus.lux-button-focus;
|
|
105
138
|
}
|
|
106
139
|
|
|
107
|
-
&:not(.mat-fab):not(.mat-raised-button):not(.mat-
|
|
108
|
-
&.mat-
|
|
140
|
+
&:not(.mat-mdc-fab):not(.mat-mdc-raised-button):not(.mat-mdc-unelevated-button),
|
|
141
|
+
&.mat-mdc-outlined-button {
|
|
109
142
|
&:hover {
|
|
110
143
|
background-color: color.adjust(luxcommon.$lux-hover-color, $lightness: -10%);
|
|
111
144
|
|
|
@@ -121,9 +154,9 @@ lux-button:not(.lang-select-trigger-ac, .user-menu-trigger-ac, .lux-action-nav-i
|
|
|
121
154
|
}
|
|
122
155
|
}
|
|
123
156
|
|
|
124
|
-
&.mat-fab:hover,
|
|
125
|
-
&.mat-raised-button:hover,
|
|
126
|
-
&.mat-
|
|
157
|
+
&.mat-mdc-fab:hover,
|
|
158
|
+
&.mat-mdc-raised-button:hover,
|
|
159
|
+
&.mat-mdc-unelevated-button:hover {
|
|
127
160
|
background-color: color.adjust(luxcommon.$lux-hover-color, $lightness: -10%) !important;
|
|
128
161
|
|
|
129
162
|
&.mat-accent {
|
|
@@ -138,13 +171,13 @@ lux-button:not(.lang-select-trigger-ac, .user-menu-trigger-ac, .lux-action-nav-i
|
|
|
138
171
|
background-color: color.adjust(map.get(luxpalette.$lux-palette_primary, 500), $lightness: 10%) !important;
|
|
139
172
|
}
|
|
140
173
|
}
|
|
141
|
-
&.mat-fab.lux-button-rounded.lux-stroked:active {
|
|
174
|
+
&.mat-mdc-fab.lux-button-rounded.lux-stroked:active {
|
|
142
175
|
box-shadow: unset;
|
|
143
176
|
}
|
|
144
177
|
|
|
145
|
-
&.mat-fab:focus-visible:not(:hover),
|
|
146
|
-
&.mat-raised-button:focus-visible:not(:hover),
|
|
147
|
-
&.mat-
|
|
178
|
+
&.mat-mdc-fab:focus-visible:not(:hover),
|
|
179
|
+
&.mat-mdc-raised-button:focus-visible:not(:hover),
|
|
180
|
+
&.mat-mdc-unelevated-button:focus-visible:not(:hover) {
|
|
148
181
|
background-color: white !important;
|
|
149
182
|
|
|
150
183
|
&.mat-accent {
|
|
@@ -160,4 +193,8 @@ lux-button:not(.lang-select-trigger-ac, .user-menu-trigger-ac, .lux-action-nav-i
|
|
|
160
193
|
}
|
|
161
194
|
}
|
|
162
195
|
}
|
|
196
|
+
|
|
197
|
+
button.mat-mdc-fab span.mdc-button__label {
|
|
198
|
+
display: inline-flex;
|
|
199
|
+
}
|
|
163
200
|
}
|
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
@use "../luxelevations";
|
|
5
5
|
@use "sass:map";
|
|
6
6
|
|
|
7
|
+
.mat-mdc-card-outlined {
|
|
8
|
+
--mdc-outlined-card-container-shape: #{luxcommon.$app-border-radius};
|
|
9
|
+
}
|
|
10
|
+
|
|
7
11
|
lux-card {
|
|
8
12
|
// Falls die lux-card in einem lux-grid verwendet wird und alle Cards einer Reihe dieselbe Höhe erhalten sollen
|
|
9
13
|
// müssen mat-card und mat-card-content entsprechend angepasst werden.
|
|
@@ -16,8 +20,9 @@ lux-card {
|
|
|
16
20
|
}
|
|
17
21
|
|
|
18
22
|
// Umstylen der Mat-Card
|
|
19
|
-
.mat-card.lux-card {
|
|
23
|
+
.mat-mdc-card.lux-card {
|
|
20
24
|
border: 1px solid luxcommon.$app-border-color;
|
|
25
|
+
border-radius: luxcommon.$app-border-radius;
|
|
21
26
|
background-color: #fff;
|
|
22
27
|
display: flex;
|
|
23
28
|
box-sizing: border-box;
|
|
@@ -25,7 +30,8 @@ lux-card {
|
|
|
25
30
|
&:not([class*="mat-elevation-z"]) {
|
|
26
31
|
@include luxelevations.lux-elevation-z0;
|
|
27
32
|
}
|
|
28
|
-
.mat-card-content {
|
|
33
|
+
.mat-mdc-card-content {
|
|
34
|
+
padding: 16px 0 0 0;
|
|
29
35
|
font-size: 1rem;
|
|
30
36
|
}
|
|
31
37
|
}
|
|
@@ -97,10 +103,17 @@ lux-card {
|
|
|
97
103
|
background: luxcommon.$app-data-bg;
|
|
98
104
|
}
|
|
99
105
|
|
|
100
|
-
mat-card-actions
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
106
|
+
mat-card-actions {
|
|
107
|
+
&.mat-mdc-card-actions {
|
|
108
|
+
justify-content: flex-end;
|
|
109
|
+
min-height: 36px;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
&.lux-card-actions {
|
|
113
|
+
margin-right: 0;
|
|
114
|
+
margin-left: 0;
|
|
115
|
+
padding: luxcommon.$outline-width 0 0 0;
|
|
116
|
+
}
|
|
104
117
|
}
|
|
105
118
|
|
|
106
119
|
/*
|
|
@@ -116,6 +129,7 @@ lux-card {
|
|
|
116
129
|
// HOVER / FOCUS
|
|
117
130
|
|
|
118
131
|
mat-card {
|
|
132
|
+
padding: 16px;
|
|
119
133
|
&[class~="lux-cursor"]:hover {
|
|
120
134
|
background-image: luxcommon.$app-gradient-reverse;
|
|
121
135
|
background-color: #ffffff;
|
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
@use "../luxelevations";
|
|
6
6
|
@use "../luxbreakpoints";
|
|
7
7
|
|
|
8
|
+
.cdk-overlay-pane.mat-mdc-dialog-panel .mat-mdc-dialog-container {
|
|
9
|
+
border-radius: luxcommon.$app-border-radius;
|
|
10
|
+
}
|
|
11
|
+
|
|
8
12
|
lux-dialog-preset {
|
|
9
13
|
height: 100%;
|
|
10
14
|
}
|
|
@@ -19,15 +23,21 @@ lux-dialog-action {
|
|
|
19
23
|
lux-dialog-structure {
|
|
20
24
|
display: flex;
|
|
21
25
|
min-height: 100%;
|
|
26
|
+
|
|
22
27
|
.lux-dialog {
|
|
23
28
|
// Das Element kann fokussiert werden, das muss aber nicht zwingend mit der Outline gezeigt werden
|
|
24
29
|
outline-width: 0;
|
|
30
|
+
padding: 24px;
|
|
25
31
|
|
|
26
|
-
.lux-dialog-title.mat-dialog-title {
|
|
32
|
+
.lux-dialog-title.mat-mdc-dialog-title {
|
|
33
|
+
display: flex;
|
|
34
|
+
padding-left: 0;
|
|
35
|
+
padding-right: 0;
|
|
27
36
|
color: luxcommon.$dark-primary-text;
|
|
28
37
|
font-family: luxcommon.$app-headline-font, luxcommon.$app-font-family;
|
|
29
38
|
}
|
|
30
|
-
|
|
39
|
+
|
|
40
|
+
.mat-mdc-dialog-container {
|
|
31
41
|
@include luxelevations.lux-elevation-z24;
|
|
32
42
|
border: 1px solid luxcommon.$dark-disabled-text;
|
|
33
43
|
}
|
|
@@ -38,12 +48,17 @@ lux-dialog-structure {
|
|
|
38
48
|
margin: 0;
|
|
39
49
|
padding: 0;
|
|
40
50
|
max-height: 100%;
|
|
51
|
+
font-family: luxcommon.$app-font-family;
|
|
52
|
+
letter-spacing: normal;
|
|
53
|
+
color: luxcommon.$dark-primary-text;
|
|
41
54
|
}
|
|
42
55
|
|
|
43
56
|
// Leichten Abstand zum Content setzen
|
|
44
57
|
.lux-dialog-actions {
|
|
45
58
|
margin: 20px 0 0 0;
|
|
59
|
+
justify-content: center;
|
|
46
60
|
}
|
|
61
|
+
|
|
47
62
|
.lux-icon-close {
|
|
48
63
|
margin: -15px -15px 0 0;
|
|
49
64
|
width: 24px;
|
|
@@ -53,11 +68,11 @@ lux-dialog-structure {
|
|
|
53
68
|
}
|
|
54
69
|
|
|
55
70
|
@include luxbreakpoints.lt-md {
|
|
56
|
-
.mat-dialog-container {
|
|
71
|
+
.mat-mdc-dialog-container {
|
|
57
72
|
padding: 8px;
|
|
58
73
|
}
|
|
59
74
|
|
|
60
|
-
.mat-dialog-title {
|
|
75
|
+
.mat-mdc-dialog-title {
|
|
61
76
|
margin-bottom: 8px;
|
|
62
77
|
}
|
|
63
78
|
|
|
@@ -65,6 +80,7 @@ lux-dialog-structure {
|
|
|
65
80
|
.lux-dialog-actions {
|
|
66
81
|
margin: 8px 0 0 0;
|
|
67
82
|
}
|
|
83
|
+
|
|
68
84
|
.lux-icon-close {
|
|
69
85
|
margin: -5px -5px 0 0;
|
|
70
86
|
}
|
|
@@ -78,11 +94,14 @@ lux-dialog-structure {
|
|
|
78
94
|
.lux-icon-close {
|
|
79
95
|
&:hover {
|
|
80
96
|
background-color: #fff !important;
|
|
97
|
+
|
|
81
98
|
mat-icon.mat-icon-no-color {
|
|
82
99
|
color: luxcommon.$lux-hover-color;
|
|
83
100
|
}
|
|
101
|
+
|
|
84
102
|
cursor: pointer;
|
|
85
103
|
}
|
|
104
|
+
|
|
86
105
|
&:focus-visible {
|
|
87
106
|
@include luxfocus.focus-dark-mixin;
|
|
88
107
|
border-radius: 4px;
|
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
@use "../luxelevations";
|
|
6
6
|
|
|
7
7
|
lux-filter-form {
|
|
8
|
+
lux-menu div.lux-menu-custom-trigger {
|
|
9
|
+
padding-top: 4px;
|
|
10
|
+
padding-bottom: 4px;
|
|
11
|
+
}
|
|
12
|
+
|
|
8
13
|
.no-filter-active {
|
|
9
14
|
padding: 8px 25px;
|
|
10
15
|
}
|
|
@@ -13,6 +18,21 @@ lux-filter-form {
|
|
|
13
18
|
padding: 8px 12px;
|
|
14
19
|
}
|
|
15
20
|
|
|
21
|
+
// Filter-Chips anpassen
|
|
22
|
+
mat-chip-row.mat-mdc-standard-chip {
|
|
23
|
+
height: 24px;
|
|
24
|
+
|
|
25
|
+
span.mat-mdc-chip-action {
|
|
26
|
+
padding-left: 6px !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
lux-icon {
|
|
30
|
+
margin: 0 !important;
|
|
31
|
+
padding-left: 4px !important;
|
|
32
|
+
padding-right: 4px !important;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
16
36
|
.filter-item {
|
|
17
37
|
.mat-standard-chip {
|
|
18
38
|
min-height: 24px;
|
|
@@ -111,8 +131,8 @@ lux-filter-save-dialog {
|
|
|
111
131
|
lux-filter-load-dialog {
|
|
112
132
|
.filter-content {
|
|
113
133
|
button,
|
|
114
|
-
button.lux-button.mat-button,
|
|
115
|
-
button.lux-button.mat-raised-button {
|
|
134
|
+
button.lux-button.mat-mdc-button,
|
|
135
|
+
button.lux-button.mat-mdc-raised-button {
|
|
116
136
|
height: 25px;
|
|
117
137
|
line-height: 25px;
|
|
118
138
|
}
|
|
@@ -164,12 +164,15 @@ lux-form-control-wrapper {
|
|
|
164
164
|
box-sizing: border-box;
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
|
-
.mat-error {
|
|
167
|
+
.mat-mdc-form-field-error {
|
|
168
168
|
background-color: $light-red;
|
|
169
169
|
border-radius: 4px;
|
|
170
170
|
padding-right: 2px;
|
|
171
171
|
color: map-get(luxpalette.$lux-palette_warn, 900) !important;
|
|
172
|
-
box-shadow:
|
|
172
|
+
box-shadow:
|
|
173
|
+
-18px 0px 0 0 $light-red,
|
|
174
|
+
-18px -1px 0 0 $light-red,
|
|
175
|
+
0 -1px 0 0 $light-red;
|
|
173
176
|
}
|
|
174
177
|
}
|
|
175
178
|
}
|