@ihk-gfi/lux-components-theme 21.3.0 → 21.5.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.
Files changed (29) hide show
  1. package/README.md +1560 -101
  2. package/package.json +1 -1
  3. package/prebuilt-themes/luxtheme-authentic-min.css +1 -1
  4. package/prebuilt-themes/luxtheme-authentic-min.css.map +1 -1
  5. package/prebuilt-themes/luxtheme-authentic.css +520 -25
  6. package/prebuilt-themes/luxtheme-authentic.css.map +1 -1
  7. package/prebuilt-themes/luxtheme-green-min.css +1 -1
  8. package/prebuilt-themes/luxtheme-green-min.css.map +1 -1
  9. package/prebuilt-themes/luxtheme-green.css +521 -26
  10. package/prebuilt-themes/luxtheme-green.css.map +1 -1
  11. package/src/base-templates/common/_luxstyles.scss +7 -8
  12. package/src/base-templates/common/_luxutilities.scss +343 -0
  13. package/src/base-templates/components/_luxAccordion.scss +22 -3
  14. package/src/base-templates/components/_luxCard.scss +25 -2
  15. package/src/base-templates/components/_luxFormControlWrapper.scss +37 -13
  16. package/src/base-templates/components/_luxList.scss +1 -1
  17. package/src/base-templates/components/_luxMenu.scss +1 -0
  18. package/src/base-templates/components/_luxMessagebox.scss +11 -0
  19. package/src/base-templates/components/_luxPaginator.scss +7 -0
  20. package/src/base-templates/components/_luxSnackbar.scss +1 -0
  21. package/src/base-templates/components/_luxStepper.scss +12 -1
  22. package/src/base-templates/components/_luxTabs.scss +21 -4
  23. package/src/base-templates/components/_luxTenantLogo.scss +27 -0
  24. package/src/base-templates/components/_luxTile.scss +5 -3
  25. package/src/base-templates/components/_luxTimepicker.scss +7 -0
  26. package/src/theme-authentic/_variables.scss +4 -0
  27. package/src/theme-authentic/lux-authentic.scss +4 -0
  28. package/src/theme-green/_variables.scss +5 -1
  29. package/src/theme-green/lux-green.scss +4 -0
@@ -117,14 +117,17 @@ a:not(.lux-link) {
117
117
  }
118
118
  }
119
119
 
120
+ // @deprecated Verwende stattdessen .lux-bg-header aus _luxutilities.scss.
120
121
  .lux-app-header-bg {
121
122
  background-color: var(--lux-theme-app-header-bg);
122
123
  }
123
124
 
125
+ // @deprecated Verwende stattdessen .lux-bg-content aus _luxutilities.scss.
124
126
  .lux-app-content-bg {
125
127
  background-color: var(--lux-theme-app-content-bg);
126
128
  }
127
129
 
130
+ // @deprecated Verwende stattdessen .lux-bg-footer aus _luxutilities.scss.
128
131
  .lux-app-footer-bg {
129
132
  background-color: var(--lux-theme-app-footer-bg);
130
133
  }
@@ -314,14 +317,17 @@ lux-card.lux-card-grow {
314
317
  box-sizing: content-box;
315
318
  }
316
319
 
320
+ // @deprecated Verwende stattdessen .lux-whitespace-nowrap aus _luxutilities.scss.
317
321
  .lux-nowrap {
318
322
  white-space: nowrap;
319
323
  }
320
324
 
325
+ // @deprecated Verwende stattdessen .lux-cursor-pointer aus _luxutilities.scss.
321
326
  .lux-cursor {
322
327
  cursor: pointer;
323
328
  }
324
329
 
330
+ // @deprecated Verwende stattdessen .lux-pointer-events-none aus _luxutilities.scss.
325
331
  .lux-block-pointer-events {
326
332
  pointer-events: none;
327
333
  }
@@ -338,14 +344,6 @@ lux-card.lux-card-grow {
338
344
  opacity: 0.6;
339
345
  }
