@ihk-gfi/lux-components-theme 11.13.0 → 14.0.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 (48) hide show
  1. package/README.md +15 -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} +6922 -4856
  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 +4624 -3171
  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 +4655 -3196
  14. package/prebuilt-themes/luxtheme-green.css.map +1 -1
  15. package/src/authentic/_custom.scss +873 -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/_luxcommon.scss +98 -0
  20. package/src/base/_luxcomponents.scss +521 -167
  21. package/src/base/_luxelevations.scss +49 -0
  22. package/src/base/_luxfocus.scss +220 -102
  23. package/src/base/_luxpalette.scss +9 -0
  24. package/src/base/_luxstyles.scss +162 -112
  25. package/src/base/_luxtheme.scss +10 -6
  26. package/src/base/components/_luxAppHeaderAc.scss +140 -0
  27. package/src/base/components/_luxFormControlWrapper.scss +173 -0
  28. package/src/base/components/_luxFormControlsAuthentic.scss +279 -0
  29. package/src/base/components/_luxLinkPlain.scss +56 -0
  30. package/src/base/components/_luxMasterDetailAc.scss +193 -0
  31. package/src/base/components/_luxTileAc.scss +64 -0
  32. package/src/blue/_custom.scss +101 -8
  33. package/src/blue/_luxcommon.scss +19 -2
  34. package/src/blue/_luxpalette.scss +4 -3
  35. package/src/blue/luxtheme.scss +101 -9
  36. package/src/green/_custom.scss +241 -124
  37. package/src/green/_luxcommon.scss +22 -5
  38. package/src/green/_luxpalette.scss +4 -3
  39. package/src/green/luxtheme.scss +103 -12
  40. package/src/public/global.scss +6 -10
  41. package/CHANGELOG.md +0 -84
  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/orange/_custom.scss +0 -66
  46. package/src/orange/_luxcommon.scss +0 -84
  47. package/src/orange/_luxpalette.scss +0 -106
  48. package/src/orange/luxtheme.scss +0 -10
