@ihk-gfi/lux-components-theme 21.2.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 +147 -55
- 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 +147 -55
- 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/_luxButtonFlat.scss +8 -8
- package/src/base-templates/components/_luxButtonIcon.scss +1 -1
- package/src/base-templates/components/_luxButtonRaised.scss +2 -2
- package/src/base-templates/components/_luxButtonRoundedStroked.scss +4 -4
- package/src/base-templates/components/_luxDialog.scss +6 -15
- package/src/base-templates/components/_luxFormControlWrapper.scss +1 -1
- package/src/base-templates/components/_luxMenu.scss +26 -3
- package/src/base-templates/components/_luxTile.scss +1 -1
- package/src/base-templates/components/_luxTileAc.scss +5 -1
- package/src/theme-authentic/_variables.scss +57 -14
- package/src/theme-green/_variables.scss +57 -14
|
@@ -1605,13 +1605,37 @@
|
|
|
1605
1605
|
--lux-theme-dark-primary-text: var(--mat-sys-on-surface);
|
|
1606
1606
|
--lux-theme-dark-secondary-text: var(--mat-sys-on-surface-variant);
|
|
1607
1607
|
--lux-theme-dark-disabled-text: var(--mat-sys-outline);
|
|
1608
|
-
--lux-theme-dark-dividers:
|
|
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.74);
|
|
1612
1612
|
--lux-theme-light-disabled-text: rgba(255, 255, 255, 0.38);
|
|
1613
1613
|
--lux-theme-light-dividers: rgba(255, 255, 255, 0.2);
|
|
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: 16px;
|
|
1624
|
+
--lux-theme-radius-xl: 24px;
|
|
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: ;
|
|
1617
1641
|
--lux-theme-warn-color: #ba1a1a;
|
|
@@ -1691,7 +1715,11 @@
|
|
|
1691
1715
|
--lux-theme-app-gradient-reverse: linear-gradient(270deg, #ffffff 0%, var(--mat-sys-surface-container) 100%);
|
|
1692
1716
|
--lux-theme-app-border-color: var(--mat-sys-outline-variant);
|
|
1693
1717
|
--lux-theme-app-border-radius: 4px;
|
|
1718
|
+
--lux-theme-state-layer-color: var(--lux-theme-primary-40);
|
|
1694
1719
|
--lux-theme-app-state-layer-color: #3a5f94;
|
|
1720
|
+
--lux-theme-hover-state-layer-opacity: 0.08;
|
|
1721
|
+
--lux-theme-focus-state-layer-opacity: 0.12;
|
|
1722
|
+
--lux-theme-pressed-state-layer-opacity: 0.16;
|
|
1695
1723
|
--lux-theme-form-border-width: 1px;
|
|
1696
1724
|
--lux-theme-form-min-height: 50px;
|
|
1697
1725
|
--lux-theme-form-dense-min-height: 38px;
|
|
@@ -1700,6 +1728,7 @@
|
|
|
1700
1728
|
--lux-theme-form-control-label-margin: 0 0.5rem 0.25rem 0.5rem;
|
|
1701
1729
|
--lux-theme-form-control-error-margin: 0.25rem calc(0.5rem + 1px) 0 calc(0.5rem + 3px);
|
|
1702
1730
|
--lux-theme-form-border-color: var(--mat-sys-outline);
|
|
1731
|
+
--lux-theme-form-hover-border-color: var(--lux-theme-neutral-10);
|
|
1703
1732
|
--lux-theme-form-focus-border-color: var(--lux-theme-primary-20);
|
|
1704
1733
|
--lux-theme-form-focus-box-shadow: 0 0 0 1px var(--lux-theme-primary-20) inset;
|
|
1705
1734
|
--lux-theme-form-error-border-color: var(--mat-sys-error);
|
|
@@ -1718,7 +1747,7 @@
|
|
|
1718
1747
|
--lux-theme-outline-color-dark: var(--lux-theme-custom-lightblue);
|
|
1719
1748
|
--lux-theme-hover-color: var(--mat-option-hover-state-layer-color);
|
|
1720
1749
|
--lux-theme-on-hover-color: var(--mat-option-label-text-color);
|
|
1721
|
-
--lux-theme-hover-color-for-dark-background:
|
|
1750
|
+
--lux-theme-hover-color-for-dark-background: var(--lux-theme-primary-40);
|
|
1722
1751
|
--lux-theme-selected-border-color: #003366;
|
|
1723
1752
|
--lux-theme-selected-bg-color: var(--mat-option-selected-state-layer-color);
|
|
1724
1753
|
--lux-theme-on-selected-color: var(--mat-option-selected-state-label-text-color);
|
|
@@ -1865,15 +1894,15 @@
|
|
|
1865
1894
|
--lux-theme-card-padding: 20px;
|
|
1866
1895
|
--lux-theme-datepicker-icon-color: #003366;
|
|
1867
1896
|
--lux-theme-datepicker-panel-shape: var(--lux-theme-app-border-radius);
|
|
1868
|
-
--lux-theme-datepicker-panel-text-color:
|
|
1897
|
+
--lux-theme-datepicker-panel-text-color: var(--lux-theme-primary-20);
|
|
1869
1898
|
--lux-theme-datepicker-panel-font-size: 1rem;
|
|
1870
1899
|
--lux-theme-datepicker-panel-date-border-radius: 999px;
|
|
1871
1900
|
--lux-theme-datepicker-panel-date-background-color: var(--lux-theme-panel-bg-color);
|
|
1872
|
-
--lux-theme-datepicker-panel-date-selected-color: #
|
|
1873
|
-
--lux-theme-datepicker-panel-date-selected-background-color:
|
|
1874
|
-
--lux-theme-datepicker-panel-date-hover-background-color:
|
|
1875
|
-
--lux-theme-dialog-close-button-hover-color: var(--lux-theme-
|
|
1876
|
-
--lux-theme-dialog-close-button-hover-background-color:
|
|
1901
|
+
--lux-theme-datepicker-panel-date-selected-color: #ffffff;
|
|
1902
|
+
--lux-theme-datepicker-panel-date-selected-background-color: var(--lux-theme-primary-20);
|
|
1903
|
+
--lux-theme-datepicker-panel-date-hover-background-color: var(--lux-theme-panel-option-hover-state-layer-color);
|
|
1904
|
+
--lux-theme-dialog-close-button-hover-color: var(--lux-theme-on-hover-color);
|
|
1905
|
+
--lux-theme-dialog-close-button-hover-background-color: var(--lux-theme-hover-color);
|
|
1877
1906
|
--lux-theme-file-upload-padding: 16px 48px 12px 48px;
|
|
1878
1907
|
--lux-theme-file-upload-background-image: var(--lux-theme-app-gradient);
|
|
1879
1908
|
--lux-theme-file-upload-item-container-border: 1px solid var(--lux-theme-app-border-color);
|
|
@@ -1913,10 +1942,16 @@
|
|
|
1913
1942
|
--lux-theme-link-plain-background-color: transparent;
|
|
1914
1943
|
--lux-theme-link-plain-hover-color: var(--mat-sys-on-primary-container);
|
|
1915
1944
|
--lux-theme-link-plain-hover-background-color: var(--mat-sys-primary-container);
|
|
1916
|
-
--lux-theme-lookup-invalid-option-text-color: var(--
|
|
1945
|
+
--lux-theme-lookup-invalid-option-text-color: var(--mat-sys-on-error-container);
|
|
1917
1946
|
--lux-theme-lookup-invalid-option-font-weight: 300;
|
|
1918
1947
|
--lux-theme-menu-item-font-color: var(--lux-theme-primary-color);
|
|
1919
1948
|
--lux-theme-menu-item-subtitle-font-color: var(--mat-sys-secondary-container);
|
|
1949
|
+
--lux-theme-menu-item-subtitle-font-size: 0.875rem;
|
|
1950
|
+
--lux-theme-menu-panel-header-font-color: var(--lux-theme-dark-secondary-text);
|
|
1951
|
+
--lux-theme-menu-panel-header-font-weight: 600;
|
|
1952
|
+
--lux-theme-menu-panel-header-font-size: 1rem;
|
|
1953
|
+
--lux-theme-menu-item-icon-size: 20px;
|
|
1954
|
+
--lux-theme-menu-item-icon-size-large: 40px;
|
|
1920
1955
|
--lux-theme-menu-item-font-size: 1rem;
|
|
1921
1956
|
--lux-theme-menu-button-item-font-size: 0.875rem;
|
|
1922
1957
|
--lux-theme-menu-button-text-container-shape: 4px;
|
|
@@ -1979,7 +2014,7 @@
|
|
|
1979
2014
|
--lux-theme-side-nav-button-color: var(--lux-theme-dark-primary-text);
|
|
1980
2015
|
--lux-theme-tabble-alternate-row-bg-color: var(--mat-sys-surface-container-high);
|
|
1981
2016
|
--lux-theme-tabs-text-font: var(--lux-theme-app-font-family);
|
|
1982
|
-
--lux-theme-tabs-label-text-size:
|
|
2017
|
+
--lux-theme-tabs-label-text-size: 1rem;
|
|
1983
2018
|
--lux-theme-tabs-label-text-weight: 600;
|
|
1984
2019
|
--lux-theme-tabs-border-radius: var(--lux-theme-card-shape);
|
|
1985
2020
|
--lux-theme-textbox-default-color: #ffffff;
|
|
@@ -2002,11 +2037,14 @@
|
|
|
2002
2037
|
--lux-theme-textbox-yellow-on-color: var(--lux-theme-custom-on-yellow);
|
|
2003
2038
|
--lux-theme-textbox-yellow-border-color: var(--lux-theme-custom-yellow);
|
|
2004
2039
|
--lux-theme-textbox-yellow-icon-color: var(--lux-theme-custom-yellow);
|
|
2005
|
-
--lux-theme-tile-font-hover-color:
|
|
2006
|
-
--lux-theme-tile-icon-color:
|
|
2007
|
-
--lux-theme-tile-
|
|
2008
|
-
--lux-theme-tile-
|
|
2040
|
+
--lux-theme-tile-font-hover-color: var(--mat-sys-on-tertiary-container);
|
|
2041
|
+
--lux-theme-tile-icon-color: var(--mat-sys-tertiary);
|
|
2042
|
+
--lux-theme-tile-border-radius: var(--lux-theme-app-border-radius);
|
|
2043
|
+
--lux-theme-tile-borderradius: var(--lux-theme-tile-border-radius);
|
|
2044
|
+
--lux-theme-tile-bottom-line-color: var(--mat-sys-tertiary);
|
|
2009
2045
|
--lux-theme-tile-ac-icon-color: var(--lux-theme-primary-color);
|
|
2046
|
+
--lux-theme-tile-ac-hover-bg-color: var(--lux-theme-app-gradient-reverse);
|
|
2047
|
+
--lux-theme-tile-ac-hover-border-color: var(--lux-theme-form-hover-border-color);
|
|
2010
2048
|
--lux-theme-tour-hint-overlay-backdrop-color: rgba(0, 0, 0, 0.12);
|
|
2011
2049
|
--lux-theme-panel-option-min-height: 24px;
|
|
2012
2050
|
--lux-theme-panel-option-padding: 12px 0;
|
|
@@ -3275,6 +3313,48 @@ h6 {
|
|
|
3275
3313
|
margin-block-end: 0.8rem;
|
|
3276
3314
|
}
|
|
3277
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
|
+
|
|
3278
3358
|
a:not(.lux-link) {
|
|
3279
3359
|
background-color: var(--lux-theme-link-plain-background-color);
|
|
3280
3360
|
color: var(--lux-theme-link-plain-color);
|
|
@@ -36739,7 +36819,7 @@ lux-app-header-ac .lux-image:focus-visible {
|
|
|
36739
36819
|
lux-app-header-ac lux-button.lux-rounded:not(.lux-stroked):not([disabled]) .mat-primary {
|
|
36740
36820
|
--mat-fab-foreground-color: var(--mat-sys-primary);
|
|
36741
36821
|
--mat-fab-container-color: var(--mat-sys-on-primary);
|
|
36742
|
-
--mat-fab-hover-state-layer-opacity:
|
|
36822
|
+
--mat-fab-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
36743
36823
|
}
|
|
36744
36824
|
lux-app-header-ac lux-button button.lux-button.mat-mdc-fab.mat-primary:not(.lux-stroked):not([disabled]) {
|
|
36745
36825
|
min-width: 2.25rem;
|
|
@@ -37176,8 +37256,8 @@ lux-link.lux-raised {
|
|
|
37176
37256
|
--mat-button-protected-container-height: var(--lux-theme-button-raised-container-height);
|
|
37177
37257
|
--mat-button-protected-label-text-color: var(--lux-theme-button-raised-default-text-color);
|
|
37178
37258
|
--mat-button-protected-container-color: var(--lux-theme-button-raised-default-container-color);
|
|
37179
|
-
--mat-button-protected-focus-state-layer-opacity:
|
|
37180
|
-
--mat-button-protected-hover-state-layer-opacity:
|
|
37259
|
+
--mat-button-protected-focus-state-layer-opacity: var(--lux-theme-focus-state-layer-opacity);
|
|
37260
|
+
--mat-button-protected-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37181
37261
|
}
|
|
37182
37262
|
lux-button.lux-raised .mat-primary,
|
|
37183
37263
|
lux-link.lux-raised .mat-primary {
|
|
@@ -37227,29 +37307,29 @@ lux-link.lux-flat {
|
|
|
37227
37307
|
--mat-button-filled-container-height: var(--lux-theme-button-flat-container-height);
|
|
37228
37308
|
--mat-button-filled-label-text-color: var(--lux-theme-button-flat-default-text-color);
|
|
37229
37309
|
--mat-button-filled-container-color: var(--lux-theme-button-flat-default-container-color);
|
|
37230
|
-
--mat-button-filled-focus-state-layer-opacity:
|
|
37231
|
-
--mat-button-filled-hover-state-layer-opacity:
|
|
37310
|
+
--mat-button-filled-focus-state-layer-opacity: var(--lux-theme-focus-state-layer-opacity);
|
|
37311
|
+
--mat-button-filled-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37232
37312
|
}
|
|
37233
37313
|
lux-button.lux-flat .mat-primary,
|
|
37234
37314
|
lux-link.lux-flat .mat-primary {
|
|
37235
37315
|
--mat-button-filled-label-text-color: var(--lux-theme-button-flat-primary-text-color);
|
|
37236
37316
|
--mat-button-filled-container-color: var(--lux-theme-button-flat-primary-container-color);
|
|
37237
|
-
--mat-button-filled-focus-state-layer-opacity:
|
|
37238
|
-
--mat-button-filled-hover-state-layer-opacity:
|
|
37317
|
+
--mat-button-filled-focus-state-layer-opacity: var(--lux-theme-focus-state-layer-opacity);
|
|
37318
|
+
--mat-button-filled-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37239
37319
|
}
|
|
37240
37320
|
lux-button.lux-flat .mat-accent,
|
|
37241
37321
|
lux-link.lux-flat .mat-accent {
|
|
37242
37322
|
--mat-button-filled-label-text-color: var(--lux-theme-button-flat-accent-text-color);
|
|
37243
37323
|
--mat-button-filled-container-color: var(--lux-theme-button-flat-accent-container-color);
|
|
37244
|
-
--mat-button-filled-focus-state-layer-opacity:
|
|
37245
|
-
--mat-button-filled-hover-state-layer-opacity:
|
|
37324
|
+
--mat-button-filled-focus-state-layer-opacity: var(--lux-theme-focus-state-layer-opacity);
|
|
37325
|
+
--mat-button-filled-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37246
37326
|
}
|
|
37247
37327
|
lux-button.lux-flat .mat-warn,
|
|
37248
37328
|
lux-link.lux-flat .mat-warn {
|
|
37249
37329
|
--mat-button-filled-label-text-color: var(--lux-theme-button-flat-warn-text-color);
|
|
37250
37330
|
--mat-button-filled-container-color: var(--lux-theme-button-flat-warn-container-color);
|
|
37251
|
-
--mat-button-filled-focus-state-layer-opacity:
|
|
37252
|
-
--mat-button-filled-hover-state-layer-opacity:
|
|
37331
|
+
--mat-button-filled-focus-state-layer-opacity: var(--lux-theme-focus-state-layer-opacity);
|
|
37332
|
+
--mat-button-filled-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37253
37333
|
}
|
|
37254
37334
|
|
|
37255
37335
|
lux-button.lux-rounded:not(.lux-stroked),
|
|
@@ -37321,19 +37401,19 @@ lux-button.lux-rounded.lux-stroked .lux-stroked.mat-primary,
|
|
|
37321
37401
|
lux-link.lux-rounded.lux-stroked .lux-stroked.mat-primary {
|
|
37322
37402
|
--mat-fab-foreground-color: var(--lux-theme-button-rounded-stroked-primary-text-color);
|
|
37323
37403
|
--mat-fab-container-color: transparent;
|
|
37324
|
-
--mat-fab-hover-state-layer-opacity:
|
|
37404
|
+
--mat-fab-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37325
37405
|
}
|
|
37326
37406
|
lux-button.lux-rounded.lux-stroked .lux-stroked.mat-accent,
|
|
37327
37407
|
lux-link.lux-rounded.lux-stroked .lux-stroked.mat-accent {
|
|
37328
37408
|
--mat-fab-foreground-color: var(--lux-theme-button-rounded-stroked-accent-text-color);
|
|
37329
37409
|
--mat-fab-container-color: transparent;
|
|
37330
|
-
--mat-fab-hover-state-layer-opacity:
|
|
37410
|
+
--mat-fab-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37331
37411
|
}
|
|
37332
37412
|
lux-button.lux-rounded.lux-stroked .lux-stroked.mat-warn,
|
|
37333
37413
|
lux-link.lux-rounded.lux-stroked .lux-stroked.mat-warn {
|
|
37334
37414
|
--mat-fab-foreground-color: var(--lux-theme-button-rounded-stroked-warn-text-color);
|
|
37335
37415
|
--mat-fab-container-color: transparent;
|
|
37336
|
-
--mat-fab-hover-state-layer-opacity:
|
|
37416
|
+
--mat-fab-hover-state-layer-opacity: var(--lux-theme-hover-state-layer-opacity);
|
|
37337
37417
|
}
|
|
37338
37418
|
lux-button.lux-rounded.lux-stroked .mat-mdc-fab-base,
|
|
37339
37419
|
lux-link.lux-rounded.lux-stroked .mat-mdc-fab-base {
|
|
@@ -37353,20 +37433,20 @@ lux-button.lux-rounded.lux-stroked .lux-stroked:disabled,
|
|
|
37353
37433
|
lux-link.lux-rounded.lux-stroked .lux-stroked:disabled {
|
|
37354
37434
|
border-color: transparent;
|
|
37355
37435
|
}
|
|
37356
|
-
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37357
|
-
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37436
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled),
|
|
37437
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled) {
|
|
37358
37438
|
border-color: var(--lux-theme-button-rounded-stroked-default-text-color);
|
|
37359
37439
|
}
|
|
37360
|
-
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37361
|
-
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37440
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-primary,
|
|
37441
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-primary {
|
|
37362
37442
|
border-color: var(--lux-theme-button-rounded-stroked-primary-text-color);
|
|
37363
37443
|
}
|
|
37364
|
-
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37365
|
-
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37444
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-accent,
|
|
37445
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-accent {
|
|
37366
37446
|
border-color: var(--lux-theme-button-rounded-stroked-accent-text-color);
|
|
37367
37447
|
}
|
|
37368
|
-
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37369
|
-
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled)
|
|
37448
|
+
lux-button.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-warn,
|
|
37449
|
+
lux-link.lux-rounded.lux-stroked .lux-stroked:not(:disabled).mat-warn {
|
|
37370
37450
|
border-color: var(--lux-theme-button-rounded-stroked-warn-text-color);
|
|
37371
37451
|
}
|
|
37372
37452
|
|
|
@@ -37375,7 +37455,7 @@ lux-button.lux-icon-button {
|
|
|
37375
37455
|
--mat-icon-button-icon-color: var(--lux-theme-button-icon-default-text-color);
|
|
37376
37456
|
--mat-icon-button-icon-size: var(--lux-theme-button-icon-size);
|
|
37377
37457
|
--mat-icon-button-state-layer-size: var(--lux-theme-button-icon-container-size);
|
|
37378
|
-
--mat-icon-button-state-layer-color: var(--lux-theme-
|
|
37458
|
+
--mat-icon-button-state-layer-color: var(--lux-theme-state-layer-color);
|
|
37379
37459
|
--mat-icon-button-touch-target-size: var(--lux-theme-button-icon-container-size);
|
|
37380
37460
|
}
|
|
37381
37461
|
lux-button.lux-icon-button lux-icon,
|
|
@@ -37903,14 +37983,12 @@ lux-datetimepicker-ac button:not(:disabled) .lux-datetimepicker-toggle-icon {
|
|
|
37903
37983
|
|
|
37904
37984
|
.cdk-overlay-pane.mat-mdc-dialog-panel .mat-mdc-dialog-container {
|
|
37905
37985
|
border-radius: var(--lux-theme-app-border-radius);
|
|
37906
|
-
|
|
37907
|
-
|
|
37908
|
-
max-height: inherit;
|
|
37909
|
-
min-width: 100%;
|
|
37910
|
-
}
|
|
37911
|
-
.cdk-overlay-pane.mat-mdc-dialog-panel .mat-mdc-dialog-inner-container {
|
|
37986
|
+
width: unset;
|
|
37987
|
+
height: unset;
|
|
37912
37988
|
min-width: 100%;
|
|
37989
|
+
max-width: 100%;
|
|
37913
37990
|
min-height: 100%;
|
|
37991
|
+
max-height: 100%;
|
|
37914
37992
|
}
|
|
37915
37993
|
|
|
37916
37994
|
.cdk-overlay-pane.mat-mdc-dialog-panel.lux-dialog {
|
|
@@ -37919,10 +37997,6 @@ lux-datetimepicker-ac button:not(:disabled) .lux-datetimepicker-toggle-icon {
|
|
|
37919
37997
|
--mat-dialog-container-min-width: 0;
|
|
37920
37998
|
}
|
|
37921
37999
|
|
|
37922
|
-
lux-dialog-preset {
|
|
37923
|
-
height: 100%;
|
|
37924
|
-
}
|
|
37925
|
-
|
|
37926
38000
|
lux-dialog-action {
|
|
37927
38001
|
flex-flow: row wrap;
|
|
37928
38002
|
gap: 8px;
|
|
@@ -37934,7 +38008,6 @@ lux-dialog-structure {
|
|
|
37934
38008
|
--mat-dialog-supporting-text-size: 1rem;
|
|
37935
38009
|
display: flex;
|
|
37936
38010
|
flex: 1 1 auto;
|
|
37937
|
-
min-height: 100%;
|
|
37938
38011
|
}
|
|
37939
38012
|
lux-dialog-structure .lux-dialog {
|
|
37940
38013
|
outline-width: 0;
|
|
@@ -37954,7 +38027,6 @@ lux-dialog-structure .lux-dialog .mat-mdc-dialog-container {
|
|
|
37954
38027
|
lux-dialog-structure .lux-dialog .lux-dialog-content {
|
|
37955
38028
|
margin: 0;
|
|
37956
38029
|
padding: 0;
|
|
37957
|
-
max-height: 100%;
|
|
37958
38030
|
font-family: var(--lux-theme-app-font-family);
|
|
37959
38031
|
letter-spacing: normal;
|
|
37960
38032
|
color: var(--lux-theme-dark-primary-text);
|
|
@@ -38654,7 +38726,7 @@ lux-form-control-wrapper .lux-form-control-wrapper .lux-no-input-row {
|
|
|
38654
38726
|
padding: 0;
|
|
38655
38727
|
}
|
|
38656
38728
|
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) {
|
|
38657
|
-
border-color: var(--lux-theme-
|
|
38729
|
+
border-color: var(--lux-theme-form-hover-border-color);
|
|
38658
38730
|
}
|
|
38659
38731
|
lux-form-control-wrapper .lux-form-control-wrapper.lux-focused-authentic .lux-form-control-label-authentic > * {
|
|
38660
38732
|
color: var(--lux-theme-primary-30);
|
|
@@ -39299,6 +39371,14 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39299
39371
|
.lux-menu-panel .lux-menu-item-icon {
|
|
39300
39372
|
align-self: center;
|
|
39301
39373
|
vertical-align: middle;
|
|
39374
|
+
width: var(--lux-theme-menu-item-icon-size);
|
|
39375
|
+
height: var(--lux-theme-menu-item-icon-size);
|
|
39376
|
+
}
|
|
39377
|
+
.lux-menu-panel .lux-menu-item-icon .lux-icon,
|
|
39378
|
+
.lux-menu-panel .lux-menu-item-icon mat-icon {
|
|
39379
|
+
width: 100%;
|
|
39380
|
+
height: 100%;
|
|
39381
|
+
font-size: var(--lux-theme-menu-item-icon-size);
|
|
39302
39382
|
}
|
|
39303
39383
|
.lux-menu-panel .lux-menu-item-icon mat-icon {
|
|
39304
39384
|
margin: 0;
|
|
@@ -39339,7 +39419,7 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39339
39419
|
}
|
|
39340
39420
|
.lux-menu-section-panel .lux-button-label-subtitle {
|
|
39341
39421
|
color: var(--lux-theme-menu-item-subtitle-font-color);
|
|
39342
|
-
font-size:
|
|
39422
|
+
font-size: var(--lux-theme-menu-item-subtitle-font-size);
|
|
39343
39423
|
font-style: normal;
|
|
39344
39424
|
font-weight: 400;
|
|
39345
39425
|
letter-spacing: 0.07px;
|
|
@@ -39351,8 +39431,9 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39351
39431
|
align-items: flex-start;
|
|
39352
39432
|
gap: 4px;
|
|
39353
39433
|
align-self: stretch;
|
|
39354
|
-
font-
|
|
39355
|
-
font-
|
|
39434
|
+
color: var(--lux-theme-menu-panel-header-font-color);
|
|
39435
|
+
font-weight: var(--lux-theme-menu-panel-header-font-weight);
|
|
39436
|
+
font-size: var(--lux-theme-menu-panel-header-font-size);
|
|
39356
39437
|
font-style: normal;
|
|
39357
39438
|
line-height: 120%;
|
|
39358
39439
|
}
|
|
@@ -39412,6 +39493,14 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39412
39493
|
.lux-menu-section-panel .lux-menu-item-badge-right {
|
|
39413
39494
|
text-align: end;
|
|
39414
39495
|
}
|
|
39496
|
+
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon {
|
|
39497
|
+
width: var(--lux-theme-menu-item-icon-size-large);
|
|
39498
|
+
height: var(--lux-theme-menu-item-icon-size-large);
|
|
39499
|
+
}
|
|
39500
|
+
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon .lux-icon,
|
|
39501
|
+
.lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon mat-icon {
|
|
39502
|
+
font-size: var(--lux-theme-menu-item-icon-size-large);
|
|
39503
|
+
}
|
|
39415
39504
|
|
|
39416
39505
|
lux-message-box {
|
|
39417
39506
|
display: block;
|
|
@@ -40872,7 +40961,7 @@ lux-tile .lux-notification-new {
|
|
|
40872
40961
|
background-color: var(--lux-theme-accent-70);
|
|
40873
40962
|
}
|
|
40874
40963
|
lux-tile mat-card[class~=lux-cursor].mat-mdc-card {
|
|
40875
|
-
border-radius: var(--lux-theme-tile-
|
|
40964
|
+
border-radius: var(--lux-theme-tile-border-radius);
|
|
40876
40965
|
overflow: hidden !important;
|
|
40877
40966
|
padding: 24px;
|
|
40878
40967
|
}
|
|
@@ -41052,7 +41141,10 @@ lux-tile-ac .lux-tile-ac:focus-visible {
|
|
|
41052
41141
|
--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);
|
|
41053
41142
|
}
|
|
41054
41143
|
lux-tile-ac:hover {
|
|
41055
|
-
--mat-card-elevated-container-elevation: 0 0 0 1px
|
|
41144
|
+
--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);
|
|
41145
|
+
}
|
|
41146
|
+
lux-tile-ac:hover .lux-tile-ac {
|
|
41147
|
+
background-image: var(--lux-theme-tile-ac-hover-bg-color);
|
|
41056
41148
|
}
|
|
41057
41149
|
|
|
41058
41150
|
lux-toggle-ac {
|