340
346
 
341
- .lux-overflow-y-hidden {
342
- overflow-y: hidden;
343
- }
344
-
345
- .lux-overflow-y-auto {
346
- overflow-y: auto;
347
- }
348
-
349
347
  .lux-overflow-wrap-break-word {
350
348
  overflow-wrap: break-word;
351
349
  }
@@ -402,6 +400,7 @@ $gapSteps: 10, 20, 30;
402
400
  }
403
401
 
404
402
  /*
403
+ @deprecated Verwende stattdessen .lux-z-{n} aus _luxutilities.scss (z.B. .lux-z-100).
405
404
  Erstellt die Z-Indizes.
406
405
  Um weitere Z-Indizes anzulegen, die Variable zindexSteps um die entsprechenden Werte ergaenzen.
407
406
  */
@@ -0,0 +1,343 @@
1
+ @use "luxfocus" as focus;
2
+
3
+ // =============================================================================
4
+ // LUX Utility Classes
5
+ // =============================================================================
6
+ // Tailwind-inspired utility classes that complement the LUX component styles.
7
+ // LUX component styles cover: display, flex, gap, margin, padding,
8
+ // width/height, align, justify.
9
+ // These utilities add: positioning, overflow, border, cursor, typography,
10
+ // z-index, interaction patterns.
11
+ //
12
+ // Usage in consuming apps:
13
+ // The utilities are included automatically via the LUX theme package.
14
+ // =============================================================================
15
+
16
+ // =============================================================================
17
+ // LUX Utility Design Tokens
18
+ // =============================================================================
19
+ // Utilities-spezifische CSS Custom Properties.
20
+ // Theme-agnostische Base-Tokens (Spacing, Font-Size) sind in _variables.scss.
21
+ // =============================================================================
22
+
23
+ :root {
24
+ // --- Focus State Layer ---
25
+ // Background tint applied behind focus-visible outlines (12% primary, per Figma "focus-state-layer-color").
26
+ --lux-focus-state-layer-color: color-mix(in srgb, var(--lux-theme-primary-color) 12%, transparent);
27
+
28
+ // --- Z-Index ---
29
+ --lux-z-action-bar: 8;
30
+ --lux-z-header: 100;
31
+ --lux-z-backdrop: 199;
32
+ --lux-z-drawer: 200;
33
+ --lux-z-skip-link: 10000;
34
+ }
35
+
36
+ // =============================================================================
37
+ // Positioning
38
+ // =============================================================================
39
+
40
+ $positions: static, relative, absolute, fixed, sticky;
41
+ @each $pos in $positions {
42
+ .lux-#{$pos} {
43
+ position: $pos;
44
+ }
45
+ }
46
+
47
+ // Inset (top, right, bottom, left)
48
+ $inset-values: (
49
+ "0": 0,
50
+ "auto": auto
51
+ );
52
+ @each $key, $val in $inset-values {
53
+ .lux-inset-#{$key} {
54
+ inset: $val;
55
+ }
56
+ .lux-top-#{$key} {
57
+ top: $val;
58
+ }
59
+ .lux-right-#{$key} {
60
+ right: $val;
61
+ }
62
+ .lux-bottom-#{$key} {
63
+ bottom: $val;
64
+ }
65
+ .lux-left-#{$key} {
66
+ left: $val;
67
+ }
68
+ }
69
+
70
+ // =============================================================================
71
+ // Z-Index
72
+ // =============================================================================
73
+
74
+ $z-indices: (
75
+ "auto": auto,
76
+ "0": 0,
77
+ "1": 1,
78
+ "5": 5,
79
+ "8": 8,
80
+ "9": 9,
81
+ "10": 10,
82
+ "100": 100,
83
+ "199": 199,
84
+ "200": 200,
85
+ "500": 500,
86
+ "1000": 1000,
87
+ "10000": 10000
88
+ );
89
+ @each $key, $val in $z-indices {
90
+ .lux-z-#{$key} {
91
+ z-index: $val;
92
+ }
93
+ }
94
+
95
+ // =============================================================================
96
+ // Overflow
97
+ // =============================================================================
98
+ // Note: .lux-overflow-y-hidden and .lux-overflow-y-auto are also defined in
99
+ // _luxstyles.scss. The definitions below are identical and take precedence
100
+ // due to cascade order.
101
+
102
+ $overflow-values: auto, hidden, visible, scroll;
103
+ @each $val in $overflow-values {
104
+ .lux-overflow-#{$val} {
105
+ overflow: $val;
106
+ }
107
+ .lux-overflow-x-#{$val} {
108
+ overflow-x: $val;
109
+ }
110
+ .lux-overflow-y-#{$val} {
111
+ overflow-y: $val;
112
+ }
113
+ }
114
+
115
+ // =============================================================================
116
+ // Border
117
+ // =============================================================================
118
+
119
+ .lux-border-0 {
120
+ border: none;
121
+ }
122
+
123
+ $border-radius: (
124
+ "none": 0,
125
+ "xs": var(--lux-theme-radius-xs),
126
+ "sm": var(--lux-theme-radius-sm),
127
+ "md": var(--lux-theme-radius-md),
128
+ "lg": var(--lux-theme-radius-lg),
129
+ "xl": var(--lux-theme-radius-xl),
130
+ "xxl": var(--lux-theme-radius-xxl),
131
+ "full": 50%,
132
+ "theme": var(--lux-theme-app-border-radius)
133
+ );
134
+ @each $key, $val in $border-radius {
135
+ .lux-rounded-#{$key} {
136
+ border-radius: $val;
137
+ }
138
+ }
139
+
140
+ // =============================================================================
141
+ // Box Shadow
142
+ // =============================================================================
143
+
144
+ .lux-shadow-none {
145
+ box-shadow: none;
146
+ }
147
+
148
+ // =============================================================================
149
+ // Cursor
150
+ // =============================================================================
151
+
152
+ .lux-cursor-pointer {
153
+ cursor: pointer;
154
+ }
155
+
156
+ .lux-cursor-default {
157
+ cursor: default;
158
+ }
159
+
160
+ // =============================================================================
161
+ // Pointer Events
162
+ // =============================================================================
163
+
164
+ .lux-pointer-events-none {
165
+ pointer-events: none;
166
+ }
167
+
168
+ .lux-pointer-events-auto {
169
+ pointer-events: auto;
170
+ }
171
+
172
+ // =============================================================================
173
+ // Typography
174
+ // =============================================================================
175
+
176
+ // Font size
177
+ $font-sizes: (
178
+ "xs": var(--lux-theme-font-size-xs),
179
+ "sm": var(--lux-theme-font-size-sm),
180
+ "base": var(--lux-theme-font-size-md),
181
+ "lg": var(--lux-theme-font-size-lg),
182
+ "xl": var(--lux-theme-font-size-xl),
183
+ "2xl": var(--lux-theme-font-size-2xl)
184
+ );
185
+ @each $key, $val in $font-sizes {
186
+ .lux-text-#{$key} {
187
+ font-size: $val;
188
+ }
189
+ }
190
+
191
+ // Font weight
192
+ $font-weights: (
193
+ "light": 300,
194
+ "normal": 400,
195
+ "medium": 500,
196
+ "semibold": 600,
197
+ "bold": 700
198
+ );
199
+ @each $key, $val in $font-weights {
200
+ .lux-font-#{$key} {
201
+ font-weight: $val;
202
+ }
203
+ }
204
+
205
+ // Font family
206
+ .lux-font-headline {
207
+ font-family: var(--lux-theme-app-headline-font, inherit);
208
+ }
209
+
210
+ .lux-font-body {
211
+ font-family: var(--lux-theme-app-font-family, inherit);
212
+ }
213
+
214
+ // Line height
215
+ $line-heights: (
216
+ "none": 1,
217
+ "tight": 1.2,
218
+ "normal": 1.5,
219
+ "relaxed": 1.75
220
+ );
221
+ @each $key, $val in $line-heights {
222
+ .lux-leading-#{$key} {
223
+ line-height: $val;
224
+ }
225
+ }
226
+
227
+ // White space
228
+ .lux-whitespace-nowrap {
229
+ white-space: nowrap;
230
+ }
231
+
232
+ .lux-whitespace-normal {
233
+ white-space: normal;
234
+ }
235
+
236
+ // =============================================================================
237
+ // Background
238
+ // =============================================================================
239
+
240
+ .lux-bg-transparent {
241
+ background: transparent;
242
+ }
243
+
244
+ .lux-bg-header {
245
+ background-color: var(--lux-theme-app-header-bg);
246
+ }
247
+
248
+ .lux-bg-content {
249
+ background-color: var(--lux-theme-app-content-bg);
250
+ }
251
+
252
+ .lux-bg-footer {
253
+ background-color: var(--lux-theme-app-footer-bg);
254
+ }
255
+
256
+ .lux-bg-primary {
257
+ background-color: var(--lux-theme-primary-color);
258
+ }
259
+
260
+ // =============================================================================
261
+ // Text Color
262
+ // =============================================================================
263
+
264
+ .lux-text-primary {
265
+ color: var(--lux-theme-primary-color);
266
+ }
267
+
268
+ .lux-text-dark {
269
+ color: var(--lux-theme-dark-primary-text);
270
+ }
271
+
272
+ .lux-text-light {
273
+ color: var(--lux-theme-light-primary-text);
274
+ }
275
+
276
+ .lux-text-secondary {
277
+ color: var(--lux-theme-dark-secondary-text);
278
+ }
279
+
280
+ .lux-text-disabled {
281
+ color: var(--lux-theme-dark-disabled-text);
282
+ }
283
+
284
+ // =============================================================================
285
+ // Outline
286
+ // =============================================================================
287
+
288
+ .lux-outline-none {
289
+ outline: none;
290
+ }
291
+
292
+ // =============================================================================
293
+ // Transition
294
+ // =============================================================================
295
+
296
+ .lux-transition-none {
297
+ transition: none;
298
+ }
299
+
300
+ // =============================================================================
301
+ // Skip-Link
302
+ // =============================================================================
303
+ // Visually hidden until focused; reveals as a high-contrast pill above all content.
304
+ // Pair with `lux-sr-only` on the element so it stays hidden by default.
305
+
306
+ .lux-skip-link {
307
+ &:focus-visible {
308
+ position: fixed;
309
+ top: var(--lux-theme-spacing-sm);
310
+ left: var(--lux-theme-spacing-sm);
311
+ width: auto;
312
+ height: auto;
313
+ padding: var(--lux-theme-spacing-sm) var(--lux-theme-spacing-md);
314
+ background-color: var(--lux-theme-primary-20);
315
+ color: var(--lux-theme-primary-100);
316
+ font-size: var(--lux-theme-font-size-sm);
317
+ font-weight: 600;
318
+ border-radius: var(--lux-theme-radius-sm);
319
+ z-index: var(--lux-z-skip-link);
320
+ outline: 3px solid var(--lux-theme-custom-lightblue);
321
+ }
322
+ }
323
+
324
+ // =============================================================================
325
+ // Interaction
326
+ // =============================================================================
327
+ // Applies the LUX hover/active/focus pattern to custom interactive elements
328
+ // (e.g. <a> or <button> without lux-button).
329
+ // Use together with .lux-rounded-theme for consistent styling.
330
+
331
+ .lux-interactive {
332
+ &:hover:not(:focus-visible) {
333
+ background-color: var(--lux-theme-hover-color);
334
+ }
335
+
336
+ &:active {
337
+ background-color: var(--lux-theme-selected-bg-color);
338
+ }
339
+
340
+ &:focus-visible {
341
+ @include focus.lux-button-focus;
342
+ }
343
+ }
@@ -3,6 +3,11 @@
3
3
 
