@ihk-gfi/lux-components-theme 21.4.0 → 21.6.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.
@@ -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: ;
1641
1644
  --lux-theme-warn-color: #ba1a1a;
@@ -3585,14 +3588,6 @@ lux-card.lux-card-grow mat-card-content {
3585
3588
  opacity: 0.6;
3586
3589
  }
3587
3590
 
3588
- .lux-overflow-y-hidden {
3589
- overflow-y: hidden;
3590
- }
3591
-
3592
- .lux-overflow-y-auto {
3593
- overflow-y: auto;
3594
- }
3595
-
3596
3591
  .lux-overflow-wrap-break-word {
3597
3592
  overflow-wrap: break-word;
3598
3593
  }
@@ -3660,6 +3655,7 @@ lux-card.lux-card-grow mat-card-content {
3660
3655
  }
3661
3656
 
3662
3657
  /*
3658
+ @deprecated Verwende stattdessen .lux-z-{n} aus _luxutilities.scss (z.B. .lux-z-100).
3663
3659
  Erstellt die Z-Indizes.
3664
3660
  Um weitere Z-Indizes anzulegen, die Variable zindexSteps um die entsprechenden Werte ergaenzen.
3665
3661
  */
@@ -36330,6 +36326,386 @@ lux-table .lux-table .lux-table-content .mat-mdc-row:nth-child(odd).lux-text-hig
36330
36326
  grid-auto-rows: minmax(0, 1fr);
36331
36327
  }
36332
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
+
36333
36709
  lux-accordion {
36334
36710
  --mat-expansion-container-text-color: var(--lux-theme-dark-primary-text);
36335
36711
  }
@@ -37756,17 +38132,17 @@ lux-card .lux-card .lux-card-actions {
37756
38132
  width: 100%;
37757
38133
  }
37758
38134
  }