@@ -0,0 +1,173 @@
1
+ @use "sass:map";
2
+ @use "../luxfocus";
3
+ @use "../luxstyles";
4
+ @use "../luxcommon";
5
+ @use "../luxpalette";
6
+
7
+
8
+
9
+ @mixin crop {
10
+ overflow: hidden;
11
+ white-space: nowrap;
12
+ text-overflow: ellipsis;
13
+ }
14
+ @mixin form-label {
15
+ min-height: 1.2em;
16
+ font-size: 0.75em;
17
+ line-height: 1.2em;
18
+ color: luxcommon.$dark-secondary-text;
19
+ }
20
+ lux-form-control-wrapper {
21
+ width: 100%;
22
+
23
+ .lux-form-control-wrapper {
24
+ display: flex;
25
+ box-sizing: border-box;
26
+ font-size: luxcommon.$form-control-font-size;
27
+ color: luxcommon.$dark-primary-text;
28
+ margin: 0.25em 0;
29
+
30
+ .lux-form-control-label-authentic {
31
+ @include form-label;
32
+ color: map.get(luxpalette.$lux-palette_primary, 500);
33
+ margin: 0 calc(0.5em + 1px) 0.25em calc(0.5em + 1px);
34
+ > * {
35
+ @include crop;
36
+ }
37
+ &.lux-label-long-format {
38
+ > * {
39
+ white-space: normal;
40
+ text-overflow: unset;
41
+ word-wrap: break-word;
42
+ }
43
+ }
44
+ }
45
+
46
+ .lux-form-control-container-authentic {
47
+ box-sizing: border-box;
48
+ padding: 0.75em 0.5em;
49
+ font-size: luxcommon.$form-control-font-size;
50
+ color: luxcommon.$dark-primary-text;
51
+ background-color: #fff;
52
+ line-height: 1.5em;
53
+ border: 1px solid luxcommon.$form-border-color;
54
+ border-radius: 4px;
55
+ &.lux-no-input-row {
56
+ // lux-toggel-ac, lux-checkbox-ac, lux-slider-ac, lux-radio-ac werden auf der Baseline ausgerichtet
57
+ // haben aber nicht den Rahmen, den die Input-Elemente haben
58
+ border: none;
59
+ padding: 0.75em 0em;
60
+ }
61
+ }
62
+
63
+ .lux-form-control-misc-authentic {
64
+ box-sizing: border-box;
65
+ margin: 0.25em calc(0.5em + 1px) 0 calc(0.5em + 1px);
66
+
67
+ @include form-label;
68
+ word-wrap: break-word;
69
+
70
+ .lux-form-control-character-counter-authentic {
71
+ min-width: 40px;
72
+ margin-left: 2px;
73
+ color: luxcommon.$dark-secondary-text !important;
74
+ text-align: end;
75
+
76
+ &:only-child {
77
+ width: 100%;
78
+ }
79
+ }
80
+ }
81
+
82
+ // zusätzlicher Container für Elemente, die einen input-prefix/input-suffix haben
83
+ // aktuell: lux-autocomplete-ac und lux-input-ac
84
+ .lux-input-row-authentic {
85
+ font-size: luxcommon.$form-control-font-size;
86
+ min-height: 1.5em;
87
+
88
+ .lux-input-prefix-container,
89
+ .lux-input-suffix-container {
90
+ width: auto;
91
+ white-space: nowrap;
92
+ display: inline-block;
93
+ max-height: 1.5em;
94
+
95
+
96
+ lux-icon {
97
+ i {
98
+ padding: 0 !important;
99
+ margin: 0;
100
+ font-size: 1em;
101
+ }
102
+ mat-icon {
103
+ padding: 0 !important;
104
+ margin: 0;
105
+ font-size: 1.5em !important;
106
+ &.lux-lx-icon-no-size {
107
+ width: 1em;
108
+ height: 1em;
109
+ }
110
+ }
111
+ }
112
+
113
+ }
114
+ }
115
+
116
+ // Definitionen der einzelnen States der Form-Controls
117
+ &:hover:not(.lux-form-control-disabled-authentic):not(.lux-focused-authentic):not(.lux-form-control-error-authentic) {
118
+ .lux-form-control-container-authentic:not(.lux-no-input-row) {
119
+ border-color: black;
120
+ box-shadow: 0 0 0 1px black inset;
121
+ }
122
+ }
123
+ &.lux-focused-authentic{
124
+ .lux-form-control-label-authentic > * {
125
+ color: map.get(luxpalette.$lux-palette_primary, 400);
126
+ }
127
+ .lux-form-control-container-authentic:not(.lux-no-input-row) {
128
+ border-color: map.get(luxpalette.$lux-palette_primary, 500);
129
+ box-shadow: 0 0 0 1px map.get(luxpalette.$lux-palette_primary, 500) inset;
130
+ }
131
+ }
132
+
133
+ &.lux-form-control-error-authentic:not(.lux-form-control-disabled-authentic) {
134
+ .lux-form-control-label-authentic > * {
135
+ color: map.get(luxpalette.$lux-palette_warn, 500);
136
+ }
137
+ .lux-form-control-container-authentic:not(.lux-no-input-row) {
138
+ border-color: map.get(luxpalette.$lux-palette_warn, 500);
139
+ box-shadow: 0 0 0 1px map.get(luxpalette.$lux-palette_warn, 500) inset;
140
+ }
141
+ }
142
+
143
+ &.lux-form-control-disabled-authentic {
144
+ .lux-form-control-container-authentic,
145
+ .lux-form-control-label-authentic,
146
+ .lux-form-control-misc-authentic > * {
147
+ color: luxcommon.$dark-disabled-text;
148
+ }
149
+ }
150
+
151
+ &.lux-form-control-readonly-authentic,
152
+ &.lux-form-control-disabled-authentic {
153
+ pointer-events: none;
154
+ }
155
+
156
+
157
+ }
158
+
159
+ /* Change Autocomplete styles in Chrome*/
160
+ input:-webkit-autofill,
161
+ input:-webkit-autofill:hover,
162
+ input:-webkit-autofill:focus,
163
+ textarea:-webkit-autofill,
164
+ textarea:-webkit-autofill:hover,
165
+ textarea:-webkit-autofill:focus,
166
+ select:-webkit-autofill,
167
+ select:-webkit-autofill:hover,
168
+ select:-webkit-autofill:focus {
169
+ box-shadow: 0 0 0px 1000px var(--lux-theme-primary-50) inset;
170
+ -webkit-box-shadow: 0 0 0px 1000px var(--lux-theme-primary-50) inset;
171
+ transition: background-color 5000s ease-in-out 0s;
172
+ }
173
+ }
@@ -0,0 +1,279 @@
1
+ @use "sass:map";
2
+ @use "../luxcommon";
3
+ @use "../luxpalette";
4
+ @use "../../public/global";
5
+ @use "../luxelevations";
6
+ @use "../luxfocus";
7
+
8
+ /*
9
+ * Theming for LUX-Select
10
+ */
11
+ lux-select-ac {
12
+ mat-select {
13
+ font-family: luxcommon.$app-font-family;
14
+ height: calc( 1.5em - 1px) !important;
15
+ // bisher noch nicht klar, warum das mat-select einen Pixel an Höhe mehr beansprucht, als es tatsächlich Hoch ist
16
+ // daher wird hier die Höhe korrigiert, damit die Baseline eingehalten ist
17
+
18
+ .mat-select-arrow-wrapper{
19
+ margin-left: 2px;
20
+ }
21
+ &[aria-disabled="true"] .mat-select-arrow {
22
+ border-width: 10px;
23
+ margin: 0 2px 0 0;
24
+ color: luxcommon.$dark-disabled-text;
25
+ }
26
+
27
+ &[aria-disabled="false"] .mat-select-arrow {
28
+ border-width: 10px;
29
+ margin: 0 2px 0 0;
30
+ color: map.get(luxpalette.$lux-palette_primary, 500);
31
+ }
32
+ }
33
+
34
+ }
35
+
36
+ // Checkbox wird im Cdk-Overlay dargestellt und hängt nicht unter der Component selbst.
37
+ .lux-select-panel-ac .mat-pseudo-checkbox-checked {
38
+ background-color: map.get(luxpalette.$lux-palette_primary, 500);
39
+ }
40
+
41
+ /*
42
+ * Theming für Lux-Checkbox
43
+ */
44
+ lux-checkbox-ac {
45
+ label {
46
+ font-family: luxcommon.$app-font-family;
47
+ font-size: luxcommon.$form-control-font-size;
48
+ color: luxcommon.$dark-primary-text;
49
+ cursor: pointer;
50
+
51
+ .mat-checkbox-label {
52
+ -ms-word-break: break-word;
53
+ word-break: break-word;
54
+ white-space: normal;
55
+ }
56
+ }
57
+ .mat-checkbox-disabled label {
58
+ color: luxcommon.$dark-disabled-text;
59
+ }
60
+
61
+ .mat-checkbox-ripple {
62
+ display: none;
63
+ }
64
+ .mat-checkbox-inner-container {
65
+ // die Checkbox soll größer sein, als von Material vorgegeben
66
+ width: 1.25em;
67
+ height: 1.25em;
68
+ margin-top: 3px;
69
+ //bei mehrzeiligen Labels wird die Checkbox oben und nicht zentriert angezeigt
70
+ //dieses wird von material über das Margin gelöst und nicht über align-items o.ä.
71
+ //da wir die Größe der Box geändert haben mussten wir das Margin ebenfalls anpassen
72
+ }
73
+
74
+ }
75
+
76
+ lux-datepicker-ac, lux-datetimepicker-ac {
77
+ mat-datepicker-toggle {
78
+ height: 24px !important;
79
+ width: 24px !important;
80
+
81
+ .mat-icon-button {
82
+ height: 24px !important;
83
+ width: 24px !important;
84
+ line-height: 1.5;
85
+ font-size: inherit;
86
+
87
+ lux-icon.lux-datepicker-toggle-icon, mat-icon.mat-icon {
88
+ height: 24px !important;
89
+ width: 24px !important;
90
+ padding: 0px !important;
91
+ }
92
+
93
+ &.mat-button-disabled {
94
+ svg {
95
+ color: luxcommon.$dark-disabled-text;
96
+ }
97
+ }
98
+ }
99
+ }
100
+ }
101
+
102
+
103
+ /*
104
+ * Theming für lux-Toggle
105
+ */
106
+ lux-toggle-ac {
107
+ .mat-slide-toggle {
108
+ label {
109
+ color: luxcommon.$dark-primary-text;
110
+ font-family: luxcommon.$app-font-family;
111
+ }
112
+
113
+ .mat-slide-toggle-thumb {
114
+ @include luxelevations.lux-elevation-z1;
115
+ }
116
+
117
+ &.mat-disabled {
118
+ label .mat-slide-toggle-content {
119
+ color: luxcommon.$dark-disabled-text;
120
+ }
121
+
122
+ &.mat-checked {
123
+ .mat-slide-toggle-bar {
124
+ background-color: luxcommon.$dark-disabled-text;
125
+ }
126
+
127
+ .mat-slide-toggle-thumb {
128
+ background-color: #666666 ;
129
+ // $dark-secondary-text als Hex ohne Transparenz
130
+ }
131
+ }
132
+
133
+ &:not(.mat-checked) {
134
+ .mat-slide-toggle-bar {
135
+ background-color: luxcommon.$dark-disabled-text;
136
+ //Hintergrund zur Schriftfarbe anpassen
137
+ }
138
+ }
139
+ }
140
+ }
141
+ }
142
+
143
+ /*
144
+ * Theming for LUX-Radio
145
+ */
146
+ lux-radio-ac {
147
+ // damit ist der Focus-Indicator rund, wie bei Toggle-Thumb und Chips
148
+ .mat-radio-container {
149
+ border-radius: 50%;
150
+ }
151
+ .mat-radio-label {
152
+ color: luxcommon.$dark-primary-text;
153
+ font-family: luxcommon.$app-font-family;
154
+ }
155
+
156
+ .mat-radio-checked {
157
+
158
+ &.mat-radio-disabled label .mat-radio-container {
159
+ span.mat-radio-inner-circle {
160
+ background-color: luxcommon.$dark-disabled-text;
161
+ }
162
+
163
+ span.mat-radio-outer-circle {
164
+ border-color: luxcommon.$dark-disabled-text;
165
+ }
166
+ }
167
+ }
168
+
169
+ .mat-radio-disabled label.mat-radio-label {
170
+ .mat-radio-label-content {
171
+ color: luxcommon.$dark-disabled-text;
172
+ }
173
+
174
+ .mat-radio-container {
175
+ span.mat-radio-inner-circle {
176
+ background-color: luxcommon.$dark-disabled-text;
177
+ }
178
+
179
+ span.mat-radio-outer-circle {
180
+ border-color: luxcommon.$dark-disabled-text;
181
+ }
182
+ }
183
+ }
184
+ }
185
+
186
+ /*
187
+ * Theming for LUX-Input/LUX-Textarea
188
+ */
189
+ // Umstylen des Standard-Aussehens von Inputs/Textareas
190
+ input, input.mat-input-element,
191
+ textarea {
192
+ font: inherit;
193
+ background: 0 0;
194
+ color: currentColor;
195
+ border: none;
196
+ outline: 0;
197
+ padding: 0;
198
+ margin: 0;
199
+ width: 100%;
200
+ max-width: 100%;
201
+ vertical-align: bottom;
202
+ text-align: inherit;
203
+ font-size: luxcommon.$form-control-font-size;
204
+ }
205
+
206
+
207
+ /**
208
+ * Theming für LUX-Chips
209
+ */
210
+ lux-chips-ac {
211
+ .lux-chips-autocomplete-icon {
212
+ color: var(--lux-theme-primary-500);
213
+ font-size: 24px;
214
+ padding-right: 4px;
215
+ cursor: pointer;
216
+
217
+ &.lux-disabled {
218
+ color: var(--lux-theme-dark-disabled-text);
219
+ cursor: default;
220
+ }
221
+ }
222
+ .lux-chips {
223
+ mat-chip {
224
+ // Löschicon (luxSelected=true)
225
+ &.mat-chip-selected .mat-chip-remove {
226
+ color: luxcommon.$app-data-bg !important;
227
+ opacity: 1 !important;
228
+ }
229
+
230
+ // Löschicon (luxSelected=false)
231
+ &:not(.mat-chip-selected) .mat-chip-remove {
232
+ color: luxcommon.$app-data-bg !important;
233
+ opacity: 1 !important;
234
+ }
235
+
236
+ &.mat-chip-disabled {
237
+ background-color: luxcommon.$dark-disabled-text !important;
238
+ color: luxcommon.$app-data-bg !important;
239
+ opacity: 1;
240
+
241
+ lux-icon {
242
+ i,
243
+ mat-icon {
244
+ color: luxcommon.$app-data-bg;
245
+ }
246
+ }
247
+ }
248
+ }
249
+ mat-chip-list {
250
+ & div.mat-chip-list-wrapper {
251
+ margin: 0px 0px 0px -4px;
252
+ }
253
+ }
254
+ }
255
+ }
256
+ .lux-chips-ac-autocomplete-panel {
257
+ margin-top: -20px;
258
+ margin-left: 0;
259
+ margin-right: 0;
260
+ border-radius: 4px;
261
+ }
262
+
263
+ /*
264
+ * Theming for LUX-Slider
265
+ */
266
+ lux-slider-ac {
267
+ mat-slider.lux-slider-ac {
268
+ &.mat-slider-horizontal {
269
+ height: 1.5em;
270
+ }
271
+ }
272
+ .lux-show-thumb-label-always {
273
+ &.mat-slider-disabled {
274
+ .mat-slider-thumb-label {
275
+ background-color: luxcommon.$dark-disabled-text;
276
+ }
277
+ }
278
+ }
279
+ }
@@ -0,0 +1,56 @@
1
+ @use "sass:map";
2
+ @use "../luxfocus";
3
+ @use "../luxcommon";
4
+ @use "../luxpalette";
5
+
6
+
7
+ lux-link-plain {
8
+ .link-wrapper {
9
+ display: inline-block;
10
+ font-family: inherit;
11
+ font-size: inherit;
12
+ font-weight: inherit;
13
+ color: map.get(luxpalette.$lux-palette-primary, A700);
14
+
15
+ .lux-link-plain-text {
16
+ text-decoration: none;
17
+ }
18
+
19
+ lux-icon {
20
+ font-size: inherit;
21
+ vertical-align: middle;
22
+ line-height: 1;
23
+ i, mat-icon {
24
+ color: map.get(luxpalette.$lux-palette-primary, A700);
25
+ padding: 0 !important;
26
+ }
27
+ }
28
+
29
+ &.lux-disabled {
30
+ color: luxcommon.$dark-disabled-text;
31
+ cursor: text;
32
+ lux-icon {
33
+ i, mat-icon {
34
+ color: luxcommon.$dark-disabled-text;
35
+ }
36
+ }
37
+ }
38
+
39
+ &:hover:not(.lux-disabled) {
40
+ @include luxfocus.lux-hovered-mixin;
41
+ text-decoration: underline;
42
+ cursor: pointer;
43
+ }
44
+
45
+ &:focus:not(.lux-disabled, :hover) {
46
+ @include luxfocus.focus-dark-mixin;
47
+ border-radius: 2px;
48
+ }
49
+ }
50
+ &.breadcrump-item .link-wrapper{
51
+ color: inherit;
52
+ lux-icon mat-icon {
53
+ color: inherit;
54
+ }
55
+ }
56
+ }
@@ -0,0 +1,193 @@
1
+ @use "sass:map";
2
+ @use "../luxfocus";
3
+ @use "../luxcommon";
4
+ @use "../luxpalette";
5
+ @use "../luxelevations";
6
+
7
+ .lux-master-detail-ac {
8
+ max-width: 100%;
9
+ z-index: 10;
10
+ .lux-master-ac-container {
11
+ &.lux-master-closed {
12
+ border: 1px solid luxcommon.$app-border-color;
13
+ border-left-style: none;
14
+ border-radius: 0 4px 4px 0;
15
+ padding: 0;
16
+ width: 35px;
17
+ min-width: 35px;
18
+ max-width: 35px;
19
+ background-color: #fff;
20
+ }
21
+ &.lux-master-ac-container-mobile {
22
+ border: none;
23
+ background-color: unset;
24
+ }
25
+ }
26
+
27
+ .lux-master-header-container-ac {
28
+ z-index: 100;
29
+ position:relative;
30
+
31
+ lux-button.master-ac-toggle {
32
+ position: absolute;
33
+ right: -18px;
34
+ top: 20px;
35
+ z-index: 1000;
36
+
37
+ button.lux-button.lux-button-rounded {
38
+ @include luxelevations.lux-elevation-z0;
39
+ border: 1px solid luxcommon.$app-border-color;
40
+ color: map.get(luxpalette.$lux-palette-primary, 500);
41
+
42
+ &:hover:not([disabled]){
43
+ background-color: luxcommon.$lux-hover-color !important;
44
+ color: #fff;
45
+ border-radius: 50%
46
+ }
47
+ }
48
+
49
+ .lux-button-icon-round.lux-lx-icon.lux-no-size {
50
+ // optische Anpassung für das "Chevron"-Icon, damit es zentriert im Button sitzt
51
+ // Anpassung erforderlich, falls das Icon ausgetauscht wird
52
+ padding-bottom: 2px;
53
+ }
54
+ }
55
+ .lux-menu-extended {
56
+ padding: 0px;
57
+ }
58
+ }
59
+
60
+ lux-filter-form .lux-filter-card,
61
+ .detail-header-container .lux-detail-header-ac,
62
+ .lux-master-view-ac lux-list-item {
63
+ mat-card.mat-card {
64
+ padding: 12px;
65
+ }
66
+ mat-card-title, h2 {
67
+ font-size: 16px;
68
+ }
69
+ mat-card-subtitle.mat-card-subtitle {
70
+ font-size: 14px;
71
+ }
72
+ }
73
+
74
+ .lux-empty-master-header {
75
+ div.lux-master-header-container-ac {
76
+ border: 1px solid luxcommon.$app-border-color;
77
+ border-radius: 4px;
78
+ background-color: #fff;
79
+ height: 72px;
80
+ lux-button.master-ac-toggle {
81
+ top: 18px;
82
+ }
83
+ }
84
+ }
85
+
86
+ .lux-master-view-ac {
87
+ margin: 10px 0;
88
+ z-index: 100;
89
+
90
+ lux-list {
91
+ border: none !important;
92
+ }
93
+
94
+ lux-list-item {
95
+ margin-bottom: 4px;
96
+ mat-card.mat-card {
97
+ margin: 0px;
98
+
99
+ lux-list-item-content :last-child {
100
+ margin-bottom: 0px;
101
+ padding-bottom: 0px;
102
+ }
103
+
104
+ lux-icon.lux-lx-icon {
105
+ width: 20px;
106
+ height: 20px;
107
+ }
108
+ }
109
+ }
110
+
111
+ lux-list-item,
112
+ lux-list-item-content {
113
+ display: block;
114
+ }
115
+ }
116
+
117
+ lux-master-footer-ac {
118
+ padding: 10px 16px;
119
+ z-index: 100;
120
+ border: 1px solid luxcommon.$app-border-color;
121
+ border-radius: 4px;
122
+ background-color: #fff;
123
+ .lux-menu-extended {
124
+ padding: 0;
125
+ }
126
+ }
127
+
128
+ .lux-detail-ac-container {
129
+ position: relative;
130
+ border: 1px solid luxcommon.$app-border-color;
131
+ border-radius: 4px;
132
+ background-color: #fff;
133
+
134
+ .lux-detail-header-ac {
135
+ mat-card.mat-card.lux-card {
136
+ border: none;
137
+ }
138
+ }
139
+
140
+ .lux-detail-empty {
141
+ position: absolute;
142
+ top: 0;
143
+ left: 0;
144
+ right: 0;
145
+ bottom: 0;
146
+ }
147
+
148
+ .lux-detail-empty-icon,
149
+ .lux-detail-empty-icon-text {
150
+ opacity: 0.6;
151
+ padding: 0 8px;
152
+ }
153
+ &.lux-detail-ac-container-mobile {
154
+ border: none;
155
+ background-color: unset;
156
+ .lux-detail-header-ac {
157
+ mat-card.mat-card.lux-card {
158
+ border: 2px solid luxpalette.$lux-primary-color;
159
+ }
160
+ }
161
+ .back-to-master-button-container {
162
+ padding: 4px;
163
+
164
+ &:hover {
165
+ background-color: luxcommon.$lux-hover-color;
166
+ cursor: pointer;
167
+ }
168
+
169
+ lux-button.back-to-master-button {
170
+ button.lux-button.lux-button-rounded {
171
+ @include luxelevations.lux-elevation-z0;
172
+ border: 1px solid luxcommon.$app-border-color;
173
+ color: map.get(luxpalette.$lux-palette-primary, 500);
174
+ }
175
+ .lux-button-icon-round.lux-lx-icon.lux-no-size {
176
+ // optische Anpassung für das "Chevron"-Icon, damit es zentriert im Button sitzt
177
+ // Anpassung erforderlich, falls das Icon ausgetauscht wird
178
+ padding-bottom: 2px;
179
+ }
180
+ }
181
+ .back-to-master-label {
182
+ font-size: 16px;
183
+ color: map.get(luxpalette.$lux-palette-primary, 300);
184
+ }
185
+ }
186
+ .lux-detail-view-container {
187
+ border: 1px solid luxcommon.$app-border-color;
188
+ border-radius: 4px;
189
+ background-color: #fff;
190
+ }
191
+ }
192
+ }
193
+ }