@ihk-gfi/lux-components-theme 14.3.0 → 14.4.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 +194 -62
- 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 +154 -44
- 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 +597 -94
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/authentic/_custom.scss +141 -133
- package/src/base/_luxfocus.scss +52 -51
- package/src/base/components/_luxFormControlWrapper.scss +17 -25
- package/src/base/components/_luxFormControlsAuthentic.scss +35 -21
- package/src/base/components/_luxTileAc.scss +10 -11
- package/src/blue/_custom.scss +21 -11
- package/src/green/_custom.scss +346 -70
- package/src/green/luxtheme.scss +2 -1
package/src/green/_custom.scss
CHANGED
|
@@ -7,21 +7,28 @@
|
|
|
7
7
|
@use "luxpalette";
|
|
8
8
|
|
|
9
9
|
$button-font-size: 22px;
|
|
10
|
-
$light-green: #
|
|
11
|
-
$light-gray: #
|
|
12
|
-
$light-blue: #
|
|
13
|
-
$dark-green: #
|
|
10
|
+
$light-green: #e4f1e4;
|
|
11
|
+
$light-gray: #eff3f6;
|
|
12
|
+
$light-blue: #e3ebf5;
|
|
13
|
+
$dark-green: #2e8533;
|
|
14
14
|
|
|
15
15
|
body {
|
|
16
16
|
color: #003366;
|
|
17
17
|
font-family: luxcommon.$app-font-family;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
p,
|
|
20
|
+
p,
|
|
21
|
+
div,
|
|
22
|
+
span {
|
|
21
23
|
font-family: luxcommon.$app-font-family;
|
|
22
24
|
}
|
|
23
25
|
|
|
24
|
-
h1,
|
|
26
|
+
h1,
|
|
27
|
+
h2,
|
|
28
|
+
h3,
|
|
29
|
+
h4,
|
|
30
|
+
h5,
|
|
31
|
+
h6 {
|
|
25
32
|
font-family: Korb, luxcommon.$app-font-family;
|
|
26
33
|
}
|
|
27
34
|
|
|
@@ -30,7 +37,9 @@ lux-card .mat-card {
|
|
|
30
37
|
}
|
|
31
38
|
|
|
32
39
|
lux-panel {
|
|
33
|
-
& .mat-expansion-panel,
|
|
40
|
+
& .mat-expansion-panel,
|
|
41
|
+
.mat-expansion-panel-header-title,
|
|
42
|
+
.mat-expansion-panel-header-description {
|
|
34
43
|
color: #003366;
|
|
35
44
|
}
|
|
36
45
|
}
|
|
@@ -72,7 +81,6 @@ lux-app-header {
|
|
|
72
81
|
div.lux-header-action {
|
|
73
82
|
lux-button {
|
|
74
83
|
button {
|
|
75
|
-
|
|
76
84
|
&:not(.mat-accent):not(.mat-warn):not(.mat-primary):not(.mat-button-disabled) {
|
|
77
85
|
color: map.get(luxpalette.$lux-palette-primary, 500);
|
|
78
86
|
}
|
|
@@ -110,7 +118,8 @@ lux-app-header {
|
|
|
110
118
|
}
|
|
111
119
|
}
|
|
112
120
|
|
|
113
|
-
.lux-side-nav-header,
|
|
121
|
+
.lux-side-nav-header,
|
|
122
|
+
.lux-side-nav-footer {
|
|
114
123
|
color: map.get(luxpalette.$lux-palette_primary, A400);
|
|
115
124
|
}
|
|
116
125
|
|
|
@@ -121,7 +130,9 @@ lux-app-header {
|
|
|
121
130
|
}
|
|
122
131
|
|
|
123
132
|
.lux-side-nav .lux-side-nav-content {
|
|
124
|
-
lux-button,
|
|
133
|
+
lux-button,
|
|
134
|
+
.lux-menu-item,
|
|
135
|
+
.lux-action-nav-menu lux-button {
|
|
125
136
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
126
137
|
}
|
|
127
138
|
}
|
|
@@ -208,12 +219,13 @@ lux-app-header {
|
|
|
208
219
|
&:hover {
|
|
209
220
|
@include lux-hovered-mixin-green;
|
|
210
221
|
|
|
211
|
-
& lux-icon,
|
|
222
|
+
& lux-icon,
|
|
223
|
+
.lux-header-username {
|
|
212
224
|
color: #003366 !important;
|
|
213
225
|
}
|
|
214
226
|
}
|
|
215
227
|
}
|
|
216
|
-
|
|
228
|
+
|
|
217
229
|
.lux-menu-trigger-default .mat-button-wrapper {
|
|
218
230
|
display: block;
|
|
219
231
|
}
|
|
@@ -223,12 +235,14 @@ lux-app-header {
|
|
|
223
235
|
* Theming for LUX-Button
|
|
224
236
|
*/
|
|
225
237
|
lux-button button.lux-button {
|
|
226
|
-
|
|
227
238
|
font-weight: normal !important;
|
|
228
239
|
font-family: luxcommon.$app-font-family;
|
|
229
240
|
align-items: center;
|
|
230
|
-
|
|
231
|
-
&.mat-button,
|
|
241
|
+
|
|
242
|
+
&.mat-button,
|
|
243
|
+
&.mat-raised-button,
|
|
244
|
+
&.mat-flat-button,
|
|
245
|
+
&.mat-stroked-button {
|
|
232
246
|
border-radius: 18px;
|
|
233
247
|
height: luxcommon.$button-height;
|
|
234
248
|
font-size: $button-font-size;
|
|
@@ -242,8 +256,8 @@ lux-button button.lux-button {
|
|
|
242
256
|
color: luxcommon.$dark-disabled-text;
|
|
243
257
|
}
|
|
244
258
|
|
|
245
|
-
&.mat-raised-button.mat-accent:not(.mat-button-disabled),
|
|
246
|
-
&.mat-flat-button.mat-accent:not(.mat-button-disabled),
|
|
259
|
+
&.mat-raised-button.mat-accent:not(.mat-button-disabled),
|
|
260
|
+
&.mat-flat-button.mat-accent:not(.mat-button-disabled),
|
|
247
261
|
&.mat-fab.mat-accent:not(.mat-button-disabled) {
|
|
248
262
|
color: map.get(luxpalette.$lux-palette-primary, 500);
|
|
249
263
|
}
|
|
@@ -253,8 +267,6 @@ lux-button button.lux-button {
|
|
|
253
267
|
height: luxcommon.$button-height;
|
|
254
268
|
|
|
255
269
|
& lux-icon:not(.lux-button-icon-round) {
|
|
256
|
-
line-height: 0.5;
|
|
257
|
-
|
|
258
270
|
i.lux-fa-icon {
|
|
259
271
|
font-size: 1em !important;
|
|
260
272
|
}
|
|
@@ -267,7 +279,6 @@ lux-button button.lux-button {
|
|
|
267
279
|
}
|
|
268
280
|
mat-icon.mat-icon.lux-lx-icon:not(.lux-fa-icon, .lux-material-icon),
|
|
269
281
|
mat-icon.mat-icon.lux-lx-icon-no-size:not(.lux-fa-icon, .lux-material-icon) {
|
|
270
|
-
line-height: 0.5;
|
|
271
282
|
height: 22px;
|
|
272
283
|
width: 22px;
|
|
273
284
|
}
|
|
@@ -322,7 +333,6 @@ lux-button button.lux-button {
|
|
|
322
333
|
* Theming for LUX-Tile
|
|
323
334
|
*/
|
|
324
335
|
lux-tile {
|
|
325
|
-
|
|
326
336
|
.lux-notification-new {
|
|
327
337
|
background-color: #56bd66;
|
|
328
338
|
}
|
|
@@ -344,13 +354,11 @@ lux-tile {
|
|
|
344
354
|
}
|
|
345
355
|
|
|
346
356
|
lux-tile {
|
|
347
|
-
|
|
348
357
|
.lux-highlight:hover {
|
|
349
|
-
color: #
|
|
358
|
+
color: #56bd66;
|
|
350
359
|
}
|
|
351
360
|
|
|
352
|
-
mat-card[class~=lux-cursor] {
|
|
353
|
-
|
|
361
|
+
mat-card[class~="lux-cursor"] {
|
|
354
362
|
&:focus {
|
|
355
363
|
@include luxfocus.focus-dark-mixin;
|
|
356
364
|
}
|
|
@@ -367,16 +375,13 @@ lux-tile {
|
|
|
367
375
|
}
|
|
368
376
|
}
|
|
369
377
|
|
|
370
|
-
|
|
371
378
|
/*
|
|
372
379
|
* Theming for LUX-badge-notification
|
|
373
380
|
*/
|
|
374
381
|
.lux-badge-notification {
|
|
375
|
-
|
|
376
382
|
&.mat-badge:not(.mat-badge-disabled).mat-badge-accent .mat-badge-content {
|
|
377
383
|
background-color: map.get(luxpalette.$lux-palette_accent, 500);
|
|
378
384
|
}
|
|
379
|
-
|
|
380
385
|
}
|
|
381
386
|
|
|
382
387
|
/*
|
|
@@ -386,7 +391,10 @@ $form-control-label-padding-bottom: 4px;
|
|
|
386
391
|
$form-control-border-radius: 4px;
|
|
387
392
|
$form-control-old-border-bottom: 0px;
|
|
388
393
|
|
|
389
|
-
lux-checkbox,
|
|
394
|
+
lux-checkbox,
|
|
395
|
+
lux-toggle,
|
|
396
|
+
lux-radio,
|
|
397
|
+
lux-slider {
|
|
390
398
|
& .lux-form-control {
|
|
391
399
|
.lux-form-control-label {
|
|
392
400
|
padding-bottom: $form-control-label-padding-bottom;
|
|
@@ -397,7 +405,8 @@ lux-checkbox, lux-toggle, lux-radio, lux-slider {
|
|
|
397
405
|
}
|
|
398
406
|
}
|
|
399
407
|
|
|
400
|
-
.lux-form-control:not(.lux-form-control-disabled),
|
|
408
|
+
.lux-form-control:not(.lux-form-control-disabled),
|
|
409
|
+
.lux-form-control:not(.lux-form-control-disabled).lux-focused {
|
|
401
410
|
.lux-form-control-label {
|
|
402
411
|
> * {
|
|
403
412
|
color: luxcommon.$dark-secondary-text;
|
|
@@ -410,7 +419,16 @@ lux-checkbox, lux-toggle, lux-radio, lux-slider {
|
|
|
410
419
|
color: luxcommon.$dark-secondary-text;
|
|
411
420
|
}
|
|
412
421
|
|
|
413
|
-
lux-input,
|
|
422
|
+
lux-input,
|
|
423
|
+
lux-select,
|
|
424
|
+
lux-file-input,
|
|
425
|
+
lux-textarea,
|
|
426
|
+
lux-autocomplete,
|
|
427
|
+
lux-datepicker,
|
|
428
|
+
lux-datetimepicker,
|
|
429
|
+
lux-chips,
|
|
430
|
+
lux-lookup-autocomplete,
|
|
431
|
+
lux-lookup-combobox {
|
|
414
432
|
& .lux-form-control {
|
|
415
433
|
.lux-form-control-label {
|
|
416
434
|
padding-bottom: $form-control-label-padding-bottom;
|
|
@@ -426,7 +444,9 @@ lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datep
|
|
|
426
444
|
}
|
|
427
445
|
}
|
|
428
446
|
|
|
429
|
-
.lux-label,
|
|
447
|
+
.lux-label,
|
|
448
|
+
mat-hint,
|
|
449
|
+
mat-error {
|
|
430
450
|
color: luxcommon.$dark-secondary-text;
|
|
431
451
|
}
|
|
432
452
|
}
|
|
@@ -441,7 +461,7 @@ lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datep
|
|
|
441
461
|
.lux-form-control-container {
|
|
442
462
|
border-color: luxcommon.$lux-selected-border-color !important;
|
|
443
463
|
box-shadow: 0 0 0 2px luxpalette.$lux-warn-color, 0 0 4px 2px luxpalette.$lux-warn-color;
|
|
444
|
-
|
|
464
|
+
|
|
445
465
|
&:after {
|
|
446
466
|
border-bottom: $form-control-old-border-bottom;
|
|
447
467
|
}
|
|
@@ -512,12 +532,16 @@ lux-input, lux-select, lux-file-input, lux-textarea, lux-autocomplete, lux-datep
|
|
|
512
532
|
}
|
|
513
533
|
}
|
|
514
534
|
|
|
515
|
-
lux-file-input,
|
|
535
|
+
lux-file-input,
|
|
536
|
+
lux-file-input-ac {
|
|
516
537
|
lux-button.lux-menu-item,
|
|
517
|
-
lux-button.lux-menu-trigger-default {
|
|
538
|
+
lux-button.lux-menu-trigger-default {
|
|
518
539
|
button lux-icon {
|
|
519
540
|
display: inline;
|
|
520
|
-
|
|
541
|
+
mat-icon {
|
|
542
|
+
vertical-align: unset;
|
|
543
|
+
}
|
|
544
|
+
}
|
|
521
545
|
}
|
|
522
546
|
}
|
|
523
547
|
|
|
@@ -525,7 +549,16 @@ lux-file-input, lux-file-input-ac {
|
|
|
525
549
|
* Theming für LUX-Layout-Form-Row
|
|
526
550
|
*/
|
|
527
551
|
lux-layout-form-row {
|
|
528
|
-
lux-input,
|
|
552
|
+
lux-input,
|
|
553
|
+
lux-select,
|
|
554
|
+
lux-file-input,
|
|
555
|
+
lux-textarea,
|
|
556
|
+
lux-autocomplete,
|
|
557
|
+
lux-datepicker,
|
|
558
|
+
lux-datetimepicker,
|
|
559
|
+
lux-chips,
|
|
560
|
+
lux-lookup-autocomplete,
|
|
561
|
+
lux-lookup-combobox {
|
|
529
562
|
& .lux-form-control {
|
|
530
563
|
margin-right: 0px;
|
|
531
564
|
margin-left: 0px;
|
|
@@ -537,8 +570,7 @@ lux-layout-form-row {
|
|
|
537
570
|
* Theming für LUX-Checkbox
|
|
538
571
|
*/
|
|
539
572
|
lux-checkbox {
|
|
540
|
-
|
|
541
|
-
.mat-checkbox-disabled .mat-checkbox-inner-container{
|
|
573
|
+
.mat-checkbox-disabled .mat-checkbox-inner-container {
|
|
542
574
|
border: 1px solid luxcommon.$dark-disabled-text;
|
|
543
575
|
}
|
|
544
576
|
|
|
@@ -563,7 +595,6 @@ lux-checkbox {
|
|
|
563
595
|
* Theming für LUX-Table
|
|
564
596
|
*/
|
|
565
597
|
lux-table {
|
|
566
|
-
|
|
567
598
|
table.mat-table.cdk-table.mat-sort.lux-multiselect-table {
|
|
568
599
|
border-spacing: 0px 0px !important;
|
|
569
600
|
}
|
|
@@ -571,11 +602,11 @@ lux-table {
|
|
|
571
602
|
.mat-header-row:not(.lux-table-header-no-data) {
|
|
572
603
|
background-color: $light-green;
|
|
573
604
|
}
|
|
574
|
-
.mat-row:nth-child(even){
|
|
605
|
+
.mat-row:nth-child(even) {
|
|
575
606
|
background-color: $light-gray;
|
|
576
607
|
}
|
|
577
|
-
.mat-row:nth-child(odd){
|
|
578
|
-
background-color
|
|
608
|
+
.mat-row:nth-child(odd) {
|
|
609
|
+
background-color: #ffffff;
|
|
579
610
|
}
|
|
580
611
|
.lux-multiselect-td,
|
|
581
612
|
.lux-multiselect-tf:not(.lux-ignore-multiselect-tf) {
|
|
@@ -610,15 +641,14 @@ mat-card lux-tabs {
|
|
|
610
641
|
* Theming für LUX-Radio-Buttons
|
|
611
642
|
*/
|
|
612
643
|
lux-radio {
|
|
613
|
-
|
|
614
|
-
.mat-radio-outer-circle{
|
|
644
|
+
.mat-radio-outer-circle {
|
|
615
645
|
border: 1.5px solid map.get(luxpalette.$lux-palette_primary, 500);
|
|
616
646
|
}
|
|
617
647
|
|
|
618
|
-
.mat-radio-inner-circle{
|
|
648
|
+
.mat-radio-inner-circle {
|
|
619
649
|
// Checkmark-Symbol mit css gezeichnet, anstatt des inneren Kreises
|
|
620
|
-
border-radius:2px;
|
|
621
|
-
background-color: transparent!important;
|
|
650
|
+
border-radius: 2px;
|
|
651
|
+
background-color: transparent !important;
|
|
622
652
|
border-bottom: 5px solid white;
|
|
623
653
|
border-right: 5px solid white;
|
|
624
654
|
height: 32px;
|
|
@@ -664,13 +694,13 @@ lux-radio {
|
|
|
664
694
|
}
|
|
665
695
|
}
|
|
666
696
|
|
|
667
|
-
.mat-radio-checked .mat-radio-inner-circle{
|
|
697
|
+
.mat-radio-checked .mat-radio-inner-circle {
|
|
668
698
|
transform: rotate(45deg) scale(0.4);
|
|
669
699
|
}
|
|
670
700
|
|
|
671
|
-
.mat-radio-button .mat-radio-ripple{
|
|
701
|
+
.mat-radio-button .mat-radio-ripple {
|
|
672
702
|
height: 20px; /*double of your required circle radius*/
|
|
673
|
-
width: 20px;
|
|
703
|
+
width: 20px; /*double of your required circle radius*/
|
|
674
704
|
left: calc(50% - 10px); /*'10px'-same as your required circle radius*/
|
|
675
705
|
top: calc(50% - 10px); /*'10px'-same as your required circle radius */
|
|
676
706
|
}
|
|
@@ -682,31 +712,29 @@ lux-radio {
|
|
|
682
712
|
@mixin datepicker-content {
|
|
683
713
|
.mat-calendar-content {
|
|
684
714
|
padding: 0px 10px 10px 10px;
|
|
685
|
-
|
|
715
|
+
|
|
686
716
|
th {
|
|
687
717
|
font-size: 18px;
|
|
688
718
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
689
719
|
}
|
|
690
720
|
|
|
691
721
|
td.mat-calendar-body-cell-container {
|
|
692
|
-
|
|
693
722
|
&:after {
|
|
694
723
|
background-color: white;
|
|
695
724
|
}
|
|
696
725
|
|
|
697
726
|
&:hover > div {
|
|
698
727
|
border-radius: 2px;
|
|
699
|
-
background-color:map.get(luxpalette.$lux-palette_accent, 300) !important;
|
|
728
|
+
background-color: map.get(luxpalette.$lux-palette_accent, 300) !important;
|
|
700
729
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
701
730
|
}
|
|
702
731
|
|
|
703
732
|
.mat-calendar-body-cell-content.mat-focus-indicator {
|
|
704
|
-
|
|
705
733
|
border-radius: 2px;
|
|
706
734
|
font-size: 18px;
|
|
707
735
|
background-color: $light-blue;
|
|
708
736
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
709
|
-
|
|
737
|
+
|
|
710
738
|
&.mat-calendar-body-selected {
|
|
711
739
|
background-color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
712
740
|
color: $light-blue;
|
|
@@ -719,8 +747,9 @@ lux-radio {
|
|
|
719
747
|
visibility: hidden;
|
|
720
748
|
}
|
|
721
749
|
|
|
722
|
-
.mat-calendar-body-label:last-of-type,
|
|
723
|
-
|
|
750
|
+
.mat-calendar-body-label:last-of-type,
|
|
751
|
+
th.mat-calendar-table-header-divider {
|
|
752
|
+
display: none;
|
|
724
753
|
}
|
|
725
754
|
}
|
|
726
755
|
}
|
|
@@ -734,7 +763,8 @@ lux-radio {
|
|
|
734
763
|
justify-content: space-between;
|
|
735
764
|
padding: 10px 10px 18px 10px;
|
|
736
765
|
|
|
737
|
-
button,
|
|
766
|
+
button,
|
|
767
|
+
.mat-icon-button {
|
|
738
768
|
font-size: 18px;
|
|
739
769
|
color: map.get(luxpalette.$lux-palette_primary, 500);
|
|
740
770
|
|
|
@@ -756,22 +786,18 @@ lux-radio {
|
|
|
756
786
|
* Theming für Lux-Datepicker
|
|
757
787
|
*/
|
|
758
788
|
.lux-datepicker-panel {
|
|
759
|
-
|
|
760
|
-
.mat-calendar.mat-datepicker-content {
|
|
789
|
+
.mat-calendar.mat-datepicker-content {
|
|
761
790
|
min-height: 350px;
|
|
762
791
|
}
|
|
763
792
|
@include datepicker-content();
|
|
764
793
|
}
|
|
765
794
|
|
|
766
|
-
|
|
767
|
-
|
|
768
795
|
/*
|
|
769
796
|
* Theming für Lux-Datetime-Picker
|
|
770
797
|
*/
|
|
771
798
|
.lux-datetime-overlay-content {
|
|
772
|
-
|
|
773
799
|
.mat-calendar.lux-datetime-overlay-calendar {
|
|
774
|
-
min-height: 340px
|
|
800
|
+
min-height: 340px;
|
|
775
801
|
}
|
|
776
802
|
@include datepicker-content();
|
|
777
803
|
}
|
|
@@ -779,7 +805,7 @@ lux-radio {
|
|
|
779
805
|
/*
|
|
780
806
|
* Theming for LUX-Filter-Form
|
|
781
807
|
*/
|
|
782
|
-
|
|
808
|
+
lux-filter-form lux-accordion {
|
|
783
809
|
lux-menu {
|
|
784
810
|
.lux-menu-trigger button.mat-button {
|
|
785
811
|
height: 45px;
|
|
@@ -793,8 +819,7 @@ lux-radio {
|
|
|
793
819
|
/*
|
|
794
820
|
* Theming for LUX-Master-Detail-ac
|
|
795
821
|
*/
|
|
796
|
-
|
|
797
|
-
|
|
822
|
+
.lux-master-detail-ac {
|
|
798
823
|
.lux-master-header-container-ac lux-button.master-light-toggle {
|
|
799
824
|
right: -23px;
|
|
800
825
|
}
|
|
@@ -817,6 +842,257 @@ lux-radio {
|
|
|
817
842
|
lux-master-footer-ac {
|
|
818
843
|
margin-bottom: 4px;
|
|
819
844
|
border: none;
|
|
820
|
-
@include luxelevations.lux-elevation-z2
|
|
845
|
+
@include luxelevations.lux-elevation-z2;
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
/**
|
|
850
|
+
* Theming für Lux-Formcontrols-AC
|
|
851
|
+
*/
|
|
852
|
+
lux-form-control-wrapper .lux-form-control-wrapper {
|
|
853
|
+
margin: 2px 0px;
|
|
854
|
+
|
|
855
|
+
.lux-form-control-label-authentic {
|
|
856
|
+
margin: 0 0 4px 0;
|
|
857
|
+
font-size: luxcommon.$form-control-font-size-small;
|
|
858
|
+
height: 15px;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.lux-form-control-misc-authentic {
|
|
862
|
+
margin: 4px 0 0 0;
|
|
863
|
+
min-height: 17px;
|
|
864
|
+
font-size: luxcommon.$form-control-font-size-small;
|
|
865
|
+
mat-hint {
|
|
866
|
+
color: luxpalette.$lux-primary-color;
|
|
867
|
+
}
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
.lux-form-control-container-authentic {
|
|
871
|
+
padding: 10px 5px;
|
|
872
|
+
line-height: 1;
|
|
873
|
+
border-color: luxcommon.$form-border-color;
|
|
874
|
+
|
|
875
|
+
.lux-input-row-authentic {
|
|
876
|
+
min-height: unset;
|
|
877
|
+
height: 18px;
|
|
878
|
+
color: luxpalette.$lux-primary-color;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
&.lux-no-input-row {
|
|
882
|
+
font-size: luxcommon.$form-control-font-size;
|
|
883
|
+
font-family: luxcommon.$app-font-family;
|
|
884
|
+
padding: 8px 0;
|
|
885
|
+
height: 40px;
|
|
886
|
+
}
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
// Definitionen der einzelnen States der Form-Controls
|
|
890
|
+
&:hover:not(.lux-form-control-disabled-authentic):not(.lux-focused-authentic):not(.lux-form-control-error-authentic) {
|
|
891
|
+
.lux-form-control-container-authentic:not(.lux-no-input-row) {
|
|
892
|
+
box-shadow: none;
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
&.lux-focused-authentic {
|
|
896
|
+
.lux-form-control-label-authentic > * {
|
|
897
|
+
color: luxpalette.$lux-primary-color;
|
|
898
|
+
}
|
|
899
|
+
.lux-form-control-container-authentic:not(.lux-no-input-row) {
|
|
900
|
+
border-color: luxcommon.$lux-selected-border-color;
|
|
901
|
+
box-shadow: 0 0 0 2px luxcommon.$lux-selected-border-color, 0 0 4px 2px luxcommon.$lux-selected-border-color;
|
|
902
|
+
}
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
&.lux-form-control-error-authentic:not(.lux-form-control-disabled-authentic) {
|
|
906
|
+
.lux-form-control-label-authentic > * {
|
|
907
|
+
color: map.get(luxpalette.$lux-palette_warn, 500);
|
|
908
|
+
}
|
|
909
|
+
.lux-form-control-container-authentic:not(.lux-no-input-row) {
|
|
910
|
+
border-color: luxpalette.$lux-warn-color;
|
|
911
|
+
box-shadow: 0 0 0 2px luxpalette.$lux-warn-color, 0 0 4px 2px luxpalette.$lux-warn-color;
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
&.lux-form-control-disabled-authentic {
|
|
916
|
+
.lux-form-control-container-authentic,
|
|
917
|
+
.lux-form-control-label-authentic,
|
|
918
|
+
.lux-form-control-misc-authentic > * {
|
|
919
|
+
color: luxcommon.$dark-disabled-text;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.lux-form-control-container-authentic:not(.lux-no-input-row) {
|
|
923
|
+
border-style: dashed;
|
|
924
|
+
border-color: luxcommon.$dark-disabled-text;
|
|
925
|
+
.mat-input-element::placeholder {
|
|
926
|
+
color: luxcommon.$dark-disabled-text;
|
|
927
|
+
}
|
|
928
|
+
}
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
&.lux-form-control-readonly-authentic,
|
|
932
|
+
&.lux-form-control-disabled-authentic {
|
|
933
|
+
pointer-events: none;
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
/*
|
|
938
|
+
* Theming für LUX-Checkbox-ac
|
|
939
|
+
*/
|
|
940
|
+
lux-checkbox-ac {
|
|
941
|
+
.mat-checkbox-inner-container {
|
|
942
|
+
.mat-checkbox-frame {
|
|
943
|
+
border-radius: 4px;
|
|
944
|
+
border: 1px solid map.get(luxpalette.$lux-palette_primary, 500);
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.mat-checkbox-background,
|
|
948
|
+
.mat-checkbox-checkmark {
|
|
949
|
+
border-radius: 4px;
|
|
950
|
+
}
|
|
951
|
+
}
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
/*
|
|
955
|
+
* Theming für LUX-Radio-ac
|
|
956
|
+
*/
|
|
957
|
+
lux-radio-ac {
|
|
958
|
+
& lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-container-authentic.lux-no-input-row {
|
|
959
|
+
padding: 10px 0;
|
|
960
|
+
height: auto;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.mat-radio-outer-circle {
|
|
964
|
+
border: 1.5px solid map.get(luxpalette.$lux-palette_primary, 500);
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.mat-radio-inner-circle {
|
|
968
|
+
// Checkmark-Symbol mit css gezeichnet, anstatt des inneren Kreises
|
|
969
|
+
border-radius: 2px;
|
|
970
|
+
background-color: transparent !important;
|
|
971
|
+
border-bottom: 5px solid white;
|
|
972
|
+
border-right: 5px solid white;
|
|
973
|
+
height: 32px;
|
|
974
|
+
width: 14px;
|
|
975
|
+
margin-top: -8px;
|
|
976
|
+
margin-left: 3px;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.mat-radio-checked {
|
|
980
|
+
.mat-radio-outer-circle {
|
|
981
|
+
background: map.get(luxpalette.$lux-palette_primary, 500);
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
&.mat-radio-disabled .mat-radio-outer-circle {
|
|
985
|
+
background: luxcommon.$dark-disabled-text;
|
|
986
|
+
border: none;
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.mat-radio-checked .mat-radio-inner-circle {
|
|
991
|
+
transform: rotate(45deg) scale(0.4);
|
|
821
992
|
}
|
|
822
|
-
|
|
993
|
+
|
|
994
|
+
.mat-radio-button {
|
|
995
|
+
.mat-radio-label-content {
|
|
996
|
+
line-height: normal;
|
|
997
|
+
}
|
|
998
|
+
.mat-radio-ripple {
|
|
999
|
+
height: 20px; /*double of your required circle radius*/
|
|
1000
|
+
width: 20px; /*double of your required circle radius*/
|
|
1001
|
+
left: calc(50% - 10px); /*'10px'-same as your required circle radius*/
|
|
1002
|
+
top: calc(50% - 10px); /*'10px'-same as your required circle radius */
|
|
1003
|
+
}
|
|
1004
|
+
}
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
/*
|
|
1008
|
+
* Theming für LUX-datepicker-ac und LUX-datetimepicker-ac
|
|
1009
|
+
*/
|
|
1010
|
+
lux-datepicker-ac,
|
|
1011
|
+
lux-datetimepicker-ac {
|
|
1012
|
+
mat-datepicker-toggle {
|
|
1013
|
+
height: 18px !important;
|
|
1014
|
+
width: 18px !important;
|
|
1015
|
+
|
|
1016
|
+
.mat-icon-button {
|
|
1017
|
+
height: 18px !important;
|
|
1018
|
+
width: 18px !important;
|
|
1019
|
+
line-height: 1.5;
|
|
1020
|
+
font-size: inherit;
|
|
1021
|
+
|
|
1022
|
+
lux-icon.lux-datepicker-toggle-icon,
|
|
1023
|
+
mat-icon.mat-icon {
|
|
1024
|
+
height: 18px !important;
|
|
1025
|
+
width: 18px !important;
|
|
1026
|
+
padding: 0px !important;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
&.mat-button-disabled {
|
|
1030
|
+
svg {
|
|
1031
|
+
color: luxcommon.$dark-disabled-text;
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
button:hover lux-icon.lux-datepicker-toggle-icon.lux-color-blue {
|
|
1037
|
+
color: map-get(luxpalette.$lux-palette_primary, 300);
|
|
1038
|
+
}
|
|
1039
|
+
}
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.cdk-overlay-pane .mat-datepicker-content,
|
|
1043
|
+
.lux-datetimepicker-overlay .mat-card.lux-card {
|
|
1044
|
+
margin: 11px -6px;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
/*
|
|
1048
|
+
* Theming für LUX-select-ac und LUX-lookup-combobox-ac
|
|
1049
|
+
*/
|
|
1050
|
+
lux-select-ac,
|
|
1051
|
+
lux-lookup-combobox-ac {
|
|
1052
|
+
mat-select {
|
|
1053
|
+
height: 18px !important;
|
|
1054
|
+
}
|
|
1055
|
+
.mat-select-value {
|
|
1056
|
+
line-height: normal;
|
|
1057
|
+
}
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
/*
|
|
1061
|
+
* Theming für LUX-file-input und LUX-file-input-ac
|
|
1062
|
+
*/
|
|
1063
|
+
lux-file-input,
|
|
1064
|
+
lux-file-input-ac {
|
|
1065
|
+
.lux-menu-extended {
|
|
1066
|
+
gap: 4px;
|
|
1067
|
+
lux-button button.lux-button lux-icon.lux-button-icon:not(.lux-button-icon-round).lux-lx-icon {
|
|
1068
|
+
height: 14px;
|
|
1069
|
+
width: 14px;
|
|
1070
|
+
font-size: 14px;
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
/*
|
|
1076
|
+
* Theming für LUX-file-list
|
|
1077
|
+
*/
|
|
1078
|
+
lux-file-list {
|
|
1079
|
+
.lux-menu-extended {
|
|
1080
|
+
gap: 4px;
|
|
1081
|
+
.lux-menu-item,
|
|
1082
|
+
.lux-menu-trigger {
|
|
1083
|
+
lux-icon mat-icon.lux-lx-icon-no-size {
|
|
1084
|
+
font-size: 16px !important;
|
|
1085
|
+
}
|
|
1086
|
+
}
|
|
1087
|
+
}
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
/*
|
|
1091
|
+
* Theming für LUX-textarea-ac
|
|
1092
|
+
*/
|
|
1093
|
+
lux-textarea-ac {
|
|
1094
|
+
textarea {
|
|
1095
|
+
min-height: 18px;
|
|
1096
|
+
line-height: normal;
|
|
1097
|
+
}
|
|
1098
|
+
}
|
package/src/green/luxtheme.scss
CHANGED
|
@@ -39,7 +39,8 @@
|
|
|
39
39
|
$app-gradient-reverse: themeCommon.$app-gradient-reverse,
|
|
40
40
|
$app-border-color: themeCommon.$app-border-color,
|
|
41
41
|
$app-headline-font: themeCommon.$app-headline-font,
|
|
42
|
-
|
|
42
|
+
$app-font-family: themeCommon.$app-font-family,
|
|
43
|
+
|
|
43
44
|
// Form
|
|
44
45
|
$form-border-color: themeCommon.$form-border-color,
|
|
45
46
|
$form-control-default-height-not-scalable: themeCommon.$form-control-default-height-not-scalable,
|