@ihk-gfi/lux-components-theme 13.0.0 → 14.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.
Files changed (49) hide show
  1. package/README.md +9 -0
  2. package/package.json +7 -7
  3. package/prebuilt-themes/luxtheme-authentic-min.css +1 -0
  4. package/prebuilt-themes/luxtheme-authentic-min.css.map +1 -0
  5. package/prebuilt-themes/{luxtheme-orange.css → luxtheme-authentic.css} +7303 -5035
  6. package/prebuilt-themes/luxtheme-authentic.css.map +1 -0
  7. package/prebuilt-themes/luxtheme-blue-min.css +1 -1
  8. package/prebuilt-themes/luxtheme-blue-min.css.map +1 -1
  9. package/prebuilt-themes/luxtheme-blue.css +4734 -3248
  10. package/prebuilt-themes/luxtheme-blue.css.map +1 -1
  11. package/prebuilt-themes/luxtheme-green-min.css +1 -1
  12. package/prebuilt-themes/luxtheme-green-min.css.map +1 -1
  13. package/prebuilt-themes/luxtheme-green.css +4920 -3449
  14. package/prebuilt-themes/luxtheme-green.css.map +1 -1
  15. package/src/authentic/_custom.scss +1101 -0
  16. package/src/authentic/_luxcommon.scss +128 -0
  17. package/src/authentic/_luxpalette.scss +106 -0
  18. package/src/authentic/luxtheme.scss +103 -0
  19. package/src/base/_luxSvgIcons.scss +5 -0
  20. package/src/base/_luxcommon.scss +98 -0
  21. package/src/base/_luxcomponents.scss +422 -190
  22. package/src/base/_luxelevations.scss +8 -10
  23. package/src/base/_luxfocus.scss +276 -107
  24. package/src/base/_luxpalette.scss +9 -0
  25. package/src/base/_luxstyles.scss +132 -116
  26. package/src/base/_luxtheme.scss +10 -6
  27. package/src/base/components/_luxAppHeaderAc.scss +187 -0
  28. package/src/base/components/_luxFormControlWrapper.scss +174 -0
  29. package/src/base/components/_luxFormControlsAuthentic.scss +357 -0
  30. package/src/base/components/_luxLinkPlain.scss +61 -0
  31. package/src/base/components/_luxMasterDetailAc.scss +206 -0
  32. package/src/base/components/_luxTileAc.scss +63 -0
  33. package/src/blue/_custom.scss +103 -1
  34. package/src/blue/_luxcommon.scss +13 -2
  35. package/src/blue/_luxpalette.scss +4 -3
  36. package/src/blue/luxtheme.scss +102 -10
  37. package/src/green/_custom.scss +201 -104
  38. package/src/green/_luxcommon.scss +16 -5
  39. package/src/green/_luxpalette.scss +4 -3
  40. package/src/green/luxtheme.scss +103 -13
  41. package/src/public/global.scss +6 -10
  42. package/prebuilt-themes/luxtheme-orange-min.css +0 -1
  43. package/prebuilt-themes/luxtheme-orange-min.css.map +0 -1
  44. package/prebuilt-themes/luxtheme-orange.css.map +0 -1
  45. package/src/base/_luxicons.scss +0 -2
  46. package/src/orange/_custom.scss +0 -66
  47. package/src/orange/_luxcommon.scss +0 -90
  48. package/src/orange/_luxpalette.scss +0 -106
  49. package/src/orange/luxtheme.scss +0 -10
@@ -1,3 +1,11 @@
1
+ @use "sass:map";
2
+ @use "@angular/material" as mat;
3
+ @use "../base/luxfocus";
4
+ @use "../base/luxelevations";
5
+ @use "../public/global";
6
+ @use "luxcommon";
7
+ @use "luxpalette";
8
+
1
9
  $button-font-size: 22px;
2
10
  $light-green: #E4F1E4;
3
11
  $light-gray: #EFF3F6;
@@ -6,15 +14,15 @@ $dark-green: #2E8533;
6
14
 
