@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,41 +0,0 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "../luxpalette";
|
|
3
|
-
|
|
4
|
-
lux-icon {
|
|
5
|
-
position: relative;
|
|
6
|
-
display: inline-flex;
|
|
7
|
-
width: fit-content;
|
|
8
|
-
|
|
9
|
-
&.lux-icon-rounded {
|
|
10
|
-
mat-icon.lux-icon {
|
|
11
|
-
border-radius: 50%;
|
|
12
|
-
|
|
13
|
-
&.lux-icon-rounded-1em {
|
|
14
|
-
padding: 0.25rem !important;
|
|
15
|
-
}
|
|
16
|
-
&.lux-icon-rounded-2em {
|
|
17
|
-
padding: 0.5rem !important;
|
|
18
|
-
}
|
|
19
|
-
&.lux-icon-rounded-3em {
|
|
20
|
-
padding: 0.75rem !important;
|
|
21
|
-
}
|
|
22
|
-
&.lux-icon-rounded-4em,
|
|
23
|
-
&.lux-icon-rounded-5em {
|
|
24
|
-
padding: 1rem !important;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
&.lux-error-icon {
|
|
30
|
-
font-size: 0.75rem;
|
|
31
|
-
|
|
32
|
-
mat-icon.lux-icon {
|
|
33
|
-
padding: 0 !important;
|
|
34
|
-
color: luxpalette.$lux-warn-color;
|
|
35
|
-
|
|
36
|
-
&:hover {
|
|
37
|
-
cursor: pointer;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
@@ -1,314 +0,0 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "../luxcommon";
|
|
3
|
-
@use "../luxpalette";
|
|
4
|
-
@use "../luxfocus";
|
|
5
|
-
|
|
6
|
-
.mat-mdc-menu-panel {
|
|
7
|
-
--mat-menu-container-shape: #{luxcommon.$app-border-radius};
|
|
8
|
-
|
|
9
|
-
.mat-mdc-menu-item-text {
|
|
10
|
-
min-height: #{luxcommon.$lux-panel-option-min-height};
|
|
11
|
-
padding: #{luxcommon.$lux-panel-option-padding};
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
lux-menu {
|
|
16
|
-
display: block;
|
|
17
|
-
width: 100%;
|
|
18
|
-
|
|
19
|
-
.lux-menu-extended,
|
|
20
|
-
.lux-menu-trigger {
|
|
21
|
-
> lux-button {
|
|
22
|
-
button.mat-mdc-button {
|
|
23
|
-
padding-left: 8px;
|
|
24
|
-
padding-right: 8px;
|
|
25
|
-
min-width: 36px;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// Container für die Buttons und den Trigger ausserhalb des Menu-Panels
|
|
32
|
-
.lux-menu-extended {
|
|
33
|
-
overflow: hidden;
|
|
34
|
-
min-width: 0;
|
|
35
|
-
padding: 4px 0;
|
|
36
|
-
position: relative;
|
|
37
|
-
|
|
38
|
-
> lux-button {
|
|
39
|
-
margin-right: 8px;
|
|
40
|
-
&.lux-menu-item .lux-button-label {
|
|
41
|
-
white-space: nowrap;
|
|
42
|
-
font-weight: 400;
|
|
43
|
-
letter-spacing: 1px;
|
|
44
|
-
font-family: luxcommon.$app-font-family;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// Container für den Menu-Trigger-button
|
|
50
|
-
.lux-menu-trigger {
|
|
51
|
-
display: flex;
|
|
52
|
-
flex: 0 0 auto;
|
|
53
|
-
margin: 0 4px;
|
|
54
|
-
align-self: center;
|
|
55
|
-
box-sizing: border-box;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.lux-menu-trigger-default {
|
|
59
|
-
button.mat-mdc-button {
|
|
60
|
-
white-space: nowrap;
|
|
61
|
-
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
/* Menu-Overlay-Panel anpassen */
|
|
66
|
-
.lux-menu-panel {
|
|
67
|
-
border: 2px solid luxpalette.$lux-primary-color;
|
|
68
|
-
box-shadow: none !important;
|
|
69
|
-
|
|
70
|
-
.mat-mdc-menu-item:not([disabled]).cdk-program-focused {
|
|
71
|
-
background-color: transparent;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.mat-mdc-menu-item,
|
|
75
|
-
.mat-mdc-menu-item:has(.material-icons, mat-icon, [matButtonIcon]) {
|
|
76
|
-
padding: 0 16px;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.mat-mdc-menu-item-text {
|
|
80
|
-
display: flex;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.lux-menu-item {
|
|
84
|
-
font-size: 1rem;
|
|
85
|
-
display: block;
|
|
86
|
-
color: luxpalette.$lux-primary-color;
|
|
87
|
-
margin-top: luxcommon.$outline-width;
|
|
88
|
-
margin-bottom: luxcommon.$outline-width;
|
|
89
|
-
hyphens: auto;
|
|
90
|
-
word-break: break-all;
|
|
91
|
-
|
|
92
|
-
.mat-icon-no-color {
|
|
93
|
-
color: luxpalette.$lux-primary-color;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.lux-button-label {
|
|
97
|
-
hyphens: auto;
|
|
98
|
-
word-break: break-word;
|
|
99
|
-
}
|
|
100
|
-
.lux-button-badge-container {
|
|
101
|
-
min-width: 38px;
|
|
102
|
-
vertical-align: middle;
|
|
103
|
-
align-self: center;
|
|
104
|
-
}
|
|
105
|
-
.lux-button-badge {
|
|
106
|
-
color: #fff;
|
|
107
|
-
border-radius: 4px;
|
|
108
|
-
padding: 1px 4px;
|
|
109
|
-
font-size: 0.6875rem;
|
|
110
|
-
line-height: normal;
|
|
111
|
-
max-height: 16px;
|
|
112
|
-
min-width: 15px;
|
|
113
|
-
max-width: 38px;
|
|
114
|
-
display: inline-block;
|
|
115
|
-
overflow: hidden;
|
|
116
|
-
text-overflow: ellipsis;
|
|
117
|
-
white-space: nowrap;
|
|
118
|
-
box-sizing: border-box;
|
|
119
|
-
letter-spacing: 1.25px;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
.lux-menu-item-icon {
|
|
123
|
-
align-self: center;
|
|
124
|
-
vertical-align: middle;
|
|
125
|
-
mat-icon {
|
|
126
|
-
margin: 0;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
//Styling für das neue Panel mit Sektionen und das Large Panel
|
|
132
|
-
.lux-menu-section-panel,
|
|
133
|
-
.lux-menu-section-panel:not(.lux-menu-panel-large) {
|
|
134
|
-
min-width: 260px !important;
|
|
135
|
-
max-width: 100%;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.lux-menu-section-panel,
|
|
139
|
-
.lux-menu-section-panel:has(.lux-menu-panel-large) {
|
|
140
|
-
min-width: 360px !important;
|
|
141
|
-
max-width: 100%;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.lux-menu-section-panel {
|
|
145
|
-
.lux-menu-item-content {
|
|
146
|
-
display: flex;
|
|
147
|
-
align-items: center;
|
|
148
|
-
width: 100%;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.lux-menu-item-icon {
|
|
152
|
-
margin-right: 8px;
|
|
153
|
-
flex-shrink: 0;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.lux-button-label {
|
|
157
|
-
text-align: left;
|
|
158
|
-
flex: 1 1 auto;
|
|
159
|
-
white-space: normal;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.lux-menu-item-badge-right {
|
|
163
|
-
min-width: 0px !important;
|
|
164
|
-
margin-left: auto;
|
|
165
|
-
align-self: center;
|
|
166
|
-
display: flex;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.lux-button-label-subtitle {
|
|
170
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 40);
|
|
171
|
-
font-size: 0.875rem;
|
|
172
|
-
font-style: normal;
|
|
173
|
-
font-weight: 400;
|
|
174
|
-
letter-spacing: 0.07px;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.lux-menu-panelheader-username {
|
|
178
|
-
display: flex;
|
|
179
|
-
padding: 12px 16px;
|
|
180
|
-
flex-direction: column;
|
|
181
|
-
align-items: flex-start;
|
|
182
|
-
gap: 4px;
|
|
183
|
-
align-self: stretch;
|
|
184
|
-
font-weight: 600;
|
|
185
|
-
font-size: 1rem;
|
|
186
|
-
font-style: normal;
|
|
187
|
-
line-height: 120%;
|
|
188
|
-
}
|
|
189
|
-
.lux-menu-panelheader-username-subtitle {
|
|
190
|
-
display: flex;
|
|
191
|
-
flex-direction: column;
|
|
192
|
-
align-items: flex-start;
|
|
193
|
-
gap: 4px;
|
|
194
|
-
align-self: stretch;
|
|
195
|
-
font-weight: 400;
|
|
196
|
-
|
|
197
|
-
font-size: 0.75rem;
|
|
198
|
-
font-style: normal;
|
|
199
|
-
line-height: normal;
|
|
200
|
-
}
|
|
201
|
-
.lux-menu-section-title {
|
|
202
|
-
display: flex;
|
|
203
|
-
padding: 8px 16px;
|
|
204
|
-
flex-direction: column;
|
|
205
|
-
justify-content: center;
|
|
206
|
-
align-items: flex-start;
|
|
207
|
-
align-self: stretch;
|
|
208
|
-
|
|
209
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, "neutral"), 40);
|
|
210
|
-
font-weight: 600;
|
|
211
|
-
font-size: 1rem;
|
|
212
|
-
letter-spacing: 0.08px;
|
|
213
|
-
line-height: 120%; /* 19.2px */
|
|
214
|
-
}
|
|
215
|
-
.lux-menu-item-divider {
|
|
216
|
-
padding: 4px;
|
|
217
|
-
}
|
|
218
|
-
.lux-menu-item-divider-large {
|
|
219
|
-
margin-right: 16px;
|
|
220
|
-
margin-left: 16px;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.lux-menu-item.lux-menu-item-selected {
|
|
224
|
-
background-color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 90) !important;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.lux-menu-item-selected {
|
|
228
|
-
background-color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 90);
|
|
229
|
-
&.lux-button-label {
|
|
230
|
-
text-decoration-line: underline;
|
|
231
|
-
text-decoration-style: solid;
|
|
232
|
-
text-decoration-thickness: 10%;
|
|
233
|
-
text-underline-offset: 5%;
|
|
234
|
-
text-underline-position: from-font;
|
|
235
|
-
}
|
|
236
|
-
&.lux-button-label-subtitle {
|
|
237
|
-
text-decoration-color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 40);
|
|
238
|
-
text-decoration-line: underline;
|
|
239
|
-
text-decoration-style: solid;
|
|
240
|
-
text-decoration-thickness: 12%;
|
|
241
|
-
text-underline-offset: 5%;
|
|
242
|
-
text-underline-position: from-font;
|
|
243
|
-
}
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
.lux-menu-item-badge-right {
|
|
247
|
-
text-align: end;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
/** ########## Hover / Focus ########## **/
|
|
252
|
-
// Class, welche das aufgeklappte Panel referenziert
|
|
253
|
-
.lux-menu-panel {
|
|
254
|
-
.lux-menu-item {
|
|
255
|
-
&:not([disabled="true"]) {
|
|
256
|
-
&:focus-visible {
|
|
257
|
-
@include luxfocus.focus-dark-mixin-inline;
|
|
258
|
-
border-radius: 0;
|
|
259
|
-
&:after {
|
|
260
|
-
width: 0px;
|
|
261
|
-
border: none;
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
&:hover {
|
|
266
|
-
@include luxfocus.lux-hovered-mixin-inverted;
|
|
267
|
-
& .mat-icon-no-color {
|
|
268
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 100);
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
/** ########## Hover / Focus ########## **/
|
|
276
|
-
// Class, welche das gruppen und das große Panel referenziert
|
|
277
|
-
.lux-menu-panel.lux-menu-section-panel {
|
|
278
|
-
.lux-menu-item {
|
|
279
|
-
&:not([disabled="true"]) {
|
|
280
|
-
&:focus-visible {
|
|
281
|
-
background-color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 100);
|
|
282
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 20);
|
|
283
|
-
border-radius: 4px;
|
|
284
|
-
&:after {
|
|
285
|
-
width: 0px;
|
|
286
|
-
border: none;
|
|
287
|
-
}
|
|
288
|
-
& .lux-button-label-subtitle {
|
|
289
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 40);
|
|
290
|
-
}
|
|
291
|
-
.mat-icon-no-color {
|
|
292
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 20);
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
&:hover {
|
|
297
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 100);
|
|
298
|
-
& .mat-icon-no-color {
|
|
299
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 100);
|
|
300
|
-
}
|
|
301
|
-
& .lux-button-label-subtitle {
|
|
302
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 95);
|
|
303
|
-
}
|
|
304
|
-
.lux-button-label.lux-menu-item-selected {
|
|
305
|
-
background-color: luxcommon.$lux-hover-color;
|
|
306
|
-
}
|
|
307
|
-
.lux-button-label-subtitle.lux-menu-item-selected {
|
|
308
|
-
background-color: luxcommon.$lux-hover-color;
|
|
309
|
-
text-decoration-color: map-get(map-get(luxpalette.$lux-palettes-new, "primary"), 100);
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
}
|
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
@use "../luxcommon";
|
|
2
|
-
@use "../luxpalette";
|
|
3
|
-
@use "../luxfocus";
|
|
4
|
-
@use "../luxbreakpoints";
|
|
5
|
-
@use "../luxelevations";
|
|
6
|
-
@use "sass:map";
|
|
7
|
-
|
|
8
|
-
lux-message-box {
|
|
9
|
-
display: block;
|
|
10
|
-
overflow: hidden;
|
|
11
|
-
border-radius: 4px;
|
|
12
|
-
|
|
13
|
-
&.mat-elevation-z4 {
|
|
14
|
-
@include luxelevations.lux-elevation-z0();
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
& .lux-message-box-content {
|
|
18
|
-
display: flex;
|
|
19
|
-
flex-direction: column;
|
|
20
|
-
box-sizing: border-box;
|
|
21
|
-
|
|
22
|
-
& .lux-message-container {
|
|
23
|
-
display: grid;
|
|
24
|
-
grid-template-columns: 52px 1fr 36px;
|
|
25
|
-
align-items: center;
|
|
26
|
-
|
|
27
|
-
padding: var(--lux-theme-outline-width) 24px;
|
|
28
|
-
border-radius: 4px;
|
|
29
|
-
|
|
30
|
-
&.lux-bg-color-white {
|
|
31
|
-
// da im Theme authentic der Schatten entfernt wurde, muss eine Weiße Messagebox eine Border erhalten.
|
|
32
|
-
border: 1px solid luxpalette.$lux-primary-color;
|
|
33
|
-
box-sizing: border-box;
|
|
34
|
-
|
|
35
|
-
& lux-button button.lux-button.mat-mdc-fab.lux-fab-rounded-default:not([class*="mat-elevation-z"]) {
|
|
36
|
-
color: luxpalette.$lux-primary-color;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
& lux-button {
|
|
41
|
-
button.lux-button.mat-mdc-fab.lux-fab-rounded-default:not([class*="mat-elevation-z"]) {
|
|
42
|
-
color: inherit !important;
|
|
43
|
-
background-color: transparent !important;
|
|
44
|
-
@include luxelevations.lux-elevation-z0();
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.mat-mdc-button-ripple {
|
|
48
|
-
display: none;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
& lux-icon:not(.lux-button-icon, .lux-button-icon-round) {
|
|
53
|
-
display: contents;
|
|
54
|
-
|
|
55
|
-
mat-icon.lux-icon {
|
|
56
|
-
width: 20px;
|
|
57
|
-
height: 20px;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
lux-message:not(:last-child) {
|
|
62
|
-
.lux-message-container {
|
|
63
|
-
margin-bottom: 1px;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
mat-paginator {
|
|
69
|
-
& .mat-paginator-container {
|
|
70
|
-
padding: 0 20px !important;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
/** ########## Hover / Focus ########## **/
|
|
76
|
-
lux-message-box {
|
|
77
|
-
& div.lux-message-box-content {
|
|
78
|
-
&:focus-visible {
|
|
79
|
-
@include luxfocus.focus-dark-mixin;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.mat-mdc-fab.mat-unthemed,
|
|
83
|
-
.mat-mdc-mini-fab.mat-unthemed {
|
|
84
|
-
background-color: transparent !important;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
& .lux-message-container.lux-bg-color-white {
|
|
88
|
-
& .lux-message-text:focus-visible {
|
|
89
|
-
@include luxfocus.focus-dark-mixin;
|
|
90
|
-
border-radius: 4px;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
& lux-button button.lux-button.mat-mdc-fab:not([disabled]).lux-fab-rounded-default {
|
|
94
|
-
&:hover {
|
|
95
|
-
color: #ffffff !important;
|
|
96
|
-
background-color: luxpalette.$lux-primary-color !important;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
&:focus-visible {
|
|
100
|
-
@include luxfocus.focus-dark-mixin;
|
|
101
|
-
background-color: transparent !important;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
& .lux-message-container:not(.lux-bg-color-white) {
|
|
107
|
-
& .lux-message-text:focus-visible {
|
|
108
|
-
@include luxfocus.focus-bright-mixin;
|
|
109
|
-
border-radius: 4px;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
& lux-button button.lux-button.mat-mdc-fab:not([disabled]).lux-fab-rounded-default {
|
|
113
|
-
&:hover {
|
|
114
|
-
color: white !important;
|
|
115
|
-
background-color: rgba(1, 1, 1, 0.2) !important;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
&:focus-visible {
|
|
119
|
-
@include luxfocus.focus-bright-mixin;
|
|
120
|
-
color: white !important;
|
|
121
|
-
background-color: transparent !important;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
@media (prefers-contrast: more) {
|
|
129
|
-
lux-message-box {
|
|
130
|
-
.lux-message-container {
|
|
131
|
-
font-size: 1rem;
|
|
132
|
-
font-style: normal;
|
|
133
|
-
font-weight: 600;
|
|
134
|
-
line-height: normal;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.lux-bg-color-red {
|
|
138
|
-
background-color: map-get(map-get(luxpalette.$lux-palettes-new, 'error'), 35);
|
|
139
|
-
}
|
|
140
|
-
.lux-font-color-green {
|
|
141
|
-
color: #ffffff;
|
|
142
|
-
}
|
|
143
|
-
.lux-bg-color-green {
|
|
144
|
-
background-color: map-get(map-get(luxpalette.$lux-palettes-new, 'tertiary'), 30);
|
|
145
|
-
}
|
|
146
|
-
.lux-bg-color-gray {
|
|
147
|
-
background-color: map-get(map-get(luxpalette.$lux-palettes-new, 'neutral'), 10);
|
|
148
|
-
}
|
|
149
|
-
.lux-bg-color-orange {
|
|
150
|
-
background-color: map-get(luxcommon.$colorsForDarkBg, 'yellow');
|
|
151
|
-
}
|
|
152
|
-
.lux-bg-color-purple {
|
|
153
|
-
background-color: map-get(map-get(luxpalette.$lux-palettes-new, 'neutral'), 10);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
@use "../luxcommon";
|
|
2
|
-
|
|
3
|
-
@each $colorName, $colorNameHex in luxcommon.$componentBgColors {
|
|
4
|
-
.mat-mdc-progress-spinner.lux-color-#{"" + $colorName + ""} .mdc-circular-progress__determinate-circle {
|
|
5
|
-
stroke: $colorNameHex;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
@each $colorName, $colorNameHex in luxcommon.$componentBgColors {
|
|
10
|
-
.mat-mdc-progress-spinner.lux-color-#{"" + $colorName + ""} .mdc-circular-progress__indeterminate-circle-graphic {
|
|
11
|
-
stroke: $colorNameHex;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "../luxpalette";
|
|
3
|
-
@use "../luxcommon";
|
|
4
|
-
@use "../luxelevations";
|
|
5
|
-
|
|
6
|
-
.cdk-overlay-container {
|
|
7
|
-
.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface {
|
|
8
|
-
min-width: unset;
|
|
9
|
-
border-radius: 4px;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.mat-mdc-snack-bar-container.lux-snackbar {
|
|
13
|
-
@include luxelevations.lux-elevation-z6();
|
|
14
|
-
|
|
15
|
-
position: relative;
|
|
16
|
-
margin: 0 !important;
|
|
17
|
-
|
|
18
|
-
// Die Snackbar wird durch die App umpositioniert, bevor sie sichtbar geschaltet wird.
|
|
19
|
-
// Würde man die Snackbar nicht verstecken, würde sie von der initialen Position zur neuen
|
|
20
|
-
// springen.
|
|
21
|
-
visibility: hidden;
|
|
22
|
-
|
|
23
|
-
.lux-snackbar-content {
|
|
24
|
-
font-size: 0.875rem;
|
|
25
|
-
font-style: normal;
|
|
26
|
-
font-weight: 400;
|
|
27
|
-
line-height: normal;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
@each $colorName, $colorNameHex in luxcommon.$colorsForDarkBg {
|
|
31
|
-
.lux-snackbar-content .lux-bg-color-#{"" + $colorName + ""} {
|
|
32
|
-
color: $colorNameHex;
|
|
33
|
-
background-color: transparent;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
mat-icon.mat-icon.lux-icon {
|
|
38
|
-
width: 2em;
|
|
39
|
-
height: 2em;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.mat-snack-bar-handset snack-bar-container.mat-snack-bar-container.lux-snackbar {
|
|
44
|
-
left: 8px;
|
|
45
|
-
width: auto !important;
|
|
46
|
-
margin-right: 10px !important;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
@media (prefers-contrast: more) {
|
|
51
|
-
.cdk-overlay-container {
|
|
52
|
-
.mat-mdc-snack-bar-container.lux-snackbar {
|
|
53
|
-
.lux-snackbar-content {
|
|
54
|
-
font-size: 1rem;
|
|
55
|
-
font-style: normal;
|
|
56
|
-
font-weight: 600;
|
|
57
|
-
line-height: normal;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.lux-snackbar-content .lux-bg-color-red {
|
|
61
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, 'error'), 80);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.lux-snackbar-content .lux-bg-color-blue {
|
|
65
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, 'primary'), 80);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.lux-snackbar-content .lux-bg-color-green {
|
|
69
|
-
color: map-get(map-get(luxpalette.$lux-palettes-new, 'tertiary'), 80);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.lux-snackbar-content .lux-bg-color-orange {
|
|
73
|
-
color: map-get(luxcommon.$colorsForDarkBg, 'yellow');
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "../luxfocus";
|
|
3
|
-
@use "../luxcommon";
|
|
4
|
-
@use "../luxpalette";
|
|
5
|
-
|
|
6
|
-
$textbox_yellow: rgba(244, 203, 37, 1);
|
|
7
|
-
$textbox_yellow_light: rgba(253, 248, 225, 1);
|
|
8
|
-
|
|
9
|
-
lux-textbox {
|
|
10
|
-
.lux-textbox-container {
|
|
11
|
-
display: grid;
|
|
12
|
-
grid-template-columns: 1.5em 1fr;
|
|
13
|
-
gap: 1.5em;
|
|
14
|
-
row-gap: 1em;
|
|
15
|
-
border: 1px solid map.get(luxpalette.$lux-palette-primary, 500);
|
|
16
|
-
border-radius: 4px;
|
|
17
|
-
padding: 1.5em;
|
|
18
|
-
|
|
19
|
-
background-color: #ffffff;
|
|
20
|
-
|
|
21
|
-
h1.lux-textbox-title,
|
|
22
|
-
h2.lux-textbox-title,
|
|
23
|
-
h3.lux-textbox-title,
|
|
24
|
-
h4.lux-textbox-title,
|
|
25
|
-
h5.lux-textbox-title,
|
|
26
|
-
h6.lux-textbox-title {
|
|
27
|
-
margin: 0;
|
|
28
|
-
font-size: 1.125rem;
|
|
29
|
-
font-weight: 600;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.lux-textbox-icon {
|
|
33
|
-
width: 24px;
|
|
34
|
-
height: 24px;
|
|
35
|
-
justify-self: start;
|
|
36
|
-
align-self: start;
|
|
37
|
-
color: luxpalette.$lux-primary-color;
|
|
38
|
-
mat-icon.mat-icon.lux-icon {
|
|
39
|
-
padding: 0 !important;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.lux-textbox-content {
|
|
44
|
-
color: luxcommon.$dark-primary-text;
|
|
45
|
-
grid-column-start: 2;
|
|
46
|
-
font-size: 1rem;
|
|
47
|
-
p {
|
|
48
|
-
padding: 0;
|
|
49
|
-
margin: 0;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
&:empty {
|
|
53
|
-
display: none;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
&.lux-no-icon {
|
|
58
|
-
grid-template-columns: 1fr;
|
|
59
|
-
|
|
60
|
-
.lux-text-box-title,
|
|
61
|
-
.lux-textbox-content {
|
|
62
|
-
grid-column: 1 / -1;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
&.lux-blue {
|
|
67
|
-
background: linear-gradient(90deg, map.get(luxpalette.$lux-palette-primary, 50), #ffffff);
|
|
68
|
-
}
|
|
69
|
-
&.lux-green {
|
|
70
|
-
background: linear-gradient(90deg, map.get(luxpalette.$lux-palette-accent, 50), #ffffff);
|
|
71
|
-
border-color: luxpalette.$lux-accent-color;
|
|
72
|
-
lux-icon.lux-textbox-icon {
|
|
73
|
-
color: luxpalette.$lux-accent-color;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
&.lux-red {
|
|
77
|
-
background: linear-gradient(90deg, map.get(luxpalette.$lux-palette-warn, 50), #ffffff);
|
|
78
|
-
border-color: luxpalette.$lux-warn-color;
|
|
79
|
-
lux-icon.lux-textbox-icon {
|
|
80
|
-
color: luxpalette.$lux-warn-color;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
&.lux-yellow {
|
|
84
|
-
background: linear-gradient(90deg, $textbox_yellow_light, #ffffff);
|
|
85
|
-
border-color: $textbox_yellow;
|
|
86
|
-
lux-icon.lux-textbox-icon {
|
|
87
|
-
color: $textbox_yellow;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|