37759
- lux-card .lux-card[class~=lux-cursor]:hover {
38135
+ lux-card .lux-card[class~=lux-cursor-pointer]:hover {
37760
38136
  background-image: var(--lux-theme-app-gradient-reverse);
37761
38137
  background-color: #ffffff;
37762
38138
  border-color: var(--lux-theme-dark-primary-text);
37763
38139
  }
37764
- lux-card .lux-card[class~=lux-cursor]:hover .lux-card-content-expanded {
38140
+ lux-card .lux-card[class~=lux-cursor-pointer]:hover .lux-card-content-expanded {
37765
38141
  background-image: var(--lux-theme-app-gradient-reverse);
37766
38142
  background-color: #ffffff;
37767
38143
  border-color: var(--lux-theme-dark-primary-text);
37768
38144
  }
37769
- lux-card .lux-card[class~=lux-cursor]:focus-visible {
38145
+ lux-card .lux-card[class~=lux-cursor-pointer]:focus-visible {
37770
38146
  outline: var(--lux-theme-outline-dark);
37771
38147
  outline-offset: calc(var(--lux-theme-outline-width) * -1);
37772
38148
  }
@@ -38566,7 +38942,7 @@ lux-filter-load-dialog lux-dialog-actions.lux-filter-dialog-action {
38566
38942
  max-width: 100%;
38567
38943
  box-sizing: border-box;
38568
38944
  gap: 12px;
38569
- place-content: center end;
38945
+ place-content: center center;
38570
38946
  align-items: center;
38571
38947
  }
38572
38948
 
@@ -38606,6 +38982,7 @@ lux-input-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-co
38606
38982
  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,
38607
38983
  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,
38608
38984
  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,
38985
+ 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,
38609
38986
  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,
38610
38987
  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,
38611
38988
  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 {
@@ -38618,6 +38995,7 @@ lux-input-ac lux-form-control-wrapper .lux-form-control-wrapper:not(.lux-form-co
38618
38995
  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,
38619
38996
  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,
38620
38997
  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,
38998
+ 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,
38621
38999
  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,
38622
39000
  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,
38623
39001
  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 {
@@ -38949,6 +39327,44 @@ lux-input-ac lux-input-ac-suffix {
38949
39327
  white-space: nowrap;
38950
39328
  }
38951
39329
 
39330
+ lux-button.lux-icon-button.lux-input-clear-btn {
39331
+ display: flex;
39332
+ --mat-icon-button-container-shape: var(--lux-theme-button-icon-container-shape);
39333
+ --mat-icon-button-icon-color: var(--lux-theme-primary-color);
39334
+ --mat-icon-button-icon-size: var(--mat-icon-button-icon-size);
39335
+ --mat-icon-button-state-layer-size: 40px;
39336
+ --mat-icon-button-state-layer-color: var(--mat-sys-on-surface-variant);
39337
+ --mat-icon-button-touch-target-size: calc(var(--lux-theme-form-min-height) - 2 * var(--lux-theme-form-border-width));
39338
+ }
39339
+ lux-button.lux-icon-button.lux-input-clear-btn lux-icon,
39340
+ lux-button.lux-icon-button.lux-input-clear-btn .lux-icon {
39341
+ width: var(--mat-icon-button-icon-size);
39342
+ height: var(--mat-icon-button-icon-size);
39343
+ }
39344
+ lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus,
39345
+ lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus-visible {
39346
+ outline-color: transparent !important;
39347
+ }
39348
+
39349
+ .lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn {
39350
+ display: flex;
39351
+ --mat-icon-button-container-shape: var(--lux-theme-button-icon-container-shape);
39352
+ --mat-icon-button-icon-color: var(--lux-theme-primary-color);
39353
+ --mat-icon-button-icon-size: var(--mat-icon-button-icon-size);
39354
+ --mat-icon-button-state-layer-size: 36px;
39355
+ --mat-icon-button-state-layer-color: var(--mat-sys-on-surface-variant);
39356
+ --mat-icon-button-touch-target-size: calc(var(--lux-theme-form-dense-min-height) - 2 * var(--lux-theme-form-border-width));
39357
+ }
39358
+ .lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn lux-icon,
39359
+ .lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn .lux-icon {
39360
+ width: var(--mat-icon-button-icon-size);
39361
+ height: var(--mat-icon-button-icon-size);
39362
+ }
39363
+ .lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus,
39364
+ .lux-dense-authentic lux-button.lux-icon-button.lux-input-clear-btn button:not([disabled]):focus-visible {
39365
+ outline-color: transparent !important;
39366
+ }
39367
+
38952
39368
  lux-link-plain {
38953
39369
  display: inline-flex;
38954
39370
  align-items: baseline;
@@ -39073,12 +39489,12 @@ lux-list lux-list-item lux-card.lux-list-item-selected mat-card.mat-mdc-card.lux
39073
39489
  position: relative;
39074
39490
  border-radius: 4px;
39075
39491
  }
39076
- lux-list lux-list-item lux-card:not(.lux-list-item-selected) mat-card[class~=lux-cursor]:not([class*=mat-elevation-z]) {
39492
+ lux-list lux-list-item lux-card:not(.lux-list-item-selected) mat-card[class~=lux-cursor-pointer]:not([class*=mat-elevation-z]) {
39077
39493
  -webkit-box-sizing: border-box;
39078
39494
  -moz-box-sizing: border-box;
39079
39495
  box-sizing: border-box;
39080
39496
  }
39081
- lux-list lux-list-item lux-card:not(.lux-list-item-selected) mat-card[class~=lux-cursor]:not([class*=mat-elevation-z]):hover {
39497
+ lux-list lux-list-item lux-card:not(.lux-list-item-selected) mat-card[class~=lux-cursor-pointer]:not([class*=mat-elevation-z]):hover {
39082
39498
  border: 1px solid var(--lux-theme-primary-color);
39083
39499
  background: var(--lux-theme-app-gradient-reverse);
39084
39500
  background-color: #fff !important;
@@ -39426,7 +39842,9 @@ lux-menu .lux-menu-trigger > lux-button button {
39426
39842
  letter-spacing: 1.25px;
39427
39843
  }
39428
39844
  .lux-menu-panel .lux-menu-item-icon {
39429
- display: inline-block;
39845
+ display: inline-flex;
39846
+ align-items: center;
39847
+ justify-content: center;
39430
39848
  align-self: center;
39431
39849
  vertical-align: middle;
39432
39850
  width: var(--lux-theme-menu-item-icon-size);
@@ -39434,13 +39852,24 @@ lux-menu .lux-menu-trigger > lux-button button {
39434
39852
  }
39435
39853
  .lux-menu-panel .lux-menu-item-icon .lux-icon,
39436
39854
  .lux-menu-panel .lux-menu-item-icon mat-icon {
39855
+ display: inline-flex;
39856
+ align-items: center;
39857
+ justify-content: center;
39437
39858
  width: 100%;
39438
39859
  height: 100%;
39860
+ max-width: var(--lux-theme-menu-item-icon-size);
39861
+ max-height: var(--lux-theme-menu-item-icon-size);
39439
39862
  font-size: var(--lux-theme-menu-item-icon-size);
39440
39863
  }
39441
39864
  .lux-menu-panel .lux-menu-item-icon mat-icon {
39442
39865
  margin: 0;
39443
39866
  }
39867
+ .lux-menu-panel .lux-menu-item-icon mat-icon svg {
39868
+ width: 100%;
39869
+ height: 100%;
39870
+ max-width: var(--lux-theme-menu-item-icon-size);
39871
+ max-height: var(--lux-theme-menu-item-icon-size);
39872
+ }
39444
39873
 
39445
39874
  .lux-menu-section-panel,
39446
39875
  .lux-menu-section-panel:not(.lux-menu-panel-large) {
@@ -39557,8 +39986,14 @@ lux-menu .lux-menu-trigger > lux-button button {
39557
39986
  }
39558
39987
  .lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon .lux-icon,
39559
39988
  .lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon mat-icon {
39989
+ max-width: var(--lux-theme-menu-item-icon-size-large);
39990
+ max-height: var(--lux-theme-menu-item-icon-size-large);
39560
39991
  font-size: var(--lux-theme-menu-item-icon-size-large);
39561
39992
  }
39993
+ .lux-menu-section-panel.lux-menu-panel-large .lux-menu-item-icon mat-icon svg {
39994
+ max-width: var(--lux-theme-menu-item-icon-size-large);
39995
+ max-height: var(--lux-theme-menu-item-icon-size-large);
39996
+ }
39562
39997
 
39563
39998
  lux-message-box {
39564
39999
  display: block;
@@ -39702,8 +40137,22 @@ lux-message-box div.lux-message-box-content .lux-message-container:not(.lux-mess
39702
40137
  line-height: normal;
39703
40138
  }
39704
40139
  }
39705
- :root {
40140
+ lux-paginator {
39706
40141
  --mat-paginator-container-background-color: transparent;
40142
+ --mat-form-field-filled-container-color: transparent;
40143
+ }
40144
+ lux-paginator mat-paginator.lux-no-wrap .mat-mdc-paginator-container {
40145
+ flex-wrap: nowrap;
40146
+ }
40147
+ lux-paginator mat-paginator .mat-mdc-paginator-range-label {
40148
+ margin-left: 0.25rem;
40149
+ margin-right: 0.25rem;
40150
+ }
40151
+ lux-paginator mat-paginator.lux-dense {
40152
+ --mat-form-field-container-vertical-padding: 4px;
40153
+ }
40154
+ lux-paginator mat-paginator.lux-dense .mat-mdc-form-field-infix {
40155
+ min-height: 0;
39707
40156
  }
39708
40157
 
39709
40158
  lux-progress {
@@ -40801,8 +41250,18 @@ lux-tabs .lux-counter-offset {
40801
41250
  lux-tabs .lux-label-lower {
40802
41251
  padding-top: 4px;
40803
41252
  }
41253
+ lux-tabs .lux-notification-color-primary {
41254
+ background-color: var(--lux-theme-primary-color);
41255
+ }
41256
+ lux-tabs .lux-notification-color-accent,
40804
41257
  lux-tabs .lux-notification-new {
40805
- background-color: var(--lux-theme-custom-green);
41258
+ background-color: var(--lux-theme-accent-70);
41259
+ }
41260
+ lux-tabs .lux-notification-color-warn {
41261
+ background-color: var(--mat-sys-error);
41262
+ }
41263
+ lux-tabs .lux-notification-color-default {
41264
+ background-color: #605e5e;
40806
41265
  }
40807
41266
  lux-tabs .lux-tabs-notification-icon {
40808
41267
  border: 2px solid var(--lux-theme-app-content-bg);
@@ -41063,18 +41522,18 @@ lux-tile {
41063
41522
  lux-tile .lux-notification-new {
41064
41523
  background-color: var(--lux-theme-accent-70);
41065
41524
  }
41066
- lux-tile mat-card[class~=lux-cursor].mat-mdc-card {
41525
+ lux-tile mat-card[class~=lux-cursor-pointer].mat-mdc-card {
41067
41526
  border-radius: var(--lux-theme-tile-border-radius);
41068
41527
  overflow: hidden !important;
41069
41528
  padding: 24px;
41070
41529
  }
41071
- lux-tile mat-card[class~=lux-cursor] .mat-mdc-card-content {
41530
+ lux-tile mat-card[class~=lux-cursor-pointer] .mat-mdc-card-content {
41072
41531
  padding-top: 0px !important;
41073
41532
  }
41074
- lux-tile mat-card[class~=lux-cursor].mat-mdc-card.lux-tile-mobile {
41533
+ lux-tile mat-card[class~=lux-cursor-pointer].mat-mdc-card.lux-tile-mobile {
41075
41534
  padding: 14px;
41076
41535
  }
41077
- lux-tile mat-card[class~=lux-cursor].mat-mdc-card::before {
41536
+ lux-tile mat-card[class~=lux-cursor-pointer].mat-mdc-card::before {
41078
41537
  content: "";
41079
41538
  position: absolute;
41080
41539
  display: block;
@@ -41085,7 +41544,7 @@ lux-tile mat-card[class~=lux-cursor].mat-mdc-card::before {
41085
41544
  background-color: var(--lux-theme-tile-bottom-line-color);
41086
41545
  transition: 0.2s ease;
41087
41546
  }
41088
- 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 {
41547
+ 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 {
41089
41548
  right: 2px;
41090
41549
  top: 5px;
41091
41550
  padding-top: 0px;
@@ -41190,18 +41649,18 @@ lux-tile .lux-tile-small-font ::ng-deep .mat-badge-content {
41190
41649
  top: -4px !important;
41191
41650
  right: -4px !important;
41192
41651
  }
41193
- lux-tile mat-card[class~=lux-cursor].mat-mdc-card:focus-visible {
41652
+ lux-tile mat-card[class~=lux-cursor-pointer].mat-mdc-card:focus-visible {
41194
41653
  box-shadow: 0 0 0 2px #2e8533, 0 0 8px 2px #2e8533 !important;
41195
41654
  outline: 0 !important;
41196
41655
  }
41197
- lux-tile mat-card[class~=lux-cursor]:hover {
41656
+ lux-tile mat-card[class~=lux-cursor-pointer]:hover {
41198
41657
  background-image: none !important;
41199
41658
  background-color: white !important;
41200
41659
  }
41201
- lux-tile mat-card[class~=lux-cursor]:hover h2 {
41660
+ lux-tile mat-card[class~=lux-cursor-pointer]:hover h2 {
41202
41661
  color: var(--lux-theme-tile-font-hover-color);
41203
41662
  }
41204
- lux-tile mat-card[class~=lux-cursor].mat-mdc-card:hover::before {
41663
+ lux-tile mat-card[class~=lux-cursor-pointer].mat-mdc-card:hover::before {
41205
41664
  height: 14px;
41206
41665
  }
41207
41666
 
@@ -41250,6 +41709,10 @@ lux-tile-ac:hover .lux-tile-ac {
41250
41709
  background-image: var(--lux-theme-tile-ac-hover-bg-color);
41251
41710
  }
41252
41711
 
41712
+ lux-timepicker button:not(:disabled) .lux-timepicker-toggle-icon {
41713
+ color: var(--lux-theme-datepicker-icon-color);
41714
+ }
41715
+
41253
41716
  lux-toggle-ac {
41254
41717
  --mat-slide-toggle-label-text-size: var(--lux-theme-form-control-font-size);
41255
41718
  --mat-slide-toggle-disabled-label-text-color: var(--lux-theme-dark-disabled-text);