@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
|
@@ -1800,6 +1800,36 @@
|
|
|
1800
1800
|
--lux-theme-badge-on-pink: var(--lux-theme-custom-on-pink);
|
|
1801
1801
|
--lux-theme-badge-lightblue: var(--lux-theme-custom-lightblue);
|
|
1802
1802
|
--lux-theme-badge-on-lightblue: var(--lux-theme-custom-on-lightblue);
|
|
1803
|
+
--lux-theme-badge-muted-red: #ffedea;
|
|
1804
|
+
--lux-theme-badge-muted-on-red: #93000c;
|
|
1805
|
+
--lux-theme-badge-muted-stroke-red: #ffb4ab;
|
|
1806
|
+
--lux-theme-badge-muted-green: #ebffe6;
|
|
1807
|
+
--lux-theme-badge-muted-on-green: #00531d;
|
|
1808
|
+
--lux-theme-badge-muted-stroke-green: #75dc81;
|
|
1809
|
+
--lux-theme-badge-muted-purple: #f4eeff;
|
|
1810
|
+
--lux-theme-badge-muted-on-purple: #4a3597;
|
|
1811
|
+
--lux-theme-badge-muted-stroke-purple: #d2bbff;
|
|
1812
|
+
--lux-theme-badge-muted-blue: #ffffff;
|
|
1813
|
+
--lux-theme-badge-muted-on-blue: #003366;
|
|
1814
|
+
--lux-theme-badge-muted-stroke-blue: #003366;
|
|
1815
|
+
--lux-theme-badge-muted-gray: #f4f0ef;
|
|
1816
|
+
--lux-theme-badge-muted-on-gray: #484646;
|
|
1817
|
+
--lux-theme-badge-muted-stroke-gray: #c9c6c5;
|
|
1818
|
+
--lux-theme-badge-muted-orange: #ffede4;
|
|
1819
|
+
--lux-theme-badge-muted-on-orange: #793100;
|
|
1820
|
+
--lux-theme-badge-muted-stroke-orange: #793100;
|
|
1821
|
+
--lux-theme-badge-muted-black: #ffffff;
|
|
1822
|
+
--lux-theme-badge-muted-on-black: #1c1b1b;
|
|
1823
|
+
--lux-theme-badge-muted-stroke-black: #605e5e;
|
|
1824
|
+
--lux-theme-badge-muted-yellow: #ffefd3;
|
|
1825
|
+
--lux-theme-badge-muted-on-yellow: #5a4400;
|
|
1826
|
+
--lux-theme-badge-muted-stroke-yellow: #f5bf00;
|
|
1827
|
+
--lux-theme-badge-muted-pink: #ffecf2;
|
|
1828
|
+
--lux-theme-badge-muted-on-pink: #8e0051;
|
|
1829
|
+
--lux-theme-badge-muted-stroke-pink: #ffb0ce;
|
|
1830
|
+
--lux-theme-badge-muted-lightblue: #e6f2ff;
|
|
1831
|
+
--lux-theme-badge-muted-on-lightblue: #003366;
|
|
1832
|
+
--lux-theme-badge-muted-stroke-lightblue: #91cdff;
|
|
1803
1833
|
--lux-theme-breadcrumb-hover-color: var(--lux-theme-accent-secondary-color);
|
|
1804
1834
|
--lux-theme-button-text-default-text-color: var(--lux-theme-dark-primary-text);
|
|
1805
1835
|
--lux-theme-button-text-primary-text-color: var(--lux-theme-primary-color);
|
|
@@ -37388,6 +37418,85 @@ lux-autocomplete-ac .lux-input-suffix-container {
|
|
|
37388
37418
|
.lux-badge.lux-badge-on-black {
|
|
37389
37419
|
color: var(--lux-theme-badge-on-black);
|
|
37390
37420
|
}
|
|
37421
|
+
.lux-badge.lux-badge-muted.lux-badge-red {
|
|
37422
|
+
background-color: var(--lux-theme-badge-muted-red);
|
|
37423
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-red);
|
|
37424
|
+
}
|
|
37425
|
+
.lux-badge.lux-badge-muted.lux-badge-on-red {
|
|
37426
|
+
color: var(--lux-theme-badge-muted-on-red);
|
|
37427
|
+
}
|
|
37428
|
+
.lux-badge.lux-badge-muted.lux-badge-green {
|
|
37429
|
+
background-color: var(--lux-theme-badge-muted-green);
|
|
37430
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-green);
|
|
37431
|
+
}
|
|
37432
|
+
.lux-badge.lux-badge-muted.lux-badge-on-green {
|
|
37433
|
+
color: var(--lux-theme-badge-muted-on-green);
|
|
37434
|
+
}
|
|
37435
|
+
.lux-badge.lux-badge-muted.lux-badge-purple {
|
|
37436
|
+
background-color: var(--lux-theme-badge-muted-purple);
|
|
37437
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-purple);
|
|
37438
|
+
}
|
|
37439
|
+
.lux-badge.lux-badge-muted.lux-badge-on-purple {
|
|
37440
|
+
color: var(--lux-theme-badge-muted-on-purple);
|
|
37441
|
+
}
|
|
37442
|
+
.lux-badge.lux-badge-muted.lux-badge-blue {
|
|
37443
|
+
background-color: var(--lux-theme-badge-muted-blue);
|
|
37444
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-blue);
|
|
37445
|
+
}
|
|
37446
|
+
.lux-badge.lux-badge-muted.lux-badge-on-blue {
|
|
37447
|
+
color: var(--lux-theme-badge-muted-on-blue);
|
|
37448
|
+
}
|
|
37449
|
+
.lux-badge.lux-badge-muted.lux-badge-gray {
|
|
37450
|
+
background-color: var(--lux-theme-badge-muted-gray);
|
|
37451
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-gray);
|
|
37452
|
+
}
|
|
37453
|
+
.lux-badge.lux-badge-muted.lux-badge-on-gray {
|
|
37454
|
+
color: var(--lux-theme-badge-muted-on-gray);
|
|
37455
|
+
}
|
|
37456
|
+
.lux-badge.lux-badge-muted.lux-badge-orange {
|
|
37457
|
+
background-color: var(--lux-theme-badge-muted-orange);
|
|
37458
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-orange);
|
|
37459
|
+
}
|
|
37460
|
+
.lux-badge.lux-badge-muted.lux-badge-on-orange {
|
|
37461
|
+
color: var(--lux-theme-badge-muted-on-orange);
|
|
37462
|
+
}
|
|
37463
|
+
.lux-badge.lux-badge-muted.lux-badge-yellow {
|
|
37464
|
+
background-color: var(--lux-theme-badge-muted-yellow);
|
|
37465
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-yellow);
|
|
37466
|
+
}
|
|
37467
|
+
.lux-badge.lux-badge-muted.lux-badge-on-yellow {
|
|
37468
|
+
color: var(--lux-theme-badge-muted-on-yellow);
|
|
37469
|
+
}
|
|
37470
|
+
.lux-badge.lux-badge-muted.lux-badge-pink {
|
|
37471
|
+
background-color: var(--lux-theme-badge-muted-pink);
|
|
37472
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-pink);
|
|
37473
|
+
}
|
|
37474
|
+
.lux-badge.lux-badge-muted.lux-badge-on-pink {
|
|
37475
|
+
color: var(--lux-theme-badge-muted-on-pink);
|
|
37476
|
+
}
|
|
37477
|
+
.lux-badge.lux-badge-muted.lux-badge-lightblue {
|
|
37478
|
+
background-color: var(--lux-theme-badge-muted-lightblue);
|
|
37479
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-lightblue);
|
|
37480
|
+
}
|
|
37481
|
+
.lux-badge.lux-badge-muted.lux-badge-on-lightblue {
|
|
37482
|
+
color: var(--lux-theme-badge-muted-on-lightblue);
|
|
37483
|
+
}
|
|
37484
|
+
.lux-badge.lux-badge-muted.lux-badge-black {
|
|
37485
|
+
background-color: var(--lux-theme-badge-muted-black);
|
|
37486
|
+
box-shadow: inset 0 0 0 1px var(--lux-theme-badge-muted-stroke-black);
|
|
37487
|
+
}
|
|
37488
|
+
.lux-badge.lux-badge-muted.lux-badge-on-black {
|
|
37489
|
+
color: var(--lux-theme-badge-muted-on-black);
|
|
37490
|
+
}
|
|
37491
|
+
.lux-badge.lux-badge-size-small {
|
|
37492
|
+
font-size: 0.75rem;
|
|
37493
|
+
}
|
|
37494
|
+
.lux-badge.lux-badge-size-medium {
|
|
37495
|
+
font-size: 1rem;
|
|
37496
|
+
}
|
|
37497
|
+
.lux-badge.lux-badge-size-large {
|
|
37498
|
+
font-size: 1.25rem;
|
|
37499
|
+
}
|
|
37391
37500
|
|
|
37392
37501
|
.lux-badge.lux-badge-uppercase * {
|
|
37393
37502
|
text-transform: uppercase;
|
|
@@ -37406,6 +37515,9 @@ lux-autocomplete-ac .lux-input-suffix-container {
|
|
|
37406
37515
|
font-weight: 600;
|
|
37407
37516
|
line-height: normal;
|
|
37408
37517
|
}
|
|
37518
|
+
.lux-badge.lux-badge-size-small {
|
|
37519
|
+
font-size: 1rem;
|
|
37520
|
+
}
|
|
37409
37521
|
}
|
|
37410
37522
|
.lux-badge-notification {
|
|
37411
37523
|
--mat-badge-background-color: #605e5e;
|
|
@@ -38867,7 +38979,7 @@ lux-filter-load-dialog lux-dialog-actions.lux-filter-dialog-action {
|
|
|
38867
38979
|
max-width: 100%;
|
|
38868
38980
|
box-sizing: border-box;
|
|
38869
38981
|
gap: 12px;
|
|
38870
|
-
place-content: center
|
|
38982
|
+
place-content: center center;
|
|
38871
38983
|
align-items: center;
|
|
38872
38984
|
}
|
|
38873
38985
|
|
|
@@ -39252,6 +39364,44 @@ lux-input-ac lux-input-ac-suffix {
|
|
|
39252
39364
|
white-space: nowrap;
|
|
39253
39365
|
}
|
|
39254
39366
|
|
|
39367
|
+
lux-button.lux-icon-button.lux-input-clear-btn {
|
|
39368
|
+
display: flex;
|
|
39369
|
+
--mat-icon-button-container-shape: var(--lux-theme-button-icon-container-shape);
|
|
39370
|
+
--mat-icon-button-icon-color: var(--lux-theme-primary-color);
|
|
39371
|
+
--mat-icon-button-icon-size: var(--mat-icon-button-icon-size);
|
|
39372
|
+
--mat-icon-button-state-layer-size: 40px;
|
|
39373
|
+
--mat-icon-button-state-layer-color: var(--mat-sys-on-surface-variant);
|
|
39374
|
+
--mat-icon-button-touch-target-size: calc(var(--lux-theme-form-min-height) - 2 * var(--lux-theme-form-border-width));
|
|
39375
|
+
}
|
|
39376
|
+
lux-button.lux-icon-button.lux-input-clear-btn lux-icon,
|
|
39377
|
+
lux-button.lux-icon-button.lux-input-clear-btn .lux-icon {
|
|
39378
|
+
width: var(--mat-icon-button-icon-size);
|
|
39379
|
+
height: var(--mat-icon-button-icon-size);
|
|
39380
|
+
}
|
|
39381
|
+
lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus,
|
|
39382
|
+
lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus-visible {
|
|
39383
|
+
outline-color: transparent !important;
|
|
39384
|
+
}
|
|
39385
|
+
|
|
39386
|
+
.lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn {
|
|
39387
|
+
display: flex;
|
|
39388
|
+
--mat-icon-button-container-shape: var(--lux-theme-button-icon-container-shape);
|
|
39389
|
+
--mat-icon-button-icon-color: var(--lux-theme-primary-color);
|
|
39390
|
+
--mat-icon-button-icon-size: var(--mat-icon-button-icon-size);
|
|
39391
|
+
--mat-icon-button-state-layer-size: 36px;
|
|
39392
|
+
--mat-icon-button-state-layer-color: var(--mat-sys-on-surface-variant);
|
|
39393
|
+
--mat-icon-button-touch-target-size: calc(var(--lux-theme-form-dense-min-height) - 2 * var(--lux-theme-form-border-width));
|
|
39394
|
+
}
|
|
39395
|
+
.lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn lux-icon,
|
|
39396
|
+
.lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn .lux-icon {
|
|
39397
|
+
width: var(--mat-icon-button-icon-size);
|
|
39398
|
+
height: var(--mat-icon-button-icon-size);
|
|
39399
|
+
}
|
|
39400
|
+
.lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus,
|
|
39401
|
+
.lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus-visible {
|
|
39402
|
+
outline-color: transparent !important;
|
|
39403
|
+
}
|
|
39404
|
+
|
|
39255
39405
|
lux-link-plain {
|
|
39256
39406
|
display: inline-flex;
|
|
39257
39407
|
align-items: baseline;
|
|
@@ -39668,6 +39818,15 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39668
39818
|
}
|
|
39669
39819
|
|
|
39670
39820
|
/* Menu-Overlay-Panel anpassen */
|
|
39821
|
+
.lux-menu-panel:not(.lux-menu-section-panel) .lux-menu-item-color-warn:not([disabled]) {
|
|
39822
|
+
--mat-menu-item-label-text-color: var(--lux-theme-button-text-warn-text-color);
|
|
39823
|
+
--mat-menu-item-icon-color: var(--lux-theme-button-text-warn-text-color);
|
|
39824
|
+
}
|
|
39825
|
+
.lux-menu-panel:not(.lux-menu-section-panel) .lux-menu-item-color-accent:not([disabled]) {
|
|
39826
|
+
--mat-menu-item-label-text-color: var(--lux-theme-button-text-accent-text-color);
|
|
39827
|
+
--mat-menu-item-icon-color: var(--lux-theme-button-text-accent-text-color);
|
|
39828
|
+
}
|
|
39829
|
+
|
|
39671
39830
|
.lux-menu-panel {
|
|
39672
39831
|
--mat-menu-container-shape: var(--lux-theme-app-border-radius);
|
|
39673
39832
|
--mat-menu-container-elevation-shadow: 0 0 0 1px var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant));
|
|
@@ -39729,7 +39888,9 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39729
39888
|
letter-spacing: 1.25px;
|
|
39730
39889
|
}
|
|
39731
39890
|
.lux-menu-panel .lux-menu-item-icon {
|
|
39732
|
-
display: inline-
|
|
39891
|
+
display: inline-flex;
|
|
39892
|
+
align-items: center;
|
|
39893
|
+
justify-content: center;
|
|
39733
39894
|
align-self: center;
|
|
39734
39895
|
vertical-align: middle;
|
|
39735
39896
|
width: var(--lux-theme-menu-item-icon-size);
|
|
@@ -39737,13 +39898,24 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39737
39898
|
}
|
|
39738
39899
|
.lux-menu-panel .lux-menu-item-icon .lux-icon,
|
|
39739
39900
|
.lux-menu-panel .lux-menu-item-icon mat-icon {
|
|
39901
|
+
display: inline-flex;
|
|
39902
|
+
align-items: center;
|
|
39903
|
+
justify-content: center;
|
|
39740
39904
|
width: 100%;
|
|
39741
39905
|
height: 100%;
|
|
39906
|
+
max-width: var(--lux-theme-menu-item-icon-size);
|
|
39907
|
+
max-height: var(--lux-theme-menu-item-icon-size);
|
|
39742
39908
|
font-size: var(--lux-theme-menu-item-icon-size);
|
|
39743
39909
|
}
|
|
39744
39910
|
.lux-menu-panel .lux-menu-item-icon mat-icon {
|
|
39745
39911
|
margin: 0;
|
|
39746
39912
|
}
|
|
39913
|
+
.lux-menu-panel .lux-menu-item-icon mat-icon svg {
|
|
39914
|
+
width: 100%;
|
|
39915
|
+
height: 100%;
|
|
39916
|
+
max-width: var(--lux-theme-menu-item-icon-size);
|
|
39917
|
+
max-height: var(--lux-theme-menu-item-icon-size);
|
|
39918
|
+
}
|
|
39747
39919
|
|
|
39748
39920
|
.lux-menu-section-panel,
|
|
39749
39921
|
.lux-menu-section-panel:not(.lux-menu-panel-large) {
|
|
@@ -39825,6 +39997,22 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39825
39997
|
.lux-menu-section-panel .lux-menu-item-divider {
|
|
39826
39998
|
padding: 4px;
|
|
39827
39999
|
}
|
|
40000
|
+
.lux-menu-section-panel .lux-menu-item-color-warn:not([disabled]) {
|
|
40001
|
+
--mat-menu-item-icon-color: var(--lux-theme-button-text-warn-text-color);
|
|
40002
|
+
--mat-menu-item-label-text-color: var(--lux-theme-button-text-warn-text-color);
|
|
40003
|
+
}
|
|
40004
|
+
.lux-menu-section-panel .lux-menu-item-color-warn:not([disabled]) .lux-button-label,
|
|
40005
|
+
.lux-menu-section-panel .lux-menu-item-color-warn:not([disabled]) .lux-button-label-subtitle {
|
|
40006
|
+
color: var(--lux-theme-button-text-warn-text-color);
|
|
40007
|
+
}
|
|
40008
|
+
.lux-menu-section-panel .lux-menu-item-color-accent:not([disabled]) {
|
|
40009
|
+
--mat-menu-item-icon-color: var(--lux-theme-button-text-accent-text-color);
|
|
40010
|
+
--mat-menu-item-label-text-color: var(--lux-theme-button-text-accent-text-color);
|
|
40011
|
+
}
|
|
40012
|
+
.lux-menu-section-panel .lux-menu-item-color-accent:not([disabled]) .lux-button-label,
|
|
40013
|
+
.lux-menu-section-panel .lux-menu-item-color-accent:not([disabled]) .lux-button-label-subtitle {
|
|
40014
|
+
color: var(--lux-theme-button-text-accent-text-color);
|
|
40015
|
+
}
|
|
39828
40016
|
.lux-menu-section-panel .lux-menu-item-selected {
|
|
39829
40017
|
background-color: var(--lux-theme-primary-90) !important;
|
|
39830
40018
|
text-decoration-line: underline;
|
|
@@ -39860,8 +40048,14 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39860
40048
|
}
|
|
39861
40049
|
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon .lux-icon,
|
|
39862
40050
|
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon mat-icon {
|
|
40051
|
+
max-width: var(--lux-theme-menu-item-icon-size-large);
|
|
40052
|
+
max-height: var(--lux-theme-menu-item-icon-size-large);
|
|
39863
40053
|
font-size: var(--lux-theme-menu-item-icon-size-large);
|
|
39864
40054
|
}
|
|
40055
|
+
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon mat-icon svg {
|
|
40056
|
+
max-width: var(--lux-theme-menu-item-icon-size-large);
|
|
40057
|
+
max-height: var(--lux-theme-menu-item-icon-size-large);
|
|
40058
|
+
}
|
|
39865
40059
|
|
|
39866
40060
|
lux-message-box {
|
|
39867
40061
|
display: block;
|
|
@@ -40005,8 +40199,22 @@ lux-message-box div.lux-message-box-content .lux-message-container:not(.lux-mess
|
|
|
40005
40199
|
line-height: normal;
|
|
40006
40200
|
}
|
|
40007
40201
|
}
|
|
40008
|
-
|
|
40202
|
+
lux-paginator {
|
|
40009
40203
|
--mat-paginator-container-background-color: transparent;
|
|
40204
|
+
--mat-form-field-filled-container-color: transparent;
|
|
40205
|
+
}
|
|
40206
|
+
lux-paginator mat-paginator.lux-no-wrap .mat-mdc-paginator-container {
|
|
40207
|
+
flex-wrap: nowrap;
|
|
40208
|
+
}
|
|
40209
|
+
lux-paginator mat-paginator .mat-mdc-paginator-range-label {
|
|
40210
|
+
margin-left: 0.25rem;
|
|
40211
|
+
margin-right: 0.25rem;
|
|
40212
|
+
}
|
|
40213
|
+
lux-paginator mat-paginator.lux-dense {
|
|
40214
|
+
--mat-form-field-container-vertical-padding: 4px;
|
|
40215
|
+
}
|
|
40216
|
+
lux-paginator mat-paginator.lux-dense .mat-mdc-form-field-infix {
|
|
40217
|
+
min-height: 0;
|
|
40010
40218
|
}
|
|
40011
40219
|
|
|
40012
40220
|
lux-progress {
|