4
4
  // Accordion
5
5
  lux-accordion {
6
+ .mat-accordion {
7
+ display: block;
8
+ padding: var(--lux-theme-accordion-panel-container-elevation-shadow-width);
9
+ }
10
+
6
11
  @include mat.expansion-overrides(
7
12
  (
8
13
  container-text-color: var(--lux-theme-dark-primary-text)
@@ -20,7 +25,7 @@ lux-accordion {
20
25
  header-description-color: var(--lux-theme-accordion-header-color-on-primary),
21
26
  header-indicator-color: var(--lux-theme-accordion-header-color-on-primary),
22
27
  header-hover-state-layer-color: var(--lux-theme-accordion-header-hover-color-on-primary),
23
- header-focus-state-layer-color: var(--lux-theme-accordion-header-focus-color-on-primary),
28
+ header-focus-state-layer-color: var(--lux-theme-accordion-header-focus-color-on-primary)
24
29
  )
25
30
  );
26
31
  }
@@ -36,7 +41,7 @@ lux-accordion {
36
41
  header-description-color: var(--lux-theme-accordion-header-color-on-accent),
37
42
  header-indicator-color: var(--lux-theme-accordion-header-color-on-accent),
38
43
  header-hover-state-layer-color: var(--lux-theme-accordion-header-hover-color-on-accent),
39
- header-focus-state-layer-color: var(--lux-theme-accordion-header-focus-color-on-accent),
44
+ header-focus-state-layer-color: var(--lux-theme-accordion-header-focus-color-on-accent)
40
45
  )
41
46
  );
