@ihk-gfi/lux-components-theme 21.1.0 → 21.3.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 +339 -59
- 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 +341 -61
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/base-templates/common/_luxstyles.scss +42 -0
- package/src/base-templates/components/_luxAppHeaderAc.scss +1 -1
- package/src/base-templates/components/_luxButton.scss +1 -0
- package/src/base-templates/components/_luxButtonFlat.scss +8 -8
- package/src/base-templates/components/_luxButtonIcon.scss +44 -0
- package/src/base-templates/components/_luxButtonRaised.scss +2 -2
- package/src/base-templates/components/_luxButtonRoundedStroked.scss +11 -4
- 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 +15 -12
- package/src/base-templates/components/_luxFormControlWrapper.scss +1 -1
- package/src/base-templates/components/_luxInput.scss +4 -8
- package/src/base-templates/components/_luxMenu.scss +26 -3
- package/src/base-templates/components/_luxSelect.scss +41 -1
- package/src/base-templates/components/_luxTile.scss +1 -1
- package/src/base-templates/components/_luxTileAc.scss +5 -1
- package/src/theme-authentic/_variables.scss +85 -18
- package/src/theme-authentic/lux-authentic.scss +2 -0
- package/src/theme-green/_variables.scss +86 -19
- package/src/theme-green/lux-green.scss +2 -0
|
@@ -1605,13 +1605,37 @@
|
|
|
1605
1605
|
--lux-theme-dark-primary-text: #003366;
|
|
1606
1606
|
--lux-theme-dark-secondary-text: #335c85;
|
|
1607
1607
|
--lux-theme-dark-disabled-text: #636d76;
|
|
1608
|
-
--lux-theme-dark-dividers: rgba(0, 51, 102, 0.
|
|
1608
|
+
--lux-theme-dark-dividers: rgba(0, 51, 102, 0.1);
|
|
1609
1609
|
--lux-theme-dark-focused: rgba(0, 0, 0, 0.12);
|
|
1610
1610
|
--lux-theme-light-primary-text: white;
|
|
1611
1611
|
--lux-theme-light-secondary-text: rgba(255, 255, 255, 0.7);
|
|
1612
1612
|
--lux-theme-light-disabled-text: rgba(255, 255, 255, 0.5);
|
|
1613
1613
|
--lux-theme-light-dividers: #e3ebf5;
|
|
1614
1614
|
--lux-theme-light-focused: rgba(255, 255, 255, 0.12);
|
|
1615
|
+
--lux-theme-breakpoint-xs: 599px;
|
|
1616
|
+
--lux-theme-breakpoint-sm: 959px;
|
|
1617
|
+
--lux-theme-breakpoint-md: 1279px;
|
|
1618
|
+
--lux-theme-breakpoint-lg: 1919px;
|
|
1619
|
+
--lux-theme-breakpoint-xl: 4999px;
|
|
1620
|
+
--lux-theme-radius-xs: 2px;
|
|
1621
|
+
--lux-theme-radius-sm: 4px;
|
|
1622
|
+
--lux-theme-radius-md: 8px;
|
|
1623
|
+
--lux-theme-radius-lg: 18px;
|
|
1624
|
+
--lux-theme-radius-xl: 20px;
|
|
1625
|
+
--lux-theme-radius-xxl: 999px;
|
|
1626
|
+
--lux-theme-spacing-xxs: 2px;
|
|
1627
|
+
--lux-theme-spacing-xs: 4px;
|
|
1628
|
+
--lux-theme-spacing-sm: 8px;
|
|
1629
|
+
--lux-theme-spacing-md: 16px;
|
|
1630
|
+
--lux-theme-spacing-lg: 24px;
|
|
1631
|
+
--lux-theme-spacing-xl: 32px;
|
|
1632
|
+
--lux-theme-spacing-xxl: 48px;
|
|
1633
|
+
--lux-theme-spacing-xxxl: 64px;
|
|
1634
|
+
--lux-theme-font-size-xs: 0.75rem;
|
|
1635
|
+
--lux-theme-font-size-sm: 0.875rem;
|
|
1636
|
+
--lux-theme-font-size-md: 1rem;
|
|
1637
|
+
--lux-theme-font-size-lg: 1.125rem;
|
|
1638
|
+
--lux-theme-font-size-xl: 1.25rem;
|
|
1615
1639
|
--lux-theme-primary-color: #003366;
|
|
1616
1640
|
--lux-theme-accent-color: #003911;
|
|
1617
1641
|
--lux-theme-accent-secondary-color: #247929;
|
|
@@ -1692,6 +1716,11 @@
|
|
|
1692
1716
|
--lux-theme-app-gradient-reverse: none;
|
|
1693
1717
|
--lux-theme-app-border-color: var(--mat-sys-outline-variant);
|
|
1694
1718
|
--lux-theme-app-border-radius: 14px;
|
|
1719
|
+
--lux-theme-state-layer-color: #E3EBF5;
|
|
1720
|
+
--lux-theme-app-state-layer-color: #3a5f94;
|
|
1721
|
+
--lux-theme-hover-state-layer-opacity: 0.08;
|
|
1722
|
+
--lux-theme-focus-state-layer-opacity: 0.12;
|
|
1723
|
+
--lux-theme-pressed-state-layer-opacity: 0.16;
|
|
1695
1724
|
--lux-theme-form-border-width: 1px;
|
|
1696
1725
|
--lux-theme-form-min-height: 44px;
|
|
1697
1726
|
--lux-theme-form-dense-min-height: 34px;
|
|
@@ -1700,6 +1729,7 @@
|
|
|
1700
1729
|
--lux-theme-form-control-label-margin: 0 0 0.25rem 0;
|
|
1701
1730
|
--lux-theme-form-control-error-margin: 0.25rem 0 0 0;
|
|
1702
1731
|
--lux-theme-form-border-color: rgba(0, 0, 0, 0.42);
|
|
1732
|
+
--lux-theme-form-hover-border-color: var(--lux-theme-neutral-10);
|
|
1703
1733
|
--lux-theme-form-focus-border-color: var(--lux-theme-primary-20);
|
|
1704
1734
|
--lux-theme-form-focus-box-shadow: 0 0 0 2px var(--lux-theme-accent-secondary-color), 0 0 4px 2px var(--lux-theme-accent-secondary-color);
|
|
1705
1735
|
--lux-theme-form-error-border-color: var(--lux-theme-warn-50);
|
|
@@ -1709,7 +1739,7 @@
|
|
|
1709
1739
|
--lux-theme-form-error-msg-background: rgb(255, 228, 231);
|
|
1710
1740
|
--lux-theme-form-autofill-background-color: #e6e9ee;
|
|
1711
1741
|
--lux-theme-form-readonly-color: var(--lux-theme-primary-color);
|
|
1712
|
-
--lux-theme-form-readonly-bg-color: #
|
|
1742
|
+
--lux-theme-form-readonly-bg-color: #eff3f6;
|
|
1713
1743
|
--lux-theme-outline-dark: 4px solid var(--lux-theme-accent-secondary-color) !important;
|
|
1714
1744
|
--lux-theme-outline-bright: 4px solid #ffffff !important;
|
|
1715
1745
|
--lux-theme-outline-width: 4px;
|
|
@@ -1718,7 +1748,7 @@
|
|
|
1718
1748
|
--lux-theme-outline-color-dark: var(--lux-theme-accent-secondary-color);
|
|
1719
1749
|
--lux-theme-hover-color: var(--mat-option-hover-state-layer-color);
|
|
1720
1750
|
--lux-theme-on-hover-color: var(--mat-option-label-text-color);
|
|
1721
|
-
--lux-theme-hover-color-for-dark-background:
|
|
1751
|
+
--lux-theme-hover-color-for-dark-background: var(--lux-theme-primary-40);
|
|
1722
1752
|
--lux-theme-selected-border-color: var(--lux-theme-accent-secondary-color);
|
|
1723
1753
|
--lux-theme-selected-bg-color: #e3ebf5;
|
|
1724
1754
|
--lux-theme-on-selected-color: var(--lux-theme-dark-primary-text);
|
|
@@ -1771,6 +1801,13 @@
|
|
|
1771
1801
|
--lux-theme-button-text-primary-text-color: var(--lux-theme-primary-color);
|
|
1772
1802
|
--lux-theme-button-text-accent-text-color: var(--mat-sys-on-tertiary-container);
|
|
1773
1803
|
--lux-theme-button-text-warn-text-color: var(--mat-sys-error);
|
|
1804
|
+
--lux-theme-button-icon-default-text-color: var(--lux-theme-dark-primary-text);
|
|
1805
|
+
--lux-theme-button-icon-primary-text-color: var(--lux-theme-primary-color);
|
|
1806
|
+
--lux-theme-button-icon-accent-text-color: var(--mat-sys-on-tertiary-container);
|
|
1807
|
+
--lux-theme-button-icon-warn-text-color: var(--mat-sys-error);
|
|
1808
|
+
--lux-theme-button-icon-size: 18px;
|
|
1809
|
+
--lux-theme-button-icon-container-size: 45px;
|
|
1810
|
+
--lux-theme-button-icon-container-shape: 18px;
|
|
1774
1811
|
--lux-theme-button-flat-default-text-color: var(--lux-theme-dark-primary-text);
|
|
1775
1812
|
--lux-theme-button-flat-default-container-color: #ffffff;
|
|
1776
1813
|
--lux-theme-button-flat-primary-text-color: var(--mat-sys-on-primary);
|
|
@@ -1833,6 +1870,19 @@
|
|
|
1833
1870
|
--lux-theme-button-flat-text-tracking: normal;
|
|
1834
1871
|
--lux-theme-button-raised-text-tracking: normal;
|
|
1835
1872
|
--lux-theme-button-stroked-text-tracking: normal;
|
|
1873
|
+
--lux-theme-button-toggle-height: 2.25rem;
|
|
1874
|
+
--lux-theme-button-toggle-height-dense: 1.5rem;
|
|
1875
|
+
--lux-theme-button-toggle-shape: var(--lux-theme-app-border-radius);
|
|
1876
|
+
--lux-theme-button-toggle-text-color: var(--lux-theme-primary-color);
|
|
1877
|
+
--lux-theme-button-toggle-divider-color: var(--lux-theme-primary-color);
|
|
1878
|
+
--lux-theme-button-toggle-disabled-divider-color: var(--lux-theme-app-border-color);
|
|
1879
|
+
--lux-theme-button-toggle-selected-state-text-color: var(--lux-theme-primary-color);
|
|
1880
|
+
--lux-theme-button-toggle-selected-state-background-color: var(--mat-sys-surface-container-high);
|
|
1881
|
+
--lux-theme-button-toggle-hover-state-layer-opacity: 0.08;
|
|
1882
|
+
--lux-theme-button-toggle-disabled-selected-state-text-color: var(--lux-theme-dark-disabled-text);
|
|
1883
|
+
--lux-theme-button-toggle-disabled-selected-state-background-color: var(--lux-theme-app-border-color);
|
|
1884
|
+
--lux-theme-button-toggle-disabled-state-text-color: var(--lux-theme-dark-disabled-text);
|
|
1885
|
+
--lux-theme-button-toggle-disabled-state-background-color: transparent;
|
|
1836
1886
|
--lux-theme-card-title-line-height: 2rem;
|
|
1837
1887
|
--lux-theme-card-title-text-size: 1.5rem;
|
|
1838
1888
|
--lux-theme-card-title-text-weight: 500;
|
|
@@ -1845,15 +1895,15 @@
|
|
|
1845
1895
|
--lux-theme-card-padding: 20px;
|
|
1846
1896
|
--lux-theme-datepicker-icon-color: #003366;
|
|
1847
1897
|
--lux-theme-datepicker-panel-shape: var(--lux-theme-app-border-radius);
|
|
1848
|
-
--lux-theme-datepicker-panel-text-color:
|
|
1898
|
+
--lux-theme-datepicker-panel-text-color: var(--lux-theme-primary-20);
|
|
1849
1899
|
--lux-theme-datepicker-panel-font-size: 1.125rem;
|
|
1850
1900
|
--lux-theme-datepicker-panel-date-border-radius: 0;
|
|
1851
1901
|
--lux-theme-datepicker-panel-date-background-color: #e3ebf5;
|
|
1852
|
-
--lux-theme-datepicker-panel-date-selected-color: #
|
|
1853
|
-
--lux-theme-datepicker-panel-date-selected-background-color:
|
|
1854
|
-
--lux-theme-datepicker-panel-date-hover-background-color:
|
|
1855
|
-
--lux-theme-dialog-close-button-hover-color: var(--lux-theme-
|
|
1856
|
-
--lux-theme-dialog-close-button-hover-background-color:
|
|
1902
|
+
--lux-theme-datepicker-panel-date-selected-color: #ffffff;
|
|
1903
|
+
--lux-theme-datepicker-panel-date-selected-background-color: var(--lux-theme-primary-20);
|
|
1904
|
+
--lux-theme-datepicker-panel-date-hover-background-color: var(--lux-theme-panel-option-hover-state-layer-color);
|
|
1905
|
+
--lux-theme-dialog-close-button-hover-color: var(--lux-theme-on-hover-color);
|
|
1906
|
+
--lux-theme-dialog-close-button-hover-background-color: var(--lux-theme-on-hover-color);
|
|
1857
1907
|
--lux-theme-file-upload-padding: 24px 48px;
|
|
1858
1908
|
--lux-theme-file-upload-background-image: none;
|
|
1859
1909
|
--lux-theme-file-upload-item-container-border: none;
|
|
@@ -1893,10 +1943,16 @@
|
|
|
1893
1943
|
--lux-theme-link-plain-background-color: transparent;
|
|
1894
1944
|
--lux-theme-link-plain-hover-color: var(--lux-theme-accent-secondary-color);
|
|
1895
1945
|
--lux-theme-link-plain-hover-background-color: #e4f1e4;
|
|
1896
|
-
--lux-theme-lookup-invalid-option-text-color: var(--
|
|
1946
|
+
--lux-theme-lookup-invalid-option-text-color: var(--mat-sys-error);
|
|
1897
1947
|
--lux-theme-lookup-invalid-option-font-weight: 300;
|
|
1898
1948
|
--lux-theme-menu-item-font-color: var(--lux-theme-primary-color);
|
|
1899
1949
|
--lux-theme-menu-item-subtitle-font-color: var(--lux-theme-dark-secondary-text);
|
|
1950
|
+
--lux-theme-menu-item-subtitle-font-size: 0.875rem;
|
|
1951
|
+
--lux-theme-menu-panel-header-font-color: var(--lux-theme-dark-secondary-text);
|
|
1952
|
+
--lux-theme-menu-panel-header-font-weight: 600;
|
|
1953
|
+
--lux-theme-menu-panel-header-font-size: 1rem;
|
|
1954
|
+
--lux-theme-menu-item-icon-size: 20px;
|
|
1955
|
+
--lux-theme-menu-item-icon-size-large: 40px;
|
|
1900
1956
|
--lux-theme-menu-item-font-size: 1rem;
|
|
1901
1957
|
--lux-theme-menu-button-item-font-size: 0.875rem;
|
|
1902
1958
|
--lux-theme-menu-button-text-container-shape: 4px;
|
|
@@ -1923,7 +1979,7 @@
|
|
|
1923
1979
|
--lux-theme-messagebox-on-pink: var(--lux-theme-custom-on-pink);
|
|
1924
1980
|
--lux-theme-messagebox-lightblue: var(--lux-theme-custom-lightblue);
|
|
1925
1981
|
--lux-theme-messagebox-on-lightblue: var(--lux-theme-custom-on-lightblue);
|
|
1926
|
-
--lux-theme-popup-background-color: #
|
|
1982
|
+
--lux-theme-popup-background-color: #e3ebf5;
|
|
1927
1983
|
--lux-theme-popup-fade-in-duration: 125ms;
|
|
1928
1984
|
--lux-theme-popup-panel-padding: 16px;
|
|
1929
1985
|
--lux-theme-popup-title-font-size: 1rem;
|
|
@@ -1959,7 +2015,7 @@
|
|
|
1959
2015
|
--lux-theme-side-nav-button-color: var(--lux-theme-dark-primary-text);
|
|
1960
2016
|
--lux-theme-tabble-alternate-row-bg-color: #e3ebf5;
|
|
1961
2017
|
--lux-theme-tabs-text-font: var(--lux-theme-app-headline-font);
|
|
1962
|
-
--lux-theme-tabs-label-text-size:
|
|
2018
|
+
--lux-theme-tabs-label-text-size: 1rem;
|
|
1963
2019
|
--lux-theme-tabs-label-text-weight: 600;
|
|
1964
2020
|
--lux-theme-tabs-border-radius: var(--lux-theme-card-shape);
|
|
1965
2021
|
--lux-theme-textbox-default-color: #ffffff;
|
|
@@ -1982,11 +2038,14 @@
|
|
|
1982
2038
|
--lux-theme-textbox-yellow-on-color: var(--lux-theme-dark-primary-text);
|
|
1983
2039
|
--lux-theme-textbox-yellow-border-color: #f4cb25;
|
|
1984
2040
|
--lux-theme-textbox-yellow-icon-color: #f4cb25;
|
|
1985
|
-
--lux-theme-tile-font-hover-color: var(--
|
|
1986
|
-
--lux-theme-tile-icon-color:
|
|
1987
|
-
--lux-theme-tile-
|
|
1988
|
-
--lux-theme-tile-
|
|
2041
|
+
--lux-theme-tile-font-hover-color: var(--mat-sys-on-tertiary-container);
|
|
2042
|
+
--lux-theme-tile-icon-color: var(--mat-sys-tertiary);
|
|
2043
|
+
--lux-theme-tile-border-radius: var(--lux-theme-app-border-radius);
|
|
2044
|
+
--lux-theme-tile-borderradius: var(--lux-theme-tile-border-radius);
|
|
2045
|
+
--lux-theme-tile-bottom-line-color: var(--mat-sys-tertiary);
|
|
1989
2046
|
--lux-theme-tile-ac-icon-color: var(--lux-theme-primary-color);
|
|
2047
|
+
--lux-theme-tile-ac-hover-bg-color: var(--lux-theme-app-gradient-reverse);
|
|
2048
|
+
--lux-theme-tile-ac-hover-border-color: var(--lux-theme-form-hover-border-color);
|
|
1990
2049
|
--lux-theme-tour-hint-overlay-backdrop-color: rgba(0, 0, 0, 0.12);
|
|
1991
2050
|
--lux-theme-panel-option-min-height: 24px;
|
|
1992
2051
|
--lux-theme-panel-option-padding: 12px 0;
|
|
@@ -3254,6 +3313,48 @@ h6 {
|
|
|
3254
3313
|
margin-block-end: 0.8rem;
|
|
3255
3314
|
}
|
|
3256
3315
|
|
|
3316
|
+
.lux-h1,
|
|
3317
|
+
h1.lux-h1 {
|
|
3318
|
+
font-family: var(--lux-theme-app-headline-font);
|
|
3319
|
+
font-size: 2rem;
|
|
3320
|
+
font-weight: 500;
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3323
|
+
.lux-h2,
|
|
3324
|
+
h2.lux-h2 {
|
|
3325
|
+
font-family: var(--lux-theme-app-headline-font);
|
|
3326
|
+
font-size: 1.5rem;
|
|
3327
|
+
font-weight: 500;
|
|
3328
|
+
}
|
|
3329
|
+
|
|
3330
|
+
.lux-h3,
|
|
3331
|
+
h3.lux-h3 {
|
|
3332
|
+
font-family: var(--lux-theme-app-headline-font);
|
|
3333
|
+
font-size: 1.25rem;
|
|
3334
|
+
font-weight: 500;
|
|
3335
|
+
}
|
|
3336
|
+
|
|
3337
|
+
.lux-h4,
|
|
3338
|
+
h4.lux-h4 {
|
|
3339
|
+
font-family: var(--lux-theme-app-headline-font);
|
|
3340
|
+
font-size: 1rem;
|
|
3341
|
+
font-weight: 500;
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3344
|
+
.lux-h5,
|
|
3345
|
+
h5.lux-h5 {
|
|
3346
|
+
font-family: var(--lux-theme-app-headline-font);
|
|
3347
|
+
font-size: 0.875rem;
|
|
3348
|
+
font-weight: 700;
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3351
|
+
.lux-h6,
|
|
3352
|
+
h6.lux-h6 {
|
|
3353
|
+
font-family: var(--lux-theme-app-headline-font);
|
|
3354
|
+
font-size: 0.75rem;
|
|
3355
|
+
font-weight: 700;
|
|
3356
|
+
}
|
|
3357
|
+
|
|
3257
3358
|
a:not(.lux-link) {
|
|
3258
3359
|
background-color: var(--lux-theme-link-plain-background-color);
|
|
3259
3360
|
color: var(--lux-theme-link-plain-color);
|
|
@@ -36718,7 +36819,7 @@ lux-app-header-ac .lux-image:focus-visible {
|
|
|
36718
36819
|
lux-app-header-ac lux-button.lux-rounded:not(.lux-stroked):not([disabled]) .mat-primary {
|
|
36719
36820
|
--mat-fab-foreground-color: var(--mat-sys-primary);
|
|
36720
36821
|
--mat-fab-container-color: var(--mat-sys-on-primary);
|
|
36721
|
-
--mat-fab-hover-state-layer-opacity:
|
|
36822
|
+
--mat-fab-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
36722
36823
|
}
|
|
36723
36824
|
lux-app-header-ac lux-button button.lux-button.mat-mdc-fab.mat-primary:not(.lux-stroked):not([disabled]) {
|
|
36724
36825
|
min-width: 2.25rem;
|
|
@@ -37080,8 +37181,8 @@ lux-link.lux-raised {
|
|
|
37080
37181
|
--mat-button-protected-container-height: var(--lux-theme-button-raised-container-height);
|
|
37081
37182
|
--mat-button-protected-label-text-color: var(--lux-theme-button-raised-default-text-color);
|
|
37082
37183
|
--mat-button-protected-container-color: var(--lux-theme-button-raised-default-container-color);
|
|
37083
|
-
--mat-button-protected-focus-state-layer-opacity:
|
|
37084
|
-
--mat-button-protected-hover-state-layer-opacity:
|
|
37184
|
+
--mat-button-protected-focus-state-layer-opacity: var(--lux-theme-focus-state-layer-opacity);
|
|
37185
|
+
--mat-button-protected-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37085
37186
|
}
|
|
37086
37187
|
lux-button.lux-raised .mat-primary,
|
|
37087
37188
|
lux-link.lux-raised .mat-primary {
|
|
@@ -37131,29 +37232,29 @@ lux-link.lux-flat {
|
|
|
37131
37232
|
--mat-button-filled-container-height: var(--lux-theme-button-flat-container-height);
|
|
37132
37233
|
--mat-button-filled-label-text-color: var(--lux-theme-button-flat-default-text-color);
|
|
37133
37234
|
--mat-button-filled-container-color: var(--lux-theme-button-flat-default-container-color);
|
|
37134
|
-
--mat-button-filled-focus-state-layer-opacity:
|
|
37135
|
-
--mat-button-filled-hover-state-layer-opacity:
|
|
37235
|
+
--mat-button-filled-focus-state-layer-opacity: var(--lux-theme-focus-state-layer-opacity);
|
|
37236
|
+
--mat-button-filled-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37136
37237
|
}
|
|
37137
37238
|
lux-button.lux-flat .mat-primary,
|
|
37138
37239
|
lux-link.lux-flat .mat-primary {
|
|
37139
37240
|
--mat-button-filled-label-text-color: var(--lux-theme-button-flat-primary-text-color);
|
|
37140
37241
|
--mat-button-filled-container-color: var(--lux-theme-button-flat-primary-container-color);
|
|
37141
|
-
--mat-button-filled-focus-state-layer-opacity:
|
|
37142
|
-
--mat-button-filled-hover-state-layer-opacity:
|
|
37242
|
+
--mat-button-filled-focus-state-layer-opacity: var(--lux-theme-focus-state-layer-opacity);
|
|
37243
|
+
--mat-button-filled-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37143
37244
|
}
|
|
37144
37245
|
lux-button.lux-flat .mat-accent,
|
|
37145
37246
|
lux-link.lux-flat .mat-accent {
|
|
37146
37247
|
--mat-button-filled-label-text-color: var(--lux-theme-button-flat-accent-text-color);
|
|
37147
37248
|
--mat-button-filled-container-color: var(--lux-theme-button-flat-accent-container-color);
|
|
37148
|
-
--mat-button-filled-focus-state-layer-opacity:
|
|
37149
|
-
--mat-button-filled-hover-state-layer-opacity:
|
|
37249
|
+
--mat-button-filled-focus-state-layer-opacity: var(--lux-theme-focus-state-layer-opacity);
|
|
37250
|
+
--mat-button-filled-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37150
37251
|
}
|
|
37151
37252
|
lux-button.lux-flat .mat-warn,
|
|
37152
37253
|
lux-link.lux-flat .mat-warn {
|
|
37153
37254
|
--mat-button-filled-label-text-color: var(--lux-theme-button-flat-warn-text-color);
|
|
37154
37255
|
--mat-button-filled-container-color: var(--lux-theme-button-flat-warn-container-color);
|
|
37155
|
-
--mat-button-filled-focus-state-layer-opacity:
|
|
37156
|
-
--mat-button-filled-hover-state-layer-opacity:
|
|
37256
|
+
--mat-button-filled-focus-state-layer-opacity: var(--lux-theme-focus-state-layer-opacity);
|
|
37257
|
+
--mat-button-filled-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37157
37258
|
}
|
|
37158
37259
|
|
|
37159
37260
|
lux-button.lux-rounded:not(.lux-stroked),
|
|
@@ -37225,19 +37326,19 @@ lux-button.lux-rounded.lux-stroked .lux-stroked.mat-primary,
|
|
|
37225
37326
|
lux-link.lux-rounded.lux-stroked .lux-stroked.mat-primary {
|
|
37226
37327
|
--mat-fab-foreground-color: var(--lux-theme-button-rounded-stroked-primary-text-color);
|
|
37227
37328
|
--mat-fab-container-color: transparent;
|
|
37228
|
-
--mat-fab-hover-state-layer-opacity:
|
|
37329
|
+
--mat-fab-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37229
37330
|
}
|
|
37230
37331
|
lux-button.lux-rounded.lux-stroked .lux-stroked.mat-accent,
|
|
37231
37332
|
lux-link.lux-rounded.lux-stroked .lux-stroked.mat-accent {
|
|
37232
37333
|
--mat-fab-foreground-color: var(--lux-theme-button-rounded-stroked-accent-text-color);
|
|
37233
37334
|
--mat-fab-container-color: transparent;
|
|
37234
|
-
--mat-fab-hover-state-layer-opacity:
|
|
37335
|
+
--mat-fab-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37235
37336
|
}
|
|
37236
37337
|
lux-button.lux-rounded.lux-stroked .lux-stroked.mat-warn,
|
|
37237
37338
|
lux-link.lux-rounded.lux-stroked .lux-stroked.mat-warn {
|
|
37238
37339
|
--mat-fab-foreground-color: var(--lux-theme-button-rounded-stroked-warn-text-color);
|
|
37239
37340
|
--mat-fab-container-color: transparent;
|
|
37240
|
-
--mat-fab-hover-state-layer-opacity:
|
|
37341
|
+
--mat-fab-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37241
37342
|
}
|
|
37242
37343
|
lux-button.lux-rounded.lux-stroked .mat-mdc-fab-base,
|
|
37243
37344
|
lux-link.lux-rounded.lux-stroked .mat-mdc-fab-base {
|
|
@@ -37249,24 +37350,54 @@ lux-link.lux-rounded.lux-stroked .lux-icon {
|
|
|
37249
37350
|
width: var(--lux-theme-button-rounded-stroked-text-size);
|
|
37250
37351
|
height: var(--lux-theme-button-rounded-stroked-text-size);
|
|
37251
37352
|
}
|
|
37252
|
-
lux-button.lux-rounded.lux-stroked .lux-stroked
|
|
37253
|
-
lux-link.lux-rounded.lux-stroked .lux-stroked
|
|
37353
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked,
|
|
37354
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked {
|
|
37254
37355
|
border: 1px solid;
|
|
37356
|
+
}
|
|
37357
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked:disabled,
|
|
37358
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked:disabled {
|
|
37359
|
+
border-color: transparent;
|
|
37360
|
+
}
|
|
37361
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled),
|
|
37362
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled) {
|
|
37255
37363
|
border-color: var(--lux-theme-button-rounded-stroked-default-text-color);
|
|
37256
37364
|
}
|
|
37257
|
-
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37258
|
-
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37365
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-primary,
|
|
37366
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-primary {
|
|
37259
37367
|
border-color: var(--lux-theme-button-rounded-stroked-primary-text-color);
|
|
37260
37368
|
}
|
|
37261
|
-
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37262
|
-
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37369
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-accent,
|
|
37370
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-accent {
|
|
37263
37371
|
border-color: var(--lux-theme-button-rounded-stroked-accent-text-color);
|
|
37264
37372
|
}
|
|
37265
|
-
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37266
|
-
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37373
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-warn,
|
|
37374
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-warn {
|
|
37267
37375
|
border-color: var(--lux-theme-button-rounded-stroked-warn-text-color);
|
|
37268
37376
|
}
|
|
37269
37377
|
|
|
37378
|
+
lux-button.lux-icon-button {
|
|
37379
|
+
--mat-icon-button-container-shape: var(--lux-theme-button-icon-container-shape);
|
|
37380
|
+
--mat-icon-button-icon-color: var(--lux-theme-button-icon-default-text-color);
|
|
37381
|
+
--mat-icon-button-icon-size: var(--lux-theme-button-icon-size);
|
|
37382
|
+
--mat-icon-button-state-layer-size: var(--lux-theme-button-icon-container-size);
|
|
37383
|
+
--mat-icon-button-state-layer-color: var(--lux-theme-state-layer-color);
|
|
37384
|
+
--mat-icon-button-touch-target-size: var(--lux-theme-button-icon-container-size);
|
|
37385
|
+
}
|
|
37386
|
+
lux-button.lux-icon-button lux-icon,
|
|
37387
|
+
lux-button.lux-icon-button .lux-icon {
|
|
37388
|
+
width: var(--lux-theme-button-icon-size);
|
|
37389
|
+
height: var(--lux-theme-button-icon-size);
|
|
37390
|
+
}
|
|
37391
|
+
lux-button.lux-icon-button .mat-primary {
|
|
37392
|
+
--mat-icon-button-icon-color: var(--lux-theme-button-icon-primary-text-color);
|
|
37393
|
+
}
|
|
37394
|
+
lux-button.lux-icon-button .mat-accent {
|
|
37395
|
+
--mat-icon-button-icon-color: var(--lux-theme-button-icon-accent-text-color);
|
|
37396
|
+
}
|
|
37397
|
+
lux-button.lux-icon-button .mat-warn {
|
|
37398
|
+
--mat-icon-button-icon-color: var(--lux-theme-button-icon-warn-text-color);
|
|
37399
|
+
}
|
|
37400
|
+
|
|
37270
37401
|
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
37402
|
lux-link.lux-raised mat-progress-spinner,
|
|
37272
37403
|
lux-link.lux-flat mat-progress-spinner,
|
|
@@ -37307,10 +37438,10 @@ lux-button .mat-warn mat-progress-spinner,
|
|
|
37307
37438
|
lux-link .mat-warn mat-progress-spinner {
|
|
37308
37439
|
--mat-progress-spinner-active-indicator-color: var(--lux-theme-button-text-warn-text-color);
|
|
37309
37440
|
}
|
|
37310
|
-
lux-button .lux-button-spinner mat-progress-spinner,
|
|
37311
|
-
lux-link .lux-button-spinner mat-progress-spinner {
|
|
37312
|
-
width:
|
|
37313
|
-
height:
|
|
37441
|
+
lux-button .lux-button-spinner .lux-progress-small mat-progress-spinner,
|
|
37442
|
+
lux-link .lux-button-spinner .lux-progress-small mat-progress-spinner {
|
|
37443
|
+
width: 1.125rem !important;
|
|
37444
|
+
height: 1.125rem !important;
|
|
37314
37445
|
}
|
|
37315
37446
|
lux-button .lux-button-spinner .spinner-padding,
|
|
37316
37447
|
lux-link .lux-button-spinner .spinner-padding {
|
|
@@ -37400,6 +37531,49 @@ lux-link a:not([disabled]):focus-visible {
|
|
|
37400
37531
|
outline-offset: 1px;
|
|
37401
37532
|
}
|
|
37402
37533
|
|
|
37534
|
+
lux-button-toggle {
|
|
37535
|
+
--mat-button-toggle-shape: var(--lux-theme-button-toggle-shape);
|
|
37536
|
+
--mat-button-toggle-text-color: var(--lux-theme-button-toggle-text-color);
|
|
37537
|
+
--mat-button-toggle-selected-state-text-color: var(--lux-theme-button-toggle-selected-state-text-color);
|
|
37538
|
+
--mat-button-toggle-selected-state-background-color: var(--lux-theme-button-toggle-selected-state-background-color);
|
|
37539
|
+
--mat-button-toggle-hover-state-layer-opacity: var(--lux-theme-button-toggle-hover-state-layer-opacity);
|
|
37540
|
+
--mat-button-toggle-disabled-selected-state-text-color: var(--lux-theme-button-toggle-disabled-selected-state-text-color);
|
|
37541
|
+
--mat-button-toggle-disabled-selected-state-background-color: var(--lux-theme-button-toggle-disabled-selected-state-background-color);
|
|
37542
|
+
--mat-button-toggle-disabled-state-text-color: var(--lux-theme-button-toggle-disabled-state-text-color);
|
|
37543
|
+
--mat-button-toggle-disabled-state-background-color: var(--lux-theme-button-toggle-disabled-state-background-color);
|
|
37544
|
+
--mat-button-toggle-height: var(--lux-theme-button-toggle-height);
|
|
37545
|
+
--mat-button-toggle-divider-color: var(--lux-theme-button-toggle-divider-color);
|
|
37546
|
+
}
|
|
37547
|
+
lux-button-toggle mat-button-toggle-group[aria-disabled=true] {
|
|
37548
|
+
--mat-button-toggle-divider-color: var(--lux-theme-button-toggle-disabled-divider-color);
|
|
37549
|
+
}
|
|
37550
|
+
lux-button-toggle.lux-dense {
|
|
37551
|
+
--mat-button-toggle-height: var(--lux-theme-button-toggle-height-dense);
|
|
37552
|
+
}
|
|
37553
|
+
lux-button-toggle .lux-button-toggle-wrapper {
|
|
37554
|
+
display: flex;
|
|
37555
|
+
flex-direction: column;
|
|
37556
|
+
gap: 0.25rem;
|
|
37557
|
+
}
|
|
37558
|
+
lux-button-toggle .lux-button-toggle-misc {
|
|
37559
|
+
display: flex;
|
|
37560
|
+
margin-left: 12px;
|
|
37561
|
+
font-size: 0.75rem;
|
|
37562
|
+
line-height: 1.2rem;
|
|
37563
|
+
color: var(--lux-theme-dark-secondary-text);
|
|
37564
|
+
word-wrap: break-word;
|
|
37565
|
+
}
|
|
37566
|
+
lux-button-toggle .lux-button-toggle-error {
|
|
37567
|
+
display: flex;
|
|
37568
|
+
align-items: center;
|
|
37569
|
+
justify-content: center;
|
|
37570
|
+
text-align: center;
|
|
37571
|
+
background-color: var(--lux-theme-form-error-msg-background);
|
|
37572
|
+
border-radius: 4px;
|
|
37573
|
+
padding-right: 2px;
|
|
37574
|
+
color: var(--mat-sys-on-error-container);
|
|
37575
|
+
}
|
|
37576
|
+
|
|
37403
37577
|
lux-card {
|
|
37404
37578
|
--mat-card-outlined-container-color: var(--lux-theme-card-background-color);
|
|
37405
37579
|
--mat-card-outlined-container-shape: var(--lux-theme-card-shape);
|
|
@@ -37615,6 +37789,56 @@ lux-chips-ac mat-chip-row.cdk-focused:not(.cdk-mouse-focused):not(.cdk-program-f
|
|
|
37615
37789
|
border-radius: 4px;
|
|
37616
37790
|
}
|
|
37617
37791
|
|
|
37792
|
+
lux-consent-dialog lux-toggle-ac lux-form-control-wrapper .lux-form-control-wrapper .lux-form-control-misc-authentic {
|
|
37793
|
+
font-size: 0.875rem;
|
|
37794
|
+
}
|
|
37795
|
+
lux-consent-dialog .lux-consent-description {
|
|
37796
|
+
margin-top: 0;
|
|
37797
|
+
padding-top: 0;
|
|
37798
|
+
}
|
|
37799
|
+
lux-consent-dialog .lux-consent-card {
|
|
37800
|
+
padding: 4px;
|
|
37801
|
+
}
|
|
37802
|
+
lux-consent-dialog .essential-always-active {
|
|
37803
|
+
font-weight: 700;
|
|
37804
|
+
}
|
|
37805
|
+
lux-consent-dialog .essential-hint {
|
|
37806
|
+
display: flex;
|
|
37807
|
+
font-size: 0.875rem;
|
|
37808
|
+
line-height: 1em;
|
|
37809
|
+
font-weight: 400;
|
|
37810
|
+
color: rgba(0, 0, 0, 0.6);
|
|
37811
|
+
word-wrap: break-word;
|
|
37812
|
+
margin: 0.25em calc(0.5em + 1px) 0 calc(0.5em + 1px);
|
|
37813
|
+
}
|
|
37814
|
+
lux-consent-dialog .lux-consent-dialog-actions {
|
|
37815
|
+
display: flex;
|
|
37816
|
+
gap: 0.5rem;
|
|
37817
|
+
flex-direction: row;
|
|
37818
|
+
flex-wrap: wrap;
|
|
37819
|
+
}
|
|
37820
|
+
lux-consent-dialog .storage-type-title {
|
|
37821
|
+
padding-left: 26px;
|
|
37822
|
+
}
|
|
37823
|
+
lux-consent-dialog .storage-name {
|
|
37824
|
+
word-break: break-all;
|
|
37825
|
+
}
|
|
37826
|
+
|
|
37827
|
+
lux-consent-dialog.mobile-view .lux-consent-dialog-actions {
|
|
37828
|
+
display: flex;
|
|
37829
|
+
flex-direction: column;
|
|
37830
|
+
flex: 1 1 auto;
|
|
37831
|
+
justify-content: space-between;
|
|
37832
|
+
}
|
|
37833
|
+
lux-consent-dialog.mobile-view .lux-consent-dialog-actions lux-button {
|
|
37834
|
+
display: flex;
|
|
37835
|
+
flex: 1 1 auto;
|
|
37836
|
+
}
|
|
37837
|
+
lux-consent-dialog.mobile-view .lux-consent-dialog-actions lux-button button {
|
|
37838
|
+
display: flex;
|
|
37839
|
+
flex: 1 1 auto;
|
|
37840
|
+
}
|
|
37841
|
+
|
|
37618
37842
|
:root {
|
|
37619
37843
|
--mat-option-label-text-size: var(--lux-theme-panel-option-label-text-size);
|
|
37620
37844
|
--mat-option-label-text-color: var(--lux-theme-panel-option-label-text-color);
|
|
@@ -37684,6 +37908,12 @@ lux-datetimepicker-ac button:not(:disabled) .lux-datetimepicker-toggle-icon {
|
|
|
37684
37908
|
|
|
37685
37909
|
.cdk-overlay-pane.mat-mdc-dialog-panel .mat-mdc-dialog-container {
|
|
37686
37910
|
border-radius: var(--lux-theme-app-border-radius);
|
|
37911
|
+
width: unset;
|
|
37912
|
+
height: unset;
|
|
37913
|
+
min-width: 100%;
|
|
37914
|
+
max-width: 100%;
|
|
37915
|
+
min-height: 100%;
|
|
37916
|
+
max-height: 100%;
|
|
37687
37917
|
}
|
|
37688
37918
|
|
|
37689
37919
|
.cdk-overlay-pane.mat-mdc-dialog-panel.lux-dialog {
|
|
@@ -37692,10 +37922,6 @@ lux-datetimepicker-ac button:not(:disabled) .lux-datetimepicker-toggle-icon {
|
|
|
37692
37922
|
--mat-dialog-container-min-width: 0;
|
|
37693
37923
|
}
|
|
37694
37924
|
|
|
37695
|
-
lux-dialog-preset {
|
|
37696
|
-
height: 100%;
|
|
37697
|
-
}
|
|
37698
|
-
|
|
37699
37925
|
lux-dialog-action {
|
|
37700
37926
|
flex-flow: row wrap;
|
|
37701
37927
|
gap: 8px;
|
|
@@ -37707,7 +37933,6 @@ lux-dialog-structure {
|
|
|
37707
37933
|
--mat-dialog-supporting-text-size: 1rem;
|
|
37708
37934
|
display: flex;
|
|
37709
37935
|
flex: 1 1 auto;
|
|
37710
|
-
min-height: 100%;
|
|
37711
37936
|
}
|
|
37712
37937
|
lux-dialog-structure .lux-dialog {
|
|
37713
37938
|
outline-width: 0;
|
|
@@ -37727,7 +37952,6 @@ lux-dialog-structure .lux-dialog .mat-mdc-dialog-container {
|
|
|
37727
37952
|
lux-dialog-structure .lux-dialog .lux-dialog-content {
|
|
37728
37953
|
margin: 0;
|
|
37729
37954
|
padding: 0;
|
|
37730
|
-
max-height: 100%;
|
|
37731
37955
|
font-family: var(--lux-theme-app-font-family);
|
|
37732
37956
|
letter-spacing: normal;
|
|
37733
37957
|
color: var(--lux-theme-dark-primary-text);
|
|
@@ -38427,7 +38651,7 @@ lux-form-control-wrapper .lux-form-control-wrapper .lux-no-input-row {
|
|
|
38427
38651
|
padding: 0;
|
|
38428
38652
|
}
|
|
38429
38653
|
lux-form-control-wrapper .lux-form-control-wrapper:hover:not(.lux-form-control-disabled-authentic):not(.lux-focused-authentic):not(.lux-form-control-error-authentic) .lux-form-control-container-authentic:not(.lux-no-input-row) {
|
|
38430
|
-
border-color: var(--lux-theme-
|
|
38654
|
+
border-color: var(--lux-theme-form-hover-border-color);
|
|
38431
38655
|
}
|
|
38432
38656
|
lux-form-control-wrapper .lux-form-control-wrapper.lux-focused-authentic .lux-form-control-label-authentic > * {
|
|
38433
38657
|
color: var(--lux-theme-primary-30);
|
|
@@ -38587,14 +38811,10 @@ lux-form-control-wrapper input {
|
|
|
38587
38811
|
font-size: var(--lux-theme-form-control-font-size);
|
|
38588
38812
|
}
|
|
38589
38813
|
|
|
38590
|
-
lux-input-ac
|
|
38591
|
-
lux-input-ac
|
|
38592
|
-
|
|
38814
|
+
lux-input-ac lux-input-ac-prefix,
|
|
38815
|
+
lux-input-ac lux-input-ac-suffix {
|
|
38816
|
+
display: flex;
|
|
38593
38817
|
white-space: nowrap;
|
|
38594
|
-
display: inline-block;
|
|
38595
|
-
flex: 1 1 auto;
|
|
38596
|
-
max-height: 1.5em;
|
|
38597
|
-
align-items: center;
|
|
38598
38818
|
}
|
|
38599
38819
|
|
|
38600
38820
|
lux-link-plain {
|
|
@@ -39076,6 +39296,14 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39076
39296
|
.lux-menu-panel .lux-menu-item-icon {
|
|
39077
39297
|
align-self: center;
|
|
39078
39298
|
vertical-align: middle;
|
|
39299
|
+
width: var(--lux-theme-menu-item-icon-size);
|
|
39300
|
+
height: var(--lux-theme-menu-item-icon-size);
|
|
39301
|
+
}
|
|
39302
|
+
.lux-menu-panel .lux-menu-item-icon .lux-icon,
|
|
39303
|
+
.lux-menu-panel .lux-menu-item-icon mat-icon {
|
|
39304
|
+
width: 100%;
|
|
39305
|
+
height: 100%;
|
|
39306
|
+
font-size: var(--lux-theme-menu-item-icon-size);
|
|
39079
39307
|
}
|
|
39080
39308
|
.lux-menu-panel .lux-menu-item-icon mat-icon {
|
|
39081
39309
|
margin: 0;
|
|
@@ -39116,7 +39344,7 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39116
39344
|
}
|
|
39117
39345
|
.lux-menu-section-panel .lux-button-label-subtitle {
|
|
39118
39346
|
color: var(--lux-theme-menu-item-subtitle-font-color);
|
|
39119
|
-
font-size:
|
|
39347
|
+
font-size: var(--lux-theme-menu-item-subtitle-font-size);
|
|
39120
39348
|
font-style: normal;
|
|
39121
39349
|
font-weight: 400;
|
|
39122
39350
|
letter-spacing: 0.07px;
|
|
@@ -39128,8 +39356,9 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39128
39356
|
align-items: flex-start;
|
|
39129
39357
|
gap: 4px;
|
|
39130
39358
|
align-self: stretch;
|
|
39131
|
-
font-
|
|
39132
|
-
font-
|
|
39359
|
+
color: var(--lux-theme-menu-panel-header-font-color);
|
|
39360
|
+
font-weight: var(--lux-theme-menu-panel-header-font-weight);
|
|
39361
|
+
font-size: var(--lux-theme-menu-panel-header-font-size);
|
|
39133
39362
|
font-style: normal;
|
|
39134
39363
|
line-height: 120%;
|
|
39135
39364
|
}
|
|
@@ -39189,6 +39418,14 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39189
39418
|
.lux-menu-section-panel .lux-menu-item-badge-right {
|
|
39190
39419
|
text-align: end;
|
|
39191
39420
|
}
|
|
39421
|
+
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon {
|
|
39422
|
+
width: var(--lux-theme-menu-item-icon-size-large);
|
|
39423
|
+
height: var(--lux-theme-menu-item-icon-size-large);
|
|
39424
|
+
}
|
|
39425
|
+
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon .lux-icon,
|
|
39426
|
+
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon mat-icon {
|
|
39427
|
+
font-size: var(--lux-theme-menu-item-icon-size-large);
|
|
39428
|
+
}
|
|
39192
39429
|
|
|
39193
39430
|
lux-message-box {
|
|
39194
39431
|
display: block;
|
|
@@ -39440,6 +39677,46 @@ lux-radio-ac.lux-form-control-readonly {
|
|
|
39440
39677
|
--mat-select-panel-background-color: var(--lux-theme-panel-bg-color);
|
|
39441
39678
|
--mat-select-container-elevation-shadow: 0 0 0 1px var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant));
|
|
39442
39679
|
}
|
|
39680
|
+
.lux-select-panel-ac lux-select-panel-filter,
|
|
39681
|
+
.lux-select-panel-ac-multiple lux-select-panel-filter {
|
|
39682
|
+
position: sticky;
|
|
39683
|
+
top: 0;
|
|
39684
|
+
z-index: 2;
|
|
39685
|
+
display: block;
|
|
39686
|
+
box-sizing: border-box;
|
|
39687
|
+
background-color: var(--lux-theme-panel-bg-color);
|
|
39688
|
+
border-bottom: 1px solid var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant));
|
|
39689
|
+
}
|
|
39690
|
+
.lux-select-panel-ac .lux-select-panel-filter,
|
|
39691
|
+
.lux-select-panel-ac-multiple .lux-select-panel-filter {
|
|
39692
|
+
display: block;
|
|
39693
|
+
box-sizing: border-box;
|
|
39694
|
+
padding: 8px 8px 4px;
|
|
39695
|
+
background-color: var(--lux-theme-panel-bg-color);
|
|
39696
|
+
}
|
|
39697
|
+
.lux-select-panel-ac .lux-select-panel-filter-option,
|
|
39698
|
+
.lux-select-panel-ac-multiple .lux-select-panel-filter-option {
|
|
39699
|
+
position: sticky;
|
|
39700
|
+
top: 0;
|
|
39701
|
+
z-index: 3;
|
|
39702
|
+
min-height: auto !important;
|
|
39703
|
+
padding: 0 !important;
|
|
39704
|
+
pointer-events: auto;
|
|
39705
|
+
cursor: default;
|
|
39706
|
+
}
|
|
39707
|
+
.lux-select-panel-ac .lux-select-panel-filter-option .mdc-list-item__primary-text,
|
|
39708
|
+
.lux-select-panel-ac-multiple .lux-select-panel-filter-option .mdc-list-item__primary-text {
|
|
39709
|
+
width: 100%;
|
|
39710
|
+
}
|
|
39711
|
+
.lux-select-panel-ac.lux-select-panel-ac-filter,
|
|
39712
|
+
.lux-select-panel-ac-multiple.lux-select-panel-ac-filter {
|
|
39713
|
+
padding-top: 0;
|
|
39714
|
+
scroll-padding-top: var(--lux-select-filter-offset, 0px);
|
|
39715
|
+
}
|
|
39716
|
+
.lux-select-panel-ac.lux-select-panel-ac-filter .mat-mdc-option,
|
|
39717
|
+
.lux-select-panel-ac-multiple.lux-select-panel-ac-filter .mat-mdc-option {
|
|
39718
|
+
scroll-margin-top: var(--lux-select-filter-offset, 0px);
|
|
39719
|
+
}
|
|
39443
39720
|
|
|
39444
39721
|
lux-select-ac {
|
|
39445
39722
|
--mat-select-enabled-arrow-color: var(--lux-theme-primary-color);
|
|
@@ -40609,7 +40886,7 @@ lux-tile .lux-notification-new {
|
|
|
40609
40886
|
background-color: var(--lux-theme-accent-70);
|
|
40610
40887
|
}
|
|
40611
40888
|
lux-tile mat-card[class~=lux-cursor].mat-mdc-card {
|
|
40612
|
-
border-radius: var(--lux-theme-tile-
|
|
40889
|
+
border-radius: var(--lux-theme-tile-border-radius);
|
|
40613
40890
|
overflow: hidden !important;
|
|
40614
40891
|
padding: 24px;
|
|
40615
40892
|
}
|
|
@@ -40789,7 +41066,10 @@ lux-tile-ac .lux-tile-ac:focus-visible {
|
|
|
40789
41066
|
--mat-card-elevated-container-elevation: 0 0 0 var(--lux-theme-outline-width) var(--lux-theme-outline-color-dark), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
40790
41067
|
}
|
|
40791
41068
|
lux-tile-ac:hover {
|
|
40792
|
-
--mat-card-elevated-container-elevation: 0 0 0 1px
|
|
41069
|
+
--mat-card-elevated-container-elevation: 0 0 0 1px var(--lux-theme-tile-ac-hover-border-color), 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
41070
|
+
}
|
|
41071
|
+
lux-tile-ac:hover .lux-tile-ac {
|
|
41072
|
+
background-image: var(--lux-theme-tile-ac-hover-bg-color);
|
|
40793
41073
|
}
|
|
40794
41074
|
|
|
40795
41075
|
lux-toggle-ac {
|