@ihk-gfi/lux-components-theme 14.0.0 → 14.2.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/package.json +9 -4
- 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 +511 -106
- package/prebuilt-themes/luxtheme-authentic.css.map +1 -1
- package/prebuilt-themes/luxtheme-blue-min.css +1 -1
- package/prebuilt-themes/luxtheme-blue-min.css.map +1 -1
- package/prebuilt-themes/luxtheme-blue.css +298 -71
- package/prebuilt-themes/luxtheme-blue.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 +298 -71
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +248 -20
- package/src/authentic/_luxcommon.scss +3 -3
- package/src/authentic/luxtheme.scss +1 -1
- package/src/base/_luxSvgIcons.scss +5 -0
- package/src/base/_luxcomponents.scss +49 -3
- package/src/base/_luxfocus.scss +94 -21
- package/src/base/_luxstyles.scss +0 -7
- package/src/base/components/_luxAppHeaderAc.scss +77 -15
- package/src/base/components/_luxFormControlWrapper.scss +1 -0
- package/src/base/components/_luxFormControlsAuthentic.scss +80 -17
- package/src/base/components/_luxLinkPlain.scss +6 -1
- package/src/base/components/_luxMasterDetailAc.scss +23 -10
- package/src/base/components/_luxTileAc.scss +1 -2
- package/src/blue/luxtheme.scss +1 -1
- package/src/green/luxtheme.scss +1 -1
|
@@ -108,6 +108,7 @@ lux-side-nav .lux-side-nav-item:hover:not(.lux-side-nav-disabled) {
|
|
|
108
108
|
/** ########## Card ########## **/
|
|
109
109
|
lux-card mat-card[class~=lux-cursor]:focus-visible {
|
|
110
110
|
outline: 2px dotted #000000 !important;
|
|
111
|
+
outline-offset: -2px;
|
|
111
112
|
}
|
|
112
113
|
lux-card mat-card[class~=lux-cursor]:hover {
|
|
113
114
|
background-color: #f2f2f2 !important;
|
|
@@ -126,10 +127,6 @@ lux-list:focus-visible {
|
|
|
126
127
|
lux-list lux-list-item:focus-visible {
|
|
127
128
|
outline: none;
|
|
128
129
|
}
|
|
129
|
-
lux-list lux-list-item:focus-visible mat-card {
|
|
130
|
-
outline: 2px dotted #000000 !important;
|
|
131
|
-
outline-offset: -2px;
|
|
132
|
-
}
|
|
133
130
|
lux-list lux-list-item lux-card.lux-list-item-selected mat-card.mat-card.lux-card {
|
|
134
131
|
background-color: #e2e8ee !important;
|
|
135
132
|
position: relative;
|
|
@@ -204,17 +201,36 @@ lux-form-control .lux-form-control:not(.lux-form-control-disabled).lux-focused.l
|
|
|
204
201
|
outline: 2px dotted #000000 !important;
|
|
205
202
|
}
|
|
206
203
|
|
|
204
|
+
lux-icon.lux-error-icon:focus-visible {
|
|
205
|
+
outline: 2px dotted #000000 !important;
|
|
206
|
+
}
|
|
207
|
+
|
|
207
208
|
/** ########## Datepicker ########## **/
|
|
208
|
-
lux-datepicker mat-datepicker-toggle button:focus-visible
|
|
209
|
+
lux-datepicker mat-datepicker-toggle button:focus-visible {
|
|
209
210
|
outline: 2px dotted #000000 !important;
|
|
210
211
|
border-radius: 4px;
|
|
211
212
|
}
|
|
212
|
-
lux-datepicker mat-datepicker-toggle button:hover
|
|
213
|
+
lux-datepicker mat-datepicker-toggle button:hover {
|
|
213
214
|
background-color: #f2f2f2 !important;
|
|
214
215
|
border-radius: 4px;
|
|
215
216
|
border-radius: 4px;
|
|
216
217
|
}
|
|
217
|
-
lux-datepicker mat-datepicker-toggle .mat-button-focus-overlay
|
|
218
|
+
lux-datepicker mat-datepicker-toggle .mat-button-focus-overlay {
|
|
219
|
+
display: none;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
lux-datepicker-ac mat-datepicker-toggle button:focus-visible, lux-datetimepicker-ac mat-datepicker-toggle button:focus-visible {
|
|
223
|
+
outline: 2px dotted #000000 !important;
|
|
224
|
+
border-radius: 4px;
|
|
225
|
+
}
|
|
226
|
+
lux-datepicker-ac mat-datepicker-toggle button:hover, lux-datetimepicker-ac mat-datepicker-toggle button:hover {
|
|
227
|
+
background-color: #fff;
|
|
228
|
+
border-radius: 4px;
|
|
229
|
+
}
|
|
230
|
+
lux-datepicker-ac mat-datepicker-toggle button:hover lux-icon.lux-datepicker-toggle-icon.lux-color-blue, lux-datetimepicker-ac mat-datepicker-toggle button:hover lux-icon.lux-datepicker-toggle-icon.lux-color-blue {
|
|
231
|
+
color: #f2f2f2;
|
|
232
|
+
}
|
|
233
|
+
lux-datepicker-ac mat-datepicker-toggle .mat-button-focus-overlay, lux-datetimepicker-ac mat-datepicker-toggle .mat-button-focus-overlay {
|
|
218
234
|
display: none;
|
|
219
235
|
}
|
|
220
236
|
|
|
@@ -239,16 +255,16 @@ lux-datepicker mat-datepicker-toggle .mat-button-focus-overlay, lux-datepicker-a
|
|
|
239
255
|
}
|
|
240
256
|
|
|
241
257
|
/** ########## Datetimepicker ########## **/
|
|
242
|
-
lux-datetimepicker mat-datepicker-toggle button:focus-visible
|
|
258
|
+
lux-datetimepicker mat-datepicker-toggle button:focus-visible {
|
|
243
259
|
outline: 2px dotted #000000 !important;
|
|
244
260
|
border-radius: 4px;
|
|
245
261
|
}
|
|
246
|
-
lux-datetimepicker mat-datepicker-toggle button:hover
|
|
262
|
+
lux-datetimepicker mat-datepicker-toggle button:hover {
|
|
247
263
|
background-color: #f2f2f2 !important;
|
|
248
264
|
border-radius: 4px;
|
|
249
265
|
border-radius: 4px;
|
|
250
266
|
}
|
|
251
|
-
lux-datetimepicker mat-datepicker-toggle .mat-button-focus-overlay
|
|
267
|
+
lux-datetimepicker mat-datepicker-toggle .mat-button-focus-overlay {
|
|
252
268
|
display: none;
|
|
253
269
|
}
|
|
254
270
|
|
|
@@ -332,26 +348,70 @@ lux-table th.cdk-keyboard-focused div.mat-sort-header-container {
|
|
|
332
348
|
border-radius: 4px;
|
|
333
349
|
}
|
|
334
350
|
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
background-color: #fff;
|
|
338
|
-
border: 1px solid #335c85;
|
|
339
|
-
box-shadow: 0 0 0 2px var(--lux-theme-primary-500) inset;
|
|
351
|
+
/** ########## Select-AC ########## **/
|
|
352
|
+
.lux-select-panel-ac mat-option.mat-selected.mat-option:not(.mat-option-disabled) .mat-option-text {
|
|
340
353
|
position: relative;
|
|
341
|
-
border-radius: 4px;
|
|
342
354
|
}
|
|
343
|
-
.lux-select-panel-ac mat-option.mat-selected.mat-option:not(.mat-option-disabled)
|
|
344
|
-
|
|
345
|
-
|
|
355
|
+
.lux-select-panel-ac mat-option.mat-selected.mat-option:not(.mat-option-disabled) .mat-option-text::after {
|
|
356
|
+
content: "";
|
|
357
|
+
position: absolute;
|
|
358
|
+
width: 18px;
|
|
359
|
+
height: 18px;
|
|
360
|
+
top: 14px;
|
|
361
|
+
margin: 0 6px;
|
|
362
|
+
background-color: #335c85;
|
|
363
|
+
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%23036' stroke-linecap='round' stroke-linejoin='round' d='M0.5,8.55 L3.23,12.06 C3.4166359,12.3024927 3.70402432,12.4461869 4.01,12.4500671 C4.31092451,12.4534817 4.59741556,12.3212551 4.79,12.09 L13.5,1.55'/%3E%3C/svg%3E");
|
|
364
|
+
-webkit-mask-repeat: no-repeat;
|
|
365
|
+
-webkit-mask-position: center;
|
|
366
|
+
-webkit-mask-size: cover;
|
|
367
|
+
mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%23036' stroke-linecap='round' stroke-linejoin='round' d='M0.5,8.55 L3.23,12.06 C3.4166359,12.3024927 3.70402432,12.4461869 4.01,12.4500671 C4.31092451,12.4534817 4.59741556,12.3212551 4.79,12.09 L13.5,1.55'/%3E%3C/svg%3E");
|
|
368
|
+
mask-repeat: no-repeat;
|
|
369
|
+
mask-position: center;
|
|
370
|
+
mask-size: cover;
|
|
346
371
|
}
|
|
347
|
-
|
|
372
|
+
|
|
373
|
+
.lux-select-panel-ac.mat-select-panel mat-option.mat-selected.mat-option:not(.mat-option-disabled):not(:hover):not(.mat-active), .lux-select-panel-ac.mat-autocomplete-panel mat-option.mat-selected.mat-option:not(.mat-option-disabled):not(:hover):not(.mat-active), .lux-select-panel-ac-multiple.mat-select-panel mat-option.mat-selected.mat-option:not(.mat-option-disabled):not(:hover):not(.mat-active), .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option.mat-selected.mat-option:not(.mat-option-disabled):not(:hover):not(.mat-active), .lux-autocomplete-panel-ac.mat-select-panel mat-option.mat-selected.mat-option:not(.mat-option-disabled):not(:hover):not(.mat-active), .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option.mat-selected.mat-option:not(.mat-option-disabled):not(:hover):not(.mat-active), .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option.mat-selected.mat-option:not(.mat-option-disabled):not(:hover):not(.mat-active), .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option.mat-selected.mat-option:not(.mat-option-disabled):not(:hover):not(.mat-active) {
|
|
374
|
+
color: #335c85;
|
|
375
|
+
background-color: #ffffff;
|
|
376
|
+
font-weight: 600;
|
|
377
|
+
}
|
|
378
|
+
.lux-select-panel-ac.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused), .lux-select-panel-ac.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused), .lux-select-panel-ac-multiple.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused), .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused), .lux-autocomplete-panel-ac.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused), .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused), .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused), .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) {
|
|
348
379
|
outline: 2px dotted #000000 !important;
|
|
349
380
|
outline-offset: -2px;
|
|
350
|
-
|
|
381
|
+
background-color: #708daa;
|
|
382
|
+
color: #ffffff;
|
|
351
383
|
}
|
|
352
|
-
.lux-select-panel-ac mat-option:
|
|
353
|
-
|
|
354
|
-
|
|
384
|
+
.lux-select-panel-ac.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox, .lux-select-panel-ac.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox, .lux-select-panel-ac-multiple.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox, .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox, .lux-autocomplete-panel-ac.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox, .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox, .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox, .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox {
|
|
385
|
+
color: #ffffff;
|
|
386
|
+
}
|
|
387
|
+
.lux-select-panel-ac.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked, .lux-select-panel-ac.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked, .lux-select-panel-ac-multiple.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked, .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked, .lux-autocomplete-panel-ac.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked, .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked, .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked, .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked {
|
|
388
|
+
background-color: #ffffff;
|
|
389
|
+
}
|
|
390
|
+
.lux-select-panel-ac.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked::after, .lux-select-panel-ac.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked::after, .lux-select-panel-ac-multiple.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked::after, .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked::after, .lux-autocomplete-panel-ac.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked::after, .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked::after, .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked::after, .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-pseudo-checkbox-checked::after {
|
|
391
|
+
border-color: #335c85 !important;
|
|
392
|
+
}
|
|
393
|
+
.lux-select-panel-ac.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-option-text::after, .lux-select-panel-ac.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-option-text::after, .lux-select-panel-ac-multiple.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-option-text::after, .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-option-text::after, .lux-autocomplete-panel-ac.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-option-text::after, .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-option-text::after, .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-option-text::after, .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option.mat-option.mat-active:not(.cdk-mouse-focused) .mat-option-text::after {
|
|
394
|
+
background-color: #fff;
|
|
395
|
+
}
|
|
396
|
+
.lux-select-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled), .lux-select-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled), .lux-select-panel-ac-multiple.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled), .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled), .lux-autocomplete-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled), .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled), .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled), .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) {
|
|
397
|
+
background-color: #708daa;
|
|
398
|
+
color: #ffffff;
|
|
399
|
+
border-radius: 0px !important;
|
|
400
|
+
}
|
|
401
|
+
.lux-select-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-select-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-select-panel-ac-multiple.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-autocomplete-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox {
|
|
402
|
+
color: #ffffff;
|
|
403
|
+
}
|
|
404
|
+
.lux-select-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked, .lux-select-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked, .lux-select-panel-ac-multiple.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked, .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked, .lux-autocomplete-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked, .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked, .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked, .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked {
|
|
405
|
+
background-color: #ffffff;
|
|
406
|
+
}
|
|
407
|
+
.lux-select-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked::after, .lux-select-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked::after, .lux-select-panel-ac-multiple.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked::after, .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked::after, .lux-autocomplete-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked::after, .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked::after, .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked::after, .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox-checked::after {
|
|
408
|
+
border-color: #335c85 !important;
|
|
409
|
+
}
|
|
410
|
+
.lux-select-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-select-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-select-panel-ac-multiple.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-autocomplete-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox, .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-pseudo-checkbox {
|
|
411
|
+
color: #ffffff;
|
|
412
|
+
}
|
|
413
|
+
.lux-select-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-option-text::after, .lux-select-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-option-text::after, .lux-select-panel-ac-multiple.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-option-text::after, .lux-select-panel-ac-multiple.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-option-text::after, .lux-autocomplete-panel-ac.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-option-text::after, .lux-autocomplete-panel-ac.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-option-text::after, .lux-chips-ac-autocomplete-panel.mat-select-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-option-text::after, .lux-chips-ac-autocomplete-panel.mat-autocomplete-panel mat-option:hover:not(.invalid, .mat-option-disabled) .mat-option-text::after {
|
|
414
|
+
background-color: #fff;
|
|
355
415
|
}
|
|
356
416
|
|
|
357
417
|
/** ########## Button ########## **/
|
|
@@ -418,7 +478,7 @@ lux-tabs .mat-tab-label:not(.mat-tab-disabled):focus-visible {
|
|
|
418
478
|
border-radius: 4px;
|
|
419
479
|
}
|
|
420
480
|
lux-tabs .mat-tab-label:not(.mat-tab-disabled):hover:not(.mat-tab-disabled) {
|
|
421
|
-
background-color: #f2f2f2
|
|
481
|
+
background-color: #f2f2f2;
|
|
422
482
|
border-radius: 4px;
|
|
423
483
|
}
|
|
424
484
|
lux-tabs mat-ink-bar.mat-ink-bar {
|
|
@@ -436,7 +496,7 @@ mat-card lux-tabs .mat-tab-label:not(.mat-tab-disabled):focus-visible {
|
|
|
436
496
|
border-radius: 4px;
|
|
437
497
|
}
|
|
438
498
|
mat-card lux-tabs .mat-tab-label:not(.mat-tab-disabled):hover:not(.mat-tab-disabled) {
|
|
439
|
-
background-color: #f2f2f2
|
|
499
|
+
background-color: #f2f2f2;
|
|
440
500
|
border-radius: 4px;
|
|
441
501
|
}
|
|
442
502
|
mat-card lux-tabs mat-ink-bar.mat-ink-bar {
|
|
@@ -647,24 +707,30 @@ lux-app-header-ac {
|
|
|
647
707
|
}
|
|
648
708
|
lux-app-header-ac .lux-image {
|
|
649
709
|
cursor: pointer;
|
|
650
|
-
padding:
|
|
710
|
+
padding: 0px;
|
|
651
711
|
}
|
|
652
712
|
lux-app-header-ac .lux-image:focus-visible {
|
|
653
713
|
outline: 2px dotted #000000 !important;
|
|
654
714
|
border-radius: 4px;
|
|
655
715
|
}
|
|
656
|
-
lux-app-header-ac .lux-image:hover {
|
|
657
|
-
background-color: #f2f2f2 !important;
|
|
658
|
-
border-radius: 4px;
|
|
659
|
-
}
|
|
660
716
|
lux-app-header-ac lux-button button.lux-button.lux-button-rounded {
|
|
661
717
|
min-width: 36px;
|
|
662
718
|
width: 36px;
|
|
663
719
|
padding-left: 0px !important;
|
|
664
720
|
padding-right: 0px !important;
|
|
665
721
|
background-color: transparent;
|
|
722
|
+
display: flex;
|
|
723
|
+
justify-content: center;
|
|
724
|
+
align-items: center;
|
|
666
725
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
667
726
|
}
|
|
727
|
+
lux-app-header-ac lux-button button.lux-button.lux-button-rounded.mat-fab .mat-button-wrapper {
|
|
728
|
+
line-height: 20px;
|
|
729
|
+
max-height: 20px;
|
|
730
|
+
}
|
|
731
|
+
lux-app-header-ac lux-button button.lux-button.lux-button-rounded.mat-fab .mat-button-wrapper .lux-no-size {
|
|
732
|
+
display: block;
|
|
733
|
+
}
|
|
668
734
|
lux-app-header-ac lux-button button.lux-button.lux-button-rounded lux-icon {
|
|
669
735
|
color: #335c85;
|
|
670
736
|
}
|
|
@@ -696,8 +762,8 @@ lux-app-header-ac lux-button.lux-menu-trigger-default button.mat-button.lux-butt
|
|
|
696
762
|
color: #274a72 !important;
|
|
697
763
|
}
|
|
698
764
|
lux-app-header-ac .lux-app-header-top-bar {
|
|
699
|
-
padding:
|
|
700
|
-
min-height:
|
|
765
|
+
padding: 10px 24px;
|
|
766
|
+
min-height: 64px;
|
|
701
767
|
font-size: 1rem;
|
|
702
768
|
color: rgba(0, 0, 0, 0.87);
|
|
703
769
|
background-color: #fff;
|
|
@@ -710,6 +776,11 @@ lux-app-header-ac .lux-app-header-top-bar lux-menu {
|
|
|
710
776
|
}
|
|
711
777
|
lux-app-header-ac .lux-app-header-top-bar lux-menu .lux-menu-extended {
|
|
712
778
|
overflow: unset;
|
|
779
|
+
padding: 0px;
|
|
780
|
+
}
|
|
781
|
+
lux-app-header-ac .lux-app-header-top-bar lux-menu button.mat-button.lux-button {
|
|
782
|
+
margin-top: 0px;
|
|
783
|
+
margin-bottom: 0px;
|
|
713
784
|
}
|
|
714
785
|
lux-app-header-ac .lux-app-header-nav-bar {
|
|
715
786
|
background-color: #e7ebf0;
|
|
@@ -723,9 +794,8 @@ lux-app-header-ac .lux-app-header-nav-bar.lux-mobile {
|
|
|
723
794
|
}
|
|
724
795
|
lux-app-header-ac .lux-app-header-nav-bar .lux-app-title {
|
|
725
796
|
color: rgba(0, 0, 0, 0.87);
|
|
726
|
-
padding: 4px;
|
|
727
797
|
font-size: 20px;
|
|
728
|
-
font-weight:
|
|
798
|
+
font-weight: 400;
|
|
729
799
|
font-family: Roboto, Roboto, Helvetica Neue, sans-serif;
|
|
730
800
|
}
|
|
731
801
|
lux-app-header-ac .lux-app-header-nav-bar .lux-app-title.lux-mobile {
|
|
@@ -743,6 +813,54 @@ lux-app-header-ac .lux-app-header-nav-bar .lux-header-ac-nav-menu .lux-menu-exte
|
|
|
743
813
|
padding: 0;
|
|
744
814
|
}
|
|
745
815
|
|
|
816
|
+
.cdk-overlay-pane button.lux-menu-item {
|
|
817
|
+
margin: 0px;
|
|
818
|
+
}
|
|
819
|
+
.cdk-overlay-pane button.lux-menu-item.lux-selected-item-ac {
|
|
820
|
+
font-weight: 600;
|
|
821
|
+
}
|
|
822
|
+
.cdk-overlay-pane button.lux-menu-item.lux-selected-item-ac .lux-button-label::after {
|
|
823
|
+
content: "";
|
|
824
|
+
position: absolute;
|
|
825
|
+
width: 20px;
|
|
826
|
+
height: 20px;
|
|
827
|
+
right: 0;
|
|
828
|
+
top: 14px;
|
|
829
|
+
margin: 0 10px 0 4px;
|
|
830
|
+
background-color: #335c85;
|
|
831
|
+
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%23036' stroke-linecap='round' stroke-linejoin='round' d='M0.5,8.55 L3.23,12.06 C3.4166359,12.3024927 3.70402432,12.4461869 4.01,12.4500671 C4.31092451,12.4534817 4.59741556,12.3212551 4.79,12.09 L13.5,1.55'/%3E%3C/svg%3E");
|
|
832
|
+
-webkit-mask-repeat: no-repeat;
|
|
833
|
+
-webkit-mask-position: center;
|
|
834
|
+
-webkit-mask-size: cover;
|
|
835
|
+
mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%23036' stroke-linecap='round' stroke-linejoin='round' d='M0.5,8.55 L3.23,12.06 C3.4166359,12.3024927 3.70402432,12.4461869 4.01,12.4500671 C4.31092451,12.4534817 4.59741556,12.3212551 4.79,12.09 L13.5,1.55'/%3E%3C/svg%3E");
|
|
836
|
+
mask-repeat: no-repeat;
|
|
837
|
+
mask-position: center;
|
|
838
|
+
mask-size: cover;
|
|
839
|
+
}
|
|
840
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):hover {
|
|
841
|
+
background-color: #708daa !important;
|
|
842
|
+
color: #ffffff;
|
|
843
|
+
}
|
|
844
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):hover .mat-icon-no-color {
|
|
845
|
+
color: #ffffff;
|
|
846
|
+
}
|
|
847
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):hover::after {
|
|
848
|
+
background-color: #ffffff;
|
|
849
|
+
}
|
|
850
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):focus-visible {
|
|
851
|
+
background-color: #708daa;
|
|
852
|
+
color: #ffffff;
|
|
853
|
+
outline: 2px dotted #000000 !important;
|
|
854
|
+
outline-offset: -2px;
|
|
855
|
+
}
|
|
856
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):focus-visible .mat-icon-no-color {
|
|
857
|
+
color: #ffffff;
|
|
858
|
+
}
|
|
859
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):focus-visible::after {
|
|
860
|
+
width: 16px;
|
|
861
|
+
background-color: #ffffff;
|
|
862
|
+
}
|
|
863
|
+
|
|
746
864
|
lux-link-plain .link-wrapper {
|
|
747
865
|
display: inline-block;
|
|
748
866
|
font-family: inherit;
|
|
@@ -770,11 +888,13 @@ lux-link-plain .link-wrapper.lux-disabled lux-icon i, lux-link-plain .link-wrapp
|
|
|
770
888
|
color: rgba(0, 0, 0, 0.4);
|
|
771
889
|
}
|
|
772
890
|
lux-link-plain .link-wrapper:hover:not(.lux-disabled) {
|
|
773
|
-
|
|
774
|
-
border-radius: 4px;
|
|
891
|
+
color: #f2f2f2;
|
|
775
892
|
text-decoration: underline;
|
|
776
893
|
cursor: pointer;
|
|
777
894
|
}
|
|
895
|
+
lux-link-plain .link-wrapper:hover:not(.lux-disabled) lux-icon i, lux-link-plain .link-wrapper:hover:not(.lux-disabled) lux-icon mat-icon {
|
|
896
|
+
color: #f2f2f2;
|
|
897
|
+
}
|
|
778
898
|
lux-link-plain .link-wrapper:focus:not(.lux-disabled, :hover) {
|
|
779
899
|
outline: 2px dotted #000000 !important;
|
|
780
900
|
border-radius: 2px;
|
|
@@ -831,8 +951,7 @@ lux-tile-ac .mat-card.lux-tile-ac[class~=lux-cursor]:focus-visible {
|
|
|
831
951
|
outline: 2px dotted #000000 !important;
|
|
832
952
|
}
|
|
833
953
|
lux-tile-ac .mat-card.lux-tile-ac[class~=lux-cursor]:hover {
|
|
834
|
-
|
|
835
|
-
background-image: unset;
|
|
954
|
+
border-color: #335c85;
|
|
836
955
|
}
|
|
837
956
|
|
|
838
957
|
:root {
|
|
@@ -1152,11 +1271,6 @@ h6 {
|
|
|
1152
1271
|
flex: 1 1 100%;
|
|
1153
1272
|
}
|
|
1154
1273
|
|
|
1155
|
-
.lux-tile-ac-wrapper-demo .lux-tile-ac {
|
|
1156
|
-
width: 260px;
|
|
1157
|
-
min-height: 120px;
|
|
1158
|
-
}
|
|
1159
|
-
|
|
1160
1274
|
body {
|
|
1161
1275
|
-webkit-overflow-scrolling: touch;
|
|
1162
1276
|
}
|
|
@@ -4023,6 +4137,7 @@ lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-a
|
|
|
4023
4137
|
border-radius: 4px;
|
|
4024
4138
|
}
|
|
4025
4139
|
lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-authentic.lux-no-input-row {
|
|
4140
|
+
background-color: transparent;
|
|
4026
4141
|
border: none;
|
|
4027
4142
|
padding: 0.75em 0em;
|
|
4028
4143
|
}
|
|
@@ -4115,28 +4230,66 @@ lux-form-control-wrapper select:-webkit-autofill:focus {
|
|
|
4115
4230
|
/*
|
|
4116
4231
|
* Theming for LUX-Select
|
|
4117
4232
|
*/
|
|
4118
|
-
lux-select-ac mat-select {
|
|
4233
|
+
lux-select-ac mat-select, lux-lookup-combobox-ac mat-select {
|
|
4119
4234
|
font-family: Roboto, Helvetica Neue, sans-serif;
|
|
4120
4235
|
height: calc(1.5em - 1px) !important;
|
|
4121
4236
|
}
|
|
4122
|
-
lux-select-ac mat-select .mat-select-arrow-wrapper {
|
|
4237
|
+
lux-select-ac mat-select .mat-select-arrow-wrapper, lux-lookup-combobox-ac mat-select .mat-select-arrow-wrapper {
|
|
4123
4238
|
margin-left: 2px;
|
|
4239
|
+
height: 24px;
|
|
4240
|
+
width: 24px;
|
|
4124
4241
|
}
|
|
4125
|
-
lux-select-ac mat-select
|
|
4126
|
-
border
|
|
4127
|
-
|
|
4128
|
-
|
|
4242
|
+
lux-select-ac mat-select .mat-select-arrow-wrapper .mat-select-arrow, lux-lookup-combobox-ac mat-select .mat-select-arrow-wrapper .mat-select-arrow {
|
|
4243
|
+
border: none;
|
|
4244
|
+
width: 100%;
|
|
4245
|
+
height: 100%;
|
|
4246
|
+
margin: 0;
|
|
4247
|
+
background-color: #335c85;
|
|
4248
|
+
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%23036' stroke-linecap='round' stroke-linejoin='round' d='M0.5,3.85 L6.65,10 C6.74073333,10.0966772 6.86741409,10.1515186 7,10.1515186 C7.13258591,10.1515186 7.25926667,10.0966772 7.35,10 L13.5,3.85'/%3E%3C/svg%3E");
|
|
4249
|
+
-webkit-mask-repeat: no-repeat;
|
|
4250
|
+
-webkit-mask-position: center;
|
|
4251
|
+
-webkit-mask-size: cover;
|
|
4252
|
+
mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%23036' stroke-linecap='round' stroke-linejoin='round' d='M0.5,3.85 L6.65,10 C6.74073333,10.0966772 6.86741409,10.1515186 7,10.1515186 C7.13258591,10.1515186 7.25926667,10.0966772 7.35,10 L13.5,3.85'/%3E%3C/svg%3E");
|
|
4253
|
+
mask-repeat: no-repeat;
|
|
4254
|
+
mask-position: center;
|
|
4255
|
+
mask-size: cover;
|
|
4256
|
+
}
|
|
4257
|
+
lux-select-ac mat-select[aria-disabled=true] .mat-select-arrow, lux-lookup-combobox-ac mat-select[aria-disabled=true] .mat-select-arrow {
|
|
4258
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
4129
4259
|
}
|
|
4130
|
-
lux-select-ac mat-select[aria-disabled=false] .mat-select-arrow {
|
|
4131
|
-
|
|
4132
|
-
margin: 0 2px 0 0;
|
|
4133
|
-
color: #335c85;
|
|
4260
|
+
lux-select-ac mat-select[aria-disabled=false] .mat-select-arrow, lux-lookup-combobox-ac mat-select[aria-disabled=false] .mat-select-arrow {
|
|
4261
|
+
background-color: #335c85;
|
|
4134
4262
|
}
|
|
4135
4263
|
|
|
4136
|
-
.lux-select-panel-ac .mat-pseudo-checkbox-checked
|
|
4264
|
+
.lux-select-panel-ac .mat-pseudo-checkbox-checked,
|
|
4265
|
+
.lux-select-panel-ac-multiple .mat-pseudo-checkbox-checked {
|
|
4137
4266
|
background-color: #335c85;
|
|
4138
4267
|
}
|
|
4139
4268
|
|
|
4269
|
+
.cdk-overlay-pane .mat-option {
|
|
4270
|
+
font-family: Roboto, Helvetica Neue, sans-serif;
|
|
4271
|
+
}
|
|
4272
|
+
.cdk-overlay-pane .mat-autocomplete-panel.lux-autocomplete-panel-ac,
|
|
4273
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac,
|
|
4274
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac-multiple {
|
|
4275
|
+
border: 2px solid #335c85;
|
|
4276
|
+
border-radius: 4px;
|
|
4277
|
+
box-shadow: none !important;
|
|
4278
|
+
}
|
|
4279
|
+
.cdk-overlay-pane .mat-autocomplete-panel.lux-autocomplete-panel-ac .mat-pseudo-checkbox,
|
|
4280
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac .mat-pseudo-checkbox,
|
|
4281
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac-multiple .mat-pseudo-checkbox {
|
|
4282
|
+
color: #335c85;
|
|
4283
|
+
}
|
|
4284
|
+
.cdk-overlay-pane .mat-autocomplete-panel.lux-autocomplete-panel-ac {
|
|
4285
|
+
min-width: calc(100% + 14px) !important;
|
|
4286
|
+
max-width: calc(100% + 14px) !important;
|
|
4287
|
+
margin: 13px -9px;
|
|
4288
|
+
border: 2px solid #335c85;
|
|
4289
|
+
border-radius: 4px;
|
|
4290
|
+
box-shadow: none !important;
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4140
4293
|
/*
|
|
4141
4294
|
* Theming für Lux-Checkbox
|
|
4142
4295
|
*/
|
|
@@ -4151,9 +4304,6 @@ lux-checkbox-ac label .mat-checkbox-label {
|
|
|
4151
4304
|
word-break: break-word;
|
|
4152
4305
|
white-space: normal;
|
|
4153
4306
|
}
|
|
4154
|
-
lux-checkbox-ac .mat-checkbox-disabled label {
|
|
4155
|
-
color: rgba(0, 0, 0, 0.4);
|
|
4156
|
-
}
|
|
4157
4307
|
lux-checkbox-ac .mat-checkbox-ripple {
|
|
4158
4308
|
display: none;
|
|
4159
4309
|
}
|
|
@@ -4162,6 +4312,15 @@ lux-checkbox-ac .mat-checkbox-inner-container {
|
|
|
4162
4312
|
height: 1.25em;
|
|
4163
4313
|
margin-top: 3px;
|
|
4164
4314
|
}
|
|
4315
|
+
lux-checkbox-ac .mat-checkbox-inner-container .mat-checkbox-frame {
|
|
4316
|
+
border-color: #335c85;
|
|
4317
|
+
}
|
|
4318
|
+
lux-checkbox-ac .mat-checkbox-disabled label {
|
|
4319
|
+
color: rgba(0, 0, 0, 0.4);
|
|
4320
|
+
}
|
|
4321
|
+
lux-checkbox-ac .mat-checkbox-disabled .mat-checkbox-inner-container .mat-checkbox-frame {
|
|
4322
|
+
border-color: rgba(0, 0, 0, 0.4);
|
|
4323
|
+
}
|
|
4165
4324
|
|
|
4166
4325
|
lux-datepicker-ac mat-datepicker-toggle, lux-datetimepicker-ac mat-datepicker-toggle {
|
|
4167
4326
|
height: 24px !important;
|
|
@@ -4182,6 +4341,18 @@ lux-datepicker-ac mat-datepicker-toggle .mat-icon-button.mat-button-disabled svg
|
|
|
4182
4341
|
color: rgba(0, 0, 0, 0.4);
|
|
4183
4342
|
}
|
|
4184
4343
|
|
|
4344
|
+
.cdk-overlay-pane .mat-datepicker-content,
|
|
4345
|
+
.lux-datetimepicker-overlay .mat-card.lux-card {
|
|
4346
|
+
border: 2px solid #335c85;
|
|
4347
|
+
box-shadow: none !important;
|
|
4348
|
+
margin: 13px -9px;
|
|
4349
|
+
}
|
|
4350
|
+
.cdk-overlay-pane .mat-datepicker-content .mat-calendar-header button:hover,
|
|
4351
|
+
.lux-datetimepicker-overlay .mat-card.lux-card .mat-calendar-header button:hover {
|
|
4352
|
+
background-color: #fff !important;
|
|
4353
|
+
color: #708daa;
|
|
4354
|
+
}
|
|
4355
|
+
|
|
4185
4356
|
/*
|
|
4186
4357
|
* Theming für lux-Toggle
|
|
4187
4358
|
*/
|
|
@@ -4284,11 +4455,13 @@ lux-chips-ac .lux-chips mat-chip-list div.mat-chip-list-wrapper {
|
|
|
4284
4455
|
margin: 0px 0px 0px -4px;
|
|
4285
4456
|
}
|
|
4286
4457
|
|
|
4287
|
-
.lux-chips-ac-autocomplete-panel {
|
|
4288
|
-
margin-top: -
|
|
4458
|
+
.lux-chips-ac-autocomplete-panel.mat-autocomplete-panel {
|
|
4459
|
+
margin-top: -21px;
|
|
4289
4460
|
margin-left: 0;
|
|
4290
4461
|
margin-right: 0;
|
|
4291
4462
|
border-radius: 4px;
|
|
4463
|
+
box-shadow: none !important;
|
|
4464
|
+
border: 2px solid #335c85;
|
|
4292
4465
|
}
|
|
4293
4466
|
|
|
4294
4467
|
/*
|
|
@@ -4310,9 +4483,9 @@ lux-slider-ac .lux-show-thumb-label-always.mat-slider-disabled .mat-slider-thumb
|
|
|
4310
4483
|
border-left-style: none;
|
|
4311
4484
|
border-radius: 0 4px 4px 0;
|
|
4312
4485
|
padding: 0;
|
|
4313
|
-
width:
|
|
4314
|
-
min-width:
|
|
4315
|
-
max-width:
|
|
4486
|
+
width: 25px;
|
|
4487
|
+
min-width: 25px;
|
|
4488
|
+
max-width: 25px;
|
|
4316
4489
|
background-color: #fff;
|
|
4317
4490
|
}
|
|
4318
4491
|
.lux-master-detail-ac .lux-master-ac-container.lux-master-ac-container-mobile {
|
|
@@ -4326,25 +4499,37 @@ lux-slider-ac .lux-show-thumb-label-always.mat-slider-disabled .mat-slider-thumb
|
|
|
4326
4499
|
.lux-master-detail-ac .lux-master-header-container-ac lux-button.master-ac-toggle {
|
|
4327
4500
|
position: absolute;
|
|
4328
4501
|
right: -18px;
|
|
4329
|
-
top:
|
|
4502
|
+
top: 17px;
|
|
4330
4503
|
z-index: 1000;
|
|
4331
4504
|
}
|
|
4332
4505
|
.lux-master-detail-ac .lux-master-header-container-ac lux-button.master-ac-toggle button.lux-button.lux-button-rounded {
|
|
4333
4506
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
4334
4507
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
4335
4508
|
color: #335c85;
|
|
4336
|
-
|
|
4337
|
-
.lux-master-detail-ac .lux-master-header-container-ac lux-button.master-ac-toggle button.lux-button.lux-button-rounded:hover:not([disabled]) {
|
|
4338
|
-
background-color: #f2f2f2 !important;
|
|
4339
|
-
color: #fff;
|
|
4340
|
-
border-radius: 50%;
|
|
4509
|
+
background-color: #fff !important;
|
|
4341
4510
|
}
|
|
4342
4511
|
.lux-master-detail-ac .lux-master-header-container-ac lux-button.master-ac-toggle .lux-button-icon-round.lux-lx-icon.lux-no-size {
|
|
4343
4512
|
padding-bottom: 2px;
|
|
4513
|
+
padding-right: 1px;
|
|
4514
|
+
padding-left: 1px;
|
|
4515
|
+
}
|
|
4516
|
+
.lux-master-detail-ac .lux-master-header-container-ac button.lux-button.lux-button-rounded:hover:not([disabled]) {
|
|
4517
|
+
color: #f2f2f2;
|
|
4518
|
+
border-radius: 50%;
|
|
4519
|
+
}
|
|
4520
|
+
.lux-master-detail-ac .lux-master-header-container-ac button.lux-button.lux-button-rounded:active:not([disabled]) {
|
|
4521
|
+
color: #274a72;
|
|
4522
|
+
background-color: #fff !important;
|
|
4344
4523
|
}
|
|
4345
4524
|
.lux-master-detail-ac .lux-master-header-container-ac .lux-menu-extended {
|
|
4346
4525
|
padding: 0px;
|
|
4347
4526
|
}
|
|
4527
|
+
.lux-master-detail-ac .lux-master-header-container-ac mat-card-title, .lux-master-detail-ac .lux-master-header-container-ac h2 {
|
|
4528
|
+
font-size: 16px;
|
|
4529
|
+
}
|
|
4530
|
+
.lux-master-detail-ac .lux-master-header-container-ac mat-card-subtitle.mat-card-subtitle {
|
|
4531
|
+
font-size: 14px;
|
|
4532
|
+
}
|
|
4348
4533
|
.lux-master-detail-ac lux-filter-form .lux-filter-card mat-card.mat-card,
|
|
4349
4534
|
.lux-master-detail-ac .detail-header-container .lux-detail-header-ac mat-card.mat-card,
|
|
4350
4535
|
.lux-master-detail-ac .lux-master-view-ac lux-list-item mat-card.mat-card {
|
|
@@ -5006,7 +5191,7 @@ lux-file-progress .lux-file-overlay mat-spinner svg circle {
|
|
|
5006
5191
|
.lux-form-control-error .lux-form-control-container:after {
|
|
5007
5192
|
border-bottom: 1px solid #b01211;
|
|
5008
5193
|
}
|
|
5009
|
-
.lux-form-control-error .lux-form-control-misc > * {
|
|
5194
|
+
.lux-form-control-error .lux-form-control-misc div > * {
|
|
5010
5195
|
color: #b01211 !important;
|
|
5011
5196
|
}
|
|
5012
5197
|
|
|
@@ -5017,6 +5202,24 @@ lux-file-progress .lux-file-overlay mat-spinner svg circle {
|
|
|
5017
5202
|
border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
|
|
5018
5203
|
}
|
|
5019
5204
|
|
|
5205
|
+
lux-icon.lux-error-icon {
|
|
5206
|
+
font-size: 12px;
|
|
5207
|
+
max-height: 12px;
|
|
5208
|
+
max-width: 12px;
|
|
5209
|
+
padding: 0 4px 0 4px;
|
|
5210
|
+
}
|
|
5211
|
+
lux-icon.lux-error-icon mat-icon {
|
|
5212
|
+
padding: 0 !important;
|
|
5213
|
+
min-width: 12px;
|
|
5214
|
+
max-width: 12px;
|
|
5215
|
+
min-height: 12px;
|
|
5216
|
+
max-height: 12px;
|
|
5217
|
+
color: #b01211;
|
|
5218
|
+
}
|
|
5219
|
+
lux-icon.lux-error-icon mat-icon:hover {
|
|
5220
|
+
cursor: pointer;
|
|
5221
|
+
}
|
|
5222
|
+
|
|
5020
5223
|
/*
|
|
5021
5224
|
* Theming for LUX-Layout-Card-Row
|
|
5022
5225
|
*/
|
|
@@ -5417,6 +5620,7 @@ lux-filter-form lux-menu.filter-menu .lux-filter-menu-trigger button.lux-button-
|
|
|
5417
5620
|
background-color: transparent;
|
|
5418
5621
|
color: #335c85;
|
|
5419
5622
|
padding: 0px !important;
|
|
5623
|
+
margin: 0px 4px !important;
|
|
5420
5624
|
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
5421
5625
|
}
|
|
5422
5626
|
|
|
@@ -5616,7 +5820,7 @@ lux-stepper-large {
|
|
|
5616
5820
|
flex-direction: column;
|
|
5617
5821
|
flex: 0 1 30%;
|
|
5618
5822
|
gap: 12px;
|
|
5619
|
-
padding: 12px;
|
|
5823
|
+
padding: 12px 33px 12px 12px;
|
|
5620
5824
|
overflow-y: auto;
|
|
5621
5825
|
min-width: 400px;
|
|
5622
5826
|
}
|
|
@@ -5645,6 +5849,24 @@ lux-stepper-large {
|
|
|
5645
5849
|
}
|
|
5646
5850
|
.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a {
|
|
5647
5851
|
color: #2E8533;
|
|
5852
|
+
position: relative;
|
|
5853
|
+
}
|
|
5854
|
+
.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a::after {
|
|
5855
|
+
content: "";
|
|
5856
|
+
position: absolute;
|
|
5857
|
+
display: inline-block;
|
|
5858
|
+
width: 23px;
|
|
5859
|
+
height: 23px;
|
|
5860
|
+
margin: 5px 10px 0px;
|
|
5861
|
+
background-color: #2E8533;
|
|
5862
|
+
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%23036' stroke-linecap='round' stroke-linejoin='round' d='M0.5,8.55 L3.23,12.06 C3.4166359,12.3024927 3.70402432,12.4461869 4.01,12.4500671 C4.31092451,12.4534817 4.59741556,12.3212551 4.79,12.09 L13.5,1.55'/%3E%3C/svg%3E");
|
|
5863
|
+
-webkit-mask-repeat: no-repeat;
|
|
5864
|
+
-webkit-mask-position: center;
|
|
5865
|
+
-webkit-mask-size: cover;
|
|
5866
|
+
mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%23036' stroke-linecap='round' stroke-linejoin='round' d='M0.5,8.55 L3.23,12.06 C3.4166359,12.3024927 3.70402432,12.4461869 4.01,12.4500671 C4.31092451,12.4534817 4.59741556,12.3212551 4.79,12.09 L13.5,1.55'/%3E%3C/svg%3E");
|
|
5867
|
+
mask-repeat: no-repeat;
|
|
5868
|
+
mask-position: center;
|
|
5869
|
+
mask-size: cover;
|
|
5648
5870
|
}
|
|
5649
5871
|
.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled):not(.lux-completed):not(.lux-active) .lux-stepper-large-nav-item-number-container {
|
|
5650
5872
|
color: #ffffff;
|
|
@@ -5826,6 +6048,11 @@ lux-stepper-large {
|
|
|
5826
6048
|
color: #2E8533;
|
|
5827
6049
|
font-size: 18px;
|
|
5828
6050
|
}
|
|
6051
|
+
.lux-stepper-large-mobile-nav-item.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a::after {
|
|
6052
|
+
width: 18px;
|
|
6053
|
+
height: 18px;
|
|
6054
|
+
margin-top: 4px;
|
|
6055
|
+
}
|
|
5829
6056
|
|
|
5830
6057
|
.mat-badge-content {
|
|
5831
6058
|
font-weight: 600;
|