7
15
  body {
8
16
  color: #003366;
9
- font-family: $app-font-family;
17
+ font-family: luxcommon.$app-font-family;
10
18
  }
11
19
 
12
- p, div {
13
- font-family: $app-font-family;
20
+ p, div, span {
21
+ font-family: luxcommon.$app-font-family;
14
22
  }
15
23
 
16
24
  h1, h2, h3, h4, h5, h6 {
17
- font-family: "Korb", $app-font-family;
25
+ font-family: Korb, luxcommon.$app-font-family;
18
26
  }
19
27
 
20
28
  lux-card .mat-card {
@@ -51,14 +59,14 @@ lux-app-footer {
51
59
 
52
60
  lux-app-header {
53
61
  .lux-app-header {
54
- background-color: $app-header-bg;
62
+ background-color: luxcommon.$app-header-bg;
55
63
 
56
64
  .lux-show-border {
57
65
  border-left: 1px solid #003366;
58
66
  }
59
67
 
60
68
  .lux-header-title {
61
- color: map-get($lux-palette-primary, 500);
69
+ color: map.get(luxpalette.$lux-palette-primary, 500);
62
70
  }
63
71
 
64
72
  div.lux-header-action {
@@ -66,55 +74,55 @@ lux-app-header {
66
74
  button {
67
75
 
68
76
  &:not(.mat-accent):not(.mat-warn):not(.mat-primary):not(.mat-button-disabled) {
69
- color: map-get($lux-palette-primary, 500);
77
+ color: map.get(luxpalette.$lux-palette-primary, 500);
70
78
  }
71
79
 
72
80
  &:not(.mat-accent):not(.mat-warn):not(.mat-primary).mat-button-disabled {
73
- color: $dark-disabled-text;
81
+ color: luxcommon.$dark-disabled-text;
74
82
  }
75
83
 
76
84
  &.mat-accent:not(.mat-button-disabled) {
77
- color: map-get($lux-palette_accent, A100);
85
+ color: map.get(luxpalette.$lux-palette_accent, A100);
78
86
  }
79
87
 
80
88
  &.mat-warn:not(.mat-button-disabled) {
81
- color: map-get($lux-palette_warn, A100);
89
+ color: map.get(luxpalette.$lux-palette_warn, A100);
82
90
  }
83
91
 
84
92
  &.mat-primary:not(.mat-button-disabled) {
85
- color: map-get($lux-palette_primary, A100);
93
+ color: map.get(luxpalette.$lux-palette_primary, A100);
86
94
  }
87
95
  }
88
96
  }
89
97
  }
90
98
 
91
99
  button:not(.mat-primary):not(.mat-warn):not(.mat-accent):not(.lux-button-rounded) {
92
- color: map-get($lux-palette-primary, 500);
100
+ color: map.get(luxpalette.$lux-palette-primary, 500);
93
101
  }
94
102
 
95
103
  .lux-header-user {
96
104
  .lux-header-user-short {
97
105
  > span {
98
- color: map-get($lux-palette_primary, 500);
99
- background-color: map-get(map-get($lux-palette-primary, contrast), 500);
106
+ color: map.get(luxpalette.$lux-palette_primary, 500);
107
+ background-color: map.get(map.get(luxpalette.$lux-palette-primary, contrast), 500);
100
108
  }
101
109
  }
102
110
  }
103
111
  }
104
112
 
105
113
  .lux-side-nav-header, .lux-side-nav-footer {
106
- color: map-get($lux-palette_primary, A400);
114
+ color: map.get(luxpalette.$lux-palette_primary, A400);
107
115
  }
108
116
 
109
117
  .lux-header-side-nav {
110
118
  .lux-side-nav-trigger-active {
111
- background-color: $dark-focused;
119
+ background-color: luxcommon.$dark-focused;
112
120
  }
113
121
  }
114
122
 
115
123
  .lux-side-nav .lux-side-nav-content {
116
124
  lux-button, .lux-menu-item, .lux-action-nav-menu lux-button {
117
- color: map-get($lux-palette_primary, 500);
125
+ color: map.get(luxpalette.$lux-palette_primary, 500);
118
126
  }
119
127
  }
120
128
  }
@@ -122,7 +130,7 @@ lux-app-header {
122
130
  lux-app-header {
123
131
  .lux-app-header-title-label {
124
132
  &:focus {
125
- @include focus-dark-mixin;
133
+ @include luxfocus.focus-dark-mixin;
126
134
  }
127
135
 
128
136
  &:hover {
@@ -133,68 +141,68 @@ lux-app-header {
133
141
 
134
142
  & .lux-side-nav-trigger button:not([disabled]) {
135
143
  &:focus {
136
- @include focus-dark-mixin;
144
+ @include luxfocus.focus-dark-mixin;
137
145
  }
138
146
 
139
147
  &:hover {
140
- background-color: $lux-hover-color !important;
148
+ background-color: luxcommon.$lux-hover-color !important;
141
149
  color: #003366 !important;
142
150
  }
143
151
 
144
152
  &:hover lux-icon {
145
- background-color: $lux-hover-color;
153
+ background-color: luxcommon.$lux-hover-color;
146
154
  color: #003366 !important;
147
155
  }
148
156
  }
149
157
 
150
158
  & .lux-header-action button:not([disabled]) {
151
159
  &:focus {
152
- @include focus-dark-mixin;
160
+ @include luxfocus.focus-dark-mixin;
153
161
  }
154
162
 
155
163
  color: #003366 !important;
156
164
 
157
165
  &.mat-accent lux-icon {
158
- color: map-get($lux-palette_accent, 500) !important;
166
+ color: map.get(luxpalette.$lux-palette_accent, 500) !important;
159
167
  }
160
168
 
161
169
  &.mat-warn lux-icon {
162
- color: map-get($lux-palette_warn, 500) !important;
170
+ color: map.get(luxpalette.$lux-palette_warn, 500) !important;
163
171
  }
164
172
 
165
173
  &.mat-primary lux-icon {
166
- color: map-get($lux-palette_primary, 500) !important;
174
+ color: map.get(luxpalette.$lux-palette_primary, 500) !important;
167
175
  }
168
176
 
169
177
  &:hover {
170
178
  color: #003366 !important;
171
- background-color: $lux-hover-color !important;
179
+ background-color: luxcommon.$lux-hover-color !important;
172
180
 
173
181
  &.mat-accent lux-icon {
174
- color: map-get($lux-palette_accent, 500) !important;
182
+ color: map.get(luxpalette.$lux-palette_accent, 500) !important;
175
183
  }
176
184
 
177
185
  &.mat-warn lux-icon {
178
- color: map-get($lux-palette_warn, 500) !important;
186
+ color: map.get(luxpalette.$lux-palette_warn, 500) !important;
179
187
  }
180
188
 
181
189
  &.mat-primary lux-icon {
182
- color: map-get($lux-palette_primary, 500) !important;
190
+ color: map.get(luxpalette.$lux-palette_primary, 500) !important;
183
191
  }
184
192
  }
185
193
  }
186
194
 
187
195
  & lux-image:focus {
188
- @include focus-dark-mixin;
196
+ @include luxfocus.focus-dark-mixin;
189
197
  }
190
198
 
191
199
  & lux-icon:focus {
192
- @include focus-dark-mixin;
200
+ @include luxfocus.focus-dark-mixin;
193
201
  }
194
202
 
195
203
  lux-menu-trigger button.lux-right-nav-trigger {
196
204
  &:focus {
197
- @include focus-dark-mixin;
205
+ @include luxfocus.focus-dark-mixin;
198
206
  }
199
207
 
200
208
  &:hover {
@@ -205,6 +213,10 @@ lux-app-header {
205
213
  }
206
214
  }
207
215
  }
216
+
217
+ .lux-menu-trigger-default .mat-button-wrapper {
218
+ display: block;
219
+ }
208
220
  }
209
221
 
210
222
  /*
@@ -213,51 +225,78 @@ lux-app-header {
213
225
  lux-button button.lux-button {
214
226
 
215
227
  font-weight: normal !important;
228
+ font-family: luxcommon.$app-font-family;
216
229
  align-items: center;
217
230
 
218
- &.mat-button, &.mat-raised-button {
231
+ &.mat-button, &.mat-raised-button, &.mat-flat-button, &.mat-stroked-button {
219
232
  border-radius: 18px;
220
- height: $button-height;
233
+ height: luxcommon.$button-height;
221
234
  font-size: $button-font-size;
222
- margin-left: $outline-width;
223
- margin-right: $outline-width;
224
235
  }
225
236
 
226
237
  &.mat-button.mat-button-disabled,
227
238
  &.mat-raised-button.mat-button-disabled,
228
- &.mat-fab.mat-button-disabled {
229
- color: $dark-disabled-text;
239
+ &.mat-fab.mat-button-disabled,
240
+ &.mat-stroked-button.mat-button-disabled,
241
+ &.mat-flat-button.mat-button-disabled {
242
+ color: luxcommon.$dark-disabled-text;
230
243
  }
231
244
 
232
- &.mat-raised-button.mat-accent:not(.mat-button-disabled), &.mat-fab.mat-accent:not(.mat-button-disabled) {
233
- color: map-get($lux-palette-primary, 500);
245
+ &.mat-raised-button.mat-accent:not(.mat-button-disabled),
246
+ &.mat-flat-button.mat-accent:not(.mat-button-disabled),
247
+ &.mat-fab.mat-accent:not(.mat-button-disabled) {
248
+ color: map.get(luxpalette.$lux-palette-primary, 500);
234
249
  }
235
250
 
236
251
  &.lux-icon-button {
237
252
  border-radius: 18px;
238
- height: $button-height;
253
+ height: luxcommon.$button-height;
239
254
 
240
- & lux-icon {
241
- line-height: 1;
242
- i {
243
- font-size: 1em;
255
+ & lux-icon:not(.lux-button-icon-round) {
256
+ line-height: 0.5;
257
+
258
+ i.lux-fa-icon {
259
+ font-size: 1em !important;
244
260
  }
245
- mat-icon {
261
+ mat-icon.mat-icon.lux-material-icon:not(.lux-lx-icon, .lux-lx-icon-no-size) {
246
262
  font-size: 1.2em !important;
263
+ padding: 0px !important;
264
+ height: unset !important;
265
+ width: unset !important;
247
266
  }
248
267
  }
268
+ mat-icon.mat-icon.lux-lx-icon:not(.lux-fa-icon, .lux-material-icon),
269
+ mat-icon.mat-icon.lux-lx-icon-no-size:not(.lux-fa-icon, .lux-material-icon) {
270
+ line-height: 0.5;
271
+ height: 22px;
272
+ width: 22px;
273
+ }
249
274
  }
250
275
 
251
276
  &.lux-button-rounded {
252
277
  border-radius: 16px !important;
253
- height: $button-fav-height;
254
- width: $button-fav-height;
278
+ height: luxcommon.$button-fav-height;
279
+ width: luxcommon.$button-fav-height;
255
280
  font-size: $button-font-size;
256
- & lux-icon {
281
+ .mat-button-wrapper {
282
+ height: 100%;
283
+ display: inline-flex;
284
+ align-items: center;
257
285
  line-height: 1;
286
+ }
287
+
288
+ & lux-icon.lux-button-icon-round {
289
+ line-height: 1;
290
+ height: 22px;
291
+ width: 22px;
258
292
  i,
259
- mat-icon {
260
- font-size: 1.2em !important;
293
+ mat-icon.mat-icon:not(.lux-lx-icon, .lux-lx-icon-no-size) {
294
+ font-size: 22px !important;
295
+ }
296
+ mat-icon.mat-icon.lux-lx-icon:not(.lux-fa-icon, .lux-material-icon),
297
+ mat-icon.mat-icon.lux-lx-icon-no-size:not(.lux-fa-icon, .lux-material-icon) {
298
+ height: 22px;
299
+ width: 22px;
261
300
  }
262
301
  }
263
302
  }
@@ -313,13 +352,13 @@ lux-tile {
313
352
  mat-card[class~=lux-cursor] {
314
353
 
315
354
  &:focus {
316
- @include focus-dark-mixin;
355
+ @include luxfocus.focus-dark-mixin;
317
356
  }
318
357
 
319
358
  &:hover {
320
359
  background-color: white !important;
321
360
  // farbiger Schatten beim Hover
322
- @include mat-elevation(2, $dark-green, 1);
361
+ @include mat.elevation(2, $dark-green, 1);
323
362
 
324
363
  h2 {
325
364
  color: #56bd66;
@@ -335,7 +374,7 @@ lux-tile {
335
374
  .lux-badge-notification {
336
375
 
337
376
  &.mat-badge:not(.mat-badge-disabled).mat-badge-accent .mat-badge-content {
338
- background-color: map-get($lux-palette_accent, 500);
377
+ background-color: map.get(luxpalette.$lux-palette_accent, 500);
339
378
  }
340
379
 
341
380
  }
@@ -361,26 +400,26 @@ lux-checkbox, lux-toggle, lux-radio, lux-slider {
361
400
  .lux-form-control:not(.lux-form-control-disabled), .lux-form-control:not(.lux-form-control-disabled).lux-focused {
362
401
  .lux-form-control-label {
363
402
  > * {
364
- color: $dark-secondary-text;
403
+ color: luxcommon.$dark-secondary-text;
365
404
  }
366
405
  }
367
406
  }
368
407
  }
369
408
 
370
409
  .mat-select-value {
371
- color: $dark-secondary-text;
410
+ color: luxcommon.$dark-secondary-text;
372
411
  }
373
412
 
374
- lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datepicker, lux-datetimepicker, lux-chips {
413
+ lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datepicker, lux-datetimepicker, lux-chips, lux-lookup-autocomplete, lux-lookup-combobox {
375
414
  & .lux-form-control {
376
415
  .lux-form-control-label {
377
416
  padding-bottom: $form-control-label-padding-bottom;
378
417
  }
379
418
 
380
419
  .lux-form-control-container {
381
- border: 1px solid $form-border-color;
420
+ border: 1px solid luxcommon.$form-border-color;
382
421
  border-radius: $form-control-border-radius;
383
- padding: $form-control-container-padding;
422
+ padding: luxcommon.$form-control-container-padding;
384
423
 
385
424
  &:after {
386
425
  border-bottom: $form-control-old-border-bottom;
@@ -388,20 +427,20 @@ lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datep
388
427
  }
389
428
 
390
429
  .lux-label, mat-hint, mat-error {
391
- color: $dark-secondary-text;
430
+ color: luxcommon.$dark-secondary-text;
392
431
  }
393
432
  }
394
433
 
395
434
  .lux-form-control-error {
396
435
  .lux-form-control-label {
397
436
  > * {
398
- color: $lux-warn-color !important;
437
+ color: luxpalette.$lux-warn-color !important;
399
438
  }
400
439
  }
401
440
 
402
441
  .lux-form-control-container {
403
- border-color: $lux-selected-border-color !important;
404
- box-shadow: 0 0 0 2px $lux-warn-color, 0 0 4px 2px $lux-warn-color;
442
+ border-color: luxcommon.$lux-selected-border-color !important;
443
+ box-shadow: 0 0 0 2px luxpalette.$lux-warn-color, 0 0 4px 2px luxpalette.$lux-warn-color;
405
444
 
406
445
  &:after {
407
446
  border-bottom: $form-control-old-border-bottom;
@@ -410,17 +449,17 @@ lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datep
410
449
 
411
450
  .lux-form-control-misc {
412
451
  > * {
413
- color: $lux-warn-color !important;
452
+ color: luxpalette.$lux-warn-color !important;
414
453
  }
415
454
  }
416
455
  }
417
456
 
418
457
  .lux-form-control-disabled {
419
458
  .lux-form-control-container {
420
- color: $dark-disabled-text !important;
421
- border: 1px dashed $dark-disabled-text !important;
459
+ color: luxcommon.$dark-disabled-text !important;
460
+ border: 1px dashed luxcommon.$dark-disabled-text !important;
422
461
  border-radius: $form-control-border-radius;
423
- padding: $form-control-container-padding;
462
+ padding: luxcommon.$form-control-container-padding;
424
463
 
425
464
  &:after {
426
465
  border-bottom: $form-control-old-border-bottom;
@@ -431,12 +470,12 @@ lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datep
431
470
  .lux-form-control:not(.lux-form-control-disabled).lux-focused {
432
471
  .lux-form-control-label {
433
472
  > * {
434
- color: $dark-secondary-text;
473
+ color: luxcommon.$dark-secondary-text;
435
474
  }
436
475
  }
437
476
 
438
477
  .lux-form-control-container {
439
- box-shadow: 0 0 0 2px $lux-selected-border-color, 0 0 4px 2px $lux-selected-border-color;
478
+ box-shadow: 0 0 0 2px luxcommon.$lux-selected-border-color, 0 0 4px 2px luxcommon.$lux-selected-border-color;
440
479
 
441
480
  &:after {
442
481
  border-bottom: $form-control-old-border-bottom !important;
@@ -445,8 +484,8 @@ lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datep
445
484
 
446
485
  &.lux-form-control-error {
447
486
  .lux-form-control-container {
448
- border-color: $lux-warn-color !important;
449
- box-shadow: 0 0 0 2px $lux-warn-color, 0 0 4px 2px $lux-warn-color;
487
+ border-color: luxpalette.$lux-warn-color !important;
488
+ box-shadow: 0 0 0 2px luxpalette.$lux-warn-color, 0 0 4px 2px luxpalette.$lux-warn-color;
450
489
  }
451
490
  &:after {
452
491
  border-bottom: $form-control-old-border-bottom !important;
@@ -458,26 +497,35 @@ lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datep
458
497
  .lux-form-control-error {
459
498
  .lux-form-control-label {
460
499
  > * {
461
- color: $lux-warn-color !important;
500
+ color: luxpalette.$lux-warn-color !important;
462
501
  }
463
502
  }
464
503
 
465
504
  .lux-form-control-container {
466
- border-color: $lux-warn-color !important;
505
+ border-color: luxpalette.$lux-warn-color !important;
467
506
  }
468
507
 
469
508
  .lux-form-control-misc {
470
509
  > * {
471
- color: $lux-warn-color !important;
510
+ color: luxpalette.$lux-warn-color !important;
472
511
  }
473
512
  }
474
513
  }
475
514
 
515
+ lux-file-input, lux-file-input-ac {
516
+ lux-button.lux-menu-item,
517
+ lux-button.lux-menu-trigger-default {
518
+ button lux-icon {
519
+ display: inline;
520
+ }
521
+ }
522
+ }
523
+
476
524
  /*
477
525
  * Theming für LUX-Layout-Form-Row
478
526
  */
479
527
  lux-layout-form-row {
480
- lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datepicker, lux-datetimepicker, lux-chips {
528
+ lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datepicker, lux-datetimepicker, lux-chips, lux-lookup-autocomplete, lux-lookup-combobox {
481
529
  & .lux-form-control {
482
530
  margin-right: 0px;
483
531
  margin-left: 0px;
@@ -491,12 +539,12 @@ lux-layout-form-row {
491
539
  lux-checkbox {
492
540
 
493
541
  .mat-checkbox-disabled .mat-checkbox-inner-container{
494
- border: 1px solid $dark-disabled-text;
542
+ border: 1px solid luxcommon.$dark-disabled-text;
495
543
  }
496
544
 
497
545
  .mat-checkbox-inner-container {
498
546
  border-radius: 4px;
499
- border: 1px solid map-get($lux-palette_primary, 500);
547
+ border: 1px solid map.get(luxpalette.$lux-palette_primary, 500);
500
548
  // wegen der Border
501
549
  height: 18px !important;
502
550
  width: 18px !important;
@@ -529,6 +577,10 @@ lux-table {
529
577
  .mat-row:nth-child(odd){
530
578
  background-color:#ffffff;
531
579
  }
580
+ .lux-multiselect-td,
581
+ .lux-multiselect-tf:not(.lux-ignore-multiselect-tf) {
582
+ border-right: 1px solid rgba(0, 0, 0, 0.12);
583
+ }
532
584
  }
533
585
 
534
586
  /*
@@ -537,11 +589,11 @@ lux-table {
537
589
  // Tabs außerhalb einer LUX-Card (z.B. Master-Detail)
538
590
  lux-tabs {
539
591
  .mat-tab-label-active:not(.mat-tab-disabled) {
540
- background-color: $lux-hover-color-for-dark-background;
592
+ background-color: luxcommon.$lux-hover-color-for-dark-background;
541
593
  }
542
594
 
543
595
  div.lux-tab-title {
544
- font-family: "Korb", "Source Code Pro", "Helvetica", "Arial", "sans-serif";
596
+ font-family: Korb, "Source Code Pro", Helvetica, Arial, sans-serif;
545
597
  font-size: 22px;
546
598
  font-weight: 700;
547
599
  }
@@ -550,7 +602,7 @@ lux-tabs {
550
602
  // Tabs innerhalb einer LUX-Card
551
603
  mat-card lux-tabs {
552
604
  .mat-tab-label-active:not(.mat-tab-disabled) {
553
- background-color: $lux-hover-color-for-dark-background;
605
+ background-color: luxcommon.$lux-hover-color-for-dark-background;
554
606
  }
555
607
  }
556
608
 
@@ -560,7 +612,7 @@ mat-card lux-tabs {
560
612
  lux-radio {
561
613
 
562
614
  .mat-radio-outer-circle{
563
- border: 1.5px solid map-get($lux-palette_primary, 500);
615
+ border: 1.5px solid map.get(luxpalette.$lux-palette_primary, 500);
564
616
  }
565
617
 
566
618
  .mat-radio-inner-circle{
@@ -577,37 +629,37 @@ lux-radio {
577
629
 
578
630
  .mat-radio-checked {
579
631
  .mat-radio-outer-circle {
580
- background: map-get($lux-palette_primary, 500);
632
+ background: map.get(luxpalette.$lux-palette_primary, 500);
581
633
  }
582
634
 
583
635
  &.mat-radio-disabled .mat-radio-outer-circle {
584
- background: $dark-disabled-text;
636
+ background: luxcommon.$dark-disabled-text;
585
637
  border: none;
586
638
  }
587
639
 
588
640
  &.mat-radio-disabled label .mat-radio-container {
589
641
  span.mat-radio-inner-circle {
590
- background-color: $dark-disabled-text;
642
+ background-color: luxcommon.$dark-disabled-text;
591
643
  }
592
644
 
593
645
  span.mat-radio-outer-circle {
594
- border-color: $dark-disabled-text;
646
+ border-color: luxcommon.$dark-disabled-text;
595
647
  }
596
648
  }
597
649
  }
598
650
 
599
651
  .mat-radio-disabled label.mat-radio-label {
600
652
  .mat-radio-label-content {
601
- color: $dark-disabled-text;
653
+ color: luxcommon.$dark-disabled-text;
602
654
  }
603
655
 
604
656
  .mat-radio-container {
605
657
  span.mat-radio-inner-circle {
606
- background-color: $dark-disabled-text;
658
+ background-color: luxcommon.$dark-disabled-text;
607
659
  }
608
660
 
609
661
  span.mat-radio-outer-circle {
610
- border-color: $dark-disabled-text;
662
+ border-color: luxcommon.$dark-disabled-text;
611
663
  }
612
664
  }
613
665
  }
@@ -633,10 +685,10 @@ lux-radio {
633
685
 
634
686
  th {
635
687
  font-size: 18px;
636
- color: map-get($lux-palette_primary, 500);
688
+ color: map.get(luxpalette.$lux-palette_primary, 500);
637
689
  }
638
690
 
639
- td.mat-calendar-body-cell {
691
+ td.mat-calendar-body-cell-container {
640
692
 
641
693
  &:after {
642
694
  background-color: white;
@@ -644,24 +696,24 @@ lux-radio {
644
696
 
645
697
  &:hover > div {
646
698
  border-radius: 2px;
647
- background-color:map-get($lux-palette_accent, 300) !important;
648
- color: map-get($lux-palette_primary, 500);
699
+ background-color:map.get(luxpalette.$lux-palette_accent, 300) !important;
700
+ color: map.get(luxpalette.$lux-palette_primary, 500);
649
701
  }
650
702
 
651
- & > div {
703
+ .mat-calendar-body-cell-content.mat-focus-indicator {
704
+
652
705
  border-radius: 2px;
653
- background-color: $light-blue;
654
706
  font-size: 18px;
655
- color: map-get($lux-palette_primary, 500);
707
+ background-color: $light-blue;
708
+ color: map.get(luxpalette.$lux-palette_primary, 500);
709
+
710
+ &.mat-calendar-body-selected {
711
+ background-color: map.get(luxpalette.$lux-palette_primary, 500);
712
+ color: $light-blue;
713
+ }
656
714
  }
657
715
  }
658
716
 
659
- .mat-calendar-body-cell-content.mat-focus-indicator.mat-calendar-body-selected {
660
- border-radius: 2px;
661
- background-color: map-get($lux-palette_primary, 500);
662
- color: $light-blue;
663
- }
664
-
665
717
  // Ausblenden des zusätzlichen Monatslabels
666
718
  .mat-calendar-body-label:not(:last-of-type) {
667
719
  visibility: hidden;
@@ -684,18 +736,18 @@ lux-radio {
684
736
 
685
737
  button, .mat-icon-button {
686
738
  font-size: 18px;
687
- color: map-get($lux-palette_primary, 500);
739
+ color: map.get(luxpalette.$lux-palette_primary, 500);
688
740
 
689
741
  .mat-button-focus-overlay {
690
742
  display: none;
691
743
  }
692
744
 
693
745
  &:focus {
694
- @include focus-dark-mixin;
746
+ @include luxfocus.focus-dark-mixin;
695
747
  }
696
748
 
697
749
  &:hover {
698
- @include lux-hovered-mixin;
750
+ @include luxfocus.lux-hovered-mixin;
699
751
  }
700
752
  }
701
753
  }
@@ -723,3 +775,48 @@ lux-radio {
723
775
  }
724
776
  @include datepicker-content();
725
777
  }
778
+
779
+ /*
780
+ * Theming for LUX-Filter-Form
781
+ */
782
+ lux-filter-form lux-accordion {
783
+ lux-menu {
784
+ .lux-menu-trigger button.mat-button {
785
+ height: 45px;
786
+ }
787
+ }
788
+ .mat-expansion-panel-header.mat-expanded {
789
+ height: 60px !important;
790
+ }
791
+ }
792
+
793
+ /*
794
+ * Theming for LUX-Master-Detail-ac
795
+ */
796
+ .lux-master-detail-ac {
797
+
798
+ .lux-master-header-container-ac lux-button.master-light-toggle {
799
+ right: -23px;
800
+ }
801
+
802
+ .lux-detail-header-ac {
803
+ mat-card.mat-card {
804
+ @include luxelevations.lux-elevation-z0;
805
+ }
806
+ }
807
+
808
+ .lux-master-ac-container {
809
+ padding: 2px 0 2px 2px;
810
+ &.lux-master-closed {
811
+ flex: 1 1 30px !important;
812
+ max-width: 30px !important;
813
+ min-width: 30px !important;
814
+ }
815
+ }
816
+
817
+ lux-master-footer-ac {
818
+ margin-bottom: 4px;
819
+ border: none;
820
+ @include luxelevations.lux-elevation-z2
821
+ }
822
+ }