42
47
  }
@@ -89,7 +94,8 @@ lux-panel {
89
94
  header-disabled-state-text-color: var(--lux-theme-dark-disabled-text),
90
95
  header-hover-state-layer-color: var(--lux-theme-accordion-header-hover-color-on-neutral),
91
96
  container-shape: var(--lux-theme-app-border-radius),
92
- container-elevation-shadow: 0 0 0 1px var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant))
97
+ container-elevation-shadow: 0 0 0 var(--lux-theme-accordion-panel-container-elevation-shadow-width)
98
+ var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant))
93
99
  )
94
100
  );
95
101
 
@@ -134,4 +140,17 @@ lux-panel {
134
140
  @include luxfocus.focus-dark-mixin-inline;
135
141
  }
136
142
  }
143
+
144
+ // Ränder für Panels außerhalb von Accordions
145
+ &:not(lux-accordion lux-panel) {
146
+ padding-left: var(--lux-theme-accordion-panel-container-elevation-shadow-width);
147
+ padding-right: var(--lux-theme-accordion-panel-container-elevation-shadow-width);
148
+
149
+ &:first-of-type {
150
+ padding-top: var(--lux-theme-accordion-panel-container-elevation-shadow-width);
151
+ }
152
+ &:last-of-type {
153
+ padding-bottom: var(--lux-theme-accordion-panel-container-elevation-shadow-width);
154
+ }
155
+ }
137
156
  }
