@ihk-gfi/lux-components-theme 16.3.0 → 18.1.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 +4 -4
- 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 +2065 -4523
- 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 +2034 -4498
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +42 -30
- package/src/authentic/_luxcommon.scss +7 -8
- package/src/authentic/luxtheme.scss +7 -2
- package/src/base/_luxcommon.scss +6 -0
- package/src/base/_luxcomponents.scss +23 -50
- package/src/base/_luxfocus.scss +81 -64
- package/src/base/_luxstyles.scss +44 -2
- package/src/base/_luxtheme.scss +8 -8
- package/src/base/components/_luxAppHeader.scss +5 -37
- package/src/base/components/_luxAppHeaderAc.scss +6 -4
- 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 +370 -159
- 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 +46 -25
- package/src/base/components/_luxTabs.scss +41 -19
- package/src/base/components/_luxTile.scss +83 -37
- 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 +66 -70
- package/src/green/_luxcommon.scss +6 -0
- package/src/green/luxtheme.scss +7 -1
- package/src/public/global.scss +44 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../luxpalette";
|
|
3
|
+
@use "../luxcommon";
|
|
3
4
|
@use "../luxelevations";
|
|
4
5
|
@use "../luxfocus";
|
|
5
6
|
@use "@angular/material" as mat;
|
|
@@ -15,23 +16,49 @@ lux-tile {
|
|
|
15
16
|
background-color: map.get(luxpalette.$lux-palette_accent, 500);
|
|
16
17
|
}
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
mat-card[class~="lux-cursor"] {
|
|
20
|
+
&.mat-mdc-card {
|
|
21
|
+
border-radius: luxcommon.$lux-tile-borderradius;
|
|
22
|
+
overflow: hidden !important;
|
|
23
|
+
padding: 24px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.mat-mdc-card-content {
|
|
27
|
+
padding-top: 0px !important;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&.mat-mdc-card.lux-tile-mobile {
|
|
31
|
+
padding: 14px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&.mat-mdc-card::before {
|
|
35
|
+
content: "";
|
|
36
|
+
position: absolute;
|
|
37
|
+
display: block;
|
|
38
|
+
bottom: 0;
|
|
39
|
+
left: 0;
|
|
40
|
+
right: 0;
|
|
41
|
+
height: 8px;
|
|
42
|
+
background-color: luxcommon.$lux-tile-bottom-line-color;
|
|
43
|
+
transition: 0.2s ease;
|
|
44
|
+
}
|
|
21
45
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
46
|
+
&.lux-badge-notification.mat-badge-after.mat-badge-above.mat-badge-medium.mat-badge-overlap {
|
|
47
|
+
.mat-badge-content {
|
|
48
|
+
right: 2px;
|
|
49
|
+
top: 5px;
|
|
50
|
+
padding-top: 0px;
|
|
51
|
+
line-height: 20px;
|
|
52
|
+
}
|
|
26
53
|
}
|
|
27
54
|
}
|
|
28
55
|
|
|
29
|
-
.mat-card:not([class*="mat-elevation-z"]) {
|
|
30
|
-
@include luxelevations.lux-elevation-
|
|
56
|
+
.mat-mdc-card:not([class*="mat-elevation-z"]) {
|
|
57
|
+
@include luxelevations.lux-elevation-z0;
|
|
31
58
|
}
|
|
32
59
|
|
|
33
|
-
lux-
|
|
34
|
-
|
|
60
|
+
.lux-tile-shadow:not([class*="mat-elevation-z"]) {
|
|
61
|
+
@include luxelevations.lux-elevation-z2;
|
|
35
62
|
}
|
|
36
63
|
|
|
37
64
|
h2 {
|
|
@@ -39,44 +66,63 @@ lux-tile {
|
|
|
39
66
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
40
67
|
}
|
|
41
68
|
|
|
42
|
-
.lux-tile-
|
|
43
|
-
flex: 0 0
|
|
44
|
-
max-width:
|
|
45
|
-
min-width:
|
|
69
|
+
.lux-tile-mobile-view {
|
|
70
|
+
flex: 0 0 180px;
|
|
71
|
+
max-width: 180px !important;
|
|
72
|
+
min-width: 180px !important;
|
|
73
|
+
min-height: 134px !important;
|
|
46
74
|
|
|
47
75
|
h2 > * {
|
|
48
|
-
font-size:
|
|
76
|
+
font-size: 1.25rem;
|
|
77
|
+
word-wrap: break-word;
|
|
78
|
+
max-width: 100%;
|
|
79
|
+
margin: 4px 0px;
|
|
80
|
+
font-family: luxcommon.$app-headline-font;
|
|
49
81
|
}
|
|
50
82
|
}
|
|
51
83
|
|
|
52
|
-
.lux-tile-
|
|
53
|
-
flex: 0 0
|
|
54
|
-
max-width:
|
|
55
|
-
min-width:
|
|
84
|
+
.lux-tile-desktop-view {
|
|
85
|
+
flex: 0 0 260px;
|
|
86
|
+
max-width: 260px !important;
|
|
87
|
+
min-width: 260px !important;
|
|
88
|
+
min-height: 175px !important;
|
|
56
89
|
|
|
57
90
|
h2 > * {
|
|
58
|
-
font-size:
|
|
91
|
+
font-size: 1.5rem;
|
|
92
|
+
word-wrap: break-word;
|
|
93
|
+
max-width: 100%;
|
|
94
|
+
margin: 12px 0px;
|
|
95
|
+
font-family: luxcommon.$app-headline-font;
|
|
59
96
|
}
|
|
60
97
|
}
|
|
61
98
|
|
|
62
|
-
.lux-tile-content,
|
|
63
|
-
.lux-tile-content lux-image {
|
|
64
|
-
height: 100px;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
99
|
.lux-tile-content-container {
|
|
68
100
|
height: 100%;
|
|
69
101
|
min-height: 100%;
|
|
70
102
|
min-width: 100%;
|
|
71
103
|
width: 100%;
|
|
72
104
|
}
|
|
73
|
-
|
|
74
|
-
|
|
105
|
+
|
|
106
|
+
.lux-tile-icon {
|
|
107
|
+
color: luxcommon.$lux-tile-icon-color;
|
|
108
|
+
margin-top: 6px;
|
|
75
109
|
lux-icon {
|
|
76
110
|
mat-icon {
|
|
77
|
-
|
|
111
|
+
width: 72px !important;
|
|
112
|
+
height: 72px !important;
|
|
113
|
+
padding: 0px;
|
|
78
114
|
}
|
|
79
115
|
}
|
|
116
|
+
lux-image {
|
|
117
|
+
height: 100px;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.lux-tile-mobile {
|
|
122
|
+
lux-icon mat-icon {
|
|
123
|
+
width: 50px !important;
|
|
124
|
+
height: 50px !important;
|
|
125
|
+
}
|
|
80
126
|
}
|
|
81
127
|
|
|
82
128
|
.lux-tile-notification-icon {
|
|
@@ -115,9 +161,10 @@ lux-tile {
|
|
|
115
161
|
display: flex;
|
|
116
162
|
flex-shrink: 1;
|
|
117
163
|
flex-grow: 0;
|
|
118
|
-
min-height:
|
|
164
|
+
min-height: 40px;
|
|
119
165
|
max-height: 70px;
|
|
120
166
|
text-align: center;
|
|
167
|
+
text-decoration-line: underline;
|
|
121
168
|
}
|
|
122
169
|
|
|
123
170
|
.lux-notification-read {
|
|
@@ -132,22 +179,21 @@ lux-tile {
|
|
|
132
179
|
/** ########## Focus / Hover ########## **/
|
|
133
180
|
|
|
134
181
|
mat-card[class~="lux-cursor"] {
|
|
135
|
-
|
|
136
|
-
@include luxfocus.focus-
|
|
182
|
+
&.mat-mdc-card:focus-visible {
|
|
183
|
+
@include luxfocus.lux-focus-mixin-green;
|
|
137
184
|
}
|
|
138
185
|
|
|
139
186
|
&:hover {
|
|
140
187
|
background-image: none !important;
|
|
141
188
|
background-color: white !important;
|
|
142
|
-
// farbiger Schatten beim Hover
|
|
143
|
-
@include mat.elevation(2, $dark-green, 1);
|
|
144
189
|
|
|
145
190
|
h2 {
|
|
146
|
-
color:
|
|
191
|
+
color: luxcommon.$lux-tile-font-hover-color;
|
|
147
192
|
}
|
|
148
193
|
}
|
|
149
|
-
|
|
150
|
-
|
|
194
|
+
|
|
195
|
+
&.mat-mdc-card:hover::before {
|
|
196
|
+
height: 14px;
|
|
151
197
|
}
|
|
152
198
|
}
|
|
153
199
|
}
|
|
@@ -9,7 +9,15 @@ lux-tile-ac {
|
|
|
9
9
|
box-sizing: border-box;
|
|
10
10
|
display: inline-block;
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
mat-card {
|
|
13
|
+
padding: 16px;
|
|
14
|
+
|
|
15
|
+
&.mdc-card {
|
|
16
|
+
flex-direction: unset;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.mat-mdc-card.lux-tile-ac {
|
|
13
21
|
box-sizing: border-box;
|
|
14
22
|
display: flex;
|
|
15
23
|
height: 100%;
|
|
@@ -37,10 +45,11 @@ lux-tile-ac {
|
|
|
37
45
|
mat-card-title.lux-tile-title {
|
|
38
46
|
color: luxcommon.$dark-primary-text;
|
|
39
47
|
font-family: luxcommon.$app-headline-font, luxcommon.$app-font-family;
|
|
48
|
+
line-height: 30px;
|
|
40
49
|
font-size: 1.25rem;
|
|
41
50
|
margin: 0;
|
|
42
51
|
}
|
|
43
|
-
mat-card-subtitle.mat-card-subtitle:not(:first-child) {
|
|
52
|
+
mat-card-subtitle.mat-mdc-card-subtitle:not(:first-child) {
|
|
44
53
|
color: luxcommon.$dark-secondary-text;
|
|
45
54
|
font-size: 0.875rem;
|
|
46
55
|
font-weight: normal;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use "../luxcommon";
|
|
2
|
+
@use "../luxfocus";
|
|
2
3
|
|
|
3
4
|
$arrowSize: 16px;
|
|
4
5
|
|
|
@@ -19,7 +20,10 @@ lux-tour-hint {
|
|
|
19
20
|
|
|
20
21
|
display: flex;
|
|
21
22
|
|
|
22
|
-
box-shadow:
|
|
23
|
+
box-shadow:
|
|
24
|
+
0px 11px 15px -7px rgba(0, 0, 0, 0.2),
|
|
25
|
+
0px 24px 38px 3px rgba(0, 0, 0, 0.14),
|
|
26
|
+
0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
23
27
|
background: #fff;
|
|
24
28
|
|
|
25
29
|
&:focus {
|
|
@@ -136,8 +140,19 @@ lux-tour-hint-preset {
|
|
|
136
140
|
right: 8px;
|
|
137
141
|
|
|
138
142
|
&:hover {
|
|
143
|
+
background-color: #fff !important;
|
|
144
|
+
|
|
145
|
+
mat-icon.mat-icon-no-color {
|
|
146
|
+
color: luxcommon.$lux-hover-color;
|
|
147
|
+
}
|
|
148
|
+
|
|
139
149
|
cursor: pointer;
|
|
140
150
|
}
|
|
151
|
+
|
|
152
|
+
&:focus-visible {
|
|
153
|
+
@include luxfocus.focus-dark-mixin;
|
|
154
|
+
border-radius: 4px;
|
|
155
|
+
}
|
|
141
156
|
}
|
|
142
157
|
|
|
143
158
|
.tour-hint-inner-container {
|
package/src/green/_custom.scss
CHANGED
|
@@ -37,11 +37,23 @@ h6 {
|
|
|
37
37
|
font-family: luxcommon.$app-headline-font;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
+
/*
|
|
41
|
+
* Theming for LUX-Slider
|
|
42
|
+
*/
|
|
43
|
+
lux-slider-ac {
|
|
44
|
+
lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-authentic {
|
|
45
|
+
&.lux-no-input-row {
|
|
46
|
+
padding-top: 12px;
|
|
47
|
+
padding-bottom: 4px;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
40
52
|
/*
|
|
41
53
|
* Theming for LUX-Card
|
|
42
54
|
*/
|
|
43
55
|
lux-card {
|
|
44
|
-
.mat-card {
|
|
56
|
+
.mat-mdc-card {
|
|
45
57
|
color: luxpalette.$lux-primary-color;
|
|
46
58
|
}
|
|
47
59
|
}
|
|
@@ -113,26 +125,30 @@ lux-button button.lux-button {
|
|
|
113
125
|
font-weight: 400 !important;
|
|
114
126
|
font-family: luxcommon.$app-button-font-family;
|
|
115
127
|
|
|
128
|
+
&.mdc-button {
|
|
129
|
+
letter-spacing: normal;
|
|
130
|
+
}
|
|
131
|
+
|
|
116
132
|
p,
|
|
117
133
|
div,
|
|
118
134
|
span {
|
|
119
135
|
font-family: luxcommon.$app-button-font-family;
|
|
120
136
|
}
|
|
121
137
|
|
|
122
|
-
&.mat-button,
|
|
123
|
-
&.mat-raised-button,
|
|
124
|
-
&.mat-
|
|
125
|
-
&.mat-
|
|
138
|
+
&.mat-mdc-button,
|
|
139
|
+
&.mat-mdc-raised-button,
|
|
140
|
+
&.mat-mdc-unelevated-button,
|
|
141
|
+
&.mat-mdc-outlined-button {
|
|
126
142
|
border-radius: 18px;
|
|
127
143
|
height: luxcommon.$button-height;
|
|
128
144
|
font-size: $button-font-size;
|
|
129
145
|
}
|
|
130
146
|
|
|
131
|
-
&.mat-
|
|
132
|
-
&.mat-raised-button
|
|
133
|
-
&.mat-fab
|
|
134
|
-
&.mat-
|
|
135
|
-
&.mat-
|
|
147
|
+
&.mat-mdc-button:disabled,
|
|
148
|
+
&.mat-mdc-raised-button:disabled,
|
|
149
|
+
&.mat-mdc-fab:disabled,
|
|
150
|
+
&.mat-mdc-outlined-button:disabled,
|
|
151
|
+
&.mat-mdc-unelevated-button:disabled {
|
|
136
152
|
color: luxcommon.$dark-disabled-text;
|
|
137
153
|
&.lux-stroked {
|
|
138
154
|
color: luxcommon.$dark-disabled-text;
|
|
@@ -140,18 +156,18 @@ lux-button button.lux-button {
|
|
|
140
156
|
}
|
|
141
157
|
}
|
|
142
158
|
|
|
143
|
-
&.mat-
|
|
144
|
-
&.mat-raised-button:not(
|
|
145
|
-
&.mat-
|
|
159
|
+
&.mat-mdc-unelevated-button:not([disabled], .mat-accent, .mat-warn, .mat-primary),
|
|
160
|
+
&.mat-mdc-raised-button:not([disabled], .mat-accent, .mat-warn, .mat-primary),
|
|
161
|
+
&.mat-mdc-outlined-button:not([disabled], .mat-accent, .mat-warn, .mat-primary) {
|
|
146
162
|
color: luxpalette.$lux-primary-color;
|
|
147
163
|
& lux-icon.lux-button-icon:not(.lux-button-icon-round) {
|
|
148
164
|
color: #000000;
|
|
149
165
|
}
|
|
150
166
|
}
|
|
151
167
|
|
|
152
|
-
&.mat-raised-button.mat-accent:not(
|
|
153
|
-
&.mat-
|
|
154
|
-
&.mat-fab.mat-accent:not(
|
|
168
|
+
&.mat-mdc-raised-button.mat-accent:not([disabled]),
|
|
169
|
+
&.mat-mdc-unelevated-button.mat-accent:not([disabled]),
|
|
170
|
+
&.mat-mdc-fab.mat-accent:not([disabled]) {
|
|
155
171
|
color: map.get(luxpalette.$lux-palette-primary, 500);
|
|
156
172
|
&.lux-stroked {
|
|
157
173
|
color: luxpalette.$lux-accent-color;
|
|
@@ -168,7 +184,7 @@ lux-button button.lux-button {
|
|
|
168
184
|
}
|
|
169
185
|
}
|
|
170
186
|
|
|
171
|
-
&.mat-fab.lux-button-rounded {
|
|
187
|
+
&.mat-mdc-fab.lux-button-rounded {
|
|
172
188
|
border-radius: 16px !important;
|
|
173
189
|
height: luxcommon.$button-fav-height;
|
|
174
190
|
width: luxcommon.$button-fav-height;
|
|
@@ -182,10 +198,10 @@ lux-button button.lux-button {
|
|
|
182
198
|
}
|
|
183
199
|
&.lux-stroked {
|
|
184
200
|
border-color: luxcommon.$app-border-color !important;
|
|
185
|
-
&:hover:not(
|
|
201
|
+
&:hover:not([disabled]) {
|
|
186
202
|
background-color: color.adjust(luxcommon.$lux-hover-color, $lightness: -10%) !important;
|
|
187
203
|
}
|
|
188
|
-
&:focus-visible:not(
|
|
204
|
+
&:focus-visible:not([disabled], :hover) {
|
|
189
205
|
background-color: transparent !important;
|
|
190
206
|
}
|
|
191
207
|
@include luxelevations.lux-elevation-z0;
|
|
@@ -279,7 +295,7 @@ lux-table {
|
|
|
279
295
|
*/
|
|
280
296
|
lux-list lux-list-item lux-card {
|
|
281
297
|
&.lux-list-item-selected {
|
|
282
|
-
mat-card.mat-card.lux-card {
|
|
298
|
+
mat-card.mat-mdc-card.lux-card {
|
|
283
299
|
@include luxfocus.lux-selected-mixin;
|
|
284
300
|
background: unset;
|
|
285
301
|
box-shadow: unset;
|
|
@@ -347,16 +363,25 @@ lux-stepper {
|
|
|
347
363
|
*/
|
|
348
364
|
lux-tabs,
|
|
349
365
|
mat-card lux-tabs {
|
|
350
|
-
mat-tab-group div[role="tab"]:not(.mat-tab-disabled) {
|
|
366
|
+
mat-tab-group div[role="tab"]:not(.mat-mdc-tab-disabled) {
|
|
351
367
|
&.mat-tab-label-active {
|
|
352
368
|
background-color: luxcommon.$lux-hover-color;
|
|
353
|
-
border-radius:
|
|
369
|
+
border-radius: luxcommon.$app-border-radius;
|
|
354
370
|
}
|
|
355
371
|
|
|
356
|
-
&:hover
|
|
357
|
-
color: luxpalette.$lux-primary-color;
|
|
372
|
+
&:hover {
|
|
358
373
|
background-color: luxcommon.$lux-hover-color;
|
|
359
|
-
border-radius:
|
|
374
|
+
border-radius: luxcommon.$app-border-radius;
|
|
375
|
+
|
|
376
|
+
&:not(.mdc-tab--active) .lux-tab-title,
|
|
377
|
+
&:not(.mdc-tab--active) lux-icon {
|
|
378
|
+
color: luxpalette.$lux-primary-color;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
&:hover .mdc-tab__ripple::before {
|
|
383
|
+
background-color: luxcommon.$lux-hover-color;
|
|
384
|
+
border-radius: luxcommon.$app-border-radius;
|
|
360
385
|
}
|
|
361
386
|
}
|
|
362
387
|
|
|
@@ -430,10 +455,6 @@ mat-card lux-tabs {
|
|
|
430
455
|
font-size: 1.125rem;
|
|
431
456
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
432
457
|
|
|
433
|
-
.mat-button-focus-overlay {
|
|
434
|
-
display: none;
|
|
435
|
-
}
|
|
436
|
-
|
|
437
458
|
&:focus {
|
|
438
459
|
@include luxfocus.focus-dark-mixin;
|
|
439
460
|
}
|
|
@@ -470,7 +491,7 @@ mat-card lux-tabs {
|
|
|
470
491
|
lux-filter-form {
|
|
471
492
|
lux-accordion {
|
|
472
493
|
lux-menu {
|
|
473
|
-
.lux-menu-trigger button.mat-button {
|
|
494
|
+
.lux-menu-trigger button.mat-mdc-button {
|
|
474
495
|
height: 45px;
|
|
475
496
|
}
|
|
476
497
|
}
|
|
@@ -498,7 +519,7 @@ lux-filter-form {
|
|
|
498
519
|
}
|
|
499
520
|
|
|
500
521
|
.lux-detail-header-ac {
|
|
501
|
-
mat-card.mat-card {
|
|
522
|
+
mat-card.mat-mdc-card {
|
|
502
523
|
@include luxelevations.lux-elevation-z0;
|
|
503
524
|
}
|
|
504
525
|
}
|
|
@@ -536,6 +557,14 @@ lux-form-control-wrapper .lux-form-control-wrapper {
|
|
|
536
557
|
}
|
|
537
558
|
}
|
|
538
559
|
|
|
560
|
+
&.lux-dense-authentic {
|
|
561
|
+
.lux-form-control-container-authentic {
|
|
562
|
+
&.lux-no-input-row {
|
|
563
|
+
padding: 0.25em 0em;
|
|
564
|
+
}
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
|
|
539
568
|
.lux-form-control-container-authentic {
|
|
540
569
|
padding: 10px;
|
|
541
570
|
line-height: 1;
|
|
@@ -551,7 +580,6 @@ lux-form-control-wrapper .lux-form-control-wrapper {
|
|
|
551
580
|
font-size: luxcommon.$form-control-font-size;
|
|
552
581
|
font-family: luxcommon.$app-font-family;
|
|
553
582
|
padding: 8px 0;
|
|
554
|
-
min-height: 40px;
|
|
555
583
|
}
|
|
556
584
|
}
|
|
557
585
|
|
|
@@ -629,43 +657,11 @@ lux-checkbox-ac {
|
|
|
629
657
|
*/
|
|
630
658
|
lux-radio-ac {
|
|
631
659
|
& lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-authentic.lux-no-input-row {
|
|
632
|
-
padding: 10px 0;
|
|
633
660
|
height: auto;
|
|
634
661
|
}
|
|
635
662
|
|
|
636
|
-
.mat-radio-outer-circle {
|
|
637
|
-
border: 1.5px solid map.get(luxpalette.$lux-palette_primary, 500);
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
.mat-radio-inner-circle {
|
|
641
|
-
// Checkmark-Symbol mit css gezeichnet, anstatt des inneren Kreises
|
|
642
|
-
border-radius: 2px;
|
|
643
|
-
background-color: transparent !important;
|
|
644
|
-
border-bottom: 5px solid white;
|
|
645
|
-
border-right: 5px solid white;
|
|
646
|
-
height: 32px;
|
|
647
|
-
width: 14px;
|
|
648
|
-
margin-top: -8px;
|
|
649
|
-
margin-left: 3px;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
.mat-radio-checked {
|
|
653
|
-
.mat-radio-outer-circle {
|
|
654
|
-
background: map.get(luxpalette.$lux-palette_primary, 500);
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
&.mat-radio-disabled .mat-radio-outer-circle {
|
|
658
|
-
background: luxcommon.$dark-disabled-text;
|
|
659
|
-
border: none;
|
|
660
|
-
}
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
.mat-radio-checked .mat-radio-inner-circle {
|
|
664
|
-
transform: rotate(45deg) scale(0.4);
|
|
665
|
-
}
|
|
666
|
-
|
|
667
663
|
.mat-radio-button {
|
|
668
|
-
.
|
|
664
|
+
.mdc-label {
|
|
669
665
|
line-height: normal;
|
|
670
666
|
}
|
|
671
667
|
.mat-radio-ripple {
|
|
@@ -705,7 +701,7 @@ lux-datetimepicker-ac {
|
|
|
705
701
|
width: 18px;
|
|
706
702
|
}
|
|
707
703
|
|
|
708
|
-
|
|
704
|
+
&:disabled {
|
|
709
705
|
svg {
|
|
710
706
|
color: luxcommon.$dark-disabled-text;
|
|
711
707
|
}
|
|
@@ -719,7 +715,7 @@ lux-datetimepicker-ac {
|
|
|
719
715
|
}
|
|
720
716
|
|
|
721
717
|
.cdk-overlay-pane .mat-datepicker-content,
|
|
722
|
-
.lux-datetimepicker-overlay .mat-card.lux-card {
|
|
718
|
+
.lux-datetimepicker-overlay .mat-mdc-card.lux-card {
|
|
723
719
|
margin: 11px -6px;
|
|
724
720
|
}
|
|
725
721
|
|
|
@@ -741,10 +737,10 @@ lux-lookup-combobox-ac {
|
|
|
741
737
|
* wird noch für "Green" benötigt
|
|
742
738
|
*/
|
|
743
739
|
.cdk-overlay-pane {
|
|
744
|
-
& > .mat-autocomplete-panel:not([class*="mat-elevation-z"]),
|
|
740
|
+
& > .mat-mdc-autocomplete-panel:not([class*="mat-elevation-z"]),
|
|
745
741
|
.mat-datepicker-content,
|
|
746
|
-
.mat-select-panel:not([class*="mat-elevation-z"]),
|
|
747
|
-
.mat-menu-panel {
|
|
742
|
+
.mat-mdc-select-panel:not([class*="mat-elevation-z"]),
|
|
743
|
+
.mat-mdc-menu-panel {
|
|
748
744
|
@include luxelevations.lux-elevation-z4;
|
|
749
745
|
}
|
|
750
746
|
}
|
package/src/green/luxtheme.scss
CHANGED
|
@@ -92,7 +92,13 @@
|
|
|
92
92
|
$componentFontColors: themeCommon.$componentFontColors,
|
|
93
93
|
|
|
94
94
|
// Farben für einen dunklen Hintergrund (z.B. Snackbar).
|
|
95
|
-
$colorsForDarkBg: themeCommon.$colorsForDarkBg
|
|
95
|
+
$colorsForDarkBg: themeCommon.$colorsForDarkBg,
|
|
96
|
+
|
|
97
|
+
// Tile
|
|
98
|
+
$lux-tile-font-hover-color: themeCommon.$lux-tile-font-hover-color,
|
|
99
|
+
$lux-tile-icon-color: themeCommon.$lux-tile-icon-color,
|
|
100
|
+
$lux-tile-borderradius: themeCommon.$lux-tile-borderradius,
|
|
101
|
+
$lux-tile-bottom-line-color: themeCommon.$lux-tile-bottom-line-color
|
|
96
102
|
);
|
|
97
103
|
@use "../base/luxSvgIcons";
|
|
98
104
|
@use "../base/luxelevations";
|
package/src/public/global.scss
CHANGED
|
@@ -6,4 +6,47 @@ $mat-large: "max-width: 1919px" !default;
|
|
|
6
6
|
$mat-xlarge: "max-width: 5000px" !default;
|
|
7
7
|
|
|
8
8
|
// Font
|
|
9
|
-
$app-font-family:
|
|
9
|
+
$app-font-family:
|
|
10
|
+
Source Sans Pro,
|
|
11
|
+
Helvetica Neue,
|
|
12
|
+
sans-serif !default;
|
|
13
|
+
|
|
14
|
+
html body {
|
|
15
|
+
--mat-checkbox-label-text-font: #{$app-font-family};
|
|
16
|
+
--mat-switch-label-text-font: #{$app-font-family};
|
|
17
|
+
--mat-stepper-container-text-font: #{$app-font-family};
|
|
18
|
+
--mat-stepper-header-label-text-font: #{$app-font-family};
|
|
19
|
+
--mat-expansion-header-text-font: #{$app-font-family};
|
|
20
|
+
--mat-expansion-container-text-font: #{$app-font-family};
|
|
21
|
+
--mat-datepicker-calendar-text-font: #{$app-font-family};
|
|
22
|
+
--mat-legacy-button-toggle-text-font: #{$app-font-family};
|
|
23
|
+
--mat-standard-button-toggle-text-font: #{$app-font-family};
|
|
24
|
+
--mat-bottom-sheet-container-text-font: #{$app-font-family};
|
|
25
|
+
--mat-badge-text-font: #{$app-font-family};
|
|
26
|
+
--mat-toolbar-title-text-font: #{$app-font-family};
|
|
27
|
+
--mat-stepper-container-text-font: #{$app-font-family};
|
|
28
|
+
--mat-stepper-header-label-text-font: #{$app-font-family};
|
|
29
|
+
--mat-expansion-header-text-font: #{$app-font-family};
|
|
30
|
+
--mat-expansion-container-text-font: #{$app-font-family};
|
|
31
|
+
--mat-datepicker-calendar-text-font: #{$app-font-family};
|
|
32
|
+
--mat-legacy-button-toggle-text-font: #{$app-font-family};
|
|
33
|
+
--mat-standard-button-toggle-text-font: #{$app-font-family};
|
|
34
|
+
--mat-bottom-sheet-container-text-font: #{$app-font-family};
|
|
35
|
+
--mat-badge-text-font: #{$app-font-family};
|
|
36
|
+
--mat-table-header-headline-font: #{$app-font-family};
|
|
37
|
+
--mat-table-row-item-label-text-font: #{$app-font-family};
|
|
38
|
+
--mat-table-footer-supporting-text-font: #{$app-font-family};
|
|
39
|
+
--mat-paginator-container-text-font: #{$app-font-family};
|
|
40
|
+
--mat-menu-item-label-text-font: #{$app-font-family};
|
|
41
|
+
--mat-select-trigger-text-font: #{$app-font-family};
|
|
42
|
+
--mdc-filled-text-field-label-text-font: #{$app-font-family};
|
|
43
|
+
--mdc-outlined-text-field-label-text-font: #{$app-font-family};
|
|
44
|
+
--mat-form-field-container-text-font: #{$app-font-family};
|
|
45
|
+
--mat-form-field-subscript-text-font: #{$app-font-family};
|
|
46
|
+
--mat-optgroup-label-text-font: #{$app-font-family};
|
|
47
|
+
--mat-option-label-text-font: #{$app-font-family};
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.mat-mdc-tooltip-surface {
|
|
51
|
+
--mdc-plain-tooltip-supporting-text-font: #{$app-font-family};
|
|
52
|
+
}
|