@ihk-gfi/lux-components-theme 19.3.0 → 21.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 +140 -189
- package/package.json +10 -10
- 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 +9508 -11439
- 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 +9445 -11650
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/base-templates/common/_luxbreakpoints.scss +96 -0
- package/src/{base → base-templates/common}/_luxelevations.scss +1 -1
- package/src/base-templates/common/_luxfocus.scss +84 -0
- package/src/{base → base-templates/common}/_luxlayout.scss +0 -1
- package/src/base-templates/common/_luxstyles.scss +510 -0
- package/src/base-templates/components/_luxAccordion.scss +137 -0
- package/src/base-templates/components/_luxAppContent.scss +4 -0
- package/src/{base → base-templates}/components/_luxAppFooter.scss +2 -6
- package/src/{base → base-templates}/components/_luxAppHeader.scss +66 -76
- package/src/base-templates/components/_luxAppHeaderAc.scss +147 -0
- package/src/base-templates/components/_luxAppHeaderAcSessionTimer.scss +95 -0
- package/src/base-templates/components/_luxAutocomplete.scss +24 -0
- package/src/base-templates/components/_luxBadge.scss +40 -0
- package/src/base-templates/components/_luxBadgeNotification.scss +53 -0
- package/src/base-templates/components/_luxBreadcrumb.scss +117 -0
- package/src/base-templates/components/_luxButton.scss +107 -0
- package/src/base-templates/components/_luxButtonFlat.scss +53 -0
- package/src/base-templates/components/_luxButtonRaised.scss +80 -0
- package/src/base-templates/components/_luxButtonRounded.scss +83 -0
- package/src/base-templates/components/_luxButtonRoundedStroked.scss +76 -0
- package/src/base-templates/components/_luxButtonSpinner.scss +90 -0
- package/src/base-templates/components/_luxButtonStroked.scss +45 -0
- package/src/base-templates/components/_luxCard.scss +133 -0
- package/src/base-templates/components/_luxCheckbox.scss +11 -0
- package/src/{base → base-templates}/components/_luxCheckboxContainerAc.scss +6 -4
- package/src/base-templates/components/_luxChips.scss +144 -0
- package/src/base-templates/components/_luxCore.scss +26 -0
- package/src/base-templates/components/_luxDatepicker.scss +65 -0
- package/src/base-templates/components/_luxDatetimepicker.scss +17 -0
- package/src/{base → base-templates}/components/_luxDialog.scss +33 -16
- package/src/base-templates/components/_luxDivider.scss +10 -0
- package/src/{base → base-templates}/components/_luxErrorPage.scss +0 -4
- package/src/base-templates/components/_luxFileList.scss +55 -0
- package/src/{base → base-templates}/components/_luxFilePreview.scss +1 -4
- package/src/base-templates/components/_luxFileProgress.scss +13 -0
- package/src/base-templates/components/_luxFileUpload.scss +271 -0
- package/src/base-templates/components/_luxFileinput.scss +27 -0
- package/src/{base → base-templates}/components/_luxFilter.scss +31 -5
- package/src/base-templates/components/_luxFormControlWrapper.scss +276 -0
- package/src/base-templates/components/_luxHtml.scss +8 -0
- package/src/base-templates/components/_luxIcon.scss +53 -0
- package/src/base-templates/components/_luxInput.scss +30 -0
- package/src/{base → base-templates}/components/_luxLinkPlain.scss +12 -13
- package/src/{base → base-templates}/components/_luxList.scss +5 -8
- package/src/base-templates/components/_luxLookupAutocomplete.scss +6 -0
- package/src/base-templates/components/_luxLookupCombobox.scss +30 -0
- package/src/{base → base-templates}/components/_luxMasterDetailAc.scss +17 -34
- package/src/base-templates/components/_luxMenu.scss +270 -0
- package/src/base-templates/components/_luxMessagebox.scss +119 -0
- package/src/base-templates/components/_luxPopup.scss +54 -0
- package/src/base-templates/components/_luxProgressBar.scss +103 -0
- package/src/base-templates/components/_luxProgressSpinner.scss +94 -0
- package/src/base-templates/components/_luxRadioButton.scss +32 -0
- package/src/base-templates/components/_luxSelect.scss +42 -0
- package/src/base-templates/components/_luxSideNav.scss +93 -0
- package/src/base-templates/components/_luxSlider.scss +17 -0
- package/src/base-templates/components/_luxSnackbar.scss +41 -0
- package/src/{base → base-templates}/components/_luxStepper.scss +33 -129
- package/src/base-templates/components/_luxStepperLarge.scss +435 -0
- package/src/{base → base-templates}/components/_luxTable.scss +29 -63
- package/src/{base → base-templates}/components/_luxTabs.scss +32 -67
- package/src/base-templates/components/_luxTextarea.scss +16 -0
- package/src/base-templates/components/_luxTextbox.scss +83 -0
- package/src/{base → base-templates}/components/_luxTile.scss +12 -17
- package/src/base-templates/components/_luxTileAc.scss +71 -0
- package/src/base-templates/components/_luxToggle.scss +19 -0
- package/src/base-templates/components/_luxToolTip.scss +8 -0
- package/src/{base → base-templates}/components/_luxTourHint.scss +11 -7
- package/src/theme-authentic/_mat3Theme.scss +135 -0
- package/src/theme-authentic/_palettes.scss +183 -0
- package/src/theme-authentic/_variables.scss +486 -0
- package/src/theme-authentic/_variablesPreferContrast.scss +76 -0
- package/src/theme-authentic/lux-authentic.scss +69 -0
- package/src/theme-green/_mat3Theme.scss +134 -0
- package/src/theme-green/_palettes.scss +182 -0
- package/src/theme-green/_variables.scss +487 -0
- package/src/theme-green/_variablesPreferContrast.scss +76 -0
- package/src/theme-green/lux-green.scss +68 -0
- package/src/authentic/_custom.scss +0 -609
- package/src/authentic/_custombutton.scss +0 -143
- package/src/authentic/_luxcommon.scss +0 -138
- package/src/authentic/_luxpalette.scss +0 -230
- package/src/authentic/luxtheme.scss +0 -113
- package/src/base/_luxbreakpoints.scss +0 -94
- package/src/base/_luxcommon.scss +0 -104
- package/src/base/_luxcomponents.scss +0 -843
- package/src/base/_luxfocus.scss +0 -438
- package/src/base/_luxpalette.scss +0 -10
- package/src/base/_luxstyles.scss +0 -723
- package/src/base/_luxtheme.scss +0 -23
- package/src/base/components/_luxAppHeaderAc.scss +0 -214
- package/src/base/components/_luxBadge.scss +0 -62
- package/src/base/components/_luxBreadcrumb.scss +0 -90
- package/src/base/components/_luxButton.scss +0 -283
- package/src/base/components/_luxCard.scss +0 -179
- package/src/base/components/_luxFormControlWrapper.scss +0 -205
- package/src/base/components/_luxFormControlsAuthentic.scss +0 -715
- package/src/base/components/_luxIcon.scss +0 -41
- package/src/base/components/_luxMenu.scss +0 -314
- package/src/base/components/_luxMessagebox.scss +0 -156
- package/src/base/components/_luxProgressBar.scss +0 -5
- package/src/base/components/_luxProgressSpinner.scss +0 -13
- package/src/base/components/_luxSnackbar.scss +0 -77
- package/src/base/components/_luxTextbox.scss +0 -91
- package/src/base/components/_luxTileAc.scss +0 -87
- package/src/base/components/_luxToolTip.scss +0 -5
- package/src/green/_custom.scss +0 -1125
- package/src/green/_luxcommon.scss +0 -117
- package/src/green/_luxpalette.scss +0 -231
- package/src/green/luxtheme.scss +0 -117
- package/src/public/global.scss +0 -113
- /package/src/{base → base-templates/common}/_luxSvgIcons.scss +0 -0
- /package/src/{base → base-templates/common}/_luxfonts.scss +0 -0
|
@@ -1,609 +0,0 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "../base/luxelevations";
|
|
3
|
-
@use "../base/luxfocus";
|
|
4
|
-
@use "@angular/material" as mat;
|
|
5
|
-
@use "../public/global";
|
|
6
|
-
@use "luxcommon";
|
|
7
|
-
@use "luxpalette";
|
|
8
|
-
@use "../base/luxSvgIcons" as luxicons;
|
|
9
|
-
|
|
10
|
-
h1,
|
|
11
|
-
h2,
|
|
12
|
-
h3,
|
|
13
|
-
h4,
|
|
14
|
-
h5,
|
|
15
|
-
h6 {
|
|
16
|
-
color: rgba(black, 0.87);
|
|
17
|
-
font-family: luxcommon.$app-headline-font, luxcommon.$app-font-family;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
div,
|
|
21
|
-
span,
|
|
22
|
-
p,
|
|
23
|
-
label {
|
|
24
|
-
font-family: luxcommon.$app-font-family;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
// Optionen werden im Cdk-Overlay dargestellt und hängen nicht unter der Component selbst.
|
|
28
|
-
// eigentlich nur für select-panel nötig
|
|
29
|
-
.lux-autocomplete-panel-ac,
|
|
30
|
-
.lux-select-panel-ac,
|
|
31
|
-
.lux-select-panel-ac-multiple {
|
|
32
|
-
.mat-mdc-option {
|
|
33
|
-
&.invalid {
|
|
34
|
-
color: luxpalette.$lux-warn-color;
|
|
35
|
-
font-weight: 300;
|
|
36
|
-
|
|
37
|
-
.mat-pseudo-checkbox {
|
|
38
|
-
color: luxcommon.$dark-disabled-text;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.mdc-list-item__primary-text {
|
|
42
|
-
opacity: 0.6;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
// Hintergrundfarbe
|
|
49
|
-
lux-app-content {
|
|
50
|
-
background-color: #fff; //Fallback
|
|
51
|
-
background-image: luxcommon.$app-gradient;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/*
|
|
55
|
-
* Theming for LUX-Accordion
|
|
56
|
-
*/
|
|
57
|
-
lux-accordion lux-panel {
|
|
58
|
-
padding: 0px;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
mat-expansion-panel.mat-expansion-panel:not([class*="mat-elevation-z"]) {
|
|
62
|
-
@include luxelevations.lux-elevation-z0;
|
|
63
|
-
border: 1px solid rgba(black, 0.12);
|
|
64
|
-
border-radius: 4px;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
lux-accordion {
|
|
68
|
-
.mat-expansion-panel-header .mat-content {
|
|
69
|
-
flex-direction: column; //damit sind Title und Description untereinander
|
|
70
|
-
|
|
71
|
-
.mat-expansion-panel-header-description {
|
|
72
|
-
margin-top: 4px;
|
|
73
|
-
font-weight: 400;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.mat-expansion-panel-header .mat-expansion-indicator::after {
|
|
78
|
-
color: map.get(luxpalette.$lux-palette-primary, 500);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.mat-expansion-panel-header .mat-expansion-indicator {
|
|
82
|
-
position: relative;
|
|
83
|
-
transform-origin: center;
|
|
84
|
-
width: 1em;
|
|
85
|
-
height: 1em;
|
|
86
|
-
|
|
87
|
-
&::after {
|
|
88
|
-
content: "";
|
|
89
|
-
position: absolute;
|
|
90
|
-
width: 1em;
|
|
91
|
-
height: 1em;
|
|
92
|
-
margin: 0px;
|
|
93
|
-
padding: 0px;
|
|
94
|
-
border: none;
|
|
95
|
-
transform: rotate(0deg);
|
|
96
|
-
background-color: luxpalette.$lux-primary-color;
|
|
97
|
-
-webkit-mask: url(luxicons.$arrow-button-down);
|
|
98
|
-
-webkit-mask-repeat: no-repeat;
|
|
99
|
-
-webkit-mask-position: center;
|
|
100
|
-
-webkit-mask-size: cover;
|
|
101
|
-
mask: url(luxicons.$arrow-button-down);
|
|
102
|
-
mask-repeat: no-repeat;
|
|
103
|
-
mask-position: center;
|
|
104
|
-
mask-size: cover;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
&:hover::after {
|
|
108
|
-
background-color: map.get(luxpalette.$lux-palette-primary, 300);
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
mat-expansion-panel-header.mat-expansion-panel-header,
|
|
113
|
-
mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded,
|
|
114
|
-
mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded:focus {
|
|
115
|
-
border-bottom-left-radius: 0px;
|
|
116
|
-
border-bottom-right-radius: 0px;
|
|
117
|
-
|
|
118
|
-
.mat-expansion-panel-header-title,
|
|
119
|
-
.mat-expansion-panel-header-description {
|
|
120
|
-
font-family: luxcommon.$app-headline-font, luxcommon.$app-font-family;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.mat-expansion-panel-header-title {
|
|
124
|
-
font-weight: 500;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
&[aria-disabled="false"] .mat-expansion-panel-header-description {
|
|
128
|
-
color: luxcommon.$dark-primary-text;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
&[aria-disabled="true"] {
|
|
132
|
-
background-color: white !important;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.mat-accordion.lux-primary {
|
|
137
|
-
mat-expansion-panel-header.mat-expansion-panel-header,
|
|
138
|
-
mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded {
|
|
139
|
-
background-color: map.get(luxpalette.$lux-palette-primary, 100);
|
|
140
|
-
@include mat.expansion-overrides(
|
|
141
|
-
(
|
|
142
|
-
header-hover-state-layer-color: map.get(luxpalette.$lux-palette-primary, 100)
|
|
143
|
-
)
|
|
144
|
-
);
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.mat-accordion.lux-accent {
|
|
149
|
-
mat-expansion-panel-header.mat-expansion-panel-header,
|
|
150
|
-
mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded {
|
|
151
|
-
background-color: map.get(luxpalette.$lux-palette-accent, 100);
|
|
152
|
-
@include mat.expansion-overrides(
|
|
153
|
-
(
|
|
154
|
-
header-hover-state-layer-color: map.get(luxpalette.$lux-palette-accent, 100)
|
|
155
|
-
)
|
|
156
|
-
);
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.mat-accordion.lux-warn {
|
|
161
|
-
mat-expansion-panel-header.mat-expansion-panel-header,
|
|
162
|
-
mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded {
|
|
163
|
-
background-color: map.get(luxpalette.$lux-palette-warn, 50);
|
|
164
|
-
@include mat.expansion-overrides(
|
|
165
|
-
(
|
|
166
|
-
header-hover-state-layer-color: map.get(luxpalette.$lux-palette-warn, 50)
|
|
167
|
-
)
|
|
168
|
-
);
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.mat-accordion.lux-neutral {
|
|
173
|
-
mat-expansion-panel-header.mat-expansion-panel-header,
|
|
174
|
-
mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded {
|
|
175
|
-
background-color: white;
|
|
176
|
-
@include mat.expansion-overrides(
|
|
177
|
-
(
|
|
178
|
-
header-hover-state-layer-color: white
|
|
179
|
-
)
|
|
180
|
-
);
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
@include mat.expansion-overrides(
|
|
185
|
-
(
|
|
186
|
-
header-disabled-state-text-color: luxcommon.$dark-disabled-text
|
|
187
|
-
)
|
|
188
|
-
);
|
|
189
|
-
|
|
190
|
-
lux-panel-content lux-card mat-card {
|
|
191
|
-
.lux-card-title {
|
|
192
|
-
line-height: normal;
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
/**
|
|
198
|
-
* Theming für lux-Badge-notification
|
|
199
|
-
*/
|
|
200
|
-
.lux-badge-notification {
|
|
201
|
-
|
|
202
|
-
&.mat-badge .mat-badge-content {
|
|
203
|
-
font-family: luxcommon.$app-headline-font, luxcommon.$app-font-family;
|
|
204
|
-
border: 1px solid #fff;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
&.mat-badge.lux-badge-no-border .mat-badge-content {
|
|
208
|
-
border: 1px solid transparent;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
&.lux-badge-color-default {
|
|
212
|
-
&.mat-badge:not(.mat-badge-disabled) .mat-badge-content {
|
|
213
|
-
color: white;
|
|
214
|
-
background: map.get(luxcommon.$componentBgColors, "gray");
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
&.mat-badge-disabled .mat-badge-content {
|
|
219
|
-
color: white;
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
/*
|
|
224
|
-
* Theming for Side-Nav im Demo
|
|
225
|
-
*/
|
|
226
|
-
example-root {
|
|
227
|
-
.example-base-components-list {
|
|
228
|
-
mat-expansion-panel-header {
|
|
229
|
-
font-weight: 600;
|
|
230
|
-
font-size: 1rem;
|
|
231
|
-
|
|
232
|
-
.mat-expansion-indicator {
|
|
233
|
-
position: relative;
|
|
234
|
-
transform-origin: center;
|
|
235
|
-
width: 1rem;
|
|
236
|
-
height: 1rem;
|
|
237
|
-
|
|
238
|
-
&::after {
|
|
239
|
-
content: "";
|
|
240
|
-
position: absolute;
|
|
241
|
-
width: 1rem;
|
|
242
|
-
height: 1rem;
|
|
243
|
-
margin: 0px;
|
|
244
|
-
padding: 0px;
|
|
245
|
-
border: none;
|
|
246
|
-
transform: rotate(0deg);
|
|
247
|
-
background-color: luxpalette.$lux-primary-color;
|
|
248
|
-
-webkit-mask: url(luxicons.$arrow-button-down);
|
|
249
|
-
-webkit-mask-repeat: no-repeat;
|
|
250
|
-
-webkit-mask-position: center;
|
|
251
|
-
-webkit-mask-size: cover;
|
|
252
|
-
mask: url(luxicons.$arrow-button-down);
|
|
253
|
-
mask-repeat: no-repeat;
|
|
254
|
-
mask-position: center;
|
|
255
|
-
mask-size: cover;
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
&:hover {
|
|
260
|
-
background-color: #fff !important;
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
.example-component-list-item {
|
|
265
|
-
line-height: normal;
|
|
266
|
-
|
|
267
|
-
&.example-component-list-item-selected {
|
|
268
|
-
text-shadow: 0 0 0.65px #003366, 0 0 0.65px #003366;
|
|
269
|
-
line-height: normal;
|
|
270
|
-
color: luxpalette.$lux-primary-color;
|
|
271
|
-
border: none;
|
|
272
|
-
background-color: #fff !important;
|
|
273
|
-
|
|
274
|
-
&::after {
|
|
275
|
-
content: "";
|
|
276
|
-
position: absolute;
|
|
277
|
-
width: 1rem;
|
|
278
|
-
height: 1rem;
|
|
279
|
-
right: auto;
|
|
280
|
-
left: auto;
|
|
281
|
-
top: auto;
|
|
282
|
-
bottom: auto;
|
|
283
|
-
margin: 0.125em 0.3em;
|
|
284
|
-
background-color: luxpalette.$lux-primary-color;
|
|
285
|
-
-webkit-mask: url(luxicons.$checkmark);
|
|
286
|
-
-webkit-mask-repeat: no-repeat;
|
|
287
|
-
-webkit-mask-position: center;
|
|
288
|
-
-webkit-mask-size: cover;
|
|
289
|
-
mask: url(luxicons.$checkmark);
|
|
290
|
-
mask-repeat: no-repeat;
|
|
291
|
-
mask-position: center;
|
|
292
|
-
mask-size: cover;
|
|
293
|
-
border: none;
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
&:hover,
|
|
298
|
-
&:focus-visible,
|
|
299
|
-
&.example-component-list-item-selected:hover,
|
|
300
|
-
&.example-component-list-item-selected:focus-visible {
|
|
301
|
-
color: #fff;
|
|
302
|
-
background-color: luxcommon.$lux-hover-color !important;
|
|
303
|
-
border-radius: 0;
|
|
304
|
-
|
|
305
|
-
&::after {
|
|
306
|
-
background-color: #fff;
|
|
307
|
-
}
|
|
308
|
-
}
|
|
309
|
-
}
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
/*
|
|
314
|
-
* Theming für Stepper-Large
|
|
315
|
-
*/
|
|
316
|
-
lux-stepper-large {
|
|
317
|
-
background-color: transparent;
|
|
318
|
-
|
|
319
|
-
.lux-stepper-large-nav-container,
|
|
320
|
-
.lux-stepper-large-content-container {
|
|
321
|
-
border: 1px solid luxcommon.$app-border-color;
|
|
322
|
-
border-radius: 4px;
|
|
323
|
-
background-color: luxcommon.$app-content-bg;
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
//Desktop-View
|
|
327
|
-
.lux-stepper-large-nav-item {
|
|
328
|
-
font-size: 1rem;
|
|
329
|
-
font-weight: 400;
|
|
330
|
-
|
|
331
|
-
.lux-stepper-large-nav-item-number-container {
|
|
332
|
-
border-radius: 50%;
|
|
333
|
-
font-weight: 600;
|
|
334
|
-
max-width: 2.25rem;
|
|
335
|
-
max-height: 2.25rem;
|
|
336
|
-
box-sizing: border-box;
|
|
337
|
-
padding: 6px 9px;
|
|
338
|
-
background-color: #fff;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.lux-stepper-large-nav-item-label-container a.lux-stepper-large-nav-item-label-link,
|
|
342
|
-
.lux-stepper-large-nav-item-label-container a.lux-stepper-large-nav-item-label-link:hover {
|
|
343
|
-
color: luxpalette.$lux_primary-color;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
&.lux-active:not(.lux-disabled) {
|
|
347
|
-
a {
|
|
348
|
-
font-weight: 600;
|
|
349
|
-
text-decoration-thickness: 2px;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.lux-stepper-large-nav-item-number-container {
|
|
353
|
-
color: luxcommon.$lux-stepper-large-nav-item-active-fc;
|
|
354
|
-
background-color: luxcommon.$lux-stepper-large-nav-item-active-bg;
|
|
355
|
-
border: 1px solid luxcommon.$lux-stepper-large-nav-item-active-bg;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
.lux-stepper-large-nav-item-label {
|
|
359
|
-
color: #003366;
|
|
360
|
-
}
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
&.lux-touched:not(.lux-disabled, .lux-active) {
|
|
364
|
-
a {
|
|
365
|
-
text-decoration: underline;
|
|
366
|
-
font-weight: 600;
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
&.lux-completed:not(.lux-active) {
|
|
370
|
-
.lux-stepper-large-nav-item-number-container {
|
|
371
|
-
border: 1px solid luxcommon.$app-border-color;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
a {
|
|
375
|
-
font-weight: 600;
|
|
376
|
-
|
|
377
|
-
&::after {
|
|
378
|
-
width: 16px;
|
|
379
|
-
height: 16px;
|
|
380
|
-
margin-top: 2px;
|
|
381
|
-
}
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
&:not(.lux-completed):not(.lux-active) {
|
|
386
|
-
.lux-stepper-large-nav-item-number-container {
|
|
387
|
-
color: luxpalette.$lux_primary-color;
|
|
388
|
-
background-color: luxcommon.$lux-stepper-large-nav-item-completed-bg;
|
|
389
|
-
border: 1px solid luxcommon.$app-border-color;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.lux-stepper-large-nav-item-label-container a.lux-stepper-large-nav-item-label-link:hover {
|
|
393
|
-
color: luxcommon.$lux-hover-color;
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
&:not(.lux-touched) {
|
|
399
|
-
opacity: 1;
|
|
400
|
-
color: #003366;
|
|
401
|
-
|
|
402
|
-
.lux-stepper-large-nav-item-number-container {
|
|
403
|
-
color: luxpalette.$lux-primary-color;
|
|
404
|
-
background-color: #fff;
|
|
405
|
-
border: 1px solid luxcommon.$app-border-color;
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
&.lux-disabled {
|
|
410
|
-
.lux-stepper-large-nav-item-number-container {
|
|
411
|
-
color: luxcommon.$dark-disabled-text;
|
|
412
|
-
background-color: #fff;
|
|
413
|
-
border: 1px solid luxcommon.$app-border-color;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
.lux-stepper-large-nav-item-label {
|
|
417
|
-
color: luxcommon.$dark-disabled-text;
|
|
418
|
-
}
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
//Stepper-Large Mobile-View
|
|
424
|
-
.lux-stepper-large-mobile-nav-header {
|
|
425
|
-
div {
|
|
426
|
-
font-family: luxcommon.$app-headline-font, luxcommon.$app-font-family;
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
.lux-stepper-large-mobile-nav-item {
|
|
431
|
-
display: flex;
|
|
432
|
-
flex-direction: row;
|
|
433
|
-
justify-content: flex-start;
|
|
434
|
-
align-items: center;
|
|
435
|
-
|
|
436
|
-
font-size: 1.125rem;
|
|
437
|
-
|
|
438
|
-
.lux-stepper-large-mobile-nav-item-number-container {
|
|
439
|
-
border-radius: 50%;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
&.lux-active:not(.lux-disabled) {
|
|
443
|
-
a {
|
|
444
|
-
font-weight: 600;
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
.lux-stepper-large-mobile-nav-item-number-container {
|
|
448
|
-
color: luxcommon.$lux-stepper-large-nav-item-active-fc;
|
|
449
|
-
background-color: luxcommon.$lux-stepper-large-nav-item-active-bg;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
.lux-stepper-large-nav-item-label {
|
|
453
|
-
color: #003366;
|
|
454
|
-
}
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
&.lux-touched:not(.lux-disabled) {
|
|
458
|
-
a {
|
|
459
|
-
text-decoration: underline;
|
|
460
|
-
font-weight: 400;
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
&.lux-completed:not(.lux-active) {
|
|
464
|
-
.lux-stepper-large-mobile-nav-item-number-container {
|
|
465
|
-
border: 1px solid luxcommon.$app-border-color;
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
a {
|
|
469
|
-
font-weight: 400;
|
|
470
|
-
}
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
&:not(.lux-completed):not(.lux-active) {
|
|
474
|
-
.lux-stepper-large-mobile-nav-item-number-container {
|
|
475
|
-
color: luxpalette.$lux-primary-color;
|
|
476
|
-
background-color: luxcommon.$lux-stepper-large-nav-item-completed-bg;
|
|
477
|
-
border: 1px solid luxcommon.$app-border-color;
|
|
478
|
-
}
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
&:not(.lux-touched) {
|
|
483
|
-
opacity: 1;
|
|
484
|
-
color: #003366;
|
|
485
|
-
|
|
486
|
-
.lux-stepper-large-mobile-nav-item-number-container {
|
|
487
|
-
color: luxpalette.$lux-primary-color;
|
|
488
|
-
background-color: #fff;
|
|
489
|
-
border: 1px solid luxcommon.$app-border-color;
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
&.lux-disabled {
|
|
494
|
-
.lux-stepper-large-nav-item-number-container {
|
|
495
|
-
color: luxcommon.$dark-disabled-text;
|
|
496
|
-
background-color: #fff;
|
|
497
|
-
border: 1px solid luxcommon.$app-border-color;
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
.lux-stepper-large-mobile-nav-item-label {
|
|
501
|
-
color: luxcommon.$dark-disabled-text;
|
|
502
|
-
}
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.lux-stepper-large-mobile-nav-item-label-container {
|
|
506
|
-
.lux-stepper-large-mobile-nav-item-complete {
|
|
507
|
-
color: luxcommon.$lux-stepper-large-completed-fc;
|
|
508
|
-
font-size: 1.125rem;
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
lux-file-upload {
|
|
514
|
-
.lux-file-upload-view-item-button button.lux-button.mat-mdc-button {
|
|
515
|
-
color: luxpalette.$lux-primary-color;
|
|
516
|
-
|
|
517
|
-
mat-icon {
|
|
518
|
-
width: 1.125rem !important;
|
|
519
|
-
height: 1.125rem !important;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
&:hover {
|
|
523
|
-
color: luxcommon.$lux-hover-color;
|
|
524
|
-
}
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
.lux-file-upload-container {
|
|
528
|
-
.lux-file-upload-drop-container {
|
|
529
|
-
&:not(.lux-file-upload-drag-active):not(.lux-file-upload-drop-container-disabled) {
|
|
530
|
-
background-image: luxcommon.$app-gradient;
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
.lux-file-upload-drop-label-container {
|
|
534
|
-
padding: 16px 48px 12px 48px;
|
|
535
|
-
}
|
|
536
|
-
}
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
.lux-file-upload-error-container {
|
|
540
|
-
margin-top: 16px;
|
|
541
|
-
margin-bottom: 0;
|
|
542
|
-
|
|
543
|
-
.lux-file-upload-error-button {
|
|
544
|
-
button.mat-mdc-button {
|
|
545
|
-
border-radius: 8px;
|
|
546
|
-
min-width: 24px;
|
|
547
|
-
min-height: 24px;
|
|
548
|
-
|
|
549
|
-
.lux-button-icon mat-icon.mat-icon.lux-icon {
|
|
550
|
-
width: 1.125rem !important;
|
|
551
|
-
height: 1.125rem !important;
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.lux-file-upload-view-container {
|
|
558
|
-
&:not(.lux-empty) {
|
|
559
|
-
margin-top: 16px;
|
|
560
|
-
margin-bottom: 16px;
|
|
561
|
-
border-radius: 4px;
|
|
562
|
-
border: 1px solid rgba(black, 0.12);
|
|
563
|
-
}
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.lux-file-upload-view-item-container {
|
|
567
|
-
background-color: white;
|
|
568
|
-
padding: 11px 15px 11px 26px;
|
|
569
|
-
border-radius: 4px;
|
|
570
|
-
border-bottom: 1px solid rgba(black, 0.12);
|
|
571
|
-
border-bottom-left-radius: 0;
|
|
572
|
-
border-bottom-right-radius: 0;
|
|
573
|
-
margin: 0;
|
|
574
|
-
|
|
575
|
-
&:last-child {
|
|
576
|
-
border: none;
|
|
577
|
-
border-radius: 4px;
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
.lux-file-upload-label-text lux-link-plain .link-wrapper .lux-link-plain-text {
|
|
581
|
-
color: luxpalette.$lux-primary-color;
|
|
582
|
-
text-decoration: underline;
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
.lux-file-upload-view-item {
|
|
586
|
-
.lux-file-upload-view-item-icon {
|
|
587
|
-
display: flex;
|
|
588
|
-
flex: 0 0 20px;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
.lux-file-upload-label-file-size {
|
|
592
|
-
margin-right: 20px;
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
lux-button.lux-file-upload-view-item-button {
|
|
596
|
-
button.mat-mdc-button {
|
|
597
|
-
border-radius: 8px;
|
|
598
|
-
min-width: 24px;
|
|
599
|
-
min-height: 24px;
|
|
600
|
-
|
|
601
|
-
.lux-button-icon mat-icon.mat-icon.lux-icon {
|
|
602
|
-
width: 1.125rem;
|
|
603
|
-
height: 1.125rem;
|
|
604
|
-
}
|
|
605
|
-
}
|
|
606
|
-
}
|
|
607
|
-
}
|
|
608
|
-
}
|
|
609
|
-
}
|