@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
|
@@ -130,6 +130,7 @@ lux-side-nav .lux-side-nav-item:hover:not(.lux-side-nav-disabled) {
|
|
|
130
130
|
/** ########## Card ########## **/
|
|
131
131
|
lux-card mat-card[class~=lux-cursor]:focus-visible {
|
|
132
132
|
outline: 4px solid rgb(0, 152, 218) !important;
|
|
133
|
+
outline-offset: -4px;
|
|
133
134
|
}
|
|
134
135
|
lux-card mat-card[class~=lux-cursor]:hover {
|
|
135
136
|
background-color: #4d7094 !important;
|
|
@@ -148,10 +149,6 @@ lux-list:focus-visible {
|
|
|
148
149
|
lux-list lux-list-item:focus-visible {
|
|
149
150
|
outline: none;
|
|
150
151
|
}
|
|
151
|
-
lux-list lux-list-item:focus-visible mat-card {
|
|
152
|
-
outline: 4px solid rgb(0, 152, 218) !important;
|
|
153
|
-
outline-offset: -4px;
|
|
154
|
-
}
|
|
155
152
|
lux-list lux-list-item lux-card.lux-list-item-selected mat-card.mat-card.lux-card {
|
|
156
153
|
background-color: #f0f3f6 !important;
|
|
157
154
|
position: relative;
|
|
@@ -226,17 +223,36 @@ lux-form-control .lux-form-control:not(.lux-form-control-disabled).lux-focused.l
|
|
|
226
223
|
outline: 4px solid rgb(0, 152, 218) !important;
|
|
227
224
|
}
|
|
228
225
|
|
|
226
|
+
lux-icon.lux-error-icon:focus-visible {
|
|
227
|
+
outline: 4px solid rgb(0, 152, 218) !important;
|
|
228
|
+
}
|
|
229
|
+
|
|
229
230
|
/** ########## Datepicker ########## **/
|
|
230
|
-
lux-datepicker mat-datepicker-toggle button:focus-visible
|
|
231
|
+
lux-datepicker mat-datepicker-toggle button:focus-visible {
|
|
231
232
|
outline: 4px solid rgb(0, 152, 218) !important;
|
|
232
233
|
border-radius: 4px;
|
|
233
234
|
}
|
|
234
|
-
lux-datepicker mat-datepicker-toggle button:hover
|
|
235
|
+
lux-datepicker mat-datepicker-toggle button:hover {
|
|
235
236
|
background-color: #4d7094 !important;
|
|
236
237
|
border-radius: 4px;
|
|
237
238
|
border-radius: 4px;
|
|
238
239
|
}
|
|
239
|
-
lux-datepicker mat-datepicker-toggle .mat-button-focus-overlay
|
|
240
|
+
lux-datepicker mat-datepicker-toggle .mat-button-focus-overlay {
|
|
241
|
+
display: none;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
lux-datepicker-ac mat-datepicker-toggle button:focus-visible, lux-datetimepicker-ac mat-datepicker-toggle button:focus-visible {
|
|
245
|
+
outline: 4px solid rgb(0, 152, 218) !important;
|
|
246
|
+
border-radius: 4px;
|
|
247
|
+
}
|
|
248
|
+
lux-datepicker-ac mat-datepicker-toggle button:hover, lux-datetimepicker-ac mat-datepicker-toggle button:hover {
|
|
249
|
+
background-color: #fff;
|
|
250
|
+
border-radius: 4px;
|
|
251
|
+
}
|
|
252
|
+
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 {
|
|
253
|
+
color: #4d7094;
|
|
254
|
+
}
|
|
255
|
+
lux-datepicker-ac mat-datepicker-toggle .mat-button-focus-overlay, lux-datetimepicker-ac mat-datepicker-toggle .mat-button-focus-overlay {
|
|
240
256
|
display: none;
|
|
241
257
|
}
|
|
242
258
|
|
|
@@ -261,16 +277,16 @@ lux-datepicker mat-datepicker-toggle .mat-button-focus-overlay, lux-datepicker-a
|
|
|
261
277
|
}
|
|
262
278
|
|
|
263
279
|
/** ########## Datetimepicker ########## **/
|
|
264
|
-
lux-datetimepicker mat-datepicker-toggle button:focus-visible
|
|
280
|
+
lux-datetimepicker mat-datepicker-toggle button:focus-visible {
|
|
265
281
|
outline: 4px solid rgb(0, 152, 218) !important;
|
|
266
282
|
border-radius: 4px;
|
|
267
283
|
}
|
|
268
|
-
lux-datetimepicker mat-datepicker-toggle button:hover
|
|
284
|
+
lux-datetimepicker mat-datepicker-toggle button:hover {
|
|
269
285
|
background-color: #4d7094 !important;
|
|
270
286
|
border-radius: 4px;
|
|
271
287
|
border-radius: 4px;
|
|
272
288
|
}
|
|
273
|
-
lux-datetimepicker mat-datepicker-toggle .mat-button-focus-overlay
|
|
289
|
+
lux-datetimepicker mat-datepicker-toggle .mat-button-focus-overlay {
|
|
274
290
|
display: none;
|
|
275
291
|
}
|
|
276
292
|
|
|
@@ -354,26 +370,70 @@ lux-table th.cdk-keyboard-focused div.mat-sort-header-container {
|
|
|
354
370
|
border-radius: 4px;
|
|
355
371
|
}
|
|
356
372
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
background-color: #fff;
|
|
360
|
-
border: 1px solid #003366;
|
|
361
|
-
box-shadow: 0 0 0 2px var(--lux-theme-primary-500) inset;
|
|
373
|
+
/** ########## Select-AC ########## **/
|
|
374
|
+
.lux-select-panel-ac mat-option.mat-selected.mat-option:not(.mat-option-disabled) .mat-option-text {
|
|
362
375
|
position: relative;
|
|
363
|
-
border-radius: 4px;
|
|
364
376
|
}
|
|
365
|
-
.lux-select-panel-ac mat-option.mat-selected.mat-option:not(.mat-option-disabled)
|
|
366
|
-
|
|
367
|
-
|
|
377
|
+
.lux-select-panel-ac mat-option.mat-selected.mat-option:not(.mat-option-disabled) .mat-option-text::after {
|
|
378
|
+
content: "";
|
|
379
|
+
position: absolute;
|
|
380
|
+
width: 18px;
|
|
381
|
+
height: 18px;
|
|
382
|
+
top: 14px;
|
|
383
|
+
margin: 0 6px;
|
|
384
|
+
background-color: #003366;
|
|
385
|
+
-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");
|
|
386
|
+
-webkit-mask-repeat: no-repeat;
|
|
387
|
+
-webkit-mask-position: center;
|
|
388
|
+
-webkit-mask-size: cover;
|
|
389
|
+
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");
|
|
390
|
+
mask-repeat: no-repeat;
|
|
391
|
+
mask-position: center;
|
|
392
|
+
mask-size: cover;
|
|
368
393
|
}
|
|
369
|
-
|
|
394
|
+
|
|
395
|
+
.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) {
|
|
396
|
+
color: #003366;
|
|
397
|
+
background-color: #ffffff;
|
|
398
|
+
font-weight: 600;
|
|
399
|
+
}
|
|
400
|
+
.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) {
|
|
370
401
|
outline: 4px solid rgb(0, 152, 218) !important;
|
|
371
402
|
outline-offset: -4px;
|
|
372
|
-
|
|
403
|
+
background-color: #4d7094;
|
|
404
|
+
color: #ffffff;
|
|
373
405
|
}
|
|
374
|
-
.lux-select-panel-ac mat-option:
|
|
375
|
-
|
|
376
|
-
|
|
406
|
+
.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 {
|
|
407
|
+
color: #ffffff;
|
|
408
|
+
}
|
|
409
|
+
.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 {
|
|
410
|
+
background-color: #ffffff;
|
|
411
|
+
}
|
|
412
|
+
.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 {
|
|
413
|
+
border-color: #003366 !important;
|
|
414
|
+
}
|
|
415
|
+
.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 {
|
|
416
|
+
background-color: #fff;
|
|
417
|
+
}
|
|
418
|
+
.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) {
|
|
419
|
+
background-color: #4d7094;
|
|
420
|
+
color: #ffffff;
|
|
421
|
+
border-radius: 0px !important;
|
|
422
|
+
}
|
|
423
|
+
.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 {
|
|
424
|
+
color: #ffffff;
|
|
425
|
+
}
|
|
426
|
+
.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 {
|
|
427
|
+
background-color: #ffffff;
|
|
428
|
+
}
|
|
429
|
+
.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 {
|
|
430
|
+
border-color: #003366 !important;
|
|
431
|
+
}
|
|
432
|
+
.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 {
|
|
433
|
+
color: #ffffff;
|
|
434
|
+
}
|
|
435
|
+
.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 {
|
|
436
|
+
background-color: #fff;
|
|
377
437
|
}
|
|
378
438
|
|
|
379
439
|
/** ########## Button ########## **/
|
|
@@ -440,7 +500,7 @@ lux-tabs .mat-tab-label:not(.mat-tab-disabled):focus-visible {
|
|
|
440
500
|
border-radius: 4px;
|
|
441
501
|
}
|
|
442
502
|
lux-tabs .mat-tab-label:not(.mat-tab-disabled):hover:not(.mat-tab-disabled) {
|
|
443
|
-
background-color: #4d7094
|
|
503
|
+
background-color: #4d7094;
|
|
444
504
|
border-radius: 4px;
|
|
445
505
|
}
|
|
446
506
|
lux-tabs mat-ink-bar.mat-ink-bar {
|
|
@@ -458,7 +518,7 @@ mat-card lux-tabs .mat-tab-label:not(.mat-tab-disabled):focus-visible {
|
|
|
458
518
|
border-radius: 4px;
|
|
459
519
|
}
|
|
460
520
|
mat-card lux-tabs .mat-tab-label:not(.mat-tab-disabled):hover:not(.mat-tab-disabled) {
|
|
461
|
-
background-color: #4d7094
|
|
521
|
+
background-color: #4d7094;
|
|
462
522
|
border-radius: 4px;
|
|
463
523
|
}
|
|
464
524
|
mat-card lux-tabs mat-ink-bar.mat-ink-bar {
|
|
@@ -669,24 +729,30 @@ lux-app-header-ac {
|
|
|
669
729
|
}
|
|
670
730
|
lux-app-header-ac .lux-image {
|
|
671
731
|
cursor: pointer;
|
|
672
|
-
padding:
|
|
732
|
+
padding: 0px;
|
|
673
733
|
}
|
|
674
734
|
lux-app-header-ac .lux-image:focus-visible {
|
|
675
735
|
outline: 4px solid rgb(0, 152, 218) !important;
|
|
676
736
|
border-radius: 4px;
|
|
677
737
|
}
|
|
678
|
-
lux-app-header-ac .lux-image:hover {
|
|
679
|
-
background-color: #4d7094 !important;
|
|
680
|
-
border-radius: 4px;
|
|
681
|
-
}
|
|
682
738
|
lux-app-header-ac lux-button button.lux-button.lux-button-rounded {
|
|
683
739
|
min-width: 36px;
|
|
684
740
|
width: 36px;
|
|
685
741
|
padding-left: 0px !important;
|
|
686
742
|
padding-right: 0px !important;
|
|
687
743
|
background-color: transparent;
|
|
744
|
+
display: flex;
|
|
745
|
+
justify-content: center;
|
|
746
|
+
align-items: center;
|
|
688
747
|
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);
|
|
689
748
|
}
|
|
749
|
+
lux-app-header-ac lux-button button.lux-button.lux-button-rounded.mat-fab .mat-button-wrapper {
|
|
750
|
+
line-height: 20px;
|
|
751
|
+
max-height: 20px;
|
|
752
|
+
}
|
|
753
|
+
lux-app-header-ac lux-button button.lux-button.lux-button-rounded.mat-fab .mat-button-wrapper .lux-no-size {
|
|
754
|
+
display: block;
|
|
755
|
+
}
|
|
690
756
|
lux-app-header-ac lux-button button.lux-button.lux-button-rounded lux-icon {
|
|
691
757
|
color: #003366;
|
|
692
758
|
}
|
|
@@ -718,8 +784,8 @@ lux-app-header-ac lux-button.lux-menu-trigger-default button.mat-button.lux-butt
|
|
|
718
784
|
color: #002753 !important;
|
|
719
785
|
}
|
|
720
786
|
lux-app-header-ac .lux-app-header-top-bar {
|
|
721
|
-
padding:
|
|
722
|
-
min-height:
|
|
787
|
+
padding: 10px 24px;
|
|
788
|
+
min-height: 64px;
|
|
723
789
|
font-size: 1rem;
|
|
724
790
|
color: rgba(0, 0, 0, 0.87);
|
|
725
791
|
background-color: #fff;
|
|
@@ -732,6 +798,11 @@ lux-app-header-ac .lux-app-header-top-bar lux-menu {
|
|
|
732
798
|
}
|
|
733
799
|
lux-app-header-ac .lux-app-header-top-bar lux-menu .lux-menu-extended {
|
|
734
800
|
overflow: unset;
|
|
801
|
+
padding: 0px;
|
|
802
|
+
}
|
|
803
|
+
lux-app-header-ac .lux-app-header-top-bar lux-menu button.mat-button.lux-button {
|
|
804
|
+
margin-top: 0px;
|
|
805
|
+
margin-bottom: 0px;
|
|
735
806
|
}
|
|
736
807
|
lux-app-header-ac .lux-app-header-nav-bar {
|
|
737
808
|
background-color: #e0e7ed;
|
|
@@ -745,9 +816,8 @@ lux-app-header-ac .lux-app-header-nav-bar.lux-mobile {
|
|
|
745
816
|
}
|
|
746
817
|
lux-app-header-ac .lux-app-header-nav-bar .lux-app-title {
|
|
747
818
|
color: rgba(0, 0, 0, 0.87);
|
|
748
|
-
padding: 4px;
|
|
749
819
|
font-size: 20px;
|
|
750
|
-
font-weight:
|
|
820
|
+
font-weight: 400;
|
|
751
821
|
font-family: "Blogger Sans", "Source Sans Pro", Helvetica, Arial, sans-serif;
|
|
752
822
|
}
|
|
753
823
|
lux-app-header-ac .lux-app-header-nav-bar .lux-app-title.lux-mobile {
|
|
@@ -765,6 +835,54 @@ lux-app-header-ac .lux-app-header-nav-bar .lux-header-ac-nav-menu .lux-menu-exte
|
|
|
765
835
|
padding: 0;
|
|
766
836
|
}
|
|
767
837
|
|
|
838
|
+
.cdk-overlay-pane button.lux-menu-item {
|
|
839
|
+
margin: 0px;
|
|
840
|
+
}
|
|
841
|
+
.cdk-overlay-pane button.lux-menu-item.lux-selected-item-ac {
|
|
842
|
+
font-weight: 600;
|
|
843
|
+
}
|
|
844
|
+
.cdk-overlay-pane button.lux-menu-item.lux-selected-item-ac .lux-button-label::after {
|
|
845
|
+
content: "";
|
|
846
|
+
position: absolute;
|
|
847
|
+
width: 20px;
|
|
848
|
+
height: 20px;
|
|
849
|
+
right: 0;
|
|
850
|
+
top: 14px;
|
|
851
|
+
margin: 0 10px 0 4px;
|
|
852
|
+
background-color: #003366;
|
|
853
|
+
-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");
|
|
854
|
+
-webkit-mask-repeat: no-repeat;
|
|
855
|
+
-webkit-mask-position: center;
|
|
856
|
+
-webkit-mask-size: cover;
|
|
857
|
+
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");
|
|
858
|
+
mask-repeat: no-repeat;
|
|
859
|
+
mask-position: center;
|
|
860
|
+
mask-size: cover;
|
|
861
|
+
}
|
|
862
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):hover {
|
|
863
|
+
background-color: #4d7094 !important;
|
|
864
|
+
color: #ffffff;
|
|
865
|
+
}
|
|
866
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):hover .mat-icon-no-color {
|
|
867
|
+
color: #ffffff;
|
|
868
|
+
}
|
|
869
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):hover::after {
|
|
870
|
+
background-color: #ffffff;
|
|
871
|
+
}
|
|
872
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):focus-visible {
|
|
873
|
+
background-color: #4d7094;
|
|
874
|
+
color: #ffffff;
|
|
875
|
+
outline: 4px solid rgb(0, 152, 218) !important;
|
|
876
|
+
outline-offset: -4px;
|
|
877
|
+
}
|
|
878
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):focus-visible .mat-icon-no-color {
|
|
879
|
+
color: #ffffff;
|
|
880
|
+
}
|
|
881
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):focus-visible::after {
|
|
882
|
+
width: 16px;
|
|
883
|
+
background-color: #ffffff;
|
|
884
|
+
}
|
|
885
|
+
|
|
768
886
|
lux-link-plain .link-wrapper {
|
|
769
887
|
display: inline-block;
|
|
770
888
|
font-family: inherit;
|
|
@@ -792,11 +910,13 @@ lux-link-plain .link-wrapper.lux-disabled lux-icon i, lux-link-plain .link-wrapp
|
|
|
792
910
|
color: rgba(0, 0, 0, 0.38);
|
|
793
911
|
}
|
|
794
912
|
lux-link-plain .link-wrapper:hover:not(.lux-disabled) {
|
|
795
|
-
|
|
796
|
-
border-radius: 4px;
|
|
913
|
+
color: #4d7094;
|
|
797
914
|
text-decoration: underline;
|
|
798
915
|
cursor: pointer;
|
|
799
916
|
}
|
|
917
|
+
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 {
|
|
918
|
+
color: #4d7094;
|
|
919
|
+
}
|
|
800
920
|
lux-link-plain .link-wrapper:focus:not(.lux-disabled, :hover) {
|
|
801
921
|
outline: 4px solid rgb(0, 152, 218) !important;
|
|
802
922
|
border-radius: 2px;
|
|
@@ -853,8 +973,7 @@ lux-tile-ac .mat-card.lux-tile-ac[class~=lux-cursor]:focus-visible {
|
|
|
853
973
|
outline: 4px solid rgb(0, 152, 218) !important;
|
|
854
974
|
}
|
|
855
975
|
lux-tile-ac .mat-card.lux-tile-ac[class~=lux-cursor]:hover {
|
|
856
|
-
|
|
857
|
-
background-image: unset;
|
|
976
|
+
border-color: #003366;
|
|
858
977
|
}
|
|
859
978
|
|
|
860
979
|
:root {
|
|
@@ -959,7 +1078,7 @@ lux-tile-ac .mat-card.lux-tile-ac[class~=lux-cursor]:hover {
|
|
|
959
1078
|
--lux-theme-app-gradient: linear-gradient(90deg, #ffffff 0%, #f8fbff 100%);
|
|
960
1079
|
--lux-theme-app-gradient-reverse: linear-gradient(270deg, #ffffff 0%, #f8fbff 100%);
|
|
961
1080
|
--lux-theme-app-border-color: app-border-color;
|
|
962
|
-
--lux-theme-form-border-color: rgba(0, 0, 0, 0.
|
|
1081
|
+
--lux-theme-form-border-color: rgba(0, 0, 0, 0.38);
|
|
963
1082
|
--lux-theme-form-control-default-height-not-scalable: 30px;
|
|
964
1083
|
--lux-theme-form-control-height: 24px;
|
|
965
1084
|
--lux-theme-form-control-height-small: 18px;
|
|
@@ -1174,11 +1293,6 @@ h6 {
|
|
|
1174
1293
|
flex: 1 1 100%;
|
|
1175
1294
|
}
|
|
1176
1295
|
|
|
1177
|
-
.lux-tile-ac-wrapper-demo .lux-tile-ac {
|
|
1178
|
-
width: 260px;
|
|
1179
|
-
min-height: 120px;
|
|
1180
|
-
}
|
|
1181
|
-
|
|
1182
1296
|
body {
|
|
1183
1297
|
-webkit-overflow-scrolling: touch;
|
|
1184
1298
|
}
|
|
@@ -4041,10 +4155,11 @@ lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-a
|
|
|
4041
4155
|
color: rgba(0, 0, 0, 0.87);
|
|
4042
4156
|
background-color: #fff;
|
|
4043
4157
|
line-height: 1.5em;
|
|
4044
|
-
border: 1px solid rgba(0, 0, 0, 0.
|
|
4158
|
+
border: 1px solid rgba(0, 0, 0, 0.38);
|
|
4045
4159
|
border-radius: 4px;
|
|
4046
4160
|
}
|
|
4047
4161
|
lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-authentic.lux-no-input-row {
|
|
4162
|
+
background-color: transparent;
|
|
4048
4163
|
border: none;
|
|
4049
4164
|
padding: 0.75em 0em;
|
|
4050
4165
|
}
|
|
@@ -4137,28 +4252,66 @@ lux-form-control-wrapper select:-webkit-autofill:focus {
|
|
|
4137
4252
|
/*
|
|
4138
4253
|
* Theming for LUX-Select
|
|
4139
4254
|
*/
|
|
4140
|
-
lux-select-ac mat-select {
|
|
4255
|
+
lux-select-ac mat-select, lux-lookup-combobox-ac mat-select {
|
|
4141
4256
|
font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
|
|
4142
4257
|
height: calc(1.5em - 1px) !important;
|
|
4143
4258
|
}
|
|
4144
|
-
lux-select-ac mat-select .mat-select-arrow-wrapper {
|
|
4259
|
+
lux-select-ac mat-select .mat-select-arrow-wrapper, lux-lookup-combobox-ac mat-select .mat-select-arrow-wrapper {
|
|
4145
4260
|
margin-left: 2px;
|
|
4261
|
+
height: 24px;
|
|
4262
|
+
width: 24px;
|
|
4146
4263
|
}
|
|
4147
|
-
lux-select-ac mat-select
|
|
4148
|
-
border
|
|
4149
|
-
|
|
4150
|
-
|
|
4264
|
+
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 {
|
|
4265
|
+
border: none;
|
|
4266
|
+
width: 100%;
|
|
4267
|
+
height: 100%;
|
|
4268
|
+
margin: 0;
|
|
4269
|
+
background-color: #003366;
|
|
4270
|
+
-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");
|
|
4271
|
+
-webkit-mask-repeat: no-repeat;
|
|
4272
|
+
-webkit-mask-position: center;
|
|
4273
|
+
-webkit-mask-size: cover;
|
|
4274
|
+
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");
|
|
4275
|
+
mask-repeat: no-repeat;
|
|
4276
|
+
mask-position: center;
|
|
4277
|
+
mask-size: cover;
|
|
4278
|
+
}
|
|
4279
|
+
lux-select-ac mat-select[aria-disabled=true] .mat-select-arrow, lux-lookup-combobox-ac mat-select[aria-disabled=true] .mat-select-arrow {
|
|
4280
|
+
background-color: rgba(0, 0, 0, 0.38);
|
|
4151
4281
|
}
|
|
4152
|
-
lux-select-ac mat-select[aria-disabled=false] .mat-select-arrow {
|
|
4153
|
-
|
|
4154
|
-
margin: 0 2px 0 0;
|
|
4155
|
-
color: #003366;
|
|
4282
|
+
lux-select-ac mat-select[aria-disabled=false] .mat-select-arrow, lux-lookup-combobox-ac mat-select[aria-disabled=false] .mat-select-arrow {
|
|
4283
|
+
background-color: #003366;
|
|
4156
4284
|
}
|
|
4157
4285
|
|
|
4158
|
-
.lux-select-panel-ac .mat-pseudo-checkbox-checked
|
|
4286
|
+
.lux-select-panel-ac .mat-pseudo-checkbox-checked,
|
|
4287
|
+
.lux-select-panel-ac-multiple .mat-pseudo-checkbox-checked {
|
|
4159
4288
|
background-color: #003366;
|
|
4160
4289
|
}
|
|
4161
4290
|
|
|
4291
|
+
.cdk-overlay-pane .mat-option {
|
|
4292
|
+
font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
|
|
4293
|
+
}
|
|
4294
|
+
.cdk-overlay-pane .mat-autocomplete-panel.lux-autocomplete-panel-ac,
|
|
4295
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac,
|
|
4296
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac-multiple {
|
|
4297
|
+
border: 2px solid #003366;
|
|
4298
|
+
border-radius: 4px;
|
|
4299
|
+
box-shadow: none !important;
|
|
4300
|
+
}
|
|
4301
|
+
.cdk-overlay-pane .mat-autocomplete-panel.lux-autocomplete-panel-ac .mat-pseudo-checkbox,
|
|
4302
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac .mat-pseudo-checkbox,
|
|
4303
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac-multiple .mat-pseudo-checkbox {
|
|
4304
|
+
color: #003366;
|
|
4305
|
+
}
|
|
4306
|
+
.cdk-overlay-pane .mat-autocomplete-panel.lux-autocomplete-panel-ac {
|
|
4307
|
+
min-width: calc(100% + 14px) !important;
|
|
4308
|
+
max-width: calc(100% + 14px) !important;
|
|
4309
|
+
margin: 13px -9px;
|
|
4310
|
+
border: 2px solid #003366;
|
|
4311
|
+
border-radius: 4px;
|
|
4312
|
+
box-shadow: none !important;
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4162
4315
|
/*
|
|
4163
4316
|
* Theming für Lux-Checkbox
|
|
4164
4317
|
*/
|
|
@@ -4173,9 +4326,6 @@ lux-checkbox-ac label .mat-checkbox-label {
|
|
|
4173
4326
|
word-break: break-word;
|
|
4174
4327
|
white-space: normal;
|
|
4175
4328
|
}
|
|
4176
|
-
lux-checkbox-ac .mat-checkbox-disabled label {
|
|
4177
|
-
color: rgba(0, 0, 0, 0.38);
|
|
4178
|
-
}
|
|
4179
4329
|
lux-checkbox-ac .mat-checkbox-ripple {
|
|
4180
4330
|
display: none;
|
|
4181
4331
|
}
|
|
@@ -4184,6 +4334,15 @@ lux-checkbox-ac .mat-checkbox-inner-container {
|
|
|
4184
4334
|
height: 1.25em;
|
|
4185
4335
|
margin-top: 3px;
|
|
4186
4336
|
}
|
|
4337
|
+
lux-checkbox-ac .mat-checkbox-inner-container .mat-checkbox-frame {
|
|
4338
|
+
border-color: #003366;
|
|
4339
|
+
}
|
|
4340
|
+
lux-checkbox-ac .mat-checkbox-disabled label {
|
|
4341
|
+
color: rgba(0, 0, 0, 0.38);
|
|
4342
|
+
}
|
|
4343
|
+
lux-checkbox-ac .mat-checkbox-disabled .mat-checkbox-inner-container .mat-checkbox-frame {
|
|
4344
|
+
border-color: rgba(0, 0, 0, 0.38);
|
|
4345
|
+
}
|
|
4187
4346
|
|
|
4188
4347
|
lux-datepicker-ac mat-datepicker-toggle, lux-datetimepicker-ac mat-datepicker-toggle {
|
|
4189
4348
|
height: 24px !important;
|
|
@@ -4204,6 +4363,18 @@ lux-datepicker-ac mat-datepicker-toggle .mat-icon-button.mat-button-disabled svg
|
|
|
4204
4363
|
color: rgba(0, 0, 0, 0.38);
|
|
4205
4364
|
}
|
|
4206
4365
|
|
|
4366
|
+
.cdk-overlay-pane .mat-datepicker-content,
|
|
4367
|
+
.lux-datetimepicker-overlay .mat-card.lux-card {
|
|
4368
|
+
border: 2px solid #003366;
|
|
4369
|
+
box-shadow: none !important;
|
|
4370
|
+
margin: 13px -9px;
|
|
4371
|
+
}
|
|
4372
|
+
.cdk-overlay-pane .mat-datepicker-content .mat-calendar-header button:hover,
|
|
4373
|
+
.lux-datetimepicker-overlay .mat-card.lux-card .mat-calendar-header button:hover {
|
|
4374
|
+
background-color: #fff !important;
|
|
4375
|
+
color: #4d7094;
|
|
4376
|
+
}
|
|
4377
|
+
|
|
4207
4378
|
/*
|
|
4208
4379
|
* Theming für lux-Toggle
|
|
4209
4380
|
*/
|
|
@@ -4306,11 +4477,13 @@ lux-chips-ac .lux-chips mat-chip-list div.mat-chip-list-wrapper {
|
|
|
4306
4477
|
margin: 0px 0px 0px -4px;
|
|
4307
4478
|
}
|
|
4308
4479
|
|
|
4309
|
-
.lux-chips-ac-autocomplete-panel {
|
|
4310
|
-
margin-top: -
|
|
4480
|
+
.lux-chips-ac-autocomplete-panel.mat-autocomplete-panel {
|
|
4481
|
+
margin-top: -21px;
|
|
4311
4482
|
margin-left: 0;
|
|
4312
4483
|
margin-right: 0;
|
|
4313
4484
|
border-radius: 4px;
|
|
4485
|
+
box-shadow: none !important;
|
|
4486
|
+
border: 2px solid #003366;
|
|
4314
4487
|
}
|
|
4315
4488
|
|
|
4316
4489
|
/*
|
|
@@ -4332,9 +4505,9 @@ lux-slider-ac .lux-show-thumb-label-always.mat-slider-disabled .mat-slider-thumb
|
|
|
4332
4505
|
border-left-style: none;
|
|
4333
4506
|
border-radius: 0 4px 4px 0;
|
|
4334
4507
|
padding: 0;
|
|
4335
|
-
width:
|
|
4336
|
-
min-width:
|
|
4337
|
-
max-width:
|
|
4508
|
+
width: 25px;
|
|
4509
|
+
min-width: 25px;
|
|
4510
|
+
max-width: 25px;
|
|
4338
4511
|
background-color: #fff;
|
|
4339
4512
|
}
|
|
4340
4513
|
.lux-master-detail-ac .lux-master-ac-container.lux-master-ac-container-mobile {
|
|
@@ -4348,25 +4521,37 @@ lux-slider-ac .lux-show-thumb-label-always.mat-slider-disabled .mat-slider-thumb
|
|
|
4348
4521
|
.lux-master-detail-ac .lux-master-header-container-ac lux-button.master-ac-toggle {
|
|
4349
4522
|
position: absolute;
|
|
4350
4523
|
right: -18px;
|
|
4351
|
-
top:
|
|
4524
|
+
top: 17px;
|
|
4352
4525
|
z-index: 1000;
|
|
4353
4526
|
}
|
|
4354
4527
|
.lux-master-detail-ac .lux-master-header-container-ac lux-button.master-ac-toggle button.lux-button.lux-button-rounded {
|
|
4355
4528
|
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);
|
|
4356
4529
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
4357
4530
|
color: #003366;
|
|
4358
|
-
|
|
4359
|
-
.lux-master-detail-ac .lux-master-header-container-ac lux-button.master-ac-toggle button.lux-button.lux-button-rounded:hover:not([disabled]) {
|
|
4360
|
-
background-color: #4d7094 !important;
|
|
4361
|
-
color: #fff;
|
|
4362
|
-
border-radius: 50%;
|
|
4531
|
+
background-color: #fff !important;
|
|
4363
4532
|
}
|
|
4364
4533
|
.lux-master-detail-ac .lux-master-header-container-ac lux-button.master-ac-toggle .lux-button-icon-round.lux-lx-icon.lux-no-size {
|
|
4365
4534
|
padding-bottom: 2px;
|
|
4535
|
+
padding-right: 1px;
|
|
4536
|
+
padding-left: 1px;
|
|
4537
|
+
}
|
|
4538
|
+
.lux-master-detail-ac .lux-master-header-container-ac button.lux-button.lux-button-rounded:hover:not([disabled]) {
|
|
4539
|
+
color: #4d7094;
|
|
4540
|
+
border-radius: 50%;
|
|
4541
|
+
}
|
|
4542
|
+
.lux-master-detail-ac .lux-master-header-container-ac button.lux-button.lux-button-rounded:active:not([disabled]) {
|
|
4543
|
+
color: #002753;
|
|
4544
|
+
background-color: #fff !important;
|
|
4366
4545
|
}
|
|
4367
4546
|
.lux-master-detail-ac .lux-master-header-container-ac .lux-menu-extended {
|
|
4368
4547
|
padding: 0px;
|
|
4369
4548
|
}
|
|
4549
|
+
.lux-master-detail-ac .lux-master-header-container-ac mat-card-title, .lux-master-detail-ac .lux-master-header-container-ac h2 {
|
|
4550
|
+
font-size: 16px;
|
|
4551
|
+
}
|
|
4552
|
+
.lux-master-detail-ac .lux-master-header-container-ac mat-card-subtitle.mat-card-subtitle {
|
|
4553
|
+
font-size: 14px;
|
|
4554
|
+
}
|
|
4370
4555
|
.lux-master-detail-ac lux-filter-form .lux-filter-card mat-card.mat-card,
|
|
4371
4556
|
.lux-master-detail-ac .detail-header-container .lux-detail-header-ac mat-card.mat-card,
|
|
4372
4557
|
.lux-master-detail-ac .lux-master-view-ac lux-list-item mat-card.mat-card {
|
|
@@ -5019,7 +5204,7 @@ lux-file-progress .lux-file-overlay mat-spinner svg circle {
|
|
|
5019
5204
|
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);
|
|
5020
5205
|
}
|
|
5021
5206
|
.lux-form-control .lux-form-control-container:after {
|
|
5022
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.
|
|
5207
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.38);
|
|
5023
5208
|
}
|
|
5024
5209
|
|
|
5025
5210
|
.lux-form-control-error .lux-form-control-label > * {
|
|
@@ -5028,7 +5213,7 @@ lux-file-progress .lux-file-overlay mat-spinner svg circle {
|
|
|
5028
5213
|
.lux-form-control-error .lux-form-control-container:after {
|
|
5029
5214
|
border-bottom: 1px solid #ec2125;
|
|
5030
5215
|
}
|
|
5031
|
-
.lux-form-control-error .lux-form-control-misc > * {
|
|
5216
|
+
.lux-form-control-error .lux-form-control-misc div > * {
|
|
5032
5217
|
color: #ec2125 !important;
|
|
5033
5218
|
}
|
|
5034
5219
|
|
|
@@ -5039,6 +5224,24 @@ lux-file-progress .lux-file-overlay mat-spinner svg circle {
|
|
|
5039
5224
|
border-bottom: 1px dashed rgba(0, 0, 0, 0.38);
|
|
5040
5225
|
}
|
|
5041
5226
|
|
|
5227
|
+
lux-icon.lux-error-icon {
|
|
5228
|
+
font-size: 12px;
|
|
5229
|
+
max-height: 12px;
|
|
5230
|
+
max-width: 12px;
|
|
5231
|
+
padding: 0 4px 0 4px;
|
|
5232
|
+
}
|
|
5233
|
+
lux-icon.lux-error-icon mat-icon {
|
|
5234
|
+
padding: 0 !important;
|
|
5235
|
+
min-width: 12px;
|
|
5236
|
+
max-width: 12px;
|
|
5237
|
+
min-height: 12px;
|
|
5238
|
+
max-height: 12px;
|
|
5239
|
+
color: #ec2125;
|
|
5240
|
+
}
|
|
5241
|
+
lux-icon.lux-error-icon mat-icon:hover {
|
|
5242
|
+
cursor: pointer;
|
|
5243
|
+
}
|
|
5244
|
+
|
|
5042
5245
|
/*
|
|
5043
5246
|
* Theming for LUX-Layout-Card-Row
|
|
5044
5247
|
*/
|
|
@@ -5439,6 +5642,7 @@ lux-filter-form lux-menu.filter-menu .lux-filter-menu-trigger button.lux-button-
|
|
|
5439
5642
|
background-color: transparent;
|
|
5440
5643
|
color: #003366;
|
|
5441
5644
|
padding: 0px !important;
|
|
5645
|
+
margin: 0px 4px !important;
|
|
5442
5646
|
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);
|
|
5443
5647
|
}
|
|
5444
5648
|
|
|
@@ -5638,7 +5842,7 @@ lux-stepper-large {
|
|
|
5638
5842
|
flex-direction: column;
|
|
5639
5843
|
flex: 0 1 30%;
|
|
5640
5844
|
gap: 12px;
|
|
5641
|
-
padding: 12px;
|
|
5845
|
+
padding: 12px 33px 12px 12px;
|
|
5642
5846
|
overflow-y: auto;
|
|
5643
5847
|
min-width: 400px;
|
|
5644
5848
|
}
|
|
@@ -5662,14 +5866,32 @@ lux-stepper-large {
|
|
|
5662
5866
|
text-decoration: underline;
|
|
5663
5867
|
}
|
|
5664
5868
|
.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) .lux-stepper-large-nav-item-number-container {
|
|
5665
|
-
color: #
|
|
5869
|
+
color: #2E8533;
|
|
5666
5870
|
background-color: #ffffff;
|
|
5667
5871
|
}
|
|
5668
5872
|
.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a {
|
|
5669
5873
|
color: #2E8533;
|
|
5874
|
+
position: relative;
|
|
5875
|
+
}
|
|
5876
|
+
.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a::after {
|
|
5877
|
+
content: "";
|
|
5878
|
+
position: absolute;
|
|
5879
|
+
display: inline-block;
|
|
5880
|
+
width: 23px;
|
|
5881
|
+
height: 23px;
|
|
5882
|
+
margin: 5px 10px 0px;
|
|
5883
|
+
background-color: #2E8533;
|
|
5884
|
+
-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");
|
|
5885
|
+
-webkit-mask-repeat: no-repeat;
|
|
5886
|
+
-webkit-mask-position: center;
|
|
5887
|
+
-webkit-mask-size: cover;
|
|
5888
|
+
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");
|
|
5889
|
+
mask-repeat: no-repeat;
|
|
5890
|
+
mask-position: center;
|
|
5891
|
+
mask-size: cover;
|
|
5670
5892
|
}
|
|
5671
5893
|
.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled):not(.lux-completed):not(.lux-active) .lux-stepper-large-nav-item-number-container {
|
|
5672
|
-
color: #
|
|
5894
|
+
color: #2E8533;
|
|
5673
5895
|
background-color: #ffffff;
|
|
5674
5896
|
}
|
|
5675
5897
|
.lux-stepper-large-nav-item:not(.lux-touched) {
|
|
@@ -5710,7 +5932,7 @@ lux-stepper-large {
|
|
|
5710
5932
|
cursor: pointer;
|
|
5711
5933
|
}
|
|
5712
5934
|
.lux-stepper-large-nav-item .lux-stepper-large-nav-item-label-container .lux-stepper-large-nav-item-complete {
|
|
5713
|
-
color: #
|
|
5935
|
+
color: #2E8533;
|
|
5714
5936
|
font-size: 23px;
|
|
5715
5937
|
height: 23px;
|
|
5716
5938
|
width: 23px;
|
|
@@ -5845,9 +6067,14 @@ lux-stepper-large {
|
|
|
5845
6067
|
cursor: pointer;
|
|
5846
6068
|
}
|
|
5847
6069
|
.lux-stepper-large-mobile-nav-item .lux-stepper-large-mobile-nav-item-label-container .lux-stepper-large-mobile-nav-item-complete {
|
|
5848
|
-
color: #
|
|
6070
|
+
color: #2E8533;
|
|
5849
6071
|
font-size: 18px;
|
|
5850
6072
|
}
|
|
6073
|
+
.lux-stepper-large-mobile-nav-item.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a::after {
|
|
6074
|
+
width: 18px;
|
|
6075
|
+
height: 18px;
|
|
6076
|
+
margin-top: 4px;
|
|
6077
|
+
}
|
|
5851
6078
|
|
|
5852
6079
|
.mat-badge-content {
|
|
5853
6080
|
font-weight: 600;
|
|
@@ -8520,6 +8747,16 @@ div, span, p, label {
|
|
|
8520
8747
|
.mat-menu-panel .mat-menu-item .mat-icon-no-color {
|
|
8521
8748
|
color: #003366;
|
|
8522
8749
|
}
|
|
8750
|
+
.mat-menu-panel .mat-menu-content:not(:empty) {
|
|
8751
|
+
padding: 0;
|
|
8752
|
+
}
|
|
8753
|
+
.mat-menu-panel .lux-menu-item:not([disabled=true]):hover {
|
|
8754
|
+
color: #fff;
|
|
8755
|
+
background-color: #4d7094;
|
|
8756
|
+
}
|
|
8757
|
+
.mat-menu-panel .lux-menu-item:not([disabled=true]):hover .mat-icon-no-color {
|
|
8758
|
+
color: #fff;
|
|
8759
|
+
}
|
|
8523
8760
|
|
|
8524
8761
|
lux-menu .lux-menu-extended lux-button.lux-menu-item .lux-button-label {
|
|
8525
8762
|
font-weight: 400;
|
|
@@ -8531,6 +8768,9 @@ lux-menu .lux-menu-extended lux-button.lux-menu-item .lux-button-label {
|
|
|
8531
8768
|
color: #ec2125;
|
|
8532
8769
|
font-weight: 300;
|
|
8533
8770
|
}
|
|
8771
|
+
.lux-autocomplete-panel-ac .mat-option.invalid .mat-pseudo-checkbox, .lux-select-panel-ac .mat-option.invalid .mat-pseudo-checkbox, .lux-select-panel-ac-multiple .mat-option.invalid .mat-pseudo-checkbox {
|
|
8772
|
+
color: rgba(0, 0, 0, 0.38);
|
|
8773
|
+
}
|
|
8534
8774
|
|
|
8535
8775
|
lux-app-content {
|
|
8536
8776
|
background-color: #fff;
|
|
@@ -8544,11 +8784,32 @@ lux-app-footer .lux-app-footer {
|
|
|
8544
8784
|
border-bottom: 8px solid #002d5d;
|
|
8545
8785
|
}
|
|
8546
8786
|
|
|
8547
|
-
lux-tabs
|
|
8548
|
-
font-size:
|
|
8787
|
+
lux-tabs .mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled), mat-card lux-tabs .mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled) {
|
|
8788
|
+
font-size: 14px;
|
|
8789
|
+
font-weight: 600;
|
|
8790
|
+
color: #003366;
|
|
8791
|
+
min-height: unset !important;
|
|
8549
8792
|
}
|
|
8550
|
-
lux-tabs .mat-tab-label:not(.mat-tab-disabled):
|
|
8551
|
-
|
|
8793
|
+
lux-tabs .mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled):focus-visible, mat-card lux-tabs .mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled):focus-visible {
|
|
8794
|
+
outline: 4px solid rgb(0, 152, 218) !important;
|
|
8795
|
+
outline-offset: -4px;
|
|
8796
|
+
border-radius: 4px;
|
|
8797
|
+
background-color: transparent !important;
|
|
8798
|
+
color: #4d7094 !important;
|
|
8799
|
+
}
|
|
8800
|
+
lux-tabs .mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled):focus-visible .lux-tab-title, mat-card lux-tabs .mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled):focus-visible .lux-tab-title {
|
|
8801
|
+
color: #4d7094 !important;
|
|
8802
|
+
}
|
|
8803
|
+
lux-tabs .mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled):hover:not(.mat-tab-disabled), mat-card lux-tabs .mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled):hover:not(.mat-tab-disabled) {
|
|
8804
|
+
background-color: transparent;
|
|
8805
|
+
color: #4d7094 !important;
|
|
8806
|
+
}
|
|
8807
|
+
lux-tabs .mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled):hover:not(.mat-tab-disabled) .lux-tab-title, mat-card lux-tabs .mat-tab-label-container .mat-tab-label:not(.mat-tab-disabled):hover:not(.mat-tab-disabled) .lux-tab-title {
|
|
8808
|
+
color: #4d7094 !important;
|
|
8809
|
+
}
|
|
8810
|
+
lux-tabs lux-icon.lux-tab-icon mat-icon.lux-lx-icon, mat-card lux-tabs lux-icon.lux-tab-icon mat-icon.lux-lx-icon {
|
|
8811
|
+
width: 24px !important;
|
|
8812
|
+
height: 24px !important;
|
|
8552
8813
|
}
|
|
8553
8814
|
|
|
8554
8815
|
/*
|
|
@@ -8606,11 +8867,24 @@ lux-table .lux-table .lux-paginator-xs:not(.lux-hide) .mat-paginator-range-label
|
|
|
8606
8867
|
margin: 0 32px 0 24px;
|
|
8607
8868
|
}
|
|
8608
8869
|
|
|
8870
|
+
lux-table tr:hover > td,
|
|
8871
|
+
lux-table tr:hover > th {
|
|
8872
|
+
background-color: unset !important;
|
|
8873
|
+
border-radius: 0;
|
|
8874
|
+
}
|
|
8875
|
+
|
|
8609
8876
|
lux-filter-form lux-menu .lux-filter-menu-trigger button:not([disabled]).mat-fab.lux-button-rounded:hover {
|
|
8610
|
-
background-color: #
|
|
8877
|
+
background-color: #fff !important;
|
|
8878
|
+
color: #4d7094;
|
|
8611
8879
|
}
|
|
8612
8880
|
lux-filter-form lux-menu .lux-filter-menu-trigger button:not([disabled]).mat-fab.lux-button-rounded:focus-visible {
|
|
8881
|
+
outline: 4px solid rgb(0, 152, 218) !important;
|
|
8882
|
+
outline-offset: -4px;
|
|
8883
|
+
background-color: #fff !important;
|
|
8884
|
+
}
|
|
8885
|
+
lux-filter-form lux-menu .lux-filter-menu-trigger button:not([disabled]).mat-fab.lux-button-rounded:active {
|
|
8613
8886
|
background-color: transparent !important;
|
|
8887
|
+
color: #002753;
|
|
8614
8888
|
}
|
|
8615
8889
|
|
|
8616
8890
|
/**
|
|
@@ -8656,6 +8930,31 @@ lux-accordion .mat-expansion-panel-header .mat-content .mat-expansion-panel-head
|
|
|
8656
8930
|
lux-accordion .mat-expansion-panel-header .mat-expansion-indicator::after {
|
|
8657
8931
|
color: #003366;
|
|
8658
8932
|
}
|
|
8933
|
+
lux-accordion .mat-expansion-panel-header .mat-expansion-indicator {
|
|
8934
|
+
position: relative;
|
|
8935
|
+
transform-origin: center;
|
|
8936
|
+
width: 16px;
|
|
8937
|
+
height: 16px;
|
|
8938
|
+
}
|
|
8939
|
+
lux-accordion .mat-expansion-panel-header .mat-expansion-indicator::after {
|
|
8940
|
+
content: "";
|
|
8941
|
+
position: absolute;
|
|
8942
|
+
width: 16px;
|
|
8943
|
+
height: 16px;
|
|
8944
|
+
margin: 0px;
|
|
8945
|
+
padding: 0px;
|
|
8946
|
+
border: none;
|
|
8947
|
+
transform: rotate(0deg);
|
|
8948
|
+
background-color: #003366;
|
|
8949
|
+
-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");
|
|
8950
|
+
-webkit-mask-repeat: no-repeat;
|
|
8951
|
+
-webkit-mask-position: center;
|
|
8952
|
+
-webkit-mask-size: cover;
|
|
8953
|
+
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");
|
|
8954
|
+
mask-repeat: no-repeat;
|
|
8955
|
+
mask-position: center;
|
|
8956
|
+
mask-size: cover;
|
|
8957
|
+
}
|
|
8659
8958
|
lux-accordion mat-expansion-panel-header.mat-expansion-panel-header,
|
|
8660
8959
|
lux-accordion mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded,
|
|
8661
8960
|
lux-accordion mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded:focus {
|
|
@@ -8673,7 +8972,7 @@ lux-accordion mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded
|
|
|
8673
8972
|
lux-accordion mat-expansion-panel-header.mat-expansion-panel-header[aria-disabled=false]:hover,
|
|
8674
8973
|
lux-accordion mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded[aria-disabled=false]:hover,
|
|
8675
8974
|
lux-accordion mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded:focus[aria-disabled=false]:hover {
|
|
8676
|
-
background-color: #
|
|
8975
|
+
background-color: #e0e7ed !important;
|
|
8677
8976
|
}
|
|
8678
8977
|
|
|
8679
8978
|
/**
|
|
@@ -8709,6 +9008,17 @@ lux-accordion mat-expansion-panel-header.mat-expansion-panel-header.mat-expanded
|
|
|
8709
9008
|
border: 1px solid rgba(0, 0, 0, 0.38);
|
|
8710
9009
|
}
|
|
8711
9010
|
|
|
9011
|
+
lux-dialog-structure .lux-icon-close:hover {
|
|
9012
|
+
background-color: #fff !important;
|
|
9013
|
+
}
|
|
9014
|
+
lux-dialog-structure .lux-icon-close:hover mat-icon.mat-icon-no-color {
|
|
9015
|
+
color: #4d7094;
|
|
9016
|
+
}
|
|
9017
|
+
lux-dialog-structure .lux-icon-close:focus-visible {
|
|
9018
|
+
outline: 4px solid rgb(0, 152, 218) !important;
|
|
9019
|
+
border-radius: 4px;
|
|
9020
|
+
}
|
|
9021
|
+
|
|
8712
9022
|
/*
|
|
8713
9023
|
* Theming for LUX-List
|
|
8714
9024
|
*/
|
|
@@ -8735,7 +9045,7 @@ lux-list lux-list-item lux-card.lux-list-item-selected mat-card.mat-card.lux-car
|
|
|
8735
9045
|
background: linear-gradient(90deg, #ffffff 0%, #f8fbff 100%);
|
|
8736
9046
|
background-color: #fff;
|
|
8737
9047
|
border: 1px solid #003366;
|
|
8738
|
-
box-shadow: 0 0 0
|
|
9048
|
+
box-shadow: 0 0 0 1px var(--lux-theme-primary-500) inset;
|
|
8739
9049
|
position: relative;
|
|
8740
9050
|
border-radius: 4px;
|
|
8741
9051
|
}
|
|
@@ -8743,33 +9053,85 @@ lux-list lux-list-item lux-card.lux-list-item-selected mat-card.mat-card.lux-car
|
|
|
8743
9053
|
width: 0px;
|
|
8744
9054
|
border: none;
|
|
8745
9055
|
}
|
|
8746
|
-
lux-list lux-list-item lux-card mat-card {
|
|
9056
|
+
lux-list lux-list-item lux-card mat-card[class~=lux-cursor]:not([class*=mat-elevation-z]) {
|
|
8747
9057
|
-webkit-box-sizing: border-box;
|
|
8748
9058
|
-moz-box-sizing: border-box;
|
|
8749
9059
|
box-sizing: border-box;
|
|
8750
9060
|
}
|
|
8751
|
-
lux-list lux-list-item lux-card mat-card:hover {
|
|
8752
|
-
|
|
8753
|
-
|
|
9061
|
+
lux-list lux-list-item lux-card mat-card[class~=lux-cursor]:not([class*=mat-elevation-z]):hover {
|
|
9062
|
+
border: 1px solid #4d7094;
|
|
9063
|
+
background-color: #fff !important;
|
|
8754
9064
|
}
|
|
8755
9065
|
|
|
8756
9066
|
/*
|
|
8757
9067
|
* Theming for Side-Nav im Demo
|
|
8758
9068
|
*/
|
|
8759
|
-
example-root .example-base-components-list mat-expansion-panel-header
|
|
8760
|
-
|
|
8761
|
-
|
|
8762
|
-
|
|
8763
|
-
border: 1px solid #003366;
|
|
8764
|
-
box-shadow: 0 0 0 2px var(--lux-theme-primary-500) inset;
|
|
9069
|
+
example-root .example-base-components-list mat-expansion-panel-header {
|
|
9070
|
+
font-weight: 600;
|
|
9071
|
+
}
|
|
9072
|
+
example-root .example-base-components-list mat-expansion-panel-header .mat-expansion-indicator {
|
|
8765
9073
|
position: relative;
|
|
8766
|
-
|
|
9074
|
+
transform-origin: center;
|
|
9075
|
+
width: 16px;
|
|
9076
|
+
height: 16px;
|
|
8767
9077
|
}
|
|
8768
|
-
example-root .example-base-components-list mat-expansion-panel-header.
|
|
8769
|
-
|
|
8770
|
-
|
|
9078
|
+
example-root .example-base-components-list mat-expansion-panel-header .mat-expansion-indicator::after {
|
|
9079
|
+
content: "";
|
|
9080
|
+
position: absolute;
|
|
9081
|
+
width: 16px;
|
|
9082
|
+
height: 16px;
|
|
9083
|
+
margin: 0px;
|
|
9084
|
+
padding: 0px;
|
|
9085
|
+
border: none;
|
|
9086
|
+
transform: rotate(0deg);
|
|
9087
|
+
background-color: #003366;
|
|
9088
|
+
-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");
|
|
9089
|
+
-webkit-mask-repeat: no-repeat;
|
|
9090
|
+
-webkit-mask-position: center;
|
|
9091
|
+
-webkit-mask-size: cover;
|
|
9092
|
+
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");
|
|
9093
|
+
mask-repeat: no-repeat;
|
|
9094
|
+
mask-position: center;
|
|
9095
|
+
mask-size: cover;
|
|
9096
|
+
}
|
|
9097
|
+
example-root .example-base-components-list mat-expansion-panel-header:hover {
|
|
9098
|
+
background-color: #fff !important;
|
|
9099
|
+
}
|
|
9100
|
+
example-root .example-base-components-list .example-component-list-item.example-component-list-item-selected {
|
|
9101
|
+
font-weight: 600;
|
|
9102
|
+
color: #003366;
|
|
9103
|
+
border: none;
|
|
9104
|
+
background-color: #fff !important;
|
|
9105
|
+
}
|
|
9106
|
+
example-root .example-base-components-list .example-component-list-item.example-component-list-item-selected::after {
|
|
9107
|
+
content: "";
|
|
9108
|
+
position: absolute;
|
|
9109
|
+
width: 16px;
|
|
9110
|
+
height: 16px;
|
|
9111
|
+
right: auto;
|
|
9112
|
+
left: auto;
|
|
9113
|
+
top: auto;
|
|
9114
|
+
bottom: auto;
|
|
9115
|
+
margin: 2px 5px;
|
|
9116
|
+
background-color: #003366;
|
|
9117
|
+
-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");
|
|
9118
|
+
-webkit-mask-repeat: no-repeat;
|
|
9119
|
+
-webkit-mask-position: center;
|
|
9120
|
+
-webkit-mask-size: cover;
|
|
9121
|
+
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");
|
|
9122
|
+
mask-repeat: no-repeat;
|
|
9123
|
+
mask-position: center;
|
|
9124
|
+
mask-size: cover;
|
|
8771
9125
|
border: none;
|
|
8772
9126
|
}
|
|
9127
|
+
example-root .example-base-components-list .example-component-list-item:hover, example-root .example-base-components-list .example-component-list-item:focus-visible, example-root .example-base-components-list .example-component-list-item.example-component-list-item-selected:hover, example-root .example-base-components-list .example-component-list-item.example-component-list-item-selected:focus-visible {
|
|
9128
|
+
color: #fff;
|
|
9129
|
+
background-color: #4d7094 !important;
|
|
9130
|
+
border-radius: 0;
|
|
9131
|
+
}
|
|
9132
|
+
example-root .example-base-components-list .example-component-list-item:hover::after, example-root .example-base-components-list .example-component-list-item:focus-visible::after, example-root .example-base-components-list .example-component-list-item.example-component-list-item-selected:hover::after, example-root .example-base-components-list .example-component-list-item.example-component-list-item-selected:focus-visible::after {
|
|
9133
|
+
background-color: #fff;
|
|
9134
|
+
}
|
|
8773
9135
|
|
|
8774
9136
|
/*
|
|
8775
9137
|
* Theming for LUX-Master-Detail
|
|
@@ -8813,9 +9175,22 @@ lux-message-box {
|
|
|
8813
9175
|
lux-message-box.mat-elevation-z4 {
|
|
8814
9176
|
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);
|
|
8815
9177
|
}
|
|
8816
|
-
lux-message-box .lux-message-box-content {
|
|
9178
|
+
lux-message-box div.lux-message-box-content {
|
|
8817
9179
|
margin: 0 !important;
|
|
8818
9180
|
}
|
|
9181
|
+
lux-message-box div.lux-message-box-content div.lux-message-container.lux-bg-color-white {
|
|
9182
|
+
border: 1px solid #003366;
|
|
9183
|
+
box-sizing: border-box;
|
|
9184
|
+
}
|
|
9185
|
+
lux-message-box div.lux-message-box-content div.lux-message-container.lux-bg-color-white button.mat-fab.lux-button-rounded.lux-icon-button:not([disabled]) {
|
|
9186
|
+
color: #003366;
|
|
9187
|
+
}
|
|
9188
|
+
lux-message-box div.lux-message-box-content div.lux-message-container.lux-bg-color-white button.mat-fab.lux-button-rounded.lux-icon-button:not([disabled]):hover {
|
|
9189
|
+
color: #fff;
|
|
9190
|
+
}
|
|
9191
|
+
lux-message-box div.lux-message-box-content div.lux-message-container:not(.lux-bg-color-white) button:not([disabled]):hover .mat-icon-no-color {
|
|
9192
|
+
color: #fff;
|
|
9193
|
+
}
|
|
8819
9194
|
|
|
8820
9195
|
/*
|
|
8821
9196
|
* Theming for LUX-Button
|
|
@@ -9027,11 +9402,28 @@ lux-button button.lux-button.mat-fab, lux-button button.lux-button.mat-fab:not(.
|
|
|
9027
9402
|
/*
|
|
9028
9403
|
* Theming für Stepper
|
|
9029
9404
|
*/
|
|
9405
|
+
lux-stepper mat-step-header:hover {
|
|
9406
|
+
background-color: transparent !important;
|
|
9407
|
+
}
|
|
9408
|
+
lux-stepper mat-step-header:hover[aria-selected=false] div.mat-step-icon.mat-step-icon-state-number,
|
|
9409
|
+
lux-stepper mat-step-header:hover[aria-selected=false] div.mat-step-icon.mat-step-icon-state-edit, lux-stepper mat-step-header:hover[aria-selected=true] div.mat-step-icon.mat-step-icon-state-number,
|
|
9410
|
+
lux-stepper mat-step-header:hover[aria-selected=true] div.mat-step-icon.mat-step-icon-state-edit {
|
|
9411
|
+
background-color: #4d7094;
|
|
9412
|
+
color: #fff;
|
|
9413
|
+
border-color: #4d7094;
|
|
9414
|
+
}
|
|
9415
|
+
lux-stepper mat-step-header:hover[aria-selected=false] div.mat-step-label lux-step-header, lux-stepper mat-step-header:hover[aria-selected=true] div.mat-step-label lux-step-header {
|
|
9416
|
+
color: #4d7094;
|
|
9417
|
+
}
|
|
9418
|
+
lux-stepper mat-step-header[tabindex="0"]:focus-visible {
|
|
9419
|
+
background-color: transparent !important;
|
|
9420
|
+
border-radius: 4px;
|
|
9421
|
+
}
|
|
9030
9422
|
lux-stepper lux-stepper-vertical mat-step-header[aria-selected=true] {
|
|
9031
9423
|
background: linear-gradient(90deg, #ffffff 0%, #f8fbff 100%);
|
|
9032
9424
|
background-color: #fff;
|
|
9033
9425
|
border: 1px solid #003366;
|
|
9034
|
-
box-shadow: 0 0 0
|
|
9426
|
+
box-shadow: 0 0 0 1px var(--lux-theme-primary-500) inset;
|
|
9035
9427
|
position: relative;
|
|
9036
9428
|
border-radius: 4px;
|
|
9037
9429
|
}
|
|
@@ -9077,6 +9469,21 @@ lux-stepper .lux-ignore-mat-step-icons mat-step-header[aria-selected=true] .lux-
|
|
|
9077
9469
|
background-color: #003366;
|
|
9078
9470
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
9079
9471
|
}
|
|
9472
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header:hover {
|
|
9473
|
+
background-color: transparent !important;
|
|
9474
|
+
}
|
|
9475
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header:hover[aria-selected=false] .lux-stepper-edited-icon i, lux-stepper .lux-ignore-mat-step-icons mat-step-header:hover[aria-selected=false] .lux-stepper-edited-icon mat-icon,
|
|
9476
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header:hover[aria-selected=false] .lux-stepper-normal-icon i,
|
|
9477
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header:hover[aria-selected=false] .lux-stepper-normal-icon mat-icon, lux-stepper .lux-ignore-mat-step-icons mat-step-header:hover[aria-selected=true] .lux-stepper-edited-icon i, lux-stepper .lux-ignore-mat-step-icons mat-step-header:hover[aria-selected=true] .lux-stepper-edited-icon mat-icon,
|
|
9478
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header:hover[aria-selected=true] .lux-stepper-normal-icon i,
|
|
9479
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header:hover[aria-selected=true] .lux-stepper-normal-icon mat-icon {
|
|
9480
|
+
background-color: #4d7094;
|
|
9481
|
+
color: #fff;
|
|
9482
|
+
border-color: #4d7094;
|
|
9483
|
+
}
|
|
9484
|
+
lux-stepper .lux-ignore-mat-step-icons mat-step-header:hover div.mat-step-label lux-step-header {
|
|
9485
|
+
color: #4d7094;
|
|
9486
|
+
}
|
|
9080
9487
|
|
|
9081
9488
|
/*
|
|
9082
9489
|
* Theming für Stepper-Large
|
|
@@ -9111,11 +9518,10 @@ lux-stepper-large .lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux
|
|
|
9111
9518
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
9112
9519
|
}
|
|
9113
9520
|
lux-stepper-large .lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a {
|
|
9114
|
-
color: #56bd66;
|
|
9115
9521
|
font-weight: 400;
|
|
9116
9522
|
}
|
|
9117
9523
|
lux-stepper-large .lux-stepper-large-nav-item.lux-touched:not(.lux-disabled):not(.lux-completed):not(.lux-active) .lux-stepper-large-nav-item-number-container {
|
|
9118
|
-
color: #
|
|
9524
|
+
color: #2E8533;
|
|
9119
9525
|
background-color: #ffffff;
|
|
9120
9526
|
}
|
|
9121
9527
|
lux-stepper-large .lux-stepper-large-nav-item:not(.lux-touched) {
|
|
@@ -9168,11 +9574,10 @@ lux-stepper-large .lux-stepper-large-nav-item.lux-disabled .lux-stepper-large-na
|
|
|
9168
9574
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
9169
9575
|
}
|
|
9170
9576
|
.lux-stepper-large-mobile-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a {
|
|
9171
|
-
color: #56bd66;
|
|
9172
9577
|
font-weight: 400;
|
|
9173
9578
|
}
|
|
9174
9579
|
.lux-stepper-large-mobile-nav-item.lux-touched:not(.lux-disabled):not(.lux-completed):not(.lux-active) .lux-stepper-large-mobile-nav-item-number-container {
|
|
9175
|
-
color: #
|
|
9580
|
+
color: #2E8533;
|
|
9176
9581
|
background-color: #ffffff;
|
|
9177
9582
|
}
|
|
9178
9583
|
.lux-stepper-large-mobile-nav-item:not(.lux-touched) {
|
|
@@ -9193,7 +9598,7 @@ lux-stepper-large .lux-stepper-large-nav-item.lux-disabled .lux-stepper-large-na
|
|
|
9193
9598
|
color: rgba(0, 0, 0, 0.38);
|
|
9194
9599
|
}
|
|
9195
9600
|
.lux-stepper-large-mobile-nav-item .lux-stepper-large-mobile-nav-item-label-container .lux-stepper-large-mobile-nav-item-complete {
|
|
9196
|
-
color: #
|
|
9601
|
+
color: #2E8533;
|
|
9197
9602
|
font-size: 18px;
|
|
9198
9603
|
}
|
|
9199
9604
|
|