@@ -1,5 +1,6 @@
1
1
  @use "@angular/material" as mat;
2
2
  @use "../common/luxfocus";
3
+ @use "../common/luxbreakpoints" as bp;
3
4
 
4
5
  $margin-right-icon: 20px;
5
6
 
@@ -47,11 +48,13 @@ lux-card {
47
48
  }
48
49
 
49
50
  .lux-card-icon-container {
51
+ margin-top: 4px;
50
52
  margin-right: 10px;
51
53
  order: 5;
52
54
  }
53
55
 
54
56
  .lux-card-info-container {
57
+ margin-top: 4px;
55
58
  order: 15;
56
59
 
57
60
  // Damit die Info-Komponente immer rechtsbündig im Card-Header ist, auch wenn der Titel oder Subtitle kurz sind.
@@ -110,11 +113,31 @@ lux-card {
110
113
  // damit es mit den anderen Paddings innerhalb der Card (wie z.B. Header und Content) übereinstimmt.
111
114
  .lux-card-actions {
112
115
  padding: var(--lux-theme-card-padding);
116
+
117
+ @include bp.xs {
118
+ lux-card-actions {
119
+ flex-direction: column;
120
+ }
121
+
122
+ .lux-card-actions-container {
123
+ flex-direction: column;
124
+ align-items: stretch;
125
+
126
+ lux-button {
127
+ display: block;
128
+ width: 100%;
129
+
130
+ button.lux-button {
131
+ width: 100%;
132
+ }
133
+ }
134
+ }
135
+ }
113
136
  }
114
137
  }
115
138
 
116
139
  .lux-card {
117
- &[class~="lux-cursor"]:hover {
140
+ &[class~="lux-cursor-pointer"]:hover {
118
141
  background-image: var(--lux-theme-app-gradient-reverse);
119
142
  background-color: #ffffff;
120
143
  border-color: var(--lux-theme-dark-primary-text);
@@ -126,7 +149,7 @@ lux-card {
126
149
  }
127
150
  }
128
151
 
129
- &[class~="lux-cursor"]:focus-visible {
152
+ &[class~="lux-cursor-pointer"]:focus-visible {
130
153
  @include luxfocus.focus-dark-mixin-inline;
131
154
  }
132
155
  }
@@ -13,6 +13,26 @@
13
13
  color: var(--lux-theme-dark-secondary-text);
14
14
  }
15
15
 
16
+ @mixin form-error-icon {
17
+ color: var(--mat-sys-on-error-container);
18
+ mat-icon.mat-icon {
19
+ box-sizing: border-box;
20
+ }
21
+ }
22
+
23
+ @mixin form-error-label {
24
+ display: flex;
25
+ flex: 0 1 auto;
26
+ background-color: var(--lux-theme-form-error-msg-background);
27
+ border-radius: 4px;
28
+ padding-right: 2px;
29
+ color: var(--mat-sys-on-error-container) !important;
30
+ box-shadow:
31
+ -18px 0px 0 0 var(--lux-theme-form-error-msg-background),
32
+ -18px -1px 0 0 var(--lux-theme-form-error-msg-background),
33
+ 0 -1px 0 0 var(--lux-theme-form-error-msg-background);
34
+ }
35
+
16
36
  @mixin lux-form-control-min-height($min-height) {
17
37
  input,
18
38
  mat-select,
@@ -73,6 +93,7 @@ lux-input-ac,
73
93
  lux-select-ac,
74
94
  lux-lookup-combobox-ac,
75
95
  lux-datepicker-ac,
96
+ lux-timepicker,
76
97
  lux-datetimepicker-ac,
77
98
  lux-file-input-ac,
78
99
  lux-textarea-ac {
@@ -227,21 +248,10 @@ lux-form-control-wrapper {
227
248
  }
228
249
  .lux-form-control-misc-authentic {
229
250
  .lux-alert-icon {
230
- color: var(--mat-sys-on-error-container);
231
- mat-icon.mat-icon {
232
- box-sizing: border-box;
233
- }
251
+ @include form-error-icon;
234
252
  }
235
253
  .mat-mdc-form-field-error {
236
- display: flex;
237
- background-color: var(--lux-theme-form-error-msg-background);
238
- border-radius: 4px;
239
- padding-right: 2px;
240
- color: var(--mat-sys-on-error-container) !important;
241
- box-shadow:
242
- -18px 0px 0 0 var(--lux-theme-form-error-msg-background),
243
- -18px -1px 0 0 var(--lux-theme-form-error-msg-background),
244
- 0 -1px 0 0 var(--lux-theme-form-error-msg-background);
254
+ @include form-error-label;
245
255
  }
246
256
  }
247
257
  }
@@ -274,3 +284,17 @@ lux-form-control-wrapper {
274
284
  transition: background-color 5000s ease-in-out 0s;
275
285
  }
276
286
  }
287
+
288
+ .lux-form-error-container {
289
+ display: flex;
290
+ flex: 0 1 auto;
291
+ font-size: 0.75rem;
292
+ }
293
+
294
+ .lux-form-error-icon {
295
+ @include form-error-icon;
296
+ }
297
+
298
+ .lux-form-error-label {
299
+ @include form-error-label;
300
+ }
@@ -78,7 +78,7 @@ lux-list {
78
78
  }
79
79
 
80
80
  &:not(.lux-list-item-selected) {
81
- mat-card[class~="lux-cursor"]:not([class*="mat-elevation-z"]) {
81
+ mat-card[class~="lux-cursor-pointer"]:not([class*="mat-elevation-z"]) {
82
82
  @include luxfocus.lux-selectable-mixin;
83
83
 
84
84
  &:hover {
@@ -139,6 +139,7 @@ lux-menu {
139
139
  }
140
140
 
141
141
  .lux-menu-item-icon {
142
+ display: inline-block;
142
143
  align-self: center;
143
144
  vertical-align: middle;
144
145
  width: var(--lux-theme-menu-item-icon-size);
@@ -39,6 +39,17 @@ lux-message-box {
39
39
  padding: var(--lux-theme-outline-width) 24px;
40
40
  border-radius: 4px;
41
41
 
42
+ transition: opacity 300ms ease-out;
43
+
44
+ @starting-style {
45
+ opacity: 0;
46
+ }
47
+
48
+ &.lux-message-closing {
49
+ opacity: 0;
50
+ transition: opacity 300ms ease-in;
51
+ }
52
+
42
53
  &.lux-messagebox-white {
43
54
  // da im Theme authentic der Schatten entfernt wurde, muss eine Weiße Messagebox eine Border erhalten.
44
55
  border: 1px solid var(--lux-theme-primary-color);
@@ -0,0 +1,7 @@
1
+ @use "@angular/material" as mat;
2
+
3
+ :root {
4
+ @include mat.paginator-overrides((
5
+ container-background-color: transparent,
6
+ ));
7
+ }
@@ -20,6 +20,7 @@ $componentColorNames: ("red", "green", "purple", "blue", "gray", "orange", "yell
20
20
  @include mat.snack-bar-overrides(
21
21
  (
22
22
  supporting-text-size: 1rem,
23
+ supporting-text-line-height: 1.5rem,
23
24
  supporting-text-weight: 600
24
25
  )
25
26
  );
@@ -12,7 +12,7 @@ lux-stepper {
12
12
  line-color: var(--lux-theme-app-border-color),
13
13
  header-label-text-size: 1rem,
14
14
  header-selected-state-label-text-size: 1rem,
15
- header-error-state-label-text-size: 1rem,
15
+ header-error-state-label-text-size: 1rem
16
16
  )
17
17
  );
18
18
 
@@ -30,6 +30,16 @@ lux-stepper {
30
30
  .mat-vertical-stepper-header {
31
31
  margin: 8px 8px 0 8px;
32
32
  }
33
+
34
+ .mat-horizontal-stepper-header .mat-step-icon,
35
+ .mat-vertical-stepper-header .mat-step-icon {
36
+ margin-right: 0;
37
+ }
38
+
39
+ lux-step-header div {
40
+ margin-left: 0.75rem;
41
+ }
42
+
33
43
  mat-step-header {
34
44
  margin: var(--lux-theme-outline-width);
35
45
 
@@ -44,6 +54,7 @@ lux-stepper {
44
54
 
45
55
  .mat-step-label {
46
56
  height: 100%;
57
+ min-width: unset;
47
58
  display: flex;
48
59
  align-items: center;
49
60
  position: relative;