@ihk-gfi/lux-components-theme 21.5.0 → 21.7.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 +211 -3
- package/prebuilt-themes/luxtheme-authentic.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 +211 -3
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/base-templates/components/_luxBadge.scss +32 -0
- package/src/base-templates/components/_luxFilter.scss +1 -1
- package/src/base-templates/components/_luxInput.scss +41 -4
- package/src/base-templates/components/_luxMenu.scss +56 -2
- package/src/base-templates/components/_luxPaginator.scss +37 -5
- package/src/theme-authentic/_variables.scss +32 -0
- package/src/theme-green/_variables.scss +32 -0
|
@@ -1799,6 +1799,36 @@
|
|
|
1799
1799
|
--lux-theme-badge-on-pink: var(--lux-theme-custom-on-pink);
|
|
1800
1800
|
--lux-theme-badge-lightblue: var(--lux-theme-custom-lightblue);
|
|
1801
1801
|
--lux-theme-badge-on-lightblue: var(--lux-theme-custom-on-lightblue);
|
|
1802
|
+
--lux-theme-badge-muted-red: #ffedea;
|
|
1803
|
+
--lux-theme-badge-muted-on-red: #93000c;
|
|
1804
|
+
--lux-theme-badge-muted-stroke-red: #ffb4ab;
|
|
1805
|
+
--lux-theme-badge-muted-green: #ebffe6;
|
|
1806
|
+
--lux-theme-badge-muted-on-green: #00531d;
|
|
1807
|
+
--lux-theme-badge-muted-stroke-green: #75dc81;
|
|
1808
|
+
--lux-theme-badge-muted-purple: #f4eeff;
|
|
1809
|
+
--lux-theme-badge-muted-on-purple: #4a3597;
|
|
1810
|
+
--lux-theme-badge-muted-stroke-purple: #d2bbff;
|
|
1811
|
+
--lux-theme-badge-muted-blue: #ffffff;
|
|
1812
|
+
--lux-theme-badge-muted-on-blue: #003366;
|
|
1813
|
+
--lux-theme-badge-muted-stroke-blue: #003366;
|
|
1814
|
+
--lux-theme-badge-muted-gray: #f4f0ef;
|
|
1815
|
+
--lux-theme-badge-muted-on-gray: #484646;
|
|
1816
|
+
--lux-theme-badge-muted-stroke-gray: #c9c6c5;
|
|
1817
|
+
--lux-theme-badge-muted-orange: #ffede4;
|
|
1818
|
+
--lux-theme-badge-muted-on-orange: #793100;
|
|
1819
|
+
--lux-theme-badge-muted-stroke-orange: #793100;
|
|
1820
|
+
--lux-theme-badge-muted-black: #ffffff;
|
|
1821
|
+
--lux-theme-badge-muted-on-black: #1c1b1b;
|
|
1822
|
+
--lux-theme-badge-muted-stroke-black: #605e5e;
|
|
1823
|
+
--lux-theme-badge-muted-yellow: #ffefd3;
|
|
1824
|
+
--lux-theme-badge-muted-on-yellow: #5a4400;
|
|
1825
|
+
--lux-theme-badge-muted-stroke-yellow: #f5bf00;
|
|
1826
|
+
--lux-theme-badge-muted-pink: #ffecf2;
|
|
1827
|
+
--lux-theme-badge-muted-on-pink: #8e0051;
|
|
1828
|
+
--lux-theme-badge-muted-stroke-pink: #ffb0ce;
|
|
1829
|
+
--lux-theme-badge-muted-lightblue: #e6f2ff;
|
|
1830
|
+
--lux-theme-badge-muted-on-lightblue: #003366;
|
|
1831
|
+
--lux-theme-badge-muted-stroke-lightblue: #91cdff;
|
|
1802
1832
|
--lux-theme-breadcrumb-hover-color: var(--lux-theme-link-plain-hover-color);
|
|
1803
1833
|
--lux-theme-button-text-default-text-color: var(--lux-theme-dark-primary-text);
|
|
1804
1834
|
--lux-theme-button-text-primary-text-color: var(--lux-theme-primary-color);
|
|
@@ -37463,6 +37493,85 @@ lux-autocomplete-ac .lux-input-suffix-container {
|
|
|
37463
37493
|
.lux-badge.lux-badge-on-black {
|
|
37464
37494
|
color: var(--lux-theme-badge-on-black);
|
|
37465
37495
|
}
|
|
37496
|
+
.lux-badge.lux-badge-muted.lux-badge-red {
|
|
37497
|
+
background-color: var(--lux-theme-badge-muted-red);
|
|
37498
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-red);
|
|
37499
|
+
}
|
|
37500
|
+
.lux-badge.lux-badge-muted.lux-badge-on-red {
|
|
37501
|
+
color: var(--lux-theme-badge-muted-on-red);
|
|
37502
|
+
}
|
|
37503
|
+
.lux-badge.lux-badge-muted.lux-badge-green {
|
|
37504
|
+
background-color: var(--lux-theme-badge-muted-green);
|
|
37505
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-green);
|
|
37506
|
+
}
|
|
37507
|
+
.lux-badge.lux-badge-muted.lux-badge-on-green {
|
|
37508
|
+
color: var(--lux-theme-badge-muted-on-green);
|
|
37509
|
+
}
|
|
37510
|
+
.lux-badge.lux-badge-muted.lux-badge-purple {
|
|
37511
|
+
background-color: var(--lux-theme-badge-muted-purple);
|
|
37512
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-purple);
|
|
37513
|
+
}
|
|
37514
|
+
.lux-badge.lux-badge-muted.lux-badge-on-purple {
|
|
37515
|
+
color: var(--lux-theme-badge-muted-on-purple);
|
|
37516
|
+
}
|
|
37517
|
+
.lux-badge.lux-badge-muted.lux-badge-blue {
|
|
37518
|
+
background-color: var(--lux-theme-badge-muted-blue);
|
|
37519
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-blue);
|
|
37520
|
+
}
|
|
37521
|
+
.lux-badge.lux-badge-muted.lux-badge-on-blue {
|
|
37522
|
+
color: var(--lux-theme-badge-muted-on-blue);
|
|
37523
|
+
}
|
|
37524
|
+
.lux-badge.lux-badge-muted.lux-badge-gray {
|
|
37525
|
+
background-color: var(--lux-theme-badge-muted-gray);
|
|
37526
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-gray);
|
|
37527
|
+
}
|
|
37528
|
+
.lux-badge.lux-badge-muted.lux-badge-on-gray {
|
|
37529
|
+
color: var(--lux-theme-badge-muted-on-gray);
|
|
37530
|
+
}
|
|
37531
|
+
.lux-badge.lux-badge-muted.lux-badge-orange {
|
|
37532
|
+
background-color: var(--lux-theme-badge-muted-orange);
|
|
37533
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-orange);
|
|
37534
|
+
}
|
|
37535
|
+
.lux-badge.lux-badge-muted.lux-badge-on-orange {
|
|
37536
|
+
color: var(--lux-theme-badge-muted-on-orange);
|
|
37537
|
+
}
|
|
37538
|
+
.lux-badge.lux-badge-muted.lux-badge-yellow {
|
|
37539
|
+
background-color: var(--lux-theme-badge-muted-yellow);
|
|
37540
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-yellow);
|
|
37541
|
+
}
|
|
37542
|
+
.lux-badge.lux-badge-muted.lux-badge-on-yellow {
|
|
37543
|
+
color: var(--lux-theme-badge-muted-on-yellow);
|
|
37544
|
+
}
|
|
37545
|
+
.lux-badge.lux-badge-muted.lux-badge-pink {
|
|
37546
|
+
background-color: var(--lux-theme-badge-muted-pink);
|
|
37547
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-pink);
|
|
37548
|
+
}
|
|
37549
|
+
.lux-badge.lux-badge-muted.lux-badge-on-pink {
|
|
37550
|
+
color: var(--lux-theme-badge-muted-on-pink);
|
|
37551
|
+
}
|
|
37552
|
+
.lux-badge.lux-badge-muted.lux-badge-lightblue {
|
|
37553
|
+
background-color: var(--lux-theme-badge-muted-lightblue);
|
|
37554
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-lightblue);
|
|
37555
|
+
}
|
|
37556
|
+
.lux-badge.lux-badge-muted.lux-badge-on-lightblue {
|
|
37557
|
+
color: var(--lux-theme-badge-muted-on-lightblue);
|
|
37558
|
+
}
|
|
37559
|
+
.lux-badge.lux-badge-muted.lux-badge-black {
|
|
37560
|
+
background-color: var(--lux-theme-badge-muted-black);
|
|
37561
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-black);
|
|
37562
|
+
}
|
|
37563
|
+
.lux-badge.lux-badge-muted.lux-badge-on-black {
|
|
37564
|
+
color: var(--lux-theme-badge-muted-on-black);
|
|
37565
|
+
}
|
|
37566
|
+
.lux-badge.lux-badge-size-small {
|
|
37567
|
+
font-size: 0.75rem;
|
|
37568
|
+
}
|
|
37569
|
+
.lux-badge.lux-badge-size-medium {
|
|
37570
|
+
font-size: 1rem;
|
|
37571
|
+
}
|
|
37572
|
+
.lux-badge.lux-badge-size-large {
|
|
37573
|
+
font-size: 1.25rem;
|
|
37574
|
+
}
|
|
37466
37575
|
|
|
37467
37576
|
.lux-badge.lux-badge-uppercase * {
|
|
37468
37577
|
text-transform: uppercase;
|
|
@@ -37481,6 +37590,9 @@ lux-autocomplete-ac .lux-input-suffix-container {
|
|
|
37481
37590
|
font-weight: 600;
|
|
37482
37591
|
line-height: normal;
|
|
37483
37592
|
}
|
|
37593
|
+
.lux-badge.lux-badge-size-small {
|
|
37594
|
+
font-size: 1rem;
|
|
37595
|
+
}
|
|
37484
37596
|
}
|
|
37485
37597
|
.lux-badge-notification {
|
|
37486
37598
|
--mat-badge-background-color: #605e5e;
|
|
@@ -38942,7 +39054,7 @@ lux-filter-load-dialog lux-dialog-actions.lux-filter-dialog-action {
|
|
|
38942
39054
|
max-width: 100%;
|
|
38943
39055
|
box-sizing: border-box;
|
|
38944
39056
|
gap: 12px;
|
|
38945
|
-
place-content: center
|
|
39057
|
+
place-content: center center;
|
|
38946
39058
|
align-items: center;
|
|
38947
39059
|
}
|
|
38948
39060
|
|
|
@@ -39327,6 +39439,44 @@ lux-input-ac lux-input-ac-suffix {
|
|
|
39327
39439
|
white-space: nowrap;
|
|
39328
39440
|
}
|
|
39329
39441
|
|
|
39442
|
+
lux-button.lux-icon-button.lux-input-clear-btn {
|
|
39443
|
+
display: flex;
|
|
39444
|
+
--mat-icon-button-container-shape: var(--lux-theme-button-icon-container-shape);
|
|
39445
|
+
--mat-icon-button-icon-color: var(--lux-theme-primary-color);
|
|
39446
|
+
--mat-icon-button-icon-size: var(--mat-icon-button-icon-size);
|
|
39447
|
+
--mat-icon-button-state-layer-size: 40px;
|
|
39448
|
+
--mat-icon-button-state-layer-color: var(--mat-sys-on-surface-variant);
|
|
39449
|
+
--mat-icon-button-touch-target-size: calc(var(--lux-theme-form-min-height) - 2 * var(--lux-theme-form-border-width));
|
|
39450
|
+
}
|
|
39451
|
+
lux-button.lux-icon-button.lux-input-clear-btn lux-icon,
|
|
39452
|
+
lux-button.lux-icon-button.lux-input-clear-btn .lux-icon {
|
|
39453
|
+
width: var(--mat-icon-button-icon-size);
|
|
39454
|
+
height: var(--mat-icon-button-icon-size);
|
|
39455
|
+
}
|
|
39456
|
+
lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus,
|
|
39457
|
+
lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus-visible {
|
|
39458
|
+
outline-color: transparent !important;
|
|
39459
|
+
}
|
|
39460
|
+
|
|
39461
|
+
.lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn {
|
|
39462
|
+
display: flex;
|
|
39463
|
+
--mat-icon-button-container-shape: var(--lux-theme-button-icon-container-shape);
|
|
39464
|
+
--mat-icon-button-icon-color: var(--lux-theme-primary-color);
|
|
39465
|
+
--mat-icon-button-icon-size: var(--mat-icon-button-icon-size);
|
|
39466
|
+
--mat-icon-button-state-layer-size: 36px;
|
|
39467
|
+
--mat-icon-button-state-layer-color: var(--mat-sys-on-surface-variant);
|
|
39468
|
+
--mat-icon-button-touch-target-size: calc(var(--lux-theme-form-dense-min-height) - 2 * var(--lux-theme-form-border-width));
|
|
39469
|
+
}
|
|
39470
|
+
.lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn lux-icon,
|
|
39471
|
+
.lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn .lux-icon {
|
|
39472
|
+
width: var(--mat-icon-button-icon-size);
|
|
39473
|
+
height: var(--mat-icon-button-icon-size);
|
|
39474
|
+
}
|
|
39475
|
+
.lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus,
|
|
39476
|
+
.lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus-visible {
|
|
39477
|
+
outline-color: transparent !important;
|
|
39478
|
+
}
|
|
39479
|
+
|
|
39330
39480
|
lux-link-plain {
|
|
39331
39481
|
display: inline-flex;
|
|
39332
39482
|
align-items: baseline;
|
|
@@ -39743,6 +39893,15 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39743
39893
|
}
|
|
39744
39894
|
|
|
39745
39895
|
/* Menu-Overlay-Panel anpassen */
|
|
39896
|
+
.lux-menu-panel:not(.lux-menu-section-panel) .lux-menu-item-color-warn:not([disabled]) {
|
|
39897
|
+
--mat-menu-item-label-text-color: var(--lux-theme-button-text-warn-text-color);
|
|
39898
|
+
--mat-menu-item-icon-color: var(--lux-theme-button-text-warn-text-color);
|
|
39899
|
+
}
|
|
39900
|
+
.lux-menu-panel:not(.lux-menu-section-panel) .lux-menu-item-color-accent:not([disabled]) {
|
|
39901
|
+
--mat-menu-item-label-text-color: var(--lux-theme-button-text-accent-text-color);
|
|
39902
|
+
--mat-menu-item-icon-color: var(--lux-theme-button-text-accent-text-color);
|
|
39903
|
+
}
|
|
39904
|
+
|
|
39746
39905
|
.lux-menu-panel {
|
|
39747
39906
|
--mat-menu-container-shape: var(--lux-theme-app-border-radius);
|
|
39748
39907
|
--mat-menu-container-elevation-shadow: 0 0 0 1px var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant));
|
|
@@ -39804,7 +39963,9 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39804
39963
|
letter-spacing: 1.25px;
|
|
39805
39964
|
}
|
|
39806
39965
|
.lux-menu-panel .lux-menu-item-icon {
|
|
39807
|
-
display: inline-
|
|
39966
|
+
display: inline-flex;
|
|
39967
|
+
align-items: center;
|
|
39968
|
+
justify-content: center;
|
|
39808
39969
|
align-self: center;
|
|
39809
39970
|
vertical-align: middle;
|
|
39810
39971
|
width: var(--lux-theme-menu-item-icon-size);
|
|
@@ -39812,13 +39973,24 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39812
39973
|
}
|
|
39813
39974
|
.lux-menu-panel .lux-menu-item-icon .lux-icon,
|
|
39814
39975
|
.lux-menu-panel .lux-menu-item-icon mat-icon {
|
|
39976
|
+
display: inline-flex;
|
|
39977
|
+
align-items: center;
|
|
39978
|
+
justify-content: center;
|
|
39815
39979
|
width: 100%;
|
|
39816
39980
|
height: 100%;
|
|
39981
|
+
max-width: var(--lux-theme-menu-item-icon-size);
|
|
39982
|
+
max-height: var(--lux-theme-menu-item-icon-size);
|
|
39817
39983
|
font-size: var(--lux-theme-menu-item-icon-size);
|
|
39818
39984
|
}
|
|
39819
39985
|
.lux-menu-panel .lux-menu-item-icon mat-icon {
|
|
39820
39986
|
margin: 0;
|
|
39821
39987
|
}
|
|
39988
|
+
.lux-menu-panel .lux-menu-item-icon mat-icon svg {
|
|
39989
|
+
width: 100%;
|
|
39990
|
+
height: 100%;
|
|
39991
|
+
max-width: var(--lux-theme-menu-item-icon-size);
|
|
39992
|
+
max-height: var(--lux-theme-menu-item-icon-size);
|
|
39993
|
+
}
|
|
39822
39994
|
|
|
39823
39995
|
.lux-menu-section-panel,
|
|
39824
39996
|
.lux-menu-section-panel:not(.lux-menu-panel-large) {
|
|
@@ -39900,6 +40072,22 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39900
40072
|
.lux-menu-section-panel .lux-menu-item-divider {
|
|
39901
40073
|
padding: 4px;
|
|
39902
40074
|
}
|
|
40075
|
+
.lux-menu-section-panel .lux-menu-item-color-warn:not([disabled]) {
|
|
40076
|
+
--mat-menu-item-icon-color: var(--lux-theme-button-text-warn-text-color);
|
|
40077
|
+
--mat-menu-item-label-text-color: var(--lux-theme-button-text-warn-text-color);
|
|
40078
|
+
}
|
|
40079
|
+
.lux-menu-section-panel .lux-menu-item-color-warn:not([disabled]) .lux-button-label,
|
|
40080
|
+
.lux-menu-section-panel .lux-menu-item-color-warn:not([disabled]) .lux-button-label-subtitle {
|
|
40081
|
+
color: var(--lux-theme-button-text-warn-text-color);
|
|
40082
|
+
}
|
|
40083
|
+
.lux-menu-section-panel .lux-menu-item-color-accent:not([disabled]) {
|
|
40084
|
+
--mat-menu-item-icon-color: var(--lux-theme-button-text-accent-text-color);
|
|
40085
|
+
--mat-menu-item-label-text-color: var(--lux-theme-button-text-accent-text-color);
|
|
40086
|
+
}
|
|
40087
|
+
.lux-menu-section-panel .lux-menu-item-color-accent:not([disabled]) .lux-button-label,
|
|
40088
|
+
.lux-menu-section-panel .lux-menu-item-color-accent:not([disabled]) .lux-button-label-subtitle {
|
|
40089
|
+
color: var(--lux-theme-button-text-accent-text-color);
|
|
40090
|
+
}
|
|
39903
40091
|
.lux-menu-section-panel .lux-menu-item-selected {
|
|
39904
40092
|
background-color: var(--lux-theme-primary-90) !important;
|
|
39905
40093
|
text-decoration-line: underline;
|
|
@@ -39935,8 +40123,14 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39935
40123
|
}
|
|
39936
40124
|
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon .lux-icon,
|
|
39937
40125
|
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon mat-icon {
|
|
40126
|
+
max-width: var(--lux-theme-menu-item-icon-size-large);
|
|
40127
|
+
max-height: var(--lux-theme-menu-item-icon-size-large);
|
|
39938
40128
|
font-size: var(--lux-theme-menu-item-icon-size-large);
|
|
39939
40129
|
}
|
|
40130
|
+
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon mat-icon svg {
|
|
40131
|
+
max-width: var(--lux-theme-menu-item-icon-size-large);
|
|
40132
|
+
max-height: var(--lux-theme-menu-item-icon-size-large);
|
|
40133
|
+
}
|
|
39940
40134
|
|
|
39941
40135
|
lux-message-box {
|
|
39942
40136
|
display: block;
|
|
@@ -40080,8 +40274,22 @@ lux-message-box div.lux-message-box-content .lux-message-container:not(.lux-mess
|
|
|
40080
40274
|
line-height: normal;
|
|
40081
40275
|
}
|
|
40082
40276
|
}
|
|
40083
|
-
|
|
40277
|
+
lux-paginator {
|
|
40084
40278
|
--mat-paginator-container-background-color: transparent;
|
|
40279
|
+
--mat-form-field-filled-container-color: transparent;
|
|
40280
|
+
}
|
|
40281
|
+
lux-paginator mat-paginator.lux-no-wrap .mat-mdc-paginator-container {
|
|
40282
|
+
flex-wrap: nowrap;
|
|
40283
|
+
}
|
|
40284
|
+
lux-paginator mat-paginator .mat-mdc-paginator-range-label {
|
|
40285
|
+
margin-left: 0.25rem;
|
|
40286
|
+
margin-right: 0.25rem;
|
|
40287
|
+
}
|
|
40288
|
+
lux-paginator mat-paginator.lux-dense {
|
|
40289
|
+
--mat-form-field-container-vertical-padding: 4px;
|
|
40290
|
+
}
|
|
40291
|
+
lux-paginator mat-paginator.lux-dense .mat-mdc-form-field-infix {
|
|
40292
|
+
min-height: 0;
|
|
40085
40293
|
}
|
|
40086
40294
|
|
|
40087
40295
|
lux-progress {
|