@ihk-gfi/lux-components-theme 21.1.0 → 21.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +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 +200 -12
- 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 +202 -14
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/base-templates/components/_luxButton.scss +1 -0
- package/src/base-templates/components/_luxButtonIcon.scss +44 -0
- package/src/base-templates/components/_luxButtonRoundedStroked.scss +8 -1
- package/src/base-templates/components/_luxButtonSpinner.scss +3 -3
- package/src/base-templates/components/_luxButtonToggle.scss +61 -0
- package/src/base-templates/components/_luxConsent.scss +63 -0
- package/src/base-templates/components/_luxDialog.scss +18 -6
- package/src/base-templates/components/_luxInput.scss +4 -8
- package/src/base-templates/components/_luxSelect.scss +41 -1
- package/src/theme-authentic/_variables.scss +28 -4
- package/src/theme-authentic/lux-authentic.scss +2 -0
- package/src/theme-green/_variables.scss +29 -5
- package/src/theme-green/lux-green.scss +2 -0
|
@@ -1692,6 +1692,7 @@
|
|
|
1692
1692
|
--lux-theme-app-gradient-reverse: none;
|
|
1693
1693
|
--lux-theme-app-border-color: var(--mat-sys-outline-variant);
|
|
1694
1694
|
--lux-theme-app-border-radius: 14px;
|
|
1695
|
+
--lux-theme-app-state-layer-color: #3a5f94;
|
|
1695
1696
|
--lux-theme-form-border-width: 1px;
|
|
1696
1697
|
--lux-theme-form-min-height: 44px;
|
|
1697
1698
|
--lux-theme-form-dense-min-height: 34px;
|
|
@@ -1709,7 +1710,7 @@
|
|
|
1709
1710
|
--lux-theme-form-error-msg-background: rgb(255, 228, 231);
|
|
1710
1711
|
--lux-theme-form-autofill-background-color: #e6e9ee;
|
|
1711
1712
|
--lux-theme-form-readonly-color: var(--lux-theme-primary-color);
|
|
1712
|
-
--lux-theme-form-readonly-bg-color: #
|
|
1713
|
+
--lux-theme-form-readonly-bg-color: #eff3f6;
|
|
1713
1714
|
--lux-theme-outline-dark: 4px solid var(--lux-theme-accent-secondary-color) !important;
|
|
1714
1715
|
--lux-theme-outline-bright: 4px solid #ffffff !important;
|
|
1715
1716
|
--lux-theme-outline-width: 4px;
|
|
@@ -1771,6 +1772,13 @@
|
|
|
1771
1772
|
--lux-theme-button-text-primary-text-color: var(--lux-theme-primary-color);
|
|
1772
1773
|
--lux-theme-button-text-accent-text-color: var(--mat-sys-on-tertiary-container);
|
|
1773
1774
|
--lux-theme-button-text-warn-text-color: var(--mat-sys-error);
|
|
1775
|
+
--lux-theme-button-icon-default-text-color: var(--lux-theme-dark-primary-text);
|
|
1776
|
+
--lux-theme-button-icon-primary-text-color: var(--lux-theme-primary-color);
|
|
1777
|
+
--lux-theme-button-icon-accent-text-color: var(--mat-sys-on-tertiary-container);
|
|
1778
|
+
--lux-theme-button-icon-warn-text-color: var(--mat-sys-error);
|
|
1779
|
+
--lux-theme-button-icon-size: 18px;
|
|
1780
|
+
--lux-theme-button-icon-container-size: 45px;
|
|
1781
|
+
--lux-theme-button-icon-container-shape: 18px;
|
|
1774
1782
|
--lux-theme-button-flat-default-text-color: var(--lux-theme-dark-primary-text);
|
|
1775
1783
|
--lux-theme-button-flat-default-container-color: #ffffff;
|
|
1776
1784
|
--lux-theme-button-flat-primary-text-color: var(--mat-sys-on-primary);
|
|
@@ -1833,6 +1841,19 @@
|
|
|
1833
1841
|
--lux-theme-button-flat-text-tracking: normal;
|
|
1834
1842
|
--lux-theme-button-raised-text-tracking: normal;
|
|
1835
1843
|
--lux-theme-button-stroked-text-tracking: normal;
|
|
1844
|
+
--lux-theme-button-toggle-height: 2.25rem;
|
|
1845
|
+
--lux-theme-button-toggle-height-dense: 1.5rem;
|
|
1846
|
+
--lux-theme-button-toggle-shape: var(--lux-theme-app-border-radius);
|
|
1847
|
+
--lux-theme-button-toggle-text-color: var(--lux-theme-primary-color);
|
|
1848
|
+
--lux-theme-button-toggle-divider-color: var(--lux-theme-primary-color);
|
|
1849
|
+
--lux-theme-button-toggle-disabled-divider-color: var(--lux-theme-app-border-color);
|
|
1850
|
+
--lux-theme-button-toggle-selected-state-text-color: var(--lux-theme-primary-color);
|
|
1851
|
+
--lux-theme-button-toggle-selected-state-background-color: var(--mat-sys-surface-container-high);
|
|
1852
|
+
--lux-theme-button-toggle-hover-state-layer-opacity: 0.08;
|
|
1853
|
+
--lux-theme-button-toggle-disabled-selected-state-text-color: var(--lux-theme-dark-disabled-text);
|
|
1854
|
+
--lux-theme-button-toggle-disabled-selected-state-background-color: var(--lux-theme-app-border-color);
|
|
1855
|
+
--lux-theme-button-toggle-disabled-state-text-color: var(--lux-theme-dark-disabled-text);
|
|
1856
|
+
--lux-theme-button-toggle-disabled-state-background-color: transparent;
|
|
1836
1857
|
--lux-theme-card-title-line-height: 2rem;
|
|
1837
1858
|
--lux-theme-card-title-text-size: 1.5rem;
|
|
1838
1859
|
--lux-theme-card-title-text-weight: 500;
|
|
@@ -1923,7 +1944,7 @@
|
|
|
1923
1944
|
--lux-theme-messagebox-on-pink: var(--lux-theme-custom-on-pink);
|
|
1924
1945
|
--lux-theme-messagebox-lightblue: var(--lux-theme-custom-lightblue);
|
|
1925
1946
|
--lux-theme-messagebox-on-lightblue: var(--lux-theme-custom-on-lightblue);
|
|
1926
|
-
--lux-theme-popup-background-color: #
|
|
1947
|
+
--lux-theme-popup-background-color: #e3ebf5;
|
|
1927
1948
|
--lux-theme-popup-fade-in-duration: 125ms;
|
|
1928
1949
|
--lux-theme-popup-panel-padding: 16px;
|
|
1929
1950
|
--lux-theme-popup-title-font-size: 1rem;
|
|
@@ -37249,9 +37270,16 @@ lux-link.lux-rounded.lux-stroked .lux-icon {
|
|
|
37249
37270
|
width: var(--lux-theme-button-rounded-stroked-text-size);
|
|
37250
37271
|
height: var(--lux-theme-button-rounded-stroked-text-size);
|
|
37251
37272
|
}
|
|
37273
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked,
|
|
37274
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked {
|
|
37275
|
+
border: 1px solid;
|
|
37276
|
+
}
|
|
37277
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked:disabled,
|
|
37278
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked:disabled {
|
|
37279
|
+
border-color: transparent;
|
|
37280
|
+
}
|
|
37252
37281
|
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled):not([aria-disabled=true]),
|
|
37253
37282
|
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled):not([aria-disabled=true]) {
|
|
37254
|
-
border: 1px solid;
|
|
37255
37283
|
border-color: var(--lux-theme-button-rounded-stroked-default-text-color);
|
|
37256
37284
|
}
|
|
37257
37285
|
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled):not([aria-disabled=true]).mat-primary,
|
|
@@ -37267,6 +37295,29 @@ lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled):not([aria-disabled=
|
|
|
37267
37295
|
border-color: var(--lux-theme-button-rounded-stroked-warn-text-color);
|
|
37268
37296
|
}
|
|
37269
37297
|
|
|
37298
|
+
lux-button.lux-icon-button {
|
|
37299
|
+
--mat-icon-button-container-shape: var(--lux-theme-button-icon-container-shape);
|
|
37300
|
+
--mat-icon-button-icon-color: var(--lux-theme-button-icon-default-text-color);
|
|
37301
|
+
--mat-icon-button-icon-size: var(--lux-theme-button-icon-size);
|
|
37302
|
+
--mat-icon-button-state-layer-size: var(--lux-theme-button-icon-container-size);
|
|
37303
|
+
--mat-icon-button-state-layer-color: var(--lux-theme-app-state-layer-color);
|
|
37304
|
+
--mat-icon-button-touch-target-size: var(--lux-theme-button-icon-container-size);
|
|
37305
|
+
}
|
|
37306
|
+
lux-button.lux-icon-button lux-icon,
|
|
37307
|
+
lux-button.lux-icon-button .lux-icon {
|
|
37308
|
+
width: var(--lux-theme-button-icon-size);
|
|
37309
|
+
height: var(--lux-theme-button-icon-size);
|
|
37310
|
+
}
|
|
37311
|
+
lux-button.lux-icon-button .mat-primary {
|
|
37312
|
+
--mat-icon-button-icon-color: var(--lux-theme-button-icon-primary-text-color);
|
|
37313
|
+
}
|
|
37314
|
+
lux-button.lux-icon-button .mat-accent {
|
|
37315
|
+
--mat-icon-button-icon-color: var(--lux-theme-button-icon-accent-text-color);
|
|
37316
|
+
}
|
|
37317
|
+
lux-button.lux-icon-button .mat-warn {
|
|
37318
|
+
--mat-icon-button-icon-color: var(--lux-theme-button-icon-warn-text-color);
|
|
37319
|
+
}
|
|
37320
|
+
|
|
37270
37321
|
lux-button.lux-raised mat-progress-spinner, lux-button.lux-flat mat-progress-spinner, lux-button.lux-rounded:not(.lux-stroked) mat-progress-spinner,
|
|
37271
37322
|
lux-link.lux-raised mat-progress-spinner,
|
|
37272
37323
|
lux-link.lux-flat mat-progress-spinner,
|
|
@@ -37307,10 +37358,10 @@ lux-button .mat-warn mat-progress-spinner,
|
|
|
37307
37358
|
lux-link .mat-warn mat-progress-spinner {
|
|
37308
37359
|
--mat-progress-spinner-active-indicator-color: var(--lux-theme-button-text-warn-text-color);
|
|
37309
37360
|
}
|
|
37310
|
-
lux-button .lux-button-spinner mat-progress-spinner,
|
|
37311
|
-
lux-link .lux-button-spinner mat-progress-spinner {
|
|
37312
|
-
width:
|
|
37313
|
-
height:
|
|
37361
|
+
lux-button .lux-button-spinner .lux-progress-small mat-progress-spinner,
|
|
37362
|
+
lux-link .lux-button-spinner .lux-progress-small mat-progress-spinner {
|
|
37363
|
+
width: 1.125rem !important;
|
|
37364
|
+
height: 1.125rem !important;
|
|
37314
37365
|
}
|
|
37315
37366
|
lux-button .lux-button-spinner .spinner-padding,
|
|
37316
37367
|
lux-link .lux-button-spinner .spinner-padding {
|
|
@@ -37400,6 +37451,49 @@ lux-link a:not([disabled]):focus-visible {
|
|
|
37400
37451
|
outline-offset: 1px;
|
|
37401
37452
|
}
|
|
37402
37453
|
|
|
37454
|
+
lux-button-toggle {
|
|
37455
|
+
--mat-button-toggle-shape: var(--lux-theme-button-toggle-shape);
|
|
37456
|
+
--mat-button-toggle-text-color: var(--lux-theme-button-toggle-text-color);
|
|
37457
|
+
--mat-button-toggle-selected-state-text-color: var(--lux-theme-button-toggle-selected-state-text-color);
|
|
37458
|
+
--mat-button-toggle-selected-state-background-color: var(--lux-theme-button-toggle-selected-state-background-color);
|
|
37459
|
+
--mat-button-toggle-hover-state-layer-opacity: var(--lux-theme-button-toggle-hover-state-layer-opacity);
|
|
37460
|
+
--mat-button-toggle-disabled-selected-state-text-color: var(--lux-theme-button-toggle-disabled-selected-state-text-color);
|
|
37461
|
+
--mat-button-toggle-disabled-selected-state-background-color: var(--lux-theme-button-toggle-disabled-selected-state-background-color);
|
|
37462
|
+
--mat-button-toggle-disabled-state-text-color: var(--lux-theme-button-toggle-disabled-state-text-color);
|
|
37463
|
+
--mat-button-toggle-disabled-state-background-color: var(--lux-theme-button-toggle-disabled-state-background-color);
|
|
37464
|
+
--mat-button-toggle-height: var(--lux-theme-button-toggle-height);
|
|
37465
|
+
--mat-button-toggle-divider-color: var(--lux-theme-button-toggle-divider-color);
|
|
37466
|
+
}
|
|
37467
|
+
lux-button-toggle mat-button-toggle-group[aria-disabled=true] {
|
|
37468
|
+
--mat-button-toggle-divider-color: var(--lux-theme-button-toggle-disabled-divider-color);
|
|
37469
|
+
}
|
|
37470
|
+
lux-button-toggle.lux-dense {
|
|
37471
|
+
--mat-button-toggle-height: var(--lux-theme-button-toggle-height-dense);
|
|
37472
|
+
}
|
|
37473
|
+
lux-button-toggle .lux-button-toggle-wrapper {
|
|
37474
|
+
display: flex;
|
|
37475
|
+
flex-direction: column;
|
|
37476
|
+
gap: 0.25rem;
|
|
37477
|
+
}
|
|
37478
|
+
lux-button-toggle .lux-button-toggle-misc {
|
|
37479
|
+
display: flex;
|
|
37480
|
+
margin-left: 12px;
|
|
37481
|
+
font-size: 0.75rem;
|
|
37482
|
+
line-height: 1.2rem;
|
|
37483
|
+
color: var(--lux-theme-dark-secondary-text);
|
|
37484
|
+
word-wrap: break-word;
|
|
37485
|
+
}
|
|
37486
|
+
lux-button-toggle .lux-button-toggle-error {
|
|
37487
|
+
display: flex;
|
|
37488
|
+
align-items: center;
|
|
37489
|
+
justify-content: center;
|
|
37490
|
+
text-align: center;
|
|
37491
|
+
background-color: var(--lux-theme-form-error-msg-background);
|
|
37492
|
+
border-radius: 4px;
|
|
37493
|
+
padding-right: 2px;
|
|
37494
|
+
color: var(--mat-sys-on-error-container);
|
|
37495
|
+
}
|
|
37496
|
+
|
|
37403
37497
|
lux-card {
|
|
37404
37498
|
--mat-card-outlined-container-color: var(--lux-theme-card-background-color);
|
|
37405
37499
|
--mat-card-outlined-container-shape: var(--lux-theme-card-shape);
|
|
@@ -37615,6 +37709,56 @@ lux-chips-ac mat-chip-row.cdk-focused:not(.cdk-mouse-focused):not(.cdk-program-f
|
|
|
37615
37709
|
border-radius: 4px;
|
|
37616
37710
|
}
|
|
37617
37711
|
|
|
37712
|
+
lux-consent-dialog lux-toggle-ac lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-misc-authentic {
|
|
37713
|
+
font-size: 0.875rem;
|
|
37714
|
+
}
|
|
37715
|
+
lux-consent-dialog .lux-consent-description {
|
|
37716
|
+
margin-top: 0;
|
|
37717
|
+
padding-top: 0;
|
|
37718
|
+
}
|
|
37719
|
+
lux-consent-dialog .lux-consent-card {
|
|
37720
|
+
padding: 4px;
|
|
37721
|
+
}
|
|
37722
|
+
lux-consent-dialog .essential-always-active {
|
|
37723
|
+
font-weight: 700;
|
|
37724
|
+
}
|
|
37725
|
+
lux-consent-dialog .essential-hint {
|
|
37726
|
+
display: flex;
|
|
37727
|
+
font-size: 0.875rem;
|
|
37728
|
+
line-height: 1em;
|
|
37729
|
+
font-weight: 400;
|
|
37730
|
+
color: rgba(0, 0, 0, 0.6);
|
|
37731
|
+
word-wrap: break-word;
|
|
37732
|
+
margin: 0.25em calc(0.5em + 1px) 0 calc(0.5em + 1px);
|
|
37733
|
+
}
|
|
37734
|
+
lux-consent-dialog .lux-consent-dialog-actions {
|
|
37735
|
+
display: flex;
|
|
37736
|
+
gap: 0.5rem;
|
|
37737
|
+
flex-direction: row;
|
|
37738
|
+
flex-wrap: wrap;
|
|
37739
|
+
}
|
|
37740
|
+
lux-consent-dialog .storage-type-title {
|
|
37741
|
+
padding-left: 26px;
|
|
37742
|
+
}
|
|
37743
|
+
lux-consent-dialog .storage-name {
|
|
37744
|
+
word-break: break-all;
|
|
37745
|
+
}
|
|
37746
|
+
|
|
37747
|
+
lux-consent-dialog.mobile-view .lux-consent-dialog-actions {
|
|
37748
|
+
display: flex;
|
|
37749
|
+
flex-direction: column;
|
|
37750
|
+
flex: 1 1 auto;
|
|
37751
|
+
justify-content: space-between;
|
|
37752
|
+
}
|
|
37753
|
+
lux-consent-dialog.mobile-view .lux-consent-dialog-actions lux-button {
|
|
37754
|
+
display: flex;
|
|
37755
|
+
flex: 1 1 auto;
|
|
37756
|
+
}
|
|
37757
|
+
lux-consent-dialog.mobile-view .lux-consent-dialog-actions lux-button button {
|
|
37758
|
+
display: flex;
|
|
37759
|
+
flex: 1 1 auto;
|
|
37760
|
+
}
|
|
37761
|
+
|
|
37618
37762
|
:root {
|
|
37619
37763
|
--mat-option-label-text-size: var(--lux-theme-panel-option-label-text-size);
|
|
37620
37764
|
--mat-option-label-text-color: var(--lux-theme-panel-option-label-text-color);
|
|
@@ -37684,6 +37828,14 @@ lux-datetimepicker-ac button:not(:disabled) .lux-datetimepicker-toggle-icon {
|
|
|
37684
37828
|
|
|
37685
37829
|
.cdk-overlay-pane.mat-mdc-dialog-panel .mat-mdc-dialog-container {
|
|
37686
37830
|
border-radius: var(--lux-theme-app-border-radius);
|
|
37831
|
+
height: inherit;
|
|
37832
|
+
min-height: inherit;
|
|
37833
|
+
max-height: inherit;
|
|
37834
|
+
min-width: 100%;
|
|
37835
|
+
}
|
|
37836
|
+
.cdk-overlay-pane.mat-mdc-dialog-panel .mat-mdc-dialog-inner-container {
|
|
37837
|
+
min-width: 100%;
|
|
37838
|
+
min-height: 100%;
|
|
37687
37839
|
}
|
|
37688
37840
|
|
|
37689
37841
|
.cdk-overlay-pane.mat-mdc-dialog-panel.lux-dialog {
|
|
@@ -38587,14 +38739,10 @@ lux-form-control-wrapper input {
|
|
|
38587
38739
|
font-size: var(--lux-theme-form-control-font-size);
|
|
38588
38740
|
}
|
|
38589
38741
|
|
|
38590
|
-
lux-input-ac
|
|
38591
|
-
lux-input-ac
|
|
38592
|
-
|
|
38742
|
+
lux-input-ac lux-input-ac-prefix,
|
|
38743
|
+
lux-input-ac lux-input-ac-suffix {
|
|
38744
|
+
display: flex;
|
|
38593
38745
|
white-space: nowrap;
|
|
38594
|
-
display: inline-block;
|
|
38595
|
-
flex: 1 1 auto;
|
|
38596
|
-
max-height: 1.5em;
|
|
38597
|
-
align-items: center;
|
|
38598
38746
|
}
|
|
38599
38747
|
|
|
38600
38748
|
lux-link-plain {
|
|
@@ -39440,6 +39588,46 @@ lux-radio-ac.lux-form-control-readonly {
|
|
|
39440
39588
|
--mat-select-panel-background-color: var(--lux-theme-panel-bg-color);
|
|
39441
39589
|
--mat-select-container-elevation-shadow: 0 0 0 1px var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant));
|
|
39442
39590
|
}
|
|
39591
|
+
.lux-select-panel-ac lux-select-panel-filter,
|
|
39592
|
+
.lux-select-panel-ac-multiple lux-select-panel-filter {
|
|
39593
|
+
position: sticky;
|
|
39594
|
+
top: 0;
|
|
39595
|
+
z-index: 2;
|
|
39596
|
+
display: block;
|
|
39597
|
+
box-sizing: border-box;
|
|
39598
|
+
background-color: var(--lux-theme-panel-bg-color);
|
|
39599
|
+
border-bottom: 1px solid var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant));
|
|
39600
|
+
}
|
|
39601
|
+
.lux-select-panel-ac .lux-select-panel-filter,
|
|
39602
|
+
.lux-select-panel-ac-multiple .lux-select-panel-filter {
|
|
39603
|
+
display: block;
|
|
39604
|
+
box-sizing: border-box;
|
|
39605
|
+
padding: 8px 8px 4px;
|
|
39606
|
+
background-color: var(--lux-theme-panel-bg-color);
|
|
39607
|
+
}
|
|
39608
|
+
.lux-select-panel-ac .lux-select-panel-filter-option,
|
|
39609
|
+
.lux-select-panel-ac-multiple .lux-select-panel-filter-option {
|
|
39610
|
+
position: sticky;
|
|
39611
|
+
top: 0;
|
|
39612
|
+
z-index: 3;
|
|
39613
|
+
min-height: auto !important;
|
|
39614
|
+
padding: 0 !important;
|
|
39615
|
+
pointer-events: auto;
|
|
39616
|
+
cursor: default;
|
|
39617
|
+
}
|
|
39618
|
+
.lux-select-panel-ac .lux-select-panel-filter-option .mdc-list-item__primary-text,
|
|
39619
|
+
.lux-select-panel-ac-multiple .lux-select-panel-filter-option .mdc-list-item__primary-text {
|
|
39620
|
+
width: 100%;
|
|
39621
|
+
}
|
|
39622
|
+
.lux-select-panel-ac.lux-select-panel-ac-filter,
|
|
39623
|
+
.lux-select-panel-ac-multiple.lux-select-panel-ac-filter {
|
|
39624
|
+
padding-top: 0;
|
|
39625
|
+
scroll-padding-top: var(--lux-select-filter-offset, 0px);
|
|
39626
|
+
}
|
|
39627
|
+
.lux-select-panel-ac.lux-select-panel-ac-filter .mat-mdc-option,
|
|
39628
|
+
.lux-select-panel-ac-multiple.lux-select-panel-ac-filter .mat-mdc-option {
|
|
39629
|
+
scroll-margin-top: var(--lux-select-filter-offset, 0px);
|
|
39630
|
+
}
|
|
39443
39631
|
|
|
39444
39632
|
lux-select-ac {
|
|
39445
39633
|
--mat-select-enabled-arrow-color: var(--lux-theme-primary-color);
|