@ihk-gfi/lux-components-theme 21.3.0 → 21.5.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/README.md +1560 -101
- 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 +520 -25
- 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 +521 -26
- package/prebuilt-themes/luxtheme-green.css.map +1 -1
- package/src/base-templates/common/_luxstyles.scss +7 -8
- package/src/base-templates/common/_luxutilities.scss +343 -0
- package/src/base-templates/components/_luxAccordion.scss +22 -3
- package/src/base-templates/components/_luxCard.scss +25 -2
- package/src/base-templates/components/_luxFormControlWrapper.scss +37 -13
- package/src/base-templates/components/_luxList.scss +1 -1
- package/src/base-templates/components/_luxMenu.scss +1 -0
- package/src/base-templates/components/_luxMessagebox.scss +11 -0
- package/src/base-templates/components/_luxPaginator.scss +7 -0
- package/src/base-templates/components/_luxSnackbar.scss +1 -0
- package/src/base-templates/components/_luxStepper.scss +12 -1
- package/src/base-templates/components/_luxTabs.scss +21 -4
- package/src/base-templates/components/_luxTenantLogo.scss +27 -0
- package/src/base-templates/components/_luxTile.scss +5 -3
- package/src/base-templates/components/_luxTimepicker.scss +7 -0
- package/src/theme-authentic/_variables.scss +4 -0
- package/src/theme-authentic/lux-authentic.scss +4 -0
- package/src/theme-green/_variables.scss +5 -1
- package/src/theme-green/lux-green.scss +4 -0
|
@@ -1625,7 +1625,9 @@
|
|
|
1625
1625
|
--lux-theme-radius-xxl: 999px;
|
|
1626
1626
|
--lux-theme-spacing-xxs: 2px;
|
|
1627
1627
|
--lux-theme-spacing-xs: 4px;
|
|
1628
|
+
--lux-theme-spacing-1-5: 6px;
|
|
1628
1629
|
--lux-theme-spacing-sm: 8px;
|
|
1630
|
+
--lux-theme-spacing-3: 12px;
|
|
1629
1631
|
--lux-theme-spacing-md: 16px;
|
|
1630
1632
|
--lux-theme-spacing-lg: 24px;
|
|
1631
1633
|
--lux-theme-spacing-xl: 32px;
|
|
@@ -1636,6 +1638,7 @@
|
|
|
1636
1638
|
--lux-theme-font-size-md: 1rem;
|
|
1637
1639
|
--lux-theme-font-size-lg: 1.125rem;
|
|
1638
1640
|
--lux-theme-font-size-xl: 1.25rem;
|
|
1641
|
+
--lux-theme-font-size-2xl: 1.5rem;
|
|
1639
1642
|
--lux-theme-primary-color: #003366;
|
|
1640
1643
|
--lux-theme-accent-color: #003911;
|
|
1641
1644
|
--lux-theme-accent-secondary-color: #247929;
|
|
@@ -1716,7 +1719,7 @@
|
|
|
1716
1719
|
--lux-theme-app-gradient-reverse: none;
|
|
1717
1720
|
--lux-theme-app-border-color: var(--mat-sys-outline-variant);
|
|
1718
1721
|
--lux-theme-app-border-radius: 14px;
|
|
1719
|
-
--lux-theme-state-layer-color: #
|
|
1722
|
+
--lux-theme-state-layer-color: #e3ebf5;
|
|
1720
1723
|
--lux-theme-app-state-layer-color: #3a5f94;
|
|
1721
1724
|
--lux-theme-hover-state-layer-opacity: 0.08;
|
|
1722
1725
|
--lux-theme-focus-state-layer-opacity: 0.12;
|
|
@@ -1758,6 +1761,7 @@
|
|
|
1758
1761
|
--lux-theme-snackbar-orange: #ec9c1b;
|
|
1759
1762
|
--lux-theme-snackbar-yellow: #fbd12c;
|
|
1760
1763
|
--lux-theme-snackbar-white: #ffffff;
|
|
1764
|
+
--lux-theme-accordion-panel-container-elevation-shadow-width: 1px;
|
|
1761
1765
|
--lux-theme-accordion-header-color-neutral: var(--lux-theme-app-content-bg);
|
|
1762
1766
|
--lux-theme-accordion-header-color-on-neutral: var(--lux-theme-dark-primary-text);
|
|
1763
1767
|
--lux-theme-accordion-header-hover-color-on-neutral: var(--lux-theme-app-content-bg);
|
|
@@ -2205,8 +2209,8 @@
|
|
|
2205
2209
|
--mat-progress-bar-track-shape: 0;
|
|
2206
2210
|
--mat-progress-bar-active-indicator-color: var(--mat-sys-primary);
|
|
2207
2211
|
--mat-progress-bar-track-color: var(--mat-sys-surface-variant);
|
|
2208
|
-
--mat-tooltip-container-color: var(--mat-sys-inverse-surface);
|
|
2209
2212
|
--mat-tooltip-container-shape: 4px;
|
|
2213
|
+
--mat-tooltip-container-color: var(--mat-sys-inverse-surface);
|
|
2210
2214
|
--mat-tooltip-supporting-text-color: var(--mat-sys-inverse-on-surface);
|
|
2211
2215
|
--mat-tooltip-supporting-text-font: Source Sans Pro;
|
|
2212
2216
|
--mat-tooltip-supporting-text-line-height: 1rem;
|
|
@@ -3584,14 +3588,6 @@ lux-card.lux-card-grow mat-card-content {
|
|
|
3584
3588
|
opacity: 0.6;
|
|
3585
3589
|
}
|
|
3586
3590
|
|
|
3587
|
-
.lux-overflow-y-hidden {
|
|
3588
|
-
overflow-y: hidden;
|
|
3589
|
-
}
|
|
3590
|
-
|
|
3591
|
-
.lux-overflow-y-auto {
|
|
3592
|
-
overflow-y: auto;
|
|
3593
|
-
}
|
|
3594
|
-
|
|
3595
3591
|
.lux-overflow-wrap-break-word {
|
|
3596
3592
|
overflow-wrap: break-word;
|
|
3597
3593
|
}
|
|
@@ -3659,6 +3655,7 @@ lux-card.lux-card-grow mat-card-content {
|
|
|
3659
3655
|
}
|
|
3660
3656
|
|
|
3661
3657
|
/*
|
|
3658
|
+
@deprecated Verwende stattdessen .lux-z-{n} aus _luxutilities.scss (z.B. .lux-z-100).
|
|
3662
3659
|
Erstellt die Z-Indizes.
|
|
3663
3660
|
Um weitere Z-Indizes anzulegen, die Variable zindexSteps um die entsprechenden Werte ergaenzen.
|
|
3664
3661
|
*/
|
|
@@ -36329,9 +36326,393 @@ lux-table .lux-table .lux-table-content .mat-mdc-row:nth-child(odd).lux-text-hig
|
|
|
36329
36326
|
grid-auto-rows: minmax(0, 1fr);
|
|
36330
36327
|
}
|
|
36331
36328
|
}
|
|
36329
|
+
:root {
|
|
36330
|
+
--lux-focus-state-layer-color: color-mix(in srgb, var(--lux-theme-primary-color) 12%, transparent);
|
|
36331
|
+
--lux-z-action-bar: 8;
|
|
36332
|
+
--lux-z-header: 100;
|
|
36333
|
+
--lux-z-backdrop: 199;
|
|
36334
|
+
--lux-z-drawer: 200;
|
|
36335
|
+
--lux-z-skip-link: 10000;
|
|
36336
|
+
}
|
|
36337
|
+
|
|
36338
|
+
.lux-static {
|
|
36339
|
+
position: static;
|
|
36340
|
+
}
|
|
36341
|
+
|
|
36342
|
+
.lux-relative {
|
|
36343
|
+
position: relative;
|
|
36344
|
+
}
|
|
36345
|
+
|
|
36346
|
+
.lux-absolute {
|
|
36347
|
+
position: absolute;
|
|
36348
|
+
}
|
|
36349
|
+
|
|
36350
|
+
.lux-fixed {
|
|
36351
|
+
position: fixed;
|
|
36352
|
+
}
|
|
36353
|
+
|
|
36354
|
+
.lux-sticky {
|
|
36355
|
+
position: sticky;
|
|
36356
|
+
}
|
|
36357
|
+
|
|
36358
|
+
.lux-inset-0 {
|
|
36359
|
+
inset: 0;
|
|
36360
|
+
}
|
|
36361
|
+
|
|
36362
|
+
.lux-top-0 {
|
|
36363
|
+
top: 0;
|
|
36364
|
+
}
|
|
36365
|
+
|
|
36366
|
+
.lux-right-0 {
|
|
36367
|
+
right: 0;
|
|
36368
|
+
}
|
|
36369
|
+
|
|
36370
|
+
.lux-bottom-0 {
|
|
36371
|
+
bottom: 0;
|
|
36372
|
+
}
|
|
36373
|
+
|
|
36374
|
+
.lux-left-0 {
|
|
36375
|
+
left: 0;
|
|
36376
|
+
}
|
|
36377
|
+
|
|
36378
|
+
.lux-inset-auto {
|
|
36379
|
+
inset: auto;
|
|
36380
|
+
}
|
|
36381
|
+
|
|
36382
|
+
.lux-top-auto {
|
|
36383
|
+
top: auto;
|
|
36384
|
+
}
|
|
36385
|
+
|
|
36386
|
+
.lux-right-auto {
|
|
36387
|
+
right: auto;
|
|
36388
|
+
}
|
|
36389
|
+
|
|
36390
|
+
.lux-bottom-auto {
|
|
36391
|
+
bottom: auto;
|
|
36392
|
+
}
|
|
36393
|
+
|
|
36394
|
+
.lux-left-auto {
|
|
36395
|
+
left: auto;
|
|
36396
|
+
}
|
|
36397
|
+
|
|
36398
|
+
.lux-z-auto {
|
|
36399
|
+
z-index: auto;
|
|
36400
|
+
}
|
|
36401
|
+
|
|
36402
|
+
.lux-z-0 {
|
|
36403
|
+
z-index: 0;
|
|
36404
|
+
}
|
|
36405
|
+
|
|
36406
|
+
.lux-z-1 {
|
|
36407
|
+
z-index: 1;
|
|
36408
|
+
}
|
|
36409
|
+
|
|
36410
|
+
.lux-z-5 {
|
|
36411
|
+
z-index: 5;
|
|
36412
|
+
}
|
|
36413
|
+
|
|
36414
|
+
.lux-z-8 {
|
|
36415
|
+
z-index: 8;
|
|
36416
|
+
}
|
|
36417
|
+
|
|
36418
|
+
.lux-z-9 {
|
|
36419
|
+
z-index: 9;
|
|
36420
|
+
}
|
|
36421
|
+
|
|
36422
|
+
.lux-z-10 {
|
|
36423
|
+
z-index: 10;
|
|
36424
|
+
}
|
|
36425
|
+
|
|
36426
|
+
.lux-z-100 {
|
|
36427
|
+
z-index: 100;
|
|
36428
|
+
}
|
|
36429
|
+
|
|
36430
|
+
.lux-z-199 {
|
|
36431
|
+
z-index: 199;
|
|
36432
|
+
}
|
|
36433
|
+
|
|
36434
|
+
.lux-z-200 {
|
|
36435
|
+
z-index: 200;
|
|
36436
|
+
}
|
|
36437
|
+
|
|
36438
|
+
.lux-z-500 {
|
|
36439
|
+
z-index: 500;
|
|
36440
|
+
}
|
|
36441
|
+
|
|
36442
|
+
.lux-z-1000 {
|
|
36443
|
+
z-index: 1000;
|
|
36444
|
+
}
|
|
36445
|
+
|
|
36446
|
+
.lux-z-10000 {
|
|
36447
|
+
z-index: 10000;
|
|
36448
|
+
}
|
|
36449
|
+
|
|
36450
|
+
.lux-overflow-auto {
|
|
36451
|
+
overflow: auto;
|
|
36452
|
+
}
|
|
36453
|
+
|
|
36454
|
+
.lux-overflow-x-auto {
|
|
36455
|
+
overflow-x: auto;
|
|
36456
|
+
}
|
|
36457
|
+
|
|
36458
|
+
.lux-overflow-y-auto {
|
|
36459
|
+
overflow-y: auto;
|
|
36460
|
+
}
|
|
36461
|
+
|
|
36462
|
+
.lux-overflow-hidden {
|
|
36463
|
+
overflow: hidden;
|
|
36464
|
+
}
|
|
36465
|
+
|
|
36466
|
+
.lux-overflow-x-hidden {
|
|
36467
|
+
overflow-x: hidden;
|
|
36468
|
+
}
|
|
36469
|
+
|
|
36470
|
+
.lux-overflow-y-hidden {
|
|
36471
|
+
overflow-y: hidden;
|
|
36472
|
+
}
|
|
36473
|
+
|
|
36474
|
+
.lux-overflow-visible {
|
|
36475
|
+
overflow: visible;
|
|
36476
|
+
}
|
|
36477
|
+
|
|
36478
|
+
.lux-overflow-x-visible {
|
|
36479
|
+
overflow-x: visible;
|
|
36480
|
+
}
|
|
36481
|
+
|
|
36482
|
+
.lux-overflow-y-visible {
|
|
36483
|
+
overflow-y: visible;
|
|
36484
|
+
}
|
|
36485
|
+
|
|
36486
|
+
.lux-overflow-scroll {
|
|
36487
|
+
overflow: scroll;
|
|
36488
|
+
}
|
|
36489
|
+
|
|
36490
|
+
.lux-overflow-x-scroll {
|
|
36491
|
+
overflow-x: scroll;
|
|
36492
|
+
}
|
|
36493
|
+
|
|
36494
|
+
.lux-overflow-y-scroll {
|
|
36495
|
+
overflow-y: scroll;
|
|
36496
|
+
}
|
|
36497
|
+
|
|
36498
|
+
.lux-border-0 {
|
|
36499
|
+
border: none;
|
|
36500
|
+
}
|
|
36501
|
+
|
|
36502
|
+
.lux-rounded-none {
|
|
36503
|
+
border-radius: 0;
|
|
36504
|
+
}
|
|
36505
|
+
|
|
36506
|
+
.lux-rounded-xs {
|
|
36507
|
+
border-radius: var(--lux-theme-radius-xs);
|
|
36508
|
+
}
|
|
36509
|
+
|
|
36510
|
+
.lux-rounded-sm {
|
|
36511
|
+
border-radius: var(--lux-theme-radius-sm);
|
|
36512
|
+
}
|
|
36513
|
+
|
|
36514
|
+
.lux-rounded-md {
|
|
36515
|
+
border-radius: var(--lux-theme-radius-md);
|
|
36516
|
+
}
|
|
36517
|
+
|
|
36518
|
+
.lux-rounded-lg {
|
|
36519
|
+
border-radius: var(--lux-theme-radius-lg);
|
|
36520
|
+
}
|
|
36521
|
+
|
|
36522
|
+
.lux-rounded-xl {
|
|
36523
|
+
border-radius: var(--lux-theme-radius-xl);
|
|
36524
|
+
}
|
|
36525
|
+
|
|
36526
|
+
.lux-rounded-xxl {
|
|
36527
|
+
border-radius: var(--lux-theme-radius-xxl);
|
|
36528
|
+
}
|
|
36529
|
+
|
|
36530
|
+
.lux-rounded-full {
|
|
36531
|
+
border-radius: 50%;
|
|
36532
|
+
}
|
|
36533
|
+
|
|
36534
|
+
.lux-rounded-theme {
|
|
36535
|
+
border-radius: var(--lux-theme-app-border-radius);
|
|
36536
|
+
}
|
|
36537
|
+
|
|
36538
|
+
.lux-shadow-none {
|
|
36539
|
+
box-shadow: none;
|
|
36540
|
+
}
|
|
36541
|
+
|
|
36542
|
+
.lux-cursor-pointer {
|
|
36543
|
+
cursor: pointer;
|
|
36544
|
+
}
|
|
36545
|
+
|
|
36546
|
+
.lux-cursor-default {
|
|
36547
|
+
cursor: default;
|
|
36548
|
+
}
|
|
36549
|
+
|
|
36550
|
+
.lux-pointer-events-none {
|
|
36551
|
+
pointer-events: none;
|
|
36552
|
+
}
|
|
36553
|
+
|
|
36554
|
+
.lux-pointer-events-auto {
|
|
36555
|
+
pointer-events: auto;
|
|
36556
|
+
}
|
|
36557
|
+
|
|
36558
|
+
.lux-text-xs {
|
|
36559
|
+
font-size: var(--lux-theme-font-size-xs);
|
|
36560
|
+
}
|
|
36561
|
+
|
|
36562
|
+
.lux-text-sm {
|
|
36563
|
+
font-size: var(--lux-theme-font-size-sm);
|
|
36564
|
+
}
|
|
36565
|
+
|
|
36566
|
+
.lux-text-base {
|
|
36567
|
+
font-size: var(--lux-theme-font-size-md);
|
|
36568
|
+
}
|
|
36569
|
+
|
|
36570
|
+
.lux-text-lg {
|
|
36571
|
+
font-size: var(--lux-theme-font-size-lg);
|
|
36572
|
+
}
|
|
36573
|
+
|
|
36574
|
+
.lux-text-xl {
|
|
36575
|
+
font-size: var(--lux-theme-font-size-xl);
|
|
36576
|
+
}
|
|
36577
|
+
|
|
36578
|
+
.lux-text-2xl {
|
|
36579
|
+
font-size: var(--lux-theme-font-size-2xl);
|
|
36580
|
+
}
|
|
36581
|
+
|
|
36582
|
+
.lux-font-light {
|
|
36583
|
+
font-weight: 300;
|
|
36584
|
+
}
|
|
36585
|
+
|
|
36586
|
+
.lux-font-normal {
|
|
36587
|
+
font-weight: 400;
|
|
36588
|
+
}
|
|
36589
|
+
|
|
36590
|
+
.lux-font-medium {
|
|
36591
|
+
font-weight: 500;
|
|
36592
|
+
}
|
|
36593
|
+
|
|
36594
|
+
.lux-font-semibold {
|
|
36595
|
+
font-weight: 600;
|
|
36596
|
+
}
|
|
36597
|
+
|
|
36598
|
+
.lux-font-bold {
|
|
36599
|
+
font-weight: 700;
|
|
36600
|
+
}
|
|
36601
|
+
|
|
36602
|
+
.lux-font-headline {
|
|
36603
|
+
font-family: var(--lux-theme-app-headline-font, inherit);
|
|
36604
|
+
}
|
|
36605
|
+
|
|
36606
|
+
.lux-font-body {
|
|
36607
|
+
font-family: var(--lux-theme-app-font-family, inherit);
|
|
36608
|
+
}
|
|
36609
|
+
|
|
36610
|
+
.lux-leading-none {
|
|
36611
|
+
line-height: 1;
|
|
36612
|
+
}
|
|
36613
|
+
|
|
36614
|
+
.lux-leading-tight {
|
|
36615
|
+
line-height: 1.2;
|
|
36616
|
+
}
|
|
36617
|
+
|
|
36618
|
+
.lux-leading-normal {
|
|
36619
|
+
line-height: 1.5;
|
|
36620
|
+
}
|
|
36621
|
+
|
|
36622
|
+
.lux-leading-relaxed {
|
|
36623
|
+
line-height: 1.75;
|
|
36624
|
+
}
|
|
36625
|
+
|
|
36626
|
+
.lux-whitespace-nowrap {
|
|
36627
|
+
white-space: nowrap;
|
|
36628
|
+
}
|
|
36629
|
+
|
|
36630
|
+
.lux-whitespace-normal {
|
|
36631
|
+
white-space: normal;
|
|
36632
|
+
}
|
|
36633
|
+
|
|
36634
|
+
.lux-bg-transparent {
|
|
36635
|
+
background: transparent;
|
|
36636
|
+
}
|
|
36637
|
+
|
|
36638
|
+
.lux-bg-header {
|
|
36639
|
+
background-color: var(--lux-theme-app-header-bg);
|
|
36640
|
+
}
|
|
36641
|
+
|
|
36642
|
+
.lux-bg-content {
|
|
36643
|
+
background-color: var(--lux-theme-app-content-bg);
|
|
36644
|
+
}
|
|
36645
|
+
|
|
36646
|
+
.lux-bg-footer {
|
|
36647
|
+
background-color: var(--lux-theme-app-footer-bg);
|
|
36648
|
+
}
|
|
36649
|
+
|
|
36650
|
+
.lux-bg-primary {
|
|
36651
|
+
background-color: var(--lux-theme-primary-color);
|
|
36652
|
+
}
|
|
36653
|
+
|
|
36654
|
+
.lux-text-primary {
|
|
36655
|
+
color: var(--lux-theme-primary-color);
|
|
36656
|
+
}
|
|
36657
|
+
|
|
36658
|
+
.lux-text-dark {
|
|
36659
|
+
color: var(--lux-theme-dark-primary-text);
|
|
36660
|
+
}
|
|
36661
|
+
|
|
36662
|
+
.lux-text-light {
|
|
36663
|
+
color: var(--lux-theme-light-primary-text);
|
|
36664
|
+
}
|
|
36665
|
+
|
|
36666
|
+
.lux-text-secondary {
|
|
36667
|
+
color: var(--lux-theme-dark-secondary-text);
|
|
36668
|
+
}
|
|
36669
|
+
|
|
36670
|
+
.lux-text-disabled {
|
|
36671
|
+
color: var(--lux-theme-dark-disabled-text);
|
|
36672
|
+
}
|
|
36673
|
+
|
|
36674
|
+
.lux-outline-none {
|
|
36675
|
+
outline: none;
|
|
36676
|
+
}
|
|
36677
|
+
|
|
36678
|
+
.lux-transition-none {
|
|
36679
|
+
transition: none;
|
|
36680
|
+
}
|
|
36681
|
+
|
|
36682
|
+
.lux-skip-link:focus-visible {
|
|
36683
|
+
position: fixed;
|
|
36684
|
+
top: var(--lux-theme-spacing-sm);
|
|
36685
|
+
left: var(--lux-theme-spacing-sm);
|
|
36686
|
+
width: auto;
|
|
36687
|
+
height: auto;
|
|
36688
|
+
padding: var(--lux-theme-spacing-sm) var(--lux-theme-spacing-md);
|
|
36689
|
+
background-color: var(--lux-theme-primary-20);
|
|
36690
|
+
color: var(--lux-theme-primary-100);
|
|
36691
|
+
font-size: var(--lux-theme-font-size-sm);
|
|
36692
|
+
font-weight: 600;
|
|
36693
|
+
border-radius: var(--lux-theme-radius-sm);
|
|
36694
|
+
z-index: var(--lux-z-skip-link);
|
|
36695
|
+
outline: 3px solid var(--lux-theme-custom-lightblue);
|
|
36696
|
+
}
|
|
36697
|
+
|
|
36698
|
+
.lux-interactive:hover:not(:focus-visible) {
|
|
36699
|
+
background-color: var(--lux-theme-hover-color);
|
|
36700
|
+
}
|
|
36701
|
+
.lux-interactive:active {
|
|
36702
|
+
background-color: var(--lux-theme-selected-bg-color);
|
|
36703
|
+
}
|
|
36704
|
+
.lux-interactive:focus-visible {
|
|
36705
|
+
outline: calc(var(--lux-theme-outline-width) - 1px) var(--lux-theme-outline-style) var(--lux-theme-outline-color-dark) !important;
|
|
36706
|
+
outline-offset: 1px;
|
|
36707
|
+
}
|
|
36708
|
+
|
|
36332
36709
|
lux-accordion {
|
|
36333
36710
|
--mat-expansion-container-text-color: var(--lux-theme-dark-primary-text);
|
|
36334
36711
|
}
|
|
36712
|
+
lux-accordion .mat-accordion {
|
|
36713
|
+
display: block;
|
|
36714
|
+
padding: var(--lux-theme-accordion-panel-container-elevation-shadow-width);
|
|
36715
|
+
}
|
|
36335
36716
|
lux-accordion .lux-primary .lux-expansion-panel-header,
|
|
36336
36717
|
lux-accordion .lux-primary .lux-expansion-panel-header.mat-expanded {
|
|
36337
36718
|
background-color: var(--lux-theme-accordion-header-color-primary);
|
|
@@ -36380,7 +36761,7 @@ lux-panel {
|
|
|
36380
36761
|
--mat-expansion-header-disabled-state-text-color: var(--lux-theme-dark-disabled-text);
|
|
36381
36762
|
--mat-expansion-header-hover-state-layer-color: var(--lux-theme-accordion-header-hover-color-on-neutral);
|
|
36382
36763
|
--mat-expansion-container-shape: var(--lux-theme-app-border-radius);
|
|
36383
|
-
--mat-expansion-container-elevation-shadow: 0 0 0
|
|
36764
|
+
--mat-expansion-container-elevation-shadow: 0 0 0 var(--lux-theme-accordion-panel-container-elevation-shadow-width) var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant));
|
|
36384
36765
|
}
|
|
36385
36766
|
lux-panel .lux-expansion-panel-header[aria-disabled=true],
|
|
36386
36767
|
lux-panel .lux-expansion-panel-header.mat-expanded[aria-disabled=true],
|
|
@@ -36415,6 +36796,16 @@ lux-panel .lux-expansion-panel-header:not([aria-disabled=true]):focus-visible {
|
|
|
36415
36796
|
outline: var(--lux-theme-outline-dark);
|
|
36416
36797
|
outline-offset: calc(var(--lux-theme-outline-width) * -1);
|
|
36417
36798
|
}
|
|
36799
|
+
lux-panel:not(lux-accordion lux-panel) {
|
|
36800
|
+
padding-left: var(--lux-theme-accordion-panel-container-elevation-shadow-width);
|
|
36801
|
+
padding-right: var(--lux-theme-accordion-panel-container-elevation-shadow-width);
|
|
36802
|
+
}
|
|
36803
|
+
lux-panel:not(lux-accordion lux-panel):first-of-type {
|
|
36804
|
+
padding-top: var(--lux-theme-accordion-panel-container-elevation-shadow-width);
|
|
36805
|
+
}
|
|
36806
|
+
lux-panel:not(lux-accordion lux-panel):last-of-type {
|
|
36807
|
+
padding-bottom: var(--lux-theme-accordion-panel-container-elevation-shadow-width);
|
|
36808
|
+
}
|
|
36418
36809
|
|
|
36419
36810
|
lux-app-content {
|
|
36420
36811
|
background-color: var(--lux-theme-app-content-bg);
|
|
@@ -37602,10 +37993,12 @@ lux-card .lux-card .lux-card-header > * {
|
|
|
37602
37993
|
order: 10;
|
|
37603
37994
|
}
|
|
37604
37995
|
lux-card .lux-card .lux-card-header .lux-card-icon-container {
|
|
37996
|
+
margin-top: 4px;
|
|
37605
37997
|
margin-right: 10px;
|
|
37606
37998
|
order: 5;
|
|
37607
37999
|
}
|
|
37608
38000
|
lux-card .lux-card .lux-card-header .lux-card-info-container {
|
|
38001
|
+
margin-top: 4px;
|
|
37609
38002
|
order: 15;
|
|
37610
38003
|
margin-left: auto;
|
|
37611
38004
|
}
|
|
@@ -37648,17 +38041,33 @@ lux-card .lux-card .lux-card-content.lux-card-no-actions {
|
|
|
37648
38041
|
lux-card .lux-card .lux-card-actions {
|
|
37649
38042
|
padding: var(--lux-theme-card-padding);
|
|
37650
38043
|
}
|
|
37651
|
-
|
|
38044
|
+
@media screen and (max-width: 599px) {
|
|
38045
|
+
lux-card .lux-card .lux-card-actions lux-card-actions {
|
|
38046
|
+
flex-direction: column;
|
|
38047
|
+
}
|
|
38048
|
+
lux-card .lux-card .lux-card-actions .lux-card-actions-container {
|
|
38049
|
+
flex-direction: column;
|
|
38050
|
+
align-items: stretch;
|
|
38051
|
+
}
|
|
38052
|
+
lux-card .lux-card .lux-card-actions .lux-card-actions-container lux-button {
|
|
38053
|
+
display: block;
|
|
38054
|
+
width: 100%;
|
|
38055
|
+
}
|
|
38056
|
+
lux-card .lux-card .lux-card-actions .lux-card-actions-container lux-button button.lux-button {
|
|
38057
|
+
width: 100%;
|
|
38058
|
+
}
|
|
38059
|
+
}
|
|
38060
|
+
lux-card .lux-card[class~=lux-cursor-pointer]:hover {
|
|
37652
38061
|
background-image: var(--lux-theme-app-gradient-reverse);
|
|
37653
38062
|
background-color: #ffffff;
|
|
37654
38063
|
border-color: var(--lux-theme-dark-primary-text);
|
|
37655
38064
|
}
|
|
37656
|
-
lux-card .lux-card[class~=lux-cursor]:hover .lux-card-content-expanded {
|
|
38065
|
+
lux-card .lux-card[class~=lux-cursor-pointer]:hover .lux-card-content-expanded {
|
|
37657
38066
|
background-image: var(--lux-theme-app-gradient-reverse);
|
|
37658
38067
|
background-color: #ffffff;
|
|
37659
38068
|
border-color: var(--lux-theme-dark-primary-text);
|
|
37660
38069
|
}
|
|
37661
|
-
lux-card .lux-card[class~=lux-cursor]:focus-visible {
|
|
38070
|
+
lux-card .lux-card[class~=lux-cursor-pointer]:focus-visible {
|
|
37662
38071
|
outline: var(--lux-theme-outline-dark);
|
|
37663
38072
|
outline-offset: calc(var(--lux-theme-outline-width) * -1);
|
|
37664
38073
|
}
|
|
@@ -38498,6 +38907,7 @@ lux-input-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-co
|
|
|
38498
38907
|
lux-select-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic,
|
|
38499
38908
|
lux-lookup-combobox-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic,
|
|
38500
38909
|
lux-datepicker-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic,
|
|
38910
|
+
lux-timepicker lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic,
|
|
38501
38911
|
lux-datetimepicker-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic,
|
|
38502
38912
|
lux-file-input-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic,
|
|
38503
38913
|
lux-textarea-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic {
|
|
@@ -38510,6 +38920,7 @@ lux-input-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-co
|
|
|
38510
38920
|
lux-select-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic .mat-mdc-select-arrow,
|
|
38511
38921
|
lux-lookup-combobox-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic .mat-mdc-select-arrow,
|
|
38512
38922
|
lux-datepicker-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic .mat-mdc-select-arrow,
|
|
38923
|
+
lux-timepicker lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic .mat-mdc-select-arrow,
|
|
38513
38924
|
lux-datetimepicker-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic .mat-mdc-select-arrow,
|
|
38514
38925
|
lux-file-input-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic .mat-mdc-select-arrow,
|
|
38515
38926
|
lux-textarea-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-control-disabled-authentic).lux-form-control-readonly-authentic .lux-form-control-container-authentic .mat-mdc-select-arrow {
|
|
@@ -38672,6 +39083,7 @@ lux-form-control-wrapper .lux-form-control-wrapper.lux-form-control-error-authen
|
|
|
38672
39083
|
}
|
|
38673
39084
|
lux-form-control-wrapper .lux-form-control-wrapper.lux-form-control-error-authentic:not(.lux-form-control-disabled-authentic) .lux-form-control-misc-authentic .mat-mdc-form-field-error {
|
|
38674
39085
|
display: flex;
|
|
39086
|
+
flex: 0 1 auto;
|
|
38675
39087
|
background-color: var(--lux-theme-form-error-msg-background);
|
|
38676
39088
|
border-radius: 4px;
|
|
38677
39089
|
padding-right: 2px;
|
|
@@ -38700,6 +39112,29 @@ lux-form-control-wrapper select:-webkit-autofill:focus {
|
|
|
38700
39112
|
transition: background-color 5000s ease-in-out 0s;
|
|
38701
39113
|
}
|
|
38702
39114
|
|
|
39115
|
+
.lux-form-error-container {
|
|
39116
|
+
display: flex;
|
|
39117
|
+
flex: 0 1 auto;
|
|
39118
|
+
font-size: 0.75rem;
|
|
39119
|
+
}
|
|
39120
|
+
|
|
39121
|
+
.lux-form-error-icon {
|
|
39122
|
+
color: var(--mat-sys-on-error-container);
|
|
39123
|
+
}
|
|
39124
|
+
.lux-form-error-icon mat-icon.mat-icon {
|
|
39125
|
+
box-sizing: border-box;
|
|
39126
|
+
}
|
|
39127
|
+
|
|
39128
|
+
.lux-form-error-label {
|
|
39129
|
+
display: flex;
|
|
39130
|
+
flex: 0 1 auto;
|
|
39131
|
+
background-color: var(--lux-theme-form-error-msg-background);
|
|
39132
|
+
border-radius: 4px;
|
|
39133
|
+
padding-right: 2px;
|
|
39134
|
+
color: var(--mat-sys-on-error-container) !important;
|
|
39135
|
+
box-shadow: -18px 0px 0 0 var(--lux-theme-form-error-msg-background), -18px -1px 0 0 var(--lux-theme-form-error-msg-background), 0 -1px 0 0 var(--lux-theme-form-error-msg-background);
|
|
39136
|
+
}
|
|
39137
|
+
|
|
38703
39138
|
lux-html a[href]:focus-visible {
|
|
38704
39139
|
outline: var(--lux-theme-outline-dark);
|
|
38705
39140
|
border-radius: var(--lux-theme-app-border-radius);
|
|
@@ -38941,12 +39376,12 @@ lux-list lux-list-item lux-card.lux-list-item-selected mat-card.mat-mdc-card.lux
|
|
|
38941
39376
|
position: relative;
|
|
38942
39377
|
border-radius: 4px;
|
|
38943
39378
|
}
|
|
38944
|
-
lux-list lux-list-item lux-card:not(.lux-list-item-selected) mat-card[class~=lux-cursor]:not([class*=mat-elevation-z]) {
|
|
39379
|
+
lux-list lux-list-item lux-card:not(.lux-list-item-selected) mat-card[class~=lux-cursor-pointer]:not([class*=mat-elevation-z]) {
|
|
38945
39380
|
-webkit-box-sizing: border-box;
|
|
38946
39381
|
-moz-box-sizing: border-box;
|
|
38947
39382
|
box-sizing: border-box;
|
|
38948
39383
|
}
|
|
38949
|
-
lux-list lux-list-item lux-card:not(.lux-list-item-selected) mat-card[class~=lux-cursor]:not([class*=mat-elevation-z]):hover {
|
|
39384
|
+
lux-list lux-list-item lux-card:not(.lux-list-item-selected) mat-card[class~=lux-cursor-pointer]:not([class*=mat-elevation-z]):hover {
|
|
38950
39385
|
border: 1px solid var(--lux-theme-primary-color);
|
|
38951
39386
|
background: var(--lux-theme-app-gradient-reverse);
|
|
38952
39387
|
background-color: #fff !important;
|
|
@@ -39294,6 +39729,7 @@ lux-menu .lux-menu-trigger > lux-button button {
|
|
|
39294
39729
|
letter-spacing: 1.25px;
|
|
39295
39730
|
}
|
|
39296
39731
|
.lux-menu-panel .lux-menu-item-icon {
|
|
39732
|
+
display: inline-block;
|
|
39297
39733
|
align-self: center;
|
|
39298
39734
|
vertical-align: middle;
|
|
39299
39735
|
width: var(--lux-theme-menu-item-icon-size);
|
|
@@ -39506,6 +39942,16 @@ lux-message-box .lux-message-box-content .lux-message-container {
|
|
|
39506
39942
|
align-items: center;
|
|
39507
39943
|
padding: var(--lux-theme-outline-width) 24px;
|
|
39508
39944
|
border-radius: 4px;
|
|
39945
|
+
transition: opacity 300ms ease-out;
|
|
39946
|
+
}
|
|
39947
|
+
@starting-style {
|
|
39948
|
+
lux-message-box .lux-message-box-content .lux-message-container {
|
|
39949
|
+
opacity: 0;
|
|
39950
|
+
}
|
|
39951
|
+
}
|
|
39952
|
+
lux-message-box .lux-message-box-content .lux-message-container.lux-message-closing {
|
|
39953
|
+
opacity: 0;
|
|
39954
|
+
transition: opacity 300ms ease-in;
|
|
39509
39955
|
}
|
|
39510
39956
|
lux-message-box .lux-message-box-content .lux-message-container.lux-messagebox-white {
|
|
39511
39957
|
border: 1px solid var(--lux-theme-primary-color);
|
|
@@ -39559,6 +40005,10 @@ lux-message-box div.lux-message-box-content .lux-message-container:not(.lux-mess
|
|
|
39559
40005
|
line-height: normal;
|
|
39560
40006
|
}
|
|
39561
40007
|
}
|
|
40008
|
+
:root {
|
|
40009
|
+
--mat-paginator-container-background-color: transparent;
|
|
40010
|
+
}
|
|
40011
|
+
|
|
39562
40012
|
lux-progress {
|
|
39563
40013
|
--mat-progress-bar-track-color: #bcc8d5;
|
|
39564
40014
|
}
|
|
@@ -39809,6 +40259,7 @@ lux-slider-ac {
|
|
|
39809
40259
|
|
|
39810
40260
|
.lux-snackbar {
|
|
39811
40261
|
--mat-snack-bar-supporting-text-size: 1rem;
|
|
40262
|
+
--mat-snack-bar-supporting-text-line-height: 1.5rem;
|
|
39812
40263
|
--mat-snack-bar-supporting-text-weight: 600;
|
|
39813
40264
|
}
|
|
39814
40265
|
.lux-snackbar .lux-snackbar-text,
|
|
@@ -39935,6 +40386,13 @@ lux-stepper .mat-horizontal-stepper-header-container {
|
|
|
39935
40386
|
lux-stepper .mat-vertical-stepper-header {
|
|
39936
40387
|
margin: 8px 8px 0 8px;
|
|
39937
40388
|
}
|
|
40389
|
+
lux-stepper .mat-horizontal-stepper-header .mat-step-icon,
|
|
40390
|
+
lux-stepper .mat-vertical-stepper-header .mat-step-icon {
|
|
40391
|
+
margin-right: 0;
|
|
40392
|
+
}
|
|
40393
|
+
lux-stepper lux-step-header div {
|
|
40394
|
+
margin-left: 0.75rem;
|
|
40395
|
+
}
|
|
39938
40396
|
lux-stepper mat-step-header {
|
|
39939
40397
|
margin: var(--lux-theme-outline-width);
|
|
39940
40398
|
}
|
|
@@ -39947,6 +40405,7 @@ lux-stepper mat-step-header .mat-step-icon-not-touched {
|
|
|
39947
40405
|
}
|
|
39948
40406
|
lux-stepper mat-step-header .mat-step-label {
|
|
39949
40407
|
height: 100%;
|
|
40408
|
+
min-width: unset;
|
|
39950
40409
|
display: flex;
|
|
39951
40410
|
align-items: center;
|
|
39952
40411
|
position: relative;
|
|
@@ -40645,8 +41104,18 @@ lux-tabs .lux-counter-offset {
|
|
|
40645
41104
|
lux-tabs .lux-label-lower {
|
|
40646
41105
|
padding-top: 4px;
|
|
40647
41106
|
}
|
|
41107
|
+
lux-tabs .lux-notification-color-primary {
|
|
41108
|
+
background-color: var(--lux-theme-primary-color);
|
|
41109
|
+
}
|
|
41110
|
+
lux-tabs .lux-notification-color-accent,
|
|
40648
41111
|
lux-tabs .lux-notification-new {
|
|
40649
|
-
background-color: var(--lux-theme-
|
|
41112
|
+
background-color: var(--lux-theme-accent-70);
|
|
41113
|
+
}
|
|
41114
|
+
lux-tabs .lux-notification-color-warn {
|
|
41115
|
+
background-color: var(--mat-sys-error);
|
|
41116
|
+
}
|
|
41117
|
+
lux-tabs .lux-notification-color-default {
|
|
41118
|
+
background-color: #605e5e;
|
|
40650
41119
|
}
|
|
40651
41120
|
lux-tabs .lux-tabs-notification-icon {
|
|
40652
41121
|
border: 2px solid var(--lux-theme-app-content-bg);
|
|
@@ -40760,6 +41229,28 @@ lux-tabs .lux-tabs-notification-icon-position-after-icon.lux-counter-visible {
|
|
|
40760
41229
|
}
|
|
40761
41230
|
}
|
|
40762
41231
|
|
|
41232
|
+
lux-tenant-logo .lux-tenant-logo-error-container {
|
|
41233
|
+
display: flex;
|
|
41234
|
+
flex: 0 1 auto;
|
|
41235
|
+
}
|
|
41236
|
+
lux-tenant-logo .lux-tenant-logo-error-container .lux-tenant-logo-error {
|
|
41237
|
+
display: flex;
|
|
41238
|
+
flex: 0 1 auto;
|
|
41239
|
+
align-items: center;
|
|
41240
|
+
padding: 4px;
|
|
41241
|
+
color: var(--lux-theme-custom-gray);
|
|
41242
|
+
background-color: var(--lux-theme-custom-on-gray);
|
|
41243
|
+
font-size: 1rem;
|
|
41244
|
+
font-style: italic;
|
|
41245
|
+
border: 1px solid var(--lux-theme-app-border-color);
|
|
41246
|
+
border-radius: var(--lux-theme-app-border-radius);
|
|
41247
|
+
}
|
|
41248
|
+
lux-tenant-logo img:focus-visible,
|
|
41249
|
+
lux-tenant-logo .lux-tenant-logo-error:focus-visible {
|
|
41250
|
+
outline: var(--lux-theme-outline-dark);
|
|
41251
|
+
border-radius: var(--lux-theme-app-border-radius);
|
|
41252
|
+
}
|
|
41253
|
+
|
|
40763
41254
|
lux-textarea-ac textarea {
|
|
40764
41255
|
font: inherit;
|
|
40765
41256
|
color: currentColor;
|
|
@@ -40885,18 +41376,18 @@ lux-tile {
|
|
|
40885
41376
|
lux-tile .lux-notification-new {
|
|
40886
41377
|
background-color: var(--lux-theme-accent-70);
|
|
40887
41378
|
}
|
|
40888
|
-
lux-tile mat-card[class~=lux-cursor].mat-mdc-card {
|
|
41379
|
+
lux-tile mat-card[class~=lux-cursor-pointer].mat-mdc-card {
|
|
40889
41380
|
border-radius: var(--lux-theme-tile-border-radius);
|
|
40890
41381
|
overflow: hidden !important;
|
|
40891
41382
|
padding: 24px;
|
|
40892
41383
|
}
|
|
40893
|
-
lux-tile mat-card[class~=lux-cursor] .mat-mdc-card-content {
|
|
41384
|
+
lux-tile mat-card[class~=lux-cursor-pointer] .mat-mdc-card-content {
|
|
40894
41385
|
padding-top: 0px !important;
|
|
40895
41386
|
}
|
|
40896
|
-
lux-tile mat-card[class~=lux-cursor].mat-mdc-card.lux-tile-mobile {
|
|
41387
|
+
lux-tile mat-card[class~=lux-cursor-pointer].mat-mdc-card.lux-tile-mobile {
|
|
40897
41388
|
padding: 14px;
|
|
40898
41389
|
}
|
|
40899
|
-
lux-tile mat-card[class~=lux-cursor].mat-mdc-card::before {
|
|
41390
|
+
lux-tile mat-card[class~=lux-cursor-pointer].mat-mdc-card::before {
|
|
40900
41391
|
content: "";
|
|
40901
41392
|
position: absolute;
|
|
40902
41393
|
display: block;
|
|
@@ -40907,7 +41398,7 @@ lux-tile mat-card[class~=lux-cursor].mat-mdc-card::before {
|
|
|
40907
41398
|
background-color: var(--lux-theme-tile-bottom-line-color);
|
|
40908
41399
|
transition: 0.2s ease;
|
|
40909
41400
|
}
|
|
40910
|
-
lux-tile mat-card[class~=lux-cursor].lux-badge-notification.mat-badge-after.mat-badge-above.mat-badge-medium.mat-badge-overlap .mat-badge-content {
|
|
41401
|
+
lux-tile mat-card[class~=lux-cursor-pointer].lux-badge-notification.mat-badge-after.mat-badge-above.mat-badge-medium.mat-badge-overlap .mat-badge-content {
|
|
40911
41402
|
right: 2px;
|
|
40912
41403
|
top: 5px;
|
|
40913
41404
|
padding-top: 0px;
|
|
@@ -41012,18 +41503,18 @@ lux-tile .lux-tile-small-font ::ng-deep .mat-badge-content {
|
|
|
41012
41503
|
top: -4px !important;
|
|
41013
41504
|
right: -4px !important;
|
|
41014
41505
|
}
|
|
41015
|
-
lux-tile mat-card[class~=lux-cursor].mat-mdc-card:focus-visible {
|
|
41506
|
+
lux-tile mat-card[class~=lux-cursor-pointer].mat-mdc-card:focus-visible {
|
|
41016
41507
|
box-shadow: 0 0 0 2px #2e8533, 0 0 8px 2px #2e8533 !important;
|
|
41017
41508
|
outline: 0 !important;
|
|
41018
41509
|
}
|
|
41019
|
-
lux-tile mat-card[class~=lux-cursor]:hover {
|
|
41510
|
+
lux-tile mat-card[class~=lux-cursor-pointer]:hover {
|
|
41020
41511
|
background-image: none !important;
|
|
41021
41512
|
background-color: white !important;
|
|
41022
41513
|
}
|
|
41023
|
-
lux-tile mat-card[class~=lux-cursor]:hover h2 {
|
|
41514
|
+
lux-tile mat-card[class~=lux-cursor-pointer]:hover h2 {
|
|
41024
41515
|
color: var(--lux-theme-tile-font-hover-color);
|
|
41025
41516
|
}
|
|
41026
|
-
lux-tile mat-card[class~=lux-cursor].mat-mdc-card:hover::before {
|
|
41517
|
+
lux-tile mat-card[class~=lux-cursor-pointer].mat-mdc-card:hover::before {
|
|
41027
41518
|
height: 14px;
|
|
41028
41519
|
}
|
|
41029
41520
|
|
|
@@ -41083,6 +41574,10 @@ lux-toggle-ac.lux-form-control-readonly .mdc-switch__handle {
|
|
|
41083
41574
|
pointer-events: none;
|
|
41084
41575
|
}
|
|
41085
41576
|
|
|
41577
|
+
lux-timepicker button:not(:disabled) .lux-timepicker-toggle-icon {
|
|
41578
|
+
color: var(--lux-theme-datepicker-icon-color);
|
|
41579
|
+
}
|
|
41580
|
+
|
|
41086
41581
|
.lux-popup-panel {
|
|
41087
41582
|
background-color: var(--lux-theme-popup-background-color);
|
|
41088
41583
|
border: 1px solid var(--lux-theme-app-border-color);
|