@ihk-gfi/lux-components-theme 14.0.0 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- 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 +501 -101
- 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 +288 -66
- 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 +288 -66
- 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 +57 -10
- package/src/base/components/_luxFormControlWrapper.scss +1 -0
- package/src/base/components/_luxFormControlsAuthentic.scss +95 -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: 1px dotted #000000 !important;
|
|
111
|
+
outline-offset: -1px;
|
|
111
112
|
}
|
|
112
113
|
lux-card mat-card[class~=lux-cursor]:hover {
|
|
113
114
|
background-color: #e3ebf5 !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: 1px dotted #000000 !important;
|
|
131
|
-
outline-offset: -1px;
|
|
132
|
-
}
|
|
133
130
|
lux-list lux-list-item lux-card.lux-list-item-selected mat-card.mat-card.lux-card {
|
|
134
131
|
background-color: #E3EBF5 !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: 1px dotted #000000 !important;
|
|
205
202
|
}
|
|
206
203
|
|
|
204
|
+
lux-icon.lux-error-icon:focus-visible {
|
|
205
|
+
outline: 1px 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: 1px 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: #e3ebf5 !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: 1px 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: #e3ebf5;
|
|
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: 1px 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: #e3ebf5 !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 #003366;
|
|
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: #003366;
|
|
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: #003366;
|
|
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: 1px dotted #000000 !important;
|
|
349
380
|
outline-offset: -1px;
|
|
350
|
-
|
|
381
|
+
background-color: #4d7094;
|
|
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: #003366 !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: #4d7094;
|
|
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: #003366 !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: #e3ebf5
|
|
481
|
+
background-color: #e3ebf5;
|
|
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: #e3ebf5
|
|
499
|
+
background-color: #e3ebf5;
|
|
440
500
|
border-radius: 4px;
|
|
441
501
|
}
|
|
442
502
|
mat-card lux-tabs mat-ink-bar.mat-ink-bar {
|
|
@@ -653,10 +713,6 @@ lux-app-header-ac .lux-image:focus-visible {
|
|
|
653
713
|
outline: 1px dotted #000000 !important;
|
|
654
714
|
border-radius: 4px;
|
|
655
715
|
}
|
|
656
|
-
lux-app-header-ac .lux-image:hover {
|
|
657
|
-
background-color: #e3ebf5 !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;
|
|
@@ -743,6 +799,54 @@ lux-app-header-ac .lux-app-header-nav-bar .lux-header-ac-nav-menu .lux-menu-exte
|
|
|
743
799
|
padding: 0;
|
|
744
800
|
}
|
|
745
801
|
|
|
802
|
+
.cdk-overlay-pane button.lux-menu-item {
|
|
803
|
+
margin: 0px;
|
|
804
|
+
}
|
|
805
|
+
.cdk-overlay-pane button.lux-menu-item.lux-selected-item-ac {
|
|
806
|
+
font-weight: 600;
|
|
807
|
+
}
|
|
808
|
+
.cdk-overlay-pane button.lux-menu-item.lux-selected-item-ac .lux-button-label::after {
|
|
809
|
+
content: "";
|
|
810
|
+
position: absolute;
|
|
811
|
+
width: 20px;
|
|
812
|
+
height: 20px;
|
|
813
|
+
right: 0;
|
|
814
|
+
top: 14px;
|
|
815
|
+
margin: 0 10px 0 4px;
|
|
816
|
+
background-color: #003366;
|
|
817
|
+
-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");
|
|
818
|
+
-webkit-mask-repeat: no-repeat;
|
|
819
|
+
-webkit-mask-position: center;
|
|
820
|
+
-webkit-mask-size: cover;
|
|
821
|
+
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");
|
|
822
|
+
mask-repeat: no-repeat;
|
|
823
|
+
mask-position: center;
|
|
824
|
+
mask-size: cover;
|
|
825
|
+
}
|
|
826
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):hover {
|
|
827
|
+
background-color: #4d7094 !important;
|
|
828
|
+
color: #ffffff;
|
|
829
|
+
}
|
|
830
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):hover .mat-icon-no-color {
|
|
831
|
+
color: #ffffff;
|
|
832
|
+
}
|
|
833
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):hover::after {
|
|
834
|
+
background-color: #ffffff;
|
|
835
|
+
}
|
|
836
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):focus-visible {
|
|
837
|
+
background-color: #4d7094;
|
|
838
|
+
color: #ffffff;
|
|
839
|
+
outline: 1px dotted #000000 !important;
|
|
840
|
+
outline-offset: -1px;
|
|
841
|
+
}
|
|
842
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):focus-visible .mat-icon-no-color {
|
|
843
|
+
color: #ffffff;
|
|
844
|
+
}
|
|
845
|
+
.cdk-overlay-pane button.lux-menu-item:not([disabled=true]):focus-visible::after {
|
|
846
|
+
width: 16px;
|
|
847
|
+
background-color: #ffffff;
|
|
848
|
+
}
|
|
849
|
+
|
|
746
850
|
lux-link-plain .link-wrapper {
|
|
747
851
|
display: inline-block;
|
|
748
852
|
font-family: inherit;
|
|
@@ -770,11 +874,13 @@ lux-link-plain .link-wrapper.lux-disabled lux-icon i, lux-link-plain .link-wrapp
|
|
|
770
874
|
color: #636D76;
|
|
771
875
|
}
|
|
772
876
|
lux-link-plain .link-wrapper:hover:not(.lux-disabled) {
|
|
773
|
-
|
|
774
|
-
border-radius: 4px;
|
|
877
|
+
color: #e3ebf5;
|
|
775
878
|
text-decoration: underline;
|
|
776
879
|
cursor: pointer;
|
|
777
880
|
}
|
|
881
|
+
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 {
|
|
882
|
+
color: #e3ebf5;
|
|
883
|
+
}
|
|
778
884
|
lux-link-plain .link-wrapper:focus:not(.lux-disabled, :hover) {
|
|
779
885
|
outline: 1px dotted #000000 !important;
|
|
780
886
|
border-radius: 2px;
|
|
@@ -831,8 +937,7 @@ lux-tile-ac .mat-card.lux-tile-ac[class~=lux-cursor]:focus-visible {
|
|
|
831
937
|
outline: 1px dotted #000000 !important;
|
|
832
938
|
}
|
|
833
939
|
lux-tile-ac .mat-card.lux-tile-ac[class~=lux-cursor]:hover {
|
|
834
|
-
|
|
835
|
-
background-image: unset;
|
|
940
|
+
border-color: #003366;
|
|
836
941
|
}
|
|
837
942
|
|
|
838
943
|
:root {
|
|
@@ -1152,11 +1257,6 @@ h6 {
|
|
|
1152
1257
|
flex: 1 1 100%;
|
|
1153
1258
|
}
|
|
1154
1259
|
|
|
1155
|
-
.lux-tile-ac-wrapper-demo .lux-tile-ac {
|
|
1156
|
-
width: 260px;
|
|
1157
|
-
min-height: 120px;
|
|
1158
|
-
}
|
|
1159
|
-
|
|
1160
1260
|
body {
|
|
1161
1261
|
-webkit-overflow-scrolling: touch;
|
|
1162
1262
|
}
|
|
@@ -4023,6 +4123,7 @@ lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-a
|
|
|
4023
4123
|
border-radius: 4px;
|
|
4024
4124
|
}
|
|
4025
4125
|
lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-authentic.lux-no-input-row {
|
|
4126
|
+
background-color: transparent;
|
|
4026
4127
|
border: none;
|
|
4027
4128
|
padding: 0.75em 0em;
|
|
4028
4129
|
}
|
|
@@ -4115,28 +4216,75 @@ lux-form-control-wrapper select:-webkit-autofill:focus {
|
|
|
4115
4216
|
/*
|
|
4116
4217
|
* Theming for LUX-Select
|
|
4117
4218
|
*/
|
|
4118
|
-
lux-select-ac
|
|
4219
|
+
lux-select-ac .lux-panel-opened .lux-form-control-container-authentic, lux-lookup-combobox-ac .lux-panel-opened .lux-form-control-container-authentic {
|
|
4220
|
+
z-index: 10000;
|
|
4221
|
+
}
|
|
4222
|
+
lux-select-ac mat-select, lux-lookup-combobox-ac mat-select {
|
|
4119
4223
|
font-family: mustOverriden;
|
|
4120
4224
|
height: calc(1.5em - 1px) !important;
|
|
4121
4225
|
}
|
|
4122
|
-
lux-select-ac mat-select .mat-select-arrow-wrapper {
|
|
4226
|
+
lux-select-ac mat-select .mat-select-arrow-wrapper, lux-lookup-combobox-ac mat-select .mat-select-arrow-wrapper {
|
|
4123
4227
|
margin-left: 2px;
|
|
4228
|
+
height: 24px;
|
|
4229
|
+
width: 24px;
|
|
4124
4230
|
}
|
|
4125
|
-
lux-select-ac mat-select
|
|
4126
|
-
border
|
|
4127
|
-
|
|
4128
|
-
|
|
4231
|
+
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 {
|
|
4232
|
+
border: none;
|
|
4233
|
+
width: 100%;
|
|
4234
|
+
height: 100%;
|
|
4235
|
+
margin: 0;
|
|
4236
|
+
background-color: #003366;
|
|
4237
|
+
-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");
|
|
4238
|
+
-webkit-mask-repeat: no-repeat;
|
|
4239
|
+
-webkit-mask-position: center;
|
|
4240
|
+
-webkit-mask-size: cover;
|
|
4241
|
+
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");
|
|
4242
|
+
mask-repeat: no-repeat;
|
|
4243
|
+
mask-position: center;
|
|
4244
|
+
mask-size: cover;
|
|
4245
|
+
}
|
|
4246
|
+
lux-select-ac mat-select[aria-disabled=true] .mat-select-arrow, lux-lookup-combobox-ac mat-select[aria-disabled=true] .mat-select-arrow {
|
|
4247
|
+
background-color: #636D76;
|
|
4129
4248
|
}
|
|
4130
|
-
lux-select-ac mat-select[aria-disabled=false] .mat-select-arrow {
|
|
4131
|
-
|
|
4132
|
-
margin: 0 2px 0 0;
|
|
4133
|
-
color: #003366;
|
|
4249
|
+
lux-select-ac mat-select[aria-disabled=false] .mat-select-arrow, lux-lookup-combobox-ac mat-select[aria-disabled=false] .mat-select-arrow {
|
|
4250
|
+
background-color: #003366;
|
|
4134
4251
|
}
|
|
4135
4252
|
|
|
4136
|
-
.lux-select-panel-ac .mat-pseudo-checkbox-checked
|
|
4253
|
+
.lux-select-panel-ac .mat-pseudo-checkbox-checked,
|
|
4254
|
+
.lux-select-panel-ac-multiple .mat-pseudo-checkbox-checked {
|
|
4137
4255
|
background-color: #003366;
|
|
4138
4256
|
}
|
|
4139
4257
|
|
|
4258
|
+
.cdk-overlay-pane .mat-option {
|
|
4259
|
+
font-family: mustOverriden;
|
|
4260
|
+
}
|
|
4261
|
+
.cdk-overlay-pane .mat-autocomplete-panel.lux-autocomplete-panel-ac,
|
|
4262
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac,
|
|
4263
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac-multiple {
|
|
4264
|
+
min-width: calc(100% + 14px) !important;
|
|
4265
|
+
max-width: calc(100% + 14px) !important;
|
|
4266
|
+
margin: 34px 7px;
|
|
4267
|
+
border: 2px solid #003366;
|
|
4268
|
+
border-radius: 4px;
|
|
4269
|
+
box-shadow: none !important;
|
|
4270
|
+
}
|
|
4271
|
+
.cdk-overlay-pane .mat-autocomplete-panel.lux-autocomplete-panel-ac .mat-pseudo-checkbox,
|
|
4272
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac .mat-pseudo-checkbox,
|
|
4273
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac-multiple .mat-pseudo-checkbox {
|
|
4274
|
+
color: #003366;
|
|
4275
|
+
}
|
|
4276
|
+
.cdk-overlay-pane .mat-select-panel.lux-select-panel-ac-multiple {
|
|
4277
|
+
margin: 34px 31px;
|
|
4278
|
+
}
|
|
4279
|
+
.cdk-overlay-pane .mat-autocomplete-panel.lux-autocomplete-panel-ac {
|
|
4280
|
+
min-width: calc(100% + 14px) !important;
|
|
4281
|
+
max-width: calc(100% + 14px) !important;
|
|
4282
|
+
margin: 13px -9px;
|
|
4283
|
+
border: 2px solid #003366;
|
|
4284
|
+
border-radius: 4px;
|
|
4285
|
+
box-shadow: none !important;
|
|
4286
|
+
}
|
|
4287
|
+
|
|
4140
4288
|
/*
|
|
4141
4289
|
* Theming für Lux-Checkbox
|
|
4142
4290
|
*/
|
|
@@ -4151,9 +4299,6 @@ lux-checkbox-ac label .mat-checkbox-label {
|
|
|
4151
4299
|
word-break: break-word;
|
|
4152
4300
|
white-space: normal;
|
|
4153
4301
|
}
|
|
4154
|
-
lux-checkbox-ac .mat-checkbox-disabled label {
|
|
4155
|
-
color: #636D76;
|
|
4156
|
-
}
|
|
4157
4302
|
lux-checkbox-ac .mat-checkbox-ripple {
|
|
4158
4303
|
display: none;
|
|
4159
4304
|
}
|
|
@@ -4162,6 +4307,15 @@ lux-checkbox-ac .mat-checkbox-inner-container {
|
|
|
4162
4307
|
height: 1.25em;
|
|
4163
4308
|
margin-top: 3px;
|
|
4164
4309
|
}
|
|
4310
|
+
lux-checkbox-ac .mat-checkbox-inner-container .mat-checkbox-frame {
|
|
4311
|
+
border-color: #003366;
|
|
4312
|
+
}
|
|
4313
|
+
lux-checkbox-ac .mat-checkbox-disabled label {
|
|
4314
|
+
color: #636D76;
|
|
4315
|
+
}
|
|
4316
|
+
lux-checkbox-ac .mat-checkbox-disabled .mat-checkbox-inner-container .mat-checkbox-frame {
|
|
4317
|
+
border-color: #636D76;
|
|
4318
|
+
}
|
|
4165
4319
|
|
|
4166
4320
|
lux-datepicker-ac mat-datepicker-toggle, lux-datetimepicker-ac mat-datepicker-toggle {
|
|
4167
4321
|
height: 24px !important;
|
|
@@ -4182,6 +4336,18 @@ lux-datepicker-ac mat-datepicker-toggle .mat-icon-button.mat-button-disabled svg
|
|
|
4182
4336
|
color: #636D76;
|
|
4183
4337
|
}
|
|
4184
4338
|
|
|
4339
|
+
.cdk-overlay-pane .mat-datepicker-content,
|
|
4340
|
+
.lux-datetimepicker-overlay .mat-card.lux-card {
|
|
4341
|
+
border: 2px solid #003366;
|
|
4342
|
+
box-shadow: none !important;
|
|
4343
|
+
margin: 13px -9px;
|
|
4344
|
+
}
|
|
4345
|
+
.cdk-overlay-pane .mat-datepicker-content .mat-calendar-header button:hover,
|
|
4346
|
+
.lux-datetimepicker-overlay .mat-card.lux-card .mat-calendar-header button:hover {
|
|
4347
|
+
background-color: #fff !important;
|
|
4348
|
+
color: #4d7094;
|
|
4349
|
+
}
|
|
4350
|
+
|
|
4185
4351
|
/*
|
|
4186
4352
|
* Theming für lux-Toggle
|
|
4187
4353
|
*/
|
|
@@ -4284,11 +4450,13 @@ lux-chips-ac .lux-chips mat-chip-list div.mat-chip-list-wrapper {
|
|
|
4284
4450
|
margin: 0px 0px 0px -4px;
|
|
4285
4451
|
}
|
|
4286
4452
|
|
|
4287
|
-
.lux-chips-ac-autocomplete-panel {
|
|
4288
|
-
margin-top: -
|
|
4453
|
+
.lux-chips-ac-autocomplete-panel.mat-autocomplete-panel {
|
|
4454
|
+
margin-top: -21px;
|
|
4289
4455
|
margin-left: 0;
|
|
4290
4456
|
margin-right: 0;
|
|
4291
4457
|
border-radius: 4px;
|
|
4458
|
+
box-shadow: none !important;
|
|
4459
|
+
border: 2px solid #003366;
|
|
4292
4460
|
}
|
|
4293
4461
|
|
|
4294
4462
|
/*
|
|
@@ -4310,9 +4478,9 @@ lux-slider-ac .lux-show-thumb-label-always.mat-slider-disabled .mat-slider-thumb
|
|
|
4310
4478
|
border-left-style: none;
|
|
4311
4479
|
border-radius: 0 4px 4px 0;
|
|
4312
4480
|
padding: 0;
|
|
4313
|
-
width:
|
|
4314
|
-
min-width:
|
|
4315
|
-
max-width:
|
|
4481
|
+
width: 25px;
|
|
4482
|
+
min-width: 25px;
|
|
4483
|
+
max-width: 25px;
|
|
4316
4484
|
background-color: #fff;
|
|
4317
4485
|
}
|
|
4318
4486
|
.lux-master-detail-ac .lux-master-ac-container.lux-master-ac-container-mobile {
|
|
@@ -4326,25 +4494,37 @@ lux-slider-ac .lux-show-thumb-label-always.mat-slider-disabled .mat-slider-thumb
|
|
|
4326
4494
|
.lux-master-detail-ac .lux-master-header-container-ac lux-button.master-ac-toggle {
|
|
4327
4495
|
position: absolute;
|
|
4328
4496
|
right: -18px;
|
|
4329
|
-
top:
|
|
4497
|
+
top: 17px;
|
|
4330
4498
|
z-index: 1000;
|
|
4331
4499
|
}
|
|
4332
4500
|
.lux-master-detail-ac .lux-master-header-container-ac lux-button.master-ac-toggle button.lux-button.lux-button-rounded {
|
|
4333
4501
|
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
4502
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
4335
4503
|
color: #003366;
|
|
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: #e3ebf5 !important;
|
|
4339
|
-
color: #fff;
|
|
4340
|
-
border-radius: 50%;
|
|
4504
|
+
background-color: #fff !important;
|
|
4341
4505
|
}
|
|
4342
4506
|
.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
4507
|
padding-bottom: 2px;
|
|
4508
|
+
padding-right: 1px;
|
|
4509
|
+
padding-left: 1px;
|
|
4510
|
+
}
|
|
4511
|
+
.lux-master-detail-ac .lux-master-header-container-ac button.lux-button.lux-button-rounded:hover:not([disabled]) {
|
|
4512
|
+
color: #e3ebf5;
|
|
4513
|
+
border-radius: 50%;
|
|
4514
|
+
}
|
|
4515
|
+
.lux-master-detail-ac .lux-master-header-container-ac button.lux-button.lux-button-rounded:active:not([disabled]) {
|
|
4516
|
+
color: #002753;
|
|
4517
|
+
background-color: #fff !important;
|
|
4344
4518
|
}
|
|
4345
4519
|
.lux-master-detail-ac .lux-master-header-container-ac .lux-menu-extended {
|
|
4346
4520
|
padding: 0px;
|
|
4347
4521
|
}
|
|
4522
|
+
.lux-master-detail-ac .lux-master-header-container-ac mat-card-title, .lux-master-detail-ac .lux-master-header-container-ac h2 {
|
|
4523
|
+
font-size: 16px;
|
|
4524
|
+
}
|
|
4525
|
+
.lux-master-detail-ac .lux-master-header-container-ac mat-card-subtitle.mat-card-subtitle {
|
|
4526
|
+
font-size: 14px;
|
|
4527
|
+
}
|
|
4348
4528
|
.lux-master-detail-ac lux-filter-form .lux-filter-card mat-card.mat-card,
|
|
4349
4529
|
.lux-master-detail-ac .detail-header-container .lux-detail-header-ac mat-card.mat-card,
|
|
4350
4530
|
.lux-master-detail-ac .lux-master-view-ac lux-list-item mat-card.mat-card {
|
|
@@ -5006,7 +5186,7 @@ lux-file-progress .lux-file-overlay mat-spinner svg circle {
|
|
|
5006
5186
|
.lux-form-control-error .lux-form-control-container:after {
|
|
5007
5187
|
border-bottom: 1px solid #ea515a;
|
|
5008
5188
|
}
|
|
5009
|
-
.lux-form-control-error .lux-form-control-misc > * {
|
|
5189
|
+
.lux-form-control-error .lux-form-control-misc div > * {
|
|
5010
5190
|
color: #ea515a !important;
|
|
5011
5191
|
}
|
|
5012
5192
|
|
|
@@ -5017,6 +5197,24 @@ lux-file-progress .lux-file-overlay mat-spinner svg circle {
|
|
|
5017
5197
|
border-bottom: 1px dashed #636D76;
|
|
5018
5198
|
}
|
|
5019
5199
|
|
|
5200
|
+
lux-icon.lux-error-icon {
|
|
5201
|
+
font-size: 12px;
|
|
5202
|
+
max-height: 12px;
|
|
5203
|
+
max-width: 12px;
|
|
5204
|
+
padding: 0 4px 0 4px;
|
|
5205
|
+
}
|
|
5206
|
+
lux-icon.lux-error-icon mat-icon {
|
|
5207
|
+
padding: 0 !important;
|
|
5208
|
+
min-width: 12px;
|
|
5209
|
+
max-width: 12px;
|
|
5210
|
+
min-height: 12px;
|
|
5211
|
+
max-height: 12px;
|
|
5212
|
+
color: #ea515a;
|
|
5213
|
+
}
|
|
5214
|
+
lux-icon.lux-error-icon mat-icon:hover {
|
|
5215
|
+
cursor: pointer;
|
|
5216
|
+
}
|
|
5217
|
+
|
|
5020
5218
|
/*
|
|
5021
5219
|
* Theming for LUX-Layout-Card-Row
|
|
5022
5220
|
*/
|
|
@@ -5417,6 +5615,7 @@ lux-filter-form lux-menu.filter-menu .lux-filter-menu-trigger button.lux-button-
|
|
|
5417
5615
|
background-color: transparent;
|
|
5418
5616
|
color: #003366;
|
|
5419
5617
|
padding: 0px !important;
|
|
5618
|
+
margin: 0px 4px !important;
|
|
5420
5619
|
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
5620
|
}
|
|
5422
5621
|
|
|
@@ -5616,7 +5815,7 @@ lux-stepper-large {
|
|
|
5616
5815
|
flex-direction: column;
|
|
5617
5816
|
flex: 0 1 30%;
|
|
5618
5817
|
gap: 12px;
|
|
5619
|
-
padding: 12px;
|
|
5818
|
+
padding: 12px 33px 12px 12px;
|
|
5620
5819
|
overflow-y: auto;
|
|
5621
5820
|
min-width: 400px;
|
|
5622
5821
|
}
|
|
@@ -5645,6 +5844,24 @@ lux-stepper-large {
|
|
|
5645
5844
|
}
|
|
5646
5845
|
.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a {
|
|
5647
5846
|
color: #2E8533;
|
|
5847
|
+
position: relative;
|
|
5848
|
+
}
|
|
5849
|
+
.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a::after {
|
|
5850
|
+
content: "";
|
|
5851
|
+
position: absolute;
|
|
5852
|
+
display: inline-block;
|
|
5853
|
+
width: 23px;
|
|
5854
|
+
height: 23px;
|
|
5855
|
+
margin: 5px 10px 0px;
|
|
5856
|
+
background-color: #2E8533;
|
|
5857
|
+
-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");
|
|
5858
|
+
-webkit-mask-repeat: no-repeat;
|
|
5859
|
+
-webkit-mask-position: center;
|
|
5860
|
+
-webkit-mask-size: cover;
|
|
5861
|
+
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");
|
|
5862
|
+
mask-repeat: no-repeat;
|
|
5863
|
+
mask-position: center;
|
|
5864
|
+
mask-size: cover;
|
|
5648
5865
|
}
|
|
5649
5866
|
.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled):not(.lux-completed):not(.lux-active) .lux-stepper-large-nav-item-number-container {
|
|
5650
5867
|
color: #ffffff;
|
|
@@ -5826,6 +6043,11 @@ lux-stepper-large {
|
|
|
5826
6043
|
color: #2E8533;
|
|
5827
6044
|
font-size: 18px;
|
|
5828
6045
|
}
|
|
6046
|
+
.lux-stepper-large-mobile-nav-item.lux-stepper-large-nav-item.lux-touched:not(.lux-disabled).lux-completed:not(.lux-active) a::after {
|
|
6047
|
+
width: 18px;
|
|
6048
|
+
height: 18px;
|
|
6049
|
+
margin-top: 4px;
|
|
6050
|
+
}
|
|
5829
6051
|
|
|
5830
6052
|
.mat-badge-content {
|
|
5831
6053
|
font-weight: 600;
|