@progress/kendo-theme-classic 5.0.0-beta.2 → 5.0.0-beta.3

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/dist/all.css CHANGED
@@ -1316,7 +1316,7 @@ kendo-sortable {
1316
1316
  }
1317
1317
 
1318
1318
  .k-h5 {
1319
- font-size: 18px;
1319
+ font-size: 16px;
1320
1320
  font-family: inherit;
1321
1321
  line-height: 26px;
1322
1322
  font-weight: 700;
@@ -5820,11 +5820,11 @@ kendo-sortable {
5820
5820
  }
5821
5821
 
5822
5822
  .k-fs-md {
5823
- font-size: 16px !important;
5823
+ font-size: 14px !important;
5824
5824
  }
5825
5825
 
5826
5826
  .k-fs-lg {
5827
- font-size: 18px !important;
5827
+ font-size: 16px !important;
5828
5828
  }
5829
5829
 
5830
5830
  .k-fs-xl {
@@ -10475,6 +10475,362 @@ kendo-sortable {
10475
10475
  background-color: #d9d9d9;
10476
10476
  }
10477
10477
 
10478
+ .k-checkbox {
10479
+ margin: 0;
10480
+ padding: 0;
10481
+ line-height: initial;
10482
+ border-width: 1px;
10483
+ border-style: solid;
10484
+ outline: 0;
10485
+ background-position: center;
10486
+ background-repeat: no-repeat;
10487
+ background-size: contain;
10488
+ display: inline-block;
10489
+ flex: none;
10490
+ vertical-align: middle;
10491
+ position: relative;
10492
+ cursor: pointer;
10493
+ -webkit-appearance: none;
10494
+ }
10495
+
10496
+ .k-checkbox-sm {
10497
+ width: 12px;
10498
+ height: 12px;
10499
+ }
10500
+
10501
+ .k-checkbox-sm + .k-checkbox-label .k-ripple {
10502
+ top: 6px;
10503
+ left: 6px;
10504
+ width: 30px;
10505
+ height: 30px;
10506
+ }
10507
+
10508
+ .k-checkbox-sm::before {
10509
+ content: "";
10510
+ width: 10px;
10511
+ height: 10px;
10512
+ font-size: 10px;
10513
+ font-family: "WebComponentsIcons", monospace;
10514
+ line-height: 1;
10515
+ transform: scale(0) translate(-50%, -50%);
10516
+ overflow: hidden;
10517
+ position: absolute;
10518
+ top: 50%;
10519
+ left: 50%;
10520
+ }
10521
+
10522
+ .k-checkbox-md {
10523
+ width: 16px;
10524
+ height: 16px;
10525
+ }
10526
+
10527
+ .k-checkbox-md + .k-checkbox-label .k-ripple {
10528
+ top: 8px;
10529
+ left: 8px;
10530
+ width: 40px;
10531
+ height: 40px;
10532
+ }
10533
+
10534
+ .k-checkbox-md::before {
10535
+ content: "";
10536
+ width: 14px;
10537
+ height: 14px;
10538
+ font-size: 14px;
10539
+ font-family: "WebComponentsIcons", monospace;
10540
+ line-height: 1;
10541
+ transform: scale(0) translate(-50%, -50%);
10542
+ overflow: hidden;
10543
+ position: absolute;
10544
+ top: 50%;
10545
+ left: 50%;
10546
+ }
10547
+
10548
+ .k-checkbox-lg {
10549
+ width: 24px;
10550
+ height: 24px;
10551
+ }
10552
+
10553
+ .k-checkbox-lg + .k-checkbox-label .k-ripple {
10554
+ top: 12px;
10555
+ left: 12px;
10556
+ width: 60px;
10557
+ height: 60px;
10558
+ }
10559
+
10560
+ .k-checkbox-lg::before {
10561
+ content: "";
10562
+ width: 22px;
10563
+ height: 22px;
10564
+ font-size: 22px;
10565
+ font-family: "WebComponentsIcons", monospace;
10566
+ line-height: 1;
10567
+ transform: scale(0) translate(-50%, -50%);
10568
+ overflow: hidden;
10569
+ position: absolute;
10570
+ top: 50%;
10571
+ left: 50%;
10572
+ }
10573
+
10574
+ .k-checkbox:checked::before,
10575
+ .k-checkbox.k-checked::before {
10576
+ transform: scale(1) translate(-50%, -50%);
10577
+ }
10578
+
10579
+ .k-checkbox:indeterminate::before,
10580
+ .k-checkbox.k-indeterminate::before {
10581
+ content: "";
10582
+ transform: scale(1) translate(-50%, -50%);
10583
+ }
10584
+
10585
+ .k-checkbox:disabled,
10586
+ .k-checkbox.k-disabled,
10587
+ .k-checkbox:disabled + .k-checkbox-label,
10588
+ .k-checkbox.k-disabled + .k-checkbox-label {
10589
+ outline: none;
10590
+ cursor: default;
10591
+ opacity: 0.6;
10592
+ filter: grayscale(0.1);
10593
+ pointer-events: none;
10594
+ box-shadow: none;
10595
+ }
10596
+
10597
+ .k-checkbox-wrap {
10598
+ flex: none;
10599
+ display: inline-flex;
10600
+ flex-flow: row nowrap;
10601
+ gap: 0;
10602
+ align-items: center;
10603
+ }
10604
+
10605
+ .k-checkbox-wrap::before {
10606
+ content: "\200b";
10607
+ width: 0px;
10608
+ overflow: hidden;
10609
+ flex: none;
10610
+ display: inline-block;
10611
+ vertical-align: top;
10612
+ }
10613
+
10614
+ .k-checkbox-label {
10615
+ margin: 0;
10616
+ padding: 0;
10617
+ line-height: 17px;
10618
+ display: inline-flex;
10619
+ align-items: flex-start;
10620
+ vertical-align: middle;
10621
+ position: relative;
10622
+ cursor: pointer;
10623
+ }
10624
+
10625
+ .k-checkbox-label .k-label {
10626
+ cursor: pointer;
10627
+ }
10628
+
10629
+ .k-checkbox-label .k-ripple {
10630
+ right: auto;
10631
+ bottom: auto;
10632
+ transform: translate(-50%, -50%);
10633
+ border-radius: 50%;
10634
+ visibility: hidden !important;
10635
+ }
10636
+
10637
+ .k-checkbox-label .k-ripple-blob {
10638
+ top: 50% !important;
10639
+ left: 50% !important;
10640
+ width: 200% !important;
10641
+ height: 200% !important;
10642
+ }
10643
+
10644
+ .k-checkbox + .k-checkbox-label {
10645
+ display: inline;
10646
+ }
10647
+
10648
+ .k-checkbox + .k-checkbox-label,
10649
+ .k-checkbox-label + .k-checkbox {
10650
+ margin-left: 4px;
10651
+ }
10652
+
10653
+ .k-checkbox-label > .k-checkbox {
10654
+ margin-right: 4px;
10655
+ flex-shrink: 0;
10656
+ }
10657
+
10658
+ kendo-label.k-checkbox-label > .k-checkbox:last-child {
10659
+ margin-right: 0;
10660
+ }
10661
+
10662
+ kendo-label.k-checkbox-label > .k-label:first-child {
10663
+ margin-right: 4px;
10664
+ }
10665
+
10666
+ kendo-label.k-checkbox-label > .k-label {
10667
+ display: inline;
10668
+ }
10669
+
10670
+ .k-checkbox-label:empty {
10671
+ display: none !important;
10672
+ }
10673
+
10674
+ .k-checkbox-label.k-no-text {
10675
+ min-width: 1px;
10676
+ }
10677
+
10678
+ .k-checkbox-list {
10679
+ margin: 0;
10680
+ padding: 0;
10681
+ display: flex;
10682
+ flex-flow: column nowrap;
10683
+ gap: 0;
10684
+ list-style: none;
10685
+ }
10686
+
10687
+ .k-checkbox-item,
10688
+ .k-checkbox-list-item {
10689
+ padding: 4px 0px;
10690
+ display: flex;
10691
+ flex-flow: row nowrap;
10692
+ align-items: center;
10693
+ align-content: center;
10694
+ gap: 4px;
10695
+ }
10696
+
10697
+ .k-checkbox-item .k-checkbox-label,
10698
+ .k-checkbox-list-item .k-checkbox-label {
10699
+ line-height: inherit;
10700
+ }
10701
+
10702
+ .k-checkbox-list-horizontal,
10703
+ .k-checkbox-list.k-list-horizontal {
10704
+ display: flex;
10705
+ flex-flow: row wrap;
10706
+ gap: 16px;
10707
+ }
10708
+
10709
+ [dir="rtl"] .k-checkbox + .k-checkbox-label,
10710
+ [dir="rtl"] .k-checkbox-label + .k-checkbox {
10711
+ margin-left: 0;
10712
+ margin-right: 4px;
10713
+ }
10714
+
10715
+ [dir="rtl"] .k-checkbox-label > .k-checkbox {
10716
+ margin-right: 0;
10717
+ margin-left: 4px;
10718
+ }
10719
+
10720
+ [dir="rtl"] kendo-label.k-checkbox-label > .k-checkbox:last-child {
10721
+ margin-left: 0;
10722
+ }
10723
+
10724
+ [dir="rtl"] kendo-label.k-checkbox-label > .k-label:first-child {
10725
+ margin-right: 0;
10726
+ margin-left: 4px;
10727
+ }
10728
+
10729
+ .k-ripple-container .k-checkbox-sm::after {
10730
+ content: "";
10731
+ display: block;
10732
+ position: absolute;
10733
+ left: 0;
10734
+ top: 0;
10735
+ width: 36px;
10736
+ height: 36px;
10737
+ margin-left: -14px;
10738
+ margin-top: -14px;
10739
+ border-radius: 100%;
10740
+ z-index: 1;
10741
+ transform: scale(0);
10742
+ }
10743
+
10744
+ .k-ripple-container .k-checkbox:disabled::after,
10745
+ .k-ripple-container .k-checkbox.k-disabled::after {
10746
+ display: none;
10747
+ }
10748
+
10749
+ .k-ripple-container .k-checkbox-md::after {
10750
+ content: "";
10751
+ display: block;
10752
+ position: absolute;
10753
+ left: 0;
10754
+ top: 0;
10755
+ width: 48px;
10756
+ height: 48px;
10757
+ margin-left: -18px;
10758
+ margin-top: -18px;
10759
+ border-radius: 100%;
10760
+ z-index: 1;
10761
+ transform: scale(0);
10762
+ }
10763
+
10764
+ .k-ripple-container .k-checkbox:disabled::after,
10765
+ .k-ripple-container .k-checkbox.k-disabled::after {
10766
+ display: none;
10767
+ }
10768
+
10769
+ .k-ripple-container .k-checkbox-lg::after {
10770
+ content: "";
10771
+ display: block;
10772
+ position: absolute;
10773
+ left: 0;
10774
+ top: 0;
10775
+ width: 72px;
10776
+ height: 72px;
10777
+ margin-left: -26px;
10778
+ margin-top: -26px;
10779
+ border-radius: 100%;
10780
+ z-index: 1;
10781
+ transform: scale(0);
10782
+ }
10783
+
10784
+ .k-ripple-container .k-checkbox:disabled::after,
10785
+ .k-ripple-container .k-checkbox.k-disabled::after {
10786
+ display: none;
10787
+ }
10788
+
10789
+ .k-checkbox {
10790
+ border-color: #cacaca;
10791
+ color: transparent;
10792
+ background-color: #ffffff;
10793
+ }
10794
+
10795
+ .k-checkbox:focus,
10796
+ .k-checkbox.k-focus {
10797
+ box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
10798
+ }
10799
+
10800
+ .k-checkbox:indeterminate,
10801
+ .k-checkbox.k-indeterminate {
10802
+ border-color: #cacaca;
10803
+ color: #f35800;
10804
+ background-color: #ffffff;
10805
+ }
10806
+
10807
+ .k-checkbox:checked,
10808
+ .k-checkbox.k-checked {
10809
+ border-color: #f35800;
10810
+ color: white;
10811
+ background-color: #f35800;
10812
+ }
10813
+
10814
+ .k-checkbox:checked:focus,
10815
+ .k-checkbox.k-checked.k-focus {
10816
+ box-shadow: 0 0 0 2px rgba(243, 88, 0, 0.3);
10817
+ }
10818
+
10819
+ .k-checkbox:invalid,
10820
+ .k-checkbox.k-invalid {
10821
+ border-color: rgba(217, 40, 0, 0.5);
10822
+ }
10823
+
10824
+ .k-checkbox:invalid + .k-checkbox-label,
10825
+ .k-checkbox.k-invalid + .k-checkbox-label {
10826
+ color: #d92800;
10827
+ }
10828
+
10829
+ .k-ripple-container .k-checkbox::after {
10830
+ background: #f35800;
10831
+ opacity: 0.3;
10832
+ }
10833
+
10478
10834
  .k-list {
10479
10835
  margin: 0;
10480
10836
  padding: 0;
@@ -10495,6 +10851,9 @@ kendo-sortable {
10495
10851
  border-width: 0 0 1px;
10496
10852
  border-style: solid;
10497
10853
  white-space: nowrap;
10854
+ display: flex;
10855
+ flex-flow: row nowrap;
10856
+ align-items: center;
10498
10857
  flex: none;
10499
10858
  overflow: hidden;
10500
10859
  text-overflow: ellipsis;
@@ -10521,7 +10880,7 @@ kendo-sortable {
10521
10880
  .k-list-item, .k-list-optionlabel {
10522
10881
  border: 0;
10523
10882
  outline: none;
10524
- cursor: default;
10883
+ cursor: pointer;
10525
10884
  display: flex;
10526
10885
  flex-flow: row nowrap;
10527
10886
  align-items: center;
@@ -10533,6 +10892,10 @@ kendo-sortable {
10533
10892
  transition-timing-function: ease;
10534
10893
  }
10535
10894
 
10895
+ .k-list-item .k-checkbox-wrap, .k-list-optionlabel .k-checkbox-wrap {
10896
+ align-self: flex-start;
10897
+ }
10898
+
10536
10899
  .k-list-item.k-first::before, .k-first.k-list-optionlabel::before {
10537
10900
  content: "";
10538
10901
  border-width: 1px 0 0;
@@ -10587,7 +10950,8 @@ kendo-sortable {
10587
10950
  width: 100%;
10588
10951
  }
10589
10952
 
10590
- .k-virtual-list .k-list-item-text {
10953
+ .k-virtual-list .k-list-item-text,
10954
+ .k-virtual-list .k-list-header-text {
10591
10955
  white-space: nowrap;
10592
10956
  overflow: hidden;
10593
10957
  text-overflow: ellipsis;
@@ -10618,7 +10982,7 @@ kendo-sortable {
10618
10982
  }
10619
10983
 
10620
10984
  .k-list-md {
10621
- font-size: 16px;
10985
+ font-size: 14px;
10622
10986
  }
10623
10987
 
10624
10988
  .k-list-md .k-list-group-sticky-header {
@@ -10634,7 +10998,7 @@ kendo-sortable {
10634
10998
  }
10635
10999
 
10636
11000
  .k-list-lg {
10637
- font-size: 16px;
11001
+ font-size: 14px;
10638
11002
  }
10639
11003
 
10640
11004
  .k-list-lg .k-list-group-sticky-header {
@@ -11448,7 +11812,7 @@ kendo-badge-container {
11448
11812
 
11449
11813
  .k-button-lg {
11450
11814
  padding: 6px 12px;
11451
- font-size: 18px;
11815
+ font-size: 16px;
11452
11816
  line-height: 1.5;
11453
11817
  }
11454
11818
 
@@ -11475,8 +11839,8 @@ kendo-badge-container {
11475
11839
  }
11476
11840
 
11477
11841
  .k-icon-button.k-button-lg > .k-button-icon {
11478
- min-width: 27px;
11479
- min-height: 27px;
11842
+ min-width: 24px;
11843
+ min-height: 24px;
11480
11844
  }
11481
11845
 
11482
11846
  .k-button-square {
@@ -11677,7 +12041,7 @@ kendo-badge-container {
11677
12041
  }
11678
12042
 
11679
12043
  .k-button::after {
11680
- border-radius: 2px;
12044
+ border-radius: inherit;
11681
12045
  content: "";
11682
12046
  opacity: 0;
11683
12047
  display: none;
@@ -11691,32 +12055,6 @@ kendo-badge-container {
11691
12055
  transition: opacity .2s ease-in-out;
11692
12056
  }
11693
12057
 
11694
- .k-ie .k-button,
11695
- .k-ie .k-button-group {
11696
- display: inline-block;
11697
- overflow: visible;
11698
- }
11699
-
11700
- .k-ie .k-button-icontext .k-icon,
11701
- .k-ie .k-button-icontext .k-image,
11702
- .k-ie .k-button-icontext .k-sprite {
11703
- margin: 0 4px 0 0;
11704
- }
11705
-
11706
- .k-ie .k-button-icontext.k-rtl .k-icon,
11707
- .k-ie .k-button-icontext.k-rtl .k-image,
11708
- .k-ie .k-button-icontext.k-rtl .k-sprite,
11709
- .k-rtl .k-ie .k-button-icontext .k-icon,
11710
- .k-rtl .k-ie .k-button-icontext .k-image,
11711
- .k-rtl .k-ie .k-button-icontext .k-sprite, .k-ie .k-button-icontext[dir="rtl"] .k-icon,
11712
- .k-ie .k-button-icontext[dir="rtl"] .k-image,
11713
- .k-ie .k-button-icontext[dir="rtl"] .k-sprite,
11714
- [dir="rtl"] .k-ie .k-button-icontext .k-icon,
11715
- [dir="rtl"] .k-ie .k-button-icontext .k-image,
11716
- [dir="rtl"] .k-ie .k-button-icontext .k-sprite {
11717
- margin: 0 0 0 4px;
11718
- }
11719
-
11720
12058
  .k-button-solid-base {
11721
12059
  border-color: #cacaca;
11722
12060
  color: #272727;
@@ -12515,12 +12853,22 @@ textarea.k-input-inner {
12515
12853
  text-overflow: ellipsis;
12516
12854
  }
12517
12855
 
12856
+ .k-input-value-text::before {
12857
+ content: "\200b";
12858
+ width: 0px;
12859
+ overflow: hidden;
12860
+ flex: none;
12861
+ display: inline-block;
12862
+ vertical-align: top;
12863
+ }
12864
+
12518
12865
  .k-input-values {
12519
12866
  width: 100%;
12520
12867
  padding: 2px 2px;
12521
12868
  cursor: text;
12522
12869
  }
12523
12870
 
12871
+ .k-input-values > .k-searchbar,
12524
12872
  .k-input-values > .k-input-inner {
12525
12873
  margin: -2px -2px;
12526
12874
  }
@@ -12581,6 +12929,11 @@ textarea.k-input-inner {
12581
12929
  opacity: 1;
12582
12930
  }
12583
12931
 
12932
+ .k-clear-value:focus-visible {
12933
+ outline: 1px dotted;
12934
+ outline-offset: -1px;
12935
+ }
12936
+
12584
12937
  .k-input-button {
12585
12938
  width: auto;
12586
12939
  border-width: 0;
@@ -12595,6 +12948,10 @@ textarea.k-input-inner {
12595
12948
  min-height: auto !important;
12596
12949
  }
12597
12950
 
12951
+ .k-input-button:focus {
12952
+ box-shadow: none;
12953
+ }
12954
+
12598
12955
  .k-picker .k-input-button {
12599
12956
  color: inherit;
12600
12957
  background: none;
@@ -12945,13 +13302,11 @@ textarea.k-input-inner {
12945
13302
 
12946
13303
  .k-table-thead,
12947
13304
  .k-table-tbody,
12948
- .k-table-tfoot {
12949
- text-align: inherit;
12950
- }
12951
-
13305
+ .k-table-tfoot,
12952
13306
  .k-table-row,
12953
13307
  .k-table-alt-row {
12954
13308
  border-color: inherit;
13309
+ text-align: inherit;
12955
13310
  }
12956
13311
 
12957
13312
  .k-table-th,
@@ -12974,6 +13329,10 @@ textarea.k-input-inner {
12974
13329
  border-left-width: 0;
12975
13330
  }
12976
13331
 
13332
+ .k-table-th {
13333
+ border-bottom-width: 1px;
13334
+ }
13335
+
12977
13336
  .k-table-header {
12978
13337
  padding-inline-end: var(--kendo-scrollbar-width);
12979
13338
  border-width: 0 0 1px 0;
@@ -12990,9 +13349,26 @@ textarea.k-input-inner {
12990
13349
  width: 100%;
12991
13350
  border-width: 0 1px 0 0;
12992
13351
  border-style: solid;
13352
+ border-color: inherit;
12993
13353
  overflow: hidden;
12994
13354
  }
12995
13355
 
13356
+ .k-table-header > .k-table,
13357
+ .k-table-header-wrap > .k-table {
13358
+ margin-bottom: -1px;
13359
+ }
13360
+
13361
+ .k-table-group-sticky-header {
13362
+ flex: none;
13363
+ }
13364
+
13365
+ .k-table-group-sticky-header .k-table-th {
13366
+ display: flex;
13367
+ flex-flow: row nowrap;
13368
+ align-items: center;
13369
+ align-content: center;
13370
+ }
13371
+
12996
13372
  .k-table-list {
12997
13373
  margin: 0;
12998
13374
  padding: 0;
@@ -13064,7 +13440,8 @@ textarea.k-input-inner {
13064
13440
  right: 0;
13065
13441
  }
13066
13442
 
13067
- .k-virtual-table .k-table-row {
13443
+ .k-virtual-table .k-table-row,
13444
+ .k-virtual-table .k-table-group-row {
13068
13445
  position: absolute;
13069
13446
  width: 100%;
13070
13447
  }
@@ -13094,6 +13471,7 @@ textarea.k-input-inner {
13094
13471
  width: 100%;
13095
13472
  border-width: 0 1px 0 0;
13096
13473
  border-style: solid;
13474
+ border-color: inherit;
13097
13475
  overflow: hidden;
13098
13476
  }
13099
13477
 
@@ -13104,11 +13482,11 @@ textarea.k-input-inner {
13104
13482
 
13105
13483
  .k-table-sm .k-table-th,
13106
13484
  .k-table-sm .k-table-td {
13107
- padding: 4px 4px;
13485
+ padding: 4px 8px;
13108
13486
  }
13109
13487
 
13110
13488
  .k-table-sm .k-table-list .k-table-group-td > span {
13111
- padding: 0 2px;
13489
+ padding: 0 4px;
13112
13490
  }
13113
13491
 
13114
13492
  .k-table-sm .k-table-list .k-table-group-row::before {
@@ -13140,11 +13518,11 @@ textarea.k-input-inner {
13140
13518
 
13141
13519
  .k-table-lg .k-table-th,
13142
13520
  .k-table-lg .k-table-td {
13143
- padding: 12px 12px;
13521
+ padding: 12px 8px;
13144
13522
  }
13145
13523
 
13146
13524
  .k-table-lg .k-table-list .k-table-group-td > span {
13147
- padding: 0 6px;
13525
+ padding: 0 4px;
13148
13526
  }
13149
13527
 
13150
13528
  .k-table-lg .k-table-list .k-table-group-row::before {
@@ -13209,7 +13587,8 @@ textarea.k-input-inner {
13209
13587
  }
13210
13588
 
13211
13589
  .k-table-thead,
13212
- .k-table-header {
13590
+ .k-table-header,
13591
+ .k-table-group-sticky-header {
13213
13592
  border-color: #cacaca;
13214
13593
  color: #272727;
13215
13594
  background-color: #f0f0f0;
@@ -13223,8 +13602,9 @@ textarea.k-input-inner {
13223
13602
  }
13224
13603
 
13225
13604
  .k-table-group-row {
13605
+ border-color: #cacaca;
13226
13606
  color: #272727;
13227
- background-color: #ebebeb;
13607
+ background-color: #f0f0f0;
13228
13608
  }
13229
13609
 
13230
13610
  .k-table-group-td > span {
@@ -13255,6 +13635,31 @@ textarea.k-input-inner {
13255
13635
  background-color: rgba(243, 88, 0, 0.25);
13256
13636
  }
13257
13637
 
13638
+ .k-virtual-scroller {
13639
+ width: 100%;
13640
+ height: 100%;
13641
+ flex: 1 1 auto;
13642
+ overflow: auto;
13643
+ position: relative;
13644
+ }
13645
+
13646
+ .k-virtual-scroller-wrap {
13647
+ position: relative;
13648
+ z-index: 1;
13649
+ }
13650
+
13651
+ .k-virtual-scroller-content {
13652
+ position: absolute;
13653
+ width: 100%;
13654
+ top: 0;
13655
+ inset-inline-start: 0;
13656
+ }
13657
+
13658
+ .k-virtual-scroller-size {
13659
+ position: relative;
13660
+ z-index: 0;
13661
+ }
13662
+
13258
13663
  .k-avatar {
13259
13664
  border-width: 0;
13260
13665
  border-style: solid;
@@ -13570,7 +13975,7 @@ textarea.k-input-inner {
13570
13975
  .k-chip-lg {
13571
13976
  height: calc(1em + 12px);
13572
13977
  padding: 5px;
13573
- font-size: 16px;
13978
+ font-size: 14px;
13574
13979
  line-height: normal;
13575
13980
  }
13576
13981
 
@@ -13792,6 +14197,7 @@ textarea.k-input-inner {
13792
14197
  height: 100%;
13793
14198
  border-width: 1px;
13794
14199
  border-radius: 4px;
14200
+ box-sizing: border-box;
13795
14201
  border-style: solid;
13796
14202
  display: inline-flex;
13797
14203
  flex-direction: row;
@@ -13800,23 +14206,6 @@ textarea.k-input-inner {
13800
14206
  overflow: hidden;
13801
14207
  }
13802
14208
 
13803
- .k-color-preview > .k-color-preview-mask {
13804
- width: 100%;
13805
- height: 100%;
13806
- position: absolute;
13807
- top: 0;
13808
- left: 0;
13809
- }
13810
-
13811
- .k-color-preview::before {
13812
- content: "";
13813
- width: 100%;
13814
- height: 100%;
13815
- display: block;
13816
- position: relative;
13817
- z-index: -1;
13818
- }
13819
-
13820
14209
  .k-coloreditor-current-color {
13821
14210
  cursor: pointer;
13822
14211
  }
@@ -13834,43 +14223,43 @@ textarea.k-input-inner {
13834
14223
  .k-icon-color-preview .k-color-preview-mask {
13835
14224
  width: 14px;
13836
14225
  height: 2px;
13837
- position: static;
13838
14226
  }
13839
14227
 
13840
- .k-icon-color-preview::before {
13841
- display: none;
14228
+ .k-color-preview-mask {
14229
+ width: 100%;
14230
+ height: 100%;
14231
+ position: relative;
13842
14232
  }
13843
14233
 
13844
- .k-no-color::before {
14234
+ .k-color-preview-mask::before {
13845
14235
  content: "";
13846
14236
  width: 100%;
13847
14237
  height: 100%;
13848
14238
  position: absolute;
13849
14239
  top: 0;
13850
14240
  left: 0;
13851
- }
13852
-
13853
- .k-color-preview {
13854
- border-color: #cacaca;
13855
- }
13856
-
13857
- .k-color-preview::before {
14241
+ z-index: -1;
13858
14242
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC");
13859
14243
  background-size: contain;
13860
- background-position: 0;
13861
- }
13862
-
13863
- .k-color-preview:hover, .k-color-preview.k-hover {
13864
- border-color: #bababa;
14244
+ background-position: 0 0;
13865
14245
  }
13866
14246
 
13867
- .k-no-color::before {
14247
+ .k-no-color .k-color-preview-mask::before {
14248
+ content: "";
13868
14249
  background-color: #ffffff;
13869
14250
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'%3e%3cline x1='0' x2='20' y1='0' y2='20' stroke='%23d92800' stroke-width='1'/%3e%3c/svg%3e");
13870
14251
  background-size: 100% 100%;
13871
14252
  background-position: 0 0;
13872
14253
  }
13873
14254
 
14255
+ .k-color-preview {
14256
+ border-color: #cacaca;
14257
+ }
14258
+
14259
+ .k-color-preview:hover, .k-color-preview.k-hover {
14260
+ border-color: #bababa;
14261
+ }
14262
+
13874
14263
  .k-loader {
13875
14264
  position: relative;
13876
14265
  display: inline-block;
@@ -14225,7 +14614,7 @@ textarea.k-input-inner {
14225
14614
  }
14226
14615
 
14227
14616
  .k-loader-container-md .k-loader-container-label {
14228
- font-size: 16px;
14617
+ font-size: 14px;
14229
14618
  }
14230
14619
 
14231
14620
  .k-loader-container-lg .k-loader-container-inner {
@@ -14234,7 +14623,7 @@ textarea.k-input-inner {
14234
14623
  }
14235
14624
 
14236
14625
  .k-loader-container-lg .k-loader-container-label {
14237
- font-size: 18px;
14626
+ font-size: 16px;
14238
14627
  }
14239
14628
 
14240
14629
  .k-loader-top .k-loader-container-inner {
@@ -14412,12 +14801,18 @@ textarea.k-input-inner {
14412
14801
  align-self: center;
14413
14802
  }
14414
14803
 
14804
+ .k-toolbar .k-input,
14805
+ .k-toolbar .k-picker:not(.k-colorpicker) {
14806
+ width: 10em;
14807
+ }
14808
+
14415
14809
  .k-toolbar .k-overflow-anchor {
14416
14810
  border-radius: 0;
14417
14811
  margin: 0;
14418
14812
  padding: 8px;
14419
- width: calc(1.4285714286em + 26px);
14813
+ width: auto;
14420
14814
  height: 100%;
14815
+ aspect-ratio: 1;
14421
14816
  border-width: 0;
14422
14817
  border-color: inherit;
14423
14818
  box-sizing: border-box;
@@ -14458,20 +14853,39 @@ textarea.k-input-inner {
14458
14853
  }
14459
14854
 
14460
14855
  kendo-toolbar-renderer {
14856
+ display: inline-block;
14461
14857
  border-color: inherit;
14462
14858
  }
14463
14859
 
14860
+ .k-overflow-container > .k-item {
14861
+ border-color: inherit;
14862
+ }
14863
+
14864
+ .k-overflow-container .k-separator {
14865
+ margin: 4px 0;
14866
+ }
14867
+
14464
14868
  .k-overflow-container .k-overflow-tool-group {
14465
14869
  display: block;
14466
14870
  }
14467
14871
 
14468
14872
  .k-overflow-container .k-overflow-button {
14873
+ border-radius: 0;
14874
+ padding: 4px 8px;
14469
14875
  width: 100%;
14876
+ border-width: 0;
14877
+ color: inherit;
14878
+ background-color: transparent;
14879
+ background-image: none;
14880
+ line-height: inherit;
14881
+ display: flex;
14882
+ justify-content: flex-start;
14470
14883
  }
14471
14884
 
14472
14885
  .k-overflow-container .k-button-group {
14886
+ box-shadow: none;
14473
14887
  display: flex;
14474
- flex-direction: column;
14888
+ flex-flow: column nowrap;
14475
14889
  }
14476
14890
 
14477
14891
  .k-overflow-container .k-button-group .k-button {
@@ -14528,15 +14942,29 @@ kendo-toolbar-renderer {
14528
14942
  background-color: #f0f0f0;
14529
14943
  }
14530
14944
 
14531
- .k-toolbar .k-overflow-anchor {
14532
- color: inherit;
14533
- background: transparent;
14534
- }
14535
-
14536
14945
  .k-toolbar .k-separator {
14537
14946
  border-color: inherit;
14538
14947
  }
14539
14948
 
14949
+ .k-overflow-container .k-button:hover, .k-overflow-container .k-button.k-state-hover {
14950
+ color: #272727;
14951
+ background: #dddddd;
14952
+ }
14953
+
14954
+ .k-overflow-container .k-button:active, .k-overflow-container .k-button.k-state-active {
14955
+ color: white;
14956
+ background: #f35800;
14957
+ }
14958
+
14959
+ .k-overflow-container .k-button .k-button:focus,
14960
+ .k-overflow-container .k-button .k-button.k-state-focused {
14961
+ box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
14962
+ }
14963
+
14964
+ .k-overflow-container .k-button:disabled, .k-overflow-container .k-button.k-state-disabled {
14965
+ color: inherit;
14966
+ }
14967
+
14540
14968
  .k-floating-toolbar,
14541
14969
  .editorToolbarWindow.k-window-content {
14542
14970
  border-color: #cacaca;
@@ -14680,7 +15108,8 @@ kendo-label > .k-label {
14680
15108
  border: 0;
14681
15109
  }
14682
15110
 
14683
- .k-form .k-form-fieldset > *:first-child {
15111
+ .k-form .k-form-fieldset > *:not(.k-hidden):first-child,
15112
+ .k-form .k-form-fieldset > *.k-hidden + :not(.k-hidden) {
14684
15113
  margin-top: 0;
14685
15114
  }
14686
15115
 
@@ -14703,8 +15132,10 @@ kendo-label > .k-label {
14703
15132
  margin-top: 1em;
14704
15133
  }
14705
15134
 
14706
- .k-form > *:first-child,
14707
- .k-form .k-daterangepicker .k-textbox-container:first-child {
15135
+ .k-form > *:not(.k-hidden):first-child,
15136
+ .k-form > *.k-hidden + :not(.k-hidden),
15137
+ .k-form .k-daterangepicker .k-textbox-container:not(.k-hidden):first-child,
15138
+ .k-form .k-daterangepicker .k-textbox-container.k-hidden + :not(.k-hidden) {
14708
15139
  margin-top: 0;
14709
15140
  }
14710
15141
 
@@ -15157,343 +15588,8 @@ kendo-label > .k-label {
15157
15588
  max-width: 300px;
15158
15589
  }
15159
15590
 
15160
- .k-checkbox {
15161
- margin: 0;
15162
- padding: 0;
15163
- line-height: initial;
15164
- border-width: 1px;
15165
- border-style: solid;
15166
- outline: 0;
15167
- background-position: center;
15168
- background-repeat: no-repeat;
15169
- background-size: contain;
15170
- display: inline-block;
15171
- vertical-align: middle;
15172
- position: relative;
15173
- cursor: pointer;
15174
- -webkit-appearance: none;
15175
- }
15176
-
15177
- .k-checkbox-sm {
15178
- width: 12px;
15179
- height: 12px;
15180
- }
15181
-
15182
- .k-checkbox-sm + .k-checkbox-label .k-ripple {
15183
- top: 6px;
15184
- left: 6px;
15185
- width: 30px;
15186
- height: 30px;
15187
- }
15188
-
15189
- .k-checkbox-sm::before {
15190
- content: "";
15191
- width: 10px;
15192
- height: 10px;
15193
- font-size: 10px;
15194
- font-family: "WebComponentsIcons", monospace;
15195
- line-height: 1;
15196
- transform: scale(0) translate(-50%, -50%);
15197
- overflow: hidden;
15198
- position: absolute;
15199
- top: 50%;
15200
- left: 50%;
15201
- }
15202
-
15203
- .k-checkbox-md {
15204
- width: 16px;
15205
- height: 16px;
15206
- }
15207
-
15208
- .k-checkbox-md + .k-checkbox-label .k-ripple {
15209
- top: 8px;
15210
- left: 8px;
15211
- width: 40px;
15212
- height: 40px;
15213
- }
15214
-
15215
- .k-checkbox-md::before {
15216
- content: "";
15217
- width: 14px;
15218
- height: 14px;
15219
- font-size: 14px;
15220
- font-family: "WebComponentsIcons", monospace;
15221
- line-height: 1;
15222
- transform: scale(0) translate(-50%, -50%);
15223
- overflow: hidden;
15224
- position: absolute;
15225
- top: 50%;
15226
- left: 50%;
15227
- }
15228
-
15229
- .k-checkbox-lg {
15230
- width: 24px;
15231
- height: 24px;
15232
- }
15233
-
15234
- .k-checkbox-lg + .k-checkbox-label .k-ripple {
15235
- top: 12px;
15236
- left: 12px;
15237
- width: 60px;
15238
- height: 60px;
15239
- }
15240
-
15241
- .k-checkbox-lg::before {
15242
- content: "";
15243
- width: 22px;
15244
- height: 22px;
15245
- font-size: 22px;
15246
- font-family: "WebComponentsIcons", monospace;
15247
- line-height: 1;
15248
- transform: scale(0) translate(-50%, -50%);
15249
- overflow: hidden;
15250
- position: absolute;
15251
- top: 50%;
15252
- left: 50%;
15253
- }
15254
-
15255
- .k-checkbox:checked::before,
15256
- .k-checkbox.k-checked::before {
15257
- transform: scale(1) translate(-50%, -50%);
15258
- }
15259
-
15260
- .k-checkbox:indeterminate::before,
15261
- .k-checkbox.k-indeterminate::before {
15262
- content: "";
15263
- transform: scale(1) translate(-50%, -50%);
15264
- }
15265
-
15266
- .k-checkbox:disabled,
15267
- .k-checkbox.k-disabled,
15268
- .k-checkbox:disabled + .k-checkbox-label,
15269
- .k-checkbox.k-disabled + .k-checkbox-label {
15270
- outline: none;
15271
- cursor: default;
15272
- opacity: 0.6;
15273
- filter: grayscale(0.1);
15274
- pointer-events: none;
15275
- box-shadow: none;
15276
- }
15277
-
15278
- .k-checkbox-label {
15279
- margin: 0;
15280
- padding: 0;
15281
- line-height: 17px;
15282
- display: inline-flex;
15283
- align-items: flex-start;
15284
- vertical-align: middle;
15285
- position: relative;
15286
- cursor: pointer;
15287
- }
15288
-
15289
- .k-checkbox-label .k-label {
15290
- cursor: pointer;
15291
- }
15292
-
15293
- .k-checkbox-label .k-ripple {
15294
- right: auto;
15295
- bottom: auto;
15296
- transform: translate(-50%, -50%);
15297
- border-radius: 50%;
15298
- visibility: hidden !important;
15299
- }
15300
-
15301
- .k-checkbox-label .k-ripple-blob {
15302
- top: 50% !important;
15303
- left: 50% !important;
15304
- width: 200% !important;
15305
- height: 200% !important;
15306
- }
15307
-
15308
- .k-checkbox + .k-checkbox-label {
15309
- display: inline;
15310
- }
15311
-
15312
- .k-checkbox + .k-checkbox-label,
15313
- .k-checkbox-label + .k-checkbox {
15314
- margin-left: 4px;
15315
- }
15316
-
15317
- .k-checkbox-label > .k-checkbox {
15318
- margin-right: 4px;
15319
- flex-shrink: 0;
15320
- }
15321
-
15322
- kendo-label.k-checkbox-label > .k-checkbox:last-child {
15323
- margin-right: 0;
15324
- }
15325
-
15326
- kendo-label.k-checkbox-label > .k-label:first-child {
15327
- margin-right: 4px;
15328
- }
15329
-
15330
- kendo-label.k-checkbox-label > .k-label {
15331
- display: inline;
15332
- }
15333
-
15334
- .k-checkbox-label:empty {
15335
- display: none;
15336
- }
15337
-
15338
- .k-checkbox-label.k-no-text {
15339
- min-width: 1px;
15340
- }
15341
-
15342
- .k-checkbox-list {
15343
- margin: 0px;
15344
- padding: 0px;
15345
- list-style: none;
15346
- }
15347
-
15348
- .k-checkbox-list .k-checkbox-item {
15349
- padding: 4px 0px;
15350
- }
15351
-
15352
- .k-list-horizontal .k-checkbox-item {
15353
- display: inline-block;
15354
- margin: 0 32px 0 0;
15355
- }
15356
-
15357
- .k-list-horizontal .k-checkbox-item:last-child {
15358
- margin-right: 0;
15359
- }
15360
-
15361
- [dir="rtl"] .k-checkbox + .k-checkbox-label,
15362
- [dir="rtl"] .k-checkbox-label + .k-checkbox {
15363
- margin-left: 0;
15364
- margin-right: 4px;
15365
- }
15366
-
15367
- [dir="rtl"] .k-checkbox-label > .k-checkbox {
15368
- margin-right: 0;
15369
- margin-left: 4px;
15370
- }
15371
-
15372
- [dir="rtl"] kendo-label.k-checkbox-label > .k-checkbox:last-child {
15373
- margin-left: 0;
15374
- }
15375
-
15376
- [dir="rtl"] kendo-label.k-checkbox-label > .k-label:first-child {
15377
- margin-right: 0;
15378
- margin-left: 4px;
15379
- }
15380
-
15381
- [dir="rtl"] .k-list-horizontal .k-checkbox-item {
15382
- margin-right: 0;
15383
- margin-left: 32px;
15384
- }
15385
-
15386
- [dir="rtl"] .k-list-horizontal .k-checkbox-item:last-child {
15387
- margin-left: 0;
15388
- }
15389
-
15390
- .k-ripple-container .k-checkbox-sm::after {
15391
- content: "";
15392
- display: block;
15393
- position: absolute;
15394
- left: 0;
15395
- top: 0;
15396
- width: 36px;
15397
- height: 36px;
15398
- margin-left: -14px;
15399
- margin-top: -14px;
15400
- border-radius: 100%;
15401
- z-index: 1;
15402
- transform: scale(0);
15403
- }
15404
-
15405
- .k-ripple-container .k-checkbox:disabled::after,
15406
- .k-ripple-container .k-checkbox.k-disabled::after {
15407
- display: none;
15408
- }
15409
-
15410
- .k-ripple-container .k-checkbox-md::after {
15411
- content: "";
15412
- display: block;
15413
- position: absolute;
15414
- left: 0;
15415
- top: 0;
15416
- width: 48px;
15417
- height: 48px;
15418
- margin-left: -18px;
15419
- margin-top: -18px;
15420
- border-radius: 100%;
15421
- z-index: 1;
15422
- transform: scale(0);
15423
- }
15424
-
15425
- .k-ripple-container .k-checkbox:disabled::after,
15426
- .k-ripple-container .k-checkbox.k-disabled::after {
15427
- display: none;
15428
- }
15429
-
15430
- .k-ripple-container .k-checkbox-lg::after {
15431
- content: "";
15432
- display: block;
15433
- position: absolute;
15434
- left: 0;
15435
- top: 0;
15436
- width: 72px;
15437
- height: 72px;
15438
- margin-left: -26px;
15439
- margin-top: -26px;
15440
- border-radius: 100%;
15441
- z-index: 1;
15442
- transform: scale(0);
15443
- }
15444
-
15445
- .k-ripple-container .k-checkbox:disabled::after,
15446
- .k-ripple-container .k-checkbox.k-disabled::after {
15447
- display: none;
15448
- }
15449
-
15450
- .k-checkbox {
15451
- border-color: #cacaca;
15452
- color: transparent;
15453
- background-color: #ffffff;
15454
- }
15455
-
15456
- .k-checkbox:focus,
15457
- .k-checkbox.k-focus {
15458
- box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
15459
- }
15460
-
15461
- .k-checkbox:indeterminate,
15462
- .k-checkbox.k-indeterminate {
15463
- border-color: #cacaca;
15464
- color: #f35800;
15465
- background-color: #ffffff;
15466
- }
15467
-
15468
- .k-checkbox:checked,
15469
- .k-checkbox.k-checked {
15470
- border-color: #f35800;
15471
- color: white;
15472
- background-color: #f35800;
15473
- }
15474
-
15475
- .k-checkbox:checked:focus,
15476
- .k-checkbox.k-checked.k-focus {
15477
- box-shadow: 0 0 0 2px rgba(243, 88, 0, 0.3);
15478
- }
15479
-
15480
- .k-checkbox:invalid,
15481
- .k-checkbox.k-invalid {
15482
- border-color: rgba(217, 40, 0, 0.5);
15483
- }
15484
-
15485
- .k-checkbox:invalid + .k-checkbox-label,
15486
- .k-checkbox.k-invalid + .k-checkbox-label {
15487
- color: #d92800;
15488
- }
15489
-
15490
- .k-ripple-container .k-checkbox::after {
15491
- background: #f35800;
15492
- opacity: 0.3;
15493
- }
15494
-
15495
15591
  .k-listbox {
15496
- width: 12.4em;
15592
+ width: 10em;
15497
15593
  height: 200px;
15498
15594
  border-width: 0;
15499
15595
  outline: 0;
@@ -15860,6 +15956,7 @@ kendo-label.k-checkbox-label > .k-label {
15860
15956
  background-repeat: no-repeat;
15861
15957
  background-size: contain;
15862
15958
  display: inline-block;
15959
+ flex: none;
15863
15960
  vertical-align: middle;
15864
15961
  position: relative;
15865
15962
  cursor: pointer;
@@ -15958,6 +16055,23 @@ kendo-label.k-checkbox-label > .k-label {
15958
16055
  box-shadow: none;
15959
16056
  }
15960
16057
 
16058
+ .k-radio-wrap {
16059
+ flex: none;
16060
+ display: inline-flex;
16061
+ flex-flow: row nowrap;
16062
+ gap: 0;
16063
+ align-items: center;
16064
+ }
16065
+
16066
+ .k-radio-wrap::before {
16067
+ content: "\200b";
16068
+ width: 0px;
16069
+ overflow: hidden;
16070
+ flex: none;
16071
+ display: inline-block;
16072
+ vertical-align: top;
16073
+ }
16074
+
15961
16075
  .k-radio + .k-radio-label {
15962
16076
  display: inline;
15963
16077
  }
@@ -15978,7 +16092,7 @@ kendo-label.k-checkbox-label > .k-label {
15978
16092
  }
15979
16093
 
15980
16094
  .k-radio-label:empty {
15981
- display: none;
16095
+ display: none !important;
15982
16096
  }
15983
16097
 
15984
16098
  .k-radio-label .k-ripple {
@@ -16012,22 +16126,34 @@ kendo-label.k-radio-label > .k-label {
16012
16126
  }
16013
16127
 
16014
16128
  .k-radio-list {
16015
- margin: 0px;
16016
- padding: 0px;
16129
+ margin: 0;
16130
+ padding: 0;
16131
+ display: flex;
16132
+ flex-flow: column nowrap;
16133
+ gap: 0;
16017
16134
  list-style: none;
16018
16135
  }
16019
16136
 
16020
- .k-radio-list .k-radio-item {
16137
+ .k-radio-item,
16138
+ .k-radio-list-item {
16021
16139
  padding: 4px 0px;
16140
+ display: flex;
16141
+ flex-flow: row nowrap;
16142
+ align-items: center;
16143
+ align-content: center;
16144
+ gap: 4px;
16022
16145
  }
16023
16146
 
16024
- .k-list-horizontal .k-radio-item {
16025
- display: inline-block;
16026
- margin: 0 32px 0 0;
16147
+ .k-radio-item .k-radio-label,
16148
+ .k-radio-list-item .k-radio-label {
16149
+ line-height: inherit;
16027
16150
  }
16028
16151
 
16029
- .k-list-horizontal .k-radio-item:last-child {
16030
- margin-right: 0;
16152
+ .k-radio-list-horizontal,
16153
+ .k-radio-list.k-list-horizontal {
16154
+ display: flex;
16155
+ flex-flow: row wrap;
16156
+ gap: 16px;
16031
16157
  }
16032
16158
 
16033
16159
  .k-rtl .k-radio + .k-radio-label,
@@ -16057,17 +16183,6 @@ kendo-label.k-radio-label > .k-label {
16057
16183
  margin-left: 4px;
16058
16184
  }
16059
16185
 
16060
- .k-rtl .k-list-horizontal .k-radio-item,
16061
- [dir="rtl"] .k-list-horizontal .k-radio-item {
16062
- margin-right: 0;
16063
- margin-left: 32px;
16064
- }
16065
-
16066
- .k-rtl .k-list-horizontal .k-radio-item:last-child,
16067
- [dir="rtl"] .k-list-horizontal .k-radio-item:last-child {
16068
- margin-left: 0;
16069
- }
16070
-
16071
16186
  .k-ripple-container .k-radio-sm::after {
16072
16187
  content: "";
16073
16188
  display: block;
@@ -17722,6 +17837,10 @@ kendo-label.k-radio-label > .k-label {
17722
17837
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px white;
17723
17838
  }
17724
17839
 
17840
+ .k-numeric-textbox .k-input-inner, .k-numerictextbox .k-input-inner {
17841
+ text-overflow: clip;
17842
+ }
17843
+
17725
17844
  .k-colorgradient {
17726
17845
  border-radius: 4px;
17727
17846
  width: 272px;
@@ -17973,14 +18092,18 @@ kendo-label.k-radio-label > .k-label {
17973
18092
  }
17974
18093
 
17975
18094
  .k-coloreditor-preview {
18095
+ display: flex;
18096
+ flex-flow: column nowrap;
18097
+ align-items: stretch;
18098
+ justify-content: center;
18099
+ gap: 4px;
17976
18100
  position: relative;
17977
- gap: 3px;
17978
18101
  z-index: 1;
17979
18102
  }
17980
18103
 
17981
18104
  .k-coloreditor-preview .k-color-preview {
17982
- width: 34px;
17983
- height: 14px;
18105
+ width: 32px;
18106
+ height: 12px;
17984
18107
  }
17985
18108
 
17986
18109
  .k-coloreditor-views {
@@ -18026,6 +18149,43 @@ kendo-label.k-radio-label > .k-label {
18026
18149
  width: min-content;
18027
18150
  }
18028
18151
 
18152
+ .k-datetime-selector {
18153
+ display: flex;
18154
+ transition: transform .2s;
18155
+ }
18156
+
18157
+ .k-datetime-wrap {
18158
+ width: 288px;
18159
+ overflow: hidden;
18160
+ }
18161
+
18162
+ .k-datetime-calendar-wrap,
18163
+ .k-datetime-time-wrap {
18164
+ text-align: center;
18165
+ flex: 0 0 288px;
18166
+ }
18167
+
18168
+ .k-date-tab .k-datetime-selector {
18169
+ transform: translateX(0);
18170
+ }
18171
+
18172
+ .k-time-tab .k-datetime-selector {
18173
+ transform: translateX(-100%);
18174
+ }
18175
+
18176
+ .k-datetimepicker[dir="rtl"] .k-time-tab .k-datetime-selector,
18177
+ .k-rtl .k-datetimepicker .k-time-tab .k-datetime-selector {
18178
+ transform: translateX(100%);
18179
+ }
18180
+
18181
+ .k-daterange-picker, .k-daterangepicker {
18182
+ width: 100%;
18183
+ display: flex;
18184
+ flex-flow: row nowrap;
18185
+ align-items: flex-start;
18186
+ gap: 8px;
18187
+ }
18188
+
18029
18189
  .k-dropdowngrid-popup {
18030
18190
  overflow: hidden;
18031
18191
  }
@@ -18320,7 +18480,7 @@ kendo-label.k-radio-label > .k-label {
18320
18480
  }
18321
18481
 
18322
18482
  .k-treeview {
18323
- padding: 0px 0px;
18483
+ padding: 0;
18324
18484
  border-width: 0;
18325
18485
  background: none;
18326
18486
  box-sizing: border-box;
@@ -18334,38 +18494,32 @@ kendo-label.k-radio-label > .k-label {
18334
18494
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
18335
18495
  }
18336
18496
 
18337
- .k-treeview > .k-treeview-group {
18338
- outline: 0;
18339
- -webkit-touch-callout: none;
18340
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
18341
- }
18342
-
18343
- .k-treeview .k-content,
18344
- .k-treeview > .k-treeview-group,
18345
- .k-treeview .k-treeview-item > .k-treeview-group {
18497
+ .k-treeview-group,
18498
+ .k-treeview .k-group {
18346
18499
  margin: 0;
18347
18500
  padding: 0;
18348
- background: none;
18349
18501
  list-style: none;
18350
18502
  position: relative;
18503
+ outline: 0;
18504
+ -webkit-touch-callout: none;
18505
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
18351
18506
  }
18352
18507
 
18353
- .k-treeview .k-content.ng-animating,
18354
- .k-treeview > .k-treeview-group.ng-animating,
18355
- .k-treeview .k-treeview-item > .k-treeview-group.ng-animating {
18508
+ .k-treeview-group.ng-animating,
18509
+ .k-treeview .k-group.ng-animating {
18356
18510
  overflow: hidden;
18357
18511
  }
18358
18512
 
18359
- .k-treeview .k-treeview-top,
18360
- .k-treeview .k-treeview-mid,
18361
- .k-treeview .k-treeview-bot {
18513
+ .k-treeview-top,
18514
+ .k-treeview-mid,
18515
+ .k-treeview-bot {
18362
18516
  display: flex;
18363
18517
  flex-direction: row;
18364
18518
  align-items: center;
18365
18519
  align-content: center;
18366
18520
  }
18367
18521
 
18368
- .k-treeview .k-treeview-item {
18522
+ .k-treeview-item {
18369
18523
  outline-style: none;
18370
18524
  margin: 0;
18371
18525
  padding: 0 0 0 16px;
@@ -18373,64 +18527,55 @@ kendo-label.k-radio-label > .k-label {
18373
18527
  display: block;
18374
18528
  }
18375
18529
 
18376
- .k-treeview .k-treeview-leaf {
18377
- border-radius: 4px;
18378
- margin: 0;
18379
- border: 0px solid transparent;
18380
- text-decoration: none;
18530
+ .k-treeview-toggle {
18531
+ flex: none;
18381
18532
  display: inline-flex;
18533
+ flex-flow: row nowrap;
18382
18534
  align-items: center;
18383
- align-content: center;
18384
- vertical-align: middle;
18385
- position: relative;
18386
- }
18387
-
18388
- .k-treeview .k-treeview-leaf.k-state-focused {
18389
- z-index: 1;
18390
- }
18391
-
18392
- .k-treeview .k-treeview-load-more-button {
18393
18535
  cursor: pointer;
18394
18536
  }
18395
18537
 
18396
- .k-treeview .k-treeview-load-more-button:hover, .k-treeview .k-treeview-load-more-button.k-state-hover, .k-treeview .k-treeview-load-more-button:focus, .k-treeview .k-treeview-load-more-button.k-state-focused {
18397
- text-decoration: underline;
18538
+ .k-treeview-toggle + .k-checkbox-wrap,
18539
+ .k-treeview-toggle + .k-checkbox-wrapper {
18540
+ margin-left: 4px;
18398
18541
  }
18399
18542
 
18400
- .k-treeview .k-treeview-load-more-checkboxes-container {
18401
- padding-left: 36px;
18543
+ .k-treeview-loading {
18544
+ margin-right: 4px;
18402
18545
  }
18403
18546
 
18404
- .k-treeview .k-treeview-load-more-checkboxes-container .k-i-loading {
18405
- margin-left: -20px;
18547
+ .k-treeview .k-checkbox-wrap,
18548
+ .k-treeview .k-checkbox-wrapper {
18406
18549
  margin-right: 4px;
18407
18550
  }
18408
18551
 
18409
- .k-treeview .k-i-expand,
18410
- .k-treeview .k-i-collapse {
18411
- margin-left: -16px;
18412
- cursor: pointer;
18552
+ .k-treeview-leaf {
18553
+ border-radius: 4px;
18554
+ border: 0px solid transparent;
18555
+ text-decoration: none;
18556
+ display: inline-flex;
18557
+ align-items: center;
18558
+ align-content: center;
18559
+ vertical-align: middle;
18560
+ position: relative;
18413
18561
  }
18414
18562
 
18415
- .k-treeview .k-i-expand + .k-checkbox-wrapper,
18416
- .k-treeview .k-i-collapse + .k-checkbox-wrapper {
18417
- margin-left: 4px;
18563
+ .k-treeview-leaf .k-icon,
18564
+ .k-treeview-leaf .k-image,
18565
+ .k-treeview-leaf .k-sprite {
18566
+ margin-right: 4px;
18418
18567
  }
18419
18568
 
18420
- .k-treeview .k-checkbox-wrapper {
18421
- margin-right: 4px;
18569
+ .k-treeview-leaf.k-state-focus, .k-treeview-leaf.k-state-focused {
18570
+ z-index: 1;
18422
18571
  }
18423
18572
 
18424
- .k-treeview .k-i-drag-and-drop {
18425
- position: absolute;
18426
- transform: translate(-50%, -50%);
18427
- z-index: 1000;
18573
+ .k-treeview .k-treeview-load-more-button {
18574
+ cursor: pointer;
18428
18575
  }
18429
18576
 
18430
- .k-treeview .k-treeview-leaf .k-icon,
18431
- .k-treeview .k-treeview-leaf .k-image,
18432
- .k-treeview .k-treeview-leaf .k-sprite {
18433
- margin-right: 4px;
18577
+ .k-treeview .k-treeview-load-more-button:hover, .k-treeview .k-treeview-load-more-button.k-state-hover, .k-treeview .k-treeview-load-more-button:focus, .k-treeview .k-treeview-load-more-button.k-state-focus, .k-treeview .k-treeview-load-more-button.k-state-focused {
18578
+ text-decoration: underline;
18434
18579
  }
18435
18580
 
18436
18581
  .k-rtl .k-treeview .k-treeview-item,
@@ -18439,34 +18584,28 @@ kendo-label.k-radio-label > .k-label {
18439
18584
  padding-right: 16px;
18440
18585
  }
18441
18586
 
18442
- .k-rtl .k-treeview .k-treeview-load-more-checkboxes-container,
18443
- .k-treeview[dir="rtl"] .k-treeview-load-more-checkboxes-container {
18444
- padding-left: 0;
18445
- padding-right: 36px;
18446
- }
18447
-
18448
- .k-rtl .k-treeview .k-treeview-load-more-checkboxes-container .k-i-loading,
18449
- .k-treeview[dir="rtl"] .k-treeview-load-more-checkboxes-container .k-i-loading {
18450
- margin-left: 4px;
18451
- margin-right: -20px;
18452
- }
18453
-
18454
- .k-rtl .k-treeview .k-i-expand,
18455
- .k-rtl .k-treeview .k-i-collapse,
18456
- .k-treeview[dir="rtl"] .k-i-expand,
18457
- .k-treeview[dir="rtl"] .k-i-collapse {
18587
+ .k-rtl .k-treeview .k-treeview-toggle,
18588
+ .k-treeview[dir="rtl"] .k-treeview-toggle {
18458
18589
  margin-left: 0;
18459
18590
  margin-right: -16px;
18460
18591
  }
18461
18592
 
18462
- .k-rtl .k-treeview .k-i-expand + .k-checkbox-wrapper,
18463
- .k-rtl .k-treeview .k-i-collapse + .k-checkbox-wrapper,
18464
- .k-treeview[dir="rtl"] .k-i-expand + .k-checkbox-wrapper,
18465
- .k-treeview[dir="rtl"] .k-i-collapse + .k-checkbox-wrapper {
18593
+ .k-rtl .k-treeview .k-treeview-toggle + .k-checkbox-wrap,
18594
+ .k-rtl .k-treeview .k-treeview-toggle + .k-checkbox-wrapper,
18595
+ .k-treeview[dir="rtl"] .k-treeview-toggle + .k-checkbox-wrap,
18596
+ .k-treeview[dir="rtl"] .k-treeview-toggle + .k-checkbox-wrapper {
18466
18597
  margin-right: 4px;
18467
18598
  }
18468
18599
 
18600
+ .k-rtl .k-treeview .k-treeview-loading,
18601
+ .k-treeview[dir="rtl"] .k-treeview-loading {
18602
+ margin-right: 0;
18603
+ margin-left: 4px;
18604
+ }
18605
+
18606
+ .k-rtl .k-treeview .k-checkbox-wrap,
18469
18607
  .k-rtl .k-treeview .k-checkbox-wrapper,
18608
+ .k-treeview[dir="rtl"] .k-checkbox-wrap,
18470
18609
  .k-treeview[dir="rtl"] .k-checkbox-wrapper {
18471
18610
  margin-right: 0;
18472
18611
  margin-left: 4px;
@@ -18475,11 +18614,17 @@ kendo-label.k-radio-label > .k-label {
18475
18614
  .k-rtl .k-treeview .k-treeview-leaf .k-icon,
18476
18615
  .k-rtl .k-treeview .k-treeview-leaf .k-image,
18477
18616
  .k-rtl .k-treeview .k-treeview-leaf .k-sprite,
18617
+ .k-rtl .k-treeview .k-in .k-icon,
18618
+ .k-rtl .k-treeview .k-in .k-image,
18619
+ .k-rtl .k-treeview .k-in .k-sprite,
18478
18620
  .k-treeview[dir="rtl"] .k-treeview-leaf .k-icon,
18479
18621
  .k-treeview[dir="rtl"] .k-treeview-leaf .k-image,
18480
- .k-treeview[dir="rtl"] .k-treeview-leaf .k-sprite {
18481
- margin-left: 4px;
18622
+ .k-treeview[dir="rtl"] .k-treeview-leaf .k-sprite,
18623
+ .k-treeview[dir="rtl"] .k-in .k-icon,
18624
+ .k-treeview[dir="rtl"] .k-in .k-image,
18625
+ .k-treeview[dir="rtl"] .k-in .k-sprite {
18482
18626
  margin-right: 0;
18627
+ margin-left: 4px;
18483
18628
  }
18484
18629
 
18485
18630
  .k-treeview-sm {
@@ -18513,41 +18658,38 @@ kendo-label.k-radio-label > .k-label {
18513
18658
  color: #272727;
18514
18659
  }
18515
18660
 
18516
- .k-treeview .k-treeview-leaf:hover,
18517
- .k-treeview .k-treeview-leaf.k-hover {
18661
+ .k-treeview-leaf:hover, .k-treeview-leaf.k-hover {
18518
18662
  border-color: #bababa;
18519
18663
  color: #272727;
18520
18664
  background-color: #dddddd;
18521
18665
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
18522
18666
  }
18523
18667
 
18524
- .k-treeview .k-treeview-leaf.k-selected {
18668
+ .k-treeview-leaf:focus, .k-treeview-leaf.k-focus {
18669
+ box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
18670
+ }
18671
+
18672
+ .k-treeview-leaf.k-selected {
18525
18673
  border-color: #cc4a00;
18526
18674
  color: white;
18527
18675
  background-color: #f35800;
18528
18676
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
18529
18677
  }
18530
18678
 
18531
- .k-treeview .k-treeview-leaf.k-focus {
18532
- box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
18533
- }
18534
-
18535
18679
  .k-treeview .k-treeview-load-more-button {
18536
18680
  color: #f35800;
18537
18681
  background-color: transparent;
18538
18682
  }
18539
18683
 
18540
- .k-treeview .k-treeview-load-more-button:hover,
18541
- .k-treeview .k-treeview-load-more-button.k-hover {
18684
+ .k-treeview .k-treeview-load-more-button:hover, .k-treeview .k-treeview-load-more-button.k-hover {
18542
18685
  color: #cc4a00;
18543
18686
  background-color: transparent;
18544
18687
  }
18545
18688
 
18546
- .k-treeview .k-treeview-load-more-button:focus,
18547
- .k-treeview .k-treeview-load-more-button.k-focus {
18548
- color: #f35800;
18689
+ .k-treeview .k-treeview-load-more-button:focus, .k-treeview .k-treeview-load-more-button.k-focus {
18690
+ color: #cc4a00;
18549
18691
  background-color: transparent;
18550
- box-shadow: none;
18692
+ box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.13);
18551
18693
  }
18552
18694
 
18553
18695
  .k-rating {
@@ -19552,6 +19694,11 @@ kendo-label.k-radio-label > .k-label {
19552
19694
  display: inline-block;
19553
19695
  }
19554
19696
 
19697
+ .k-appbar .k-input,
19698
+ .k-appbar .k-picker:not(.k-colorpicker) {
19699
+ width: 10em;
19700
+ }
19701
+
19555
19702
  .k-appbar-static {
19556
19703
  position: static;
19557
19704
  }
@@ -19691,49 +19838,7 @@ kendo-label.k-radio-label > .k-label {
19691
19838
  }
19692
19839
 
19693
19840
  .k-fab-square {
19694
- border-radius: 0;
19695
- }
19696
-
19697
- .k-fab-square.k-fab-sm {
19698
- width: calc(1.4285714286em + 18px);
19699
- height: calc(1.4285714286em + 18px);
19700
- }
19701
-
19702
- .k-fab-square.k-fab-md {
19703
- width: calc(1.4285714286em + 34px);
19704
- height: calc(1.4285714286em + 34px);
19705
- }
19706
-
19707
- .k-fab-square.k-fab-lg {
19708
- width: calc(1.4285714286em + 50px);
19709
- height: calc(1.4285714286em + 50px);
19710
- }
19711
-
19712
- .k-fab-circle {
19713
- border-radius: 50%;
19714
- }
19715
-
19716
- .k-fab-circle.k-fab-sm {
19717
- width: calc(1.4285714286em + 18px);
19718
- height: calc(1.4285714286em + 18px);
19719
- }
19720
-
19721
- .k-fab-circle.k-fab-md {
19722
- width: calc(1.4285714286em + 34px);
19723
- height: calc(1.4285714286em + 34px);
19724
- }
19725
-
19726
- .k-fab-circle.k-fab-lg {
19727
- width: calc(1.4285714286em + 50px);
19728
- height: calc(1.4285714286em + 50px);
19729
- }
19730
-
19731
- .k-fab-pill {
19732
- border-radius: 5rem;
19733
- }
19734
-
19735
- .k-fab-rounded {
19736
- border-radius: 4px;
19841
+ aspect-ratio: 1;
19737
19842
  }
19738
19843
 
19739
19844
  .k-fab-items {
@@ -19826,7 +19931,7 @@ kendo-label.k-radio-label > .k-label {
19826
19931
  flex-direction: row-reverse;
19827
19932
  }
19828
19933
 
19829
- .k-fab-primary {
19934
+ .k-fab-solid-primary {
19830
19935
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
19831
19936
  outline: 1px solid #f35800;
19832
19937
  outline-offset: -1px;
@@ -19835,7 +19940,7 @@ kendo-label.k-radio-label > .k-label {
19835
19940
  background-color: #f35800;
19836
19941
  }
19837
19942
 
19838
- .k-fab-secondary {
19943
+ .k-fab-solid-secondary {
19839
19944
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
19840
19945
  outline: 1px solid #e9e9e9;
19841
19946
  outline-offset: -1px;
@@ -19844,7 +19949,7 @@ kendo-label.k-radio-label > .k-label {
19844
19949
  background-color: #e9e9e9;
19845
19950
  }
19846
19951
 
19847
- .k-fab-tertiary {
19952
+ .k-fab-solid-tertiary {
19848
19953
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
19849
19954
  outline: 1px solid #03a9f4;
19850
19955
  outline-offset: -1px;
@@ -19853,7 +19958,7 @@ kendo-label.k-radio-label > .k-label {
19853
19958
  background-color: #03a9f4;
19854
19959
  }
19855
19960
 
19856
- .k-fab-info {
19961
+ .k-fab-solid-info {
19857
19962
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
19858
19963
  outline: 1px solid #2498bc;
19859
19964
  outline-offset: -1px;
@@ -19862,7 +19967,7 @@ kendo-label.k-radio-label > .k-label {
19862
19967
  background-color: #2498bc;
19863
19968
  }
19864
19969
 
19865
- .k-fab-success {
19970
+ .k-fab-solid-success {
19866
19971
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
19867
19972
  outline: 1px solid #3ea44e;
19868
19973
  outline-offset: -1px;
@@ -19871,7 +19976,7 @@ kendo-label.k-radio-label > .k-label {
19871
19976
  background-color: #3ea44e;
19872
19977
  }
19873
19978
 
19874
- .k-fab-warning {
19979
+ .k-fab-solid-warning {
19875
19980
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
19876
19981
  outline: 1px solid #ff9800;
19877
19982
  outline-offset: -1px;
@@ -19880,7 +19985,7 @@ kendo-label.k-radio-label > .k-label {
19880
19985
  background-color: #ff9800;
19881
19986
  }
19882
19987
 
19883
- .k-fab-error {
19988
+ .k-fab-solid-error {
19884
19989
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
19885
19990
  outline: 1px solid #d92800;
19886
19991
  outline-offset: -1px;
@@ -19889,7 +19994,7 @@ kendo-label.k-radio-label > .k-label {
19889
19994
  background-color: #d92800;
19890
19995
  }
19891
19996
 
19892
- .k-fab-dark {
19997
+ .k-fab-solid-dark {
19893
19998
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
19894
19999
  outline: 1px solid #404040;
19895
20000
  outline-offset: -1px;
@@ -19898,7 +20003,7 @@ kendo-label.k-radio-label > .k-label {
19898
20003
  background-color: #404040;
19899
20004
  }
19900
20005
 
19901
- .k-fab-light {
20006
+ .k-fab-solid-light {
19902
20007
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
19903
20008
  outline: 1px solid #ebebeb;
19904
20009
  outline-offset: -1px;
@@ -19907,7 +20012,7 @@ kendo-label.k-radio-label > .k-label {
19907
20012
  background-color: #ebebeb;
19908
20013
  }
19909
20014
 
19910
- .k-fab-inverse {
20015
+ .k-fab-solid-inverse {
19911
20016
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.2);
19912
20017
  outline: 1px solid #404040;
19913
20018
  outline-offset: -1px;
@@ -19916,300 +20021,280 @@ kendo-label.k-radio-label > .k-label {
19916
20021
  background-color: #404040;
19917
20022
  }
19918
20023
 
19919
- .k-state-hover.k-fab-primary,
19920
- .k-state-hovered.k-fab-primary,
19921
- .k-fab-primary:hover {
20024
+ .k-hover.k-fab-solid-primary,
20025
+ .k-fab-solid-primary:hover {
19922
20026
  border-color: #e95400;
19923
20027
  background-color: #e95400;
19924
20028
  }
19925
20029
 
19926
- .k-state-hover.k-fab-secondary,
19927
- .k-state-hovered.k-fab-secondary,
19928
- .k-fab-secondary:hover {
20030
+ .k-hover.k-fab-solid-secondary,
20031
+ .k-fab-solid-secondary:hover {
19929
20032
  border-color: #e0e0e0;
19930
20033
  background-color: #e0e0e0;
19931
20034
  }
19932
20035
 
19933
- .k-state-hover.k-fab-tertiary,
19934
- .k-state-hovered.k-fab-tertiary,
19935
- .k-fab-tertiary:hover {
20036
+ .k-hover.k-fab-solid-tertiary,
20037
+ .k-fab-solid-tertiary:hover {
19936
20038
  border-color: #03a2ea;
19937
20039
  background-color: #03a2ea;
19938
20040
  }
19939
20041
 
19940
- .k-state-hover.k-fab-info,
19941
- .k-state-hovered.k-fab-info,
19942
- .k-fab-info:hover {
20042
+ .k-hover.k-fab-solid-info,
20043
+ .k-fab-solid-info:hover {
19943
20044
  border-color: #2392b4;
19944
20045
  background-color: #2392b4;
19945
20046
  }
19946
20047
 
19947
- .k-state-hover.k-fab-success,
19948
- .k-state-hovered.k-fab-success,
19949
- .k-fab-success:hover {
20048
+ .k-hover.k-fab-solid-success,
20049
+ .k-fab-solid-success:hover {
19950
20050
  border-color: #3c9d4b;
19951
20051
  background-color: #3c9d4b;
19952
20052
  }
19953
20053
 
19954
- .k-state-hover.k-fab-warning,
19955
- .k-state-hovered.k-fab-warning,
19956
- .k-fab-warning:hover {
20054
+ .k-hover.k-fab-solid-warning,
20055
+ .k-fab-solid-warning:hover {
19957
20056
  border-color: #f59200;
19958
20057
  background-color: #f59200;
19959
20058
  }
19960
20059
 
19961
- .k-state-hover.k-fab-error,
19962
- .k-state-hovered.k-fab-error,
19963
- .k-fab-error:hover {
20060
+ .k-hover.k-fab-solid-error,
20061
+ .k-fab-solid-error:hover {
19964
20062
  border-color: #d02600;
19965
20063
  background-color: #d02600;
19966
20064
  }
19967
20065
 
19968
- .k-state-hover.k-fab-dark,
19969
- .k-state-hovered.k-fab-dark,
19970
- .k-fab-dark:hover {
20066
+ .k-hover.k-fab-solid-dark,
20067
+ .k-fab-solid-dark:hover {
19971
20068
  border-color: #3d3d3d;
19972
20069
  background-color: #3d3d3d;
19973
20070
  }
19974
20071
 
19975
- .k-state-hover.k-fab-light,
19976
- .k-state-hovered.k-fab-light,
19977
- .k-fab-light:hover {
20072
+ .k-hover.k-fab-solid-light,
20073
+ .k-fab-solid-light:hover {
19978
20074
  border-color: #e2e2e2;
19979
20075
  background-color: #e2e2e2;
19980
20076
  }
19981
20077
 
19982
- .k-state-hover.k-fab-inverse,
19983
- .k-state-hovered.k-fab-inverse,
19984
- .k-fab-inverse:hover {
20078
+ .k-hover.k-fab-solid-inverse,
20079
+ .k-fab-solid-inverse:hover {
19985
20080
  border-color: #3d3d3d;
19986
20081
  background-color: #3d3d3d;
19987
20082
  }
19988
20083
 
19989
- .k-fab-primary.k-state-focus,
19990
- .k-fab-primary.k-state-focused,
19991
- .k-fab-primary:focus {
20084
+ .k-fab-solid-primary.k-focus,
20085
+ .k-fab-solid-primary:focus {
19992
20086
  outline-style: solid;
19993
20087
  outline-width: 2px;
19994
20088
  outline-color: rgba(243, 88, 0, 0.3);
19995
20089
  }
19996
20090
 
19997
- .k-fab-secondary.k-state-focus,
19998
- .k-fab-secondary.k-state-focused,
19999
- .k-fab-secondary:focus {
20091
+ .k-fab-solid-secondary.k-focus,
20092
+ .k-fab-solid-secondary:focus {
20000
20093
  outline-style: solid;
20001
20094
  outline-width: 2px;
20002
20095
  outline-color: rgba(233, 233, 233, 0.3);
20003
20096
  }
20004
20097
 
20005
- .k-fab-tertiary.k-state-focus,
20006
- .k-fab-tertiary.k-state-focused,
20007
- .k-fab-tertiary:focus {
20098
+ .k-fab-solid-tertiary.k-focus,
20099
+ .k-fab-solid-tertiary:focus {
20008
20100
  outline-style: solid;
20009
20101
  outline-width: 2px;
20010
20102
  outline-color: rgba(3, 169, 244, 0.3);
20011
20103
  }
20012
20104
 
20013
- .k-fab-info.k-state-focus,
20014
- .k-fab-info.k-state-focused,
20015
- .k-fab-info:focus {
20105
+ .k-fab-solid-info.k-focus,
20106
+ .k-fab-solid-info:focus {
20016
20107
  outline-style: solid;
20017
20108
  outline-width: 2px;
20018
20109
  outline-color: rgba(36, 152, 188, 0.3);
20019
20110
  }
20020
20111
 
20021
- .k-fab-success.k-state-focus,
20022
- .k-fab-success.k-state-focused,
20023
- .k-fab-success:focus {
20112
+ .k-fab-solid-success.k-focus,
20113
+ .k-fab-solid-success:focus {
20024
20114
  outline-style: solid;
20025
20115
  outline-width: 2px;
20026
20116
  outline-color: rgba(62, 164, 78, 0.3);
20027
20117
  }
20028
20118
 
20029
- .k-fab-warning.k-state-focus,
20030
- .k-fab-warning.k-state-focused,
20031
- .k-fab-warning:focus {
20119
+ .k-fab-solid-warning.k-focus,
20120
+ .k-fab-solid-warning:focus {
20032
20121
  outline-style: solid;
20033
20122
  outline-width: 2px;
20034
20123
  outline-color: rgba(255, 152, 0, 0.3);
20035
20124
  }
20036
20125
 
20037
- .k-fab-error.k-state-focus,
20038
- .k-fab-error.k-state-focused,
20039
- .k-fab-error:focus {
20126
+ .k-fab-solid-error.k-focus,
20127
+ .k-fab-solid-error:focus {
20040
20128
  outline-style: solid;
20041
20129
  outline-width: 2px;
20042
20130
  outline-color: rgba(217, 40, 0, 0.3);
20043
20131
  }
20044
20132
 
20045
- .k-fab-dark.k-state-focus,
20046
- .k-fab-dark.k-state-focused,
20047
- .k-fab-dark:focus {
20133
+ .k-fab-solid-dark.k-focus,
20134
+ .k-fab-solid-dark:focus {
20048
20135
  outline-style: solid;
20049
20136
  outline-width: 2px;
20050
20137
  outline-color: rgba(64, 64, 64, 0.3);
20051
20138
  }
20052
20139
 
20053
- .k-fab-light.k-state-focus,
20054
- .k-fab-light.k-state-focused,
20055
- .k-fab-light:focus {
20140
+ .k-fab-solid-light.k-focus,
20141
+ .k-fab-solid-light:focus {
20056
20142
  outline-style: solid;
20057
20143
  outline-width: 2px;
20058
20144
  outline-color: rgba(235, 235, 235, 0.3);
20059
20145
  }
20060
20146
 
20061
- .k-fab-inverse.k-state-focus,
20062
- .k-fab-inverse.k-state-focused,
20063
- .k-fab-inverse:focus {
20147
+ .k-fab-solid-inverse.k-focus,
20148
+ .k-fab-solid-inverse:focus {
20064
20149
  outline-style: solid;
20065
20150
  outline-width: 2px;
20066
20151
  outline-color: rgba(64, 64, 64, 0.3);
20067
20152
  }
20068
20153
 
20069
- .k-state-active.k-fab-primary,
20070
- .k-state-selected.k-fab-primary,
20071
- .k-fab-primary:active {
20154
+ .k-active.k-fab-solid-primary,
20155
+ .k-selected.k-fab-solid-primary,
20156
+ .k-fab-solid-primary:active {
20072
20157
  border-color: #d64d00;
20073
20158
  background-color: #d64d00;
20074
20159
  }
20075
20160
 
20076
- .k-state-active.k-fab-secondary,
20077
- .k-state-selected.k-fab-secondary,
20078
- .k-fab-secondary:active {
20161
+ .k-active.k-fab-solid-secondary,
20162
+ .k-selected.k-fab-solid-secondary,
20163
+ .k-fab-solid-secondary:active {
20079
20164
  border-color: #cdcdcd;
20080
20165
  background-color: #cdcdcd;
20081
20166
  }
20082
20167
 
20083
- .k-state-active.k-fab-tertiary,
20084
- .k-state-selected.k-fab-tertiary,
20085
- .k-fab-tertiary:active {
20168
+ .k-active.k-fab-solid-tertiary,
20169
+ .k-selected.k-fab-solid-tertiary,
20170
+ .k-fab-solid-tertiary:active {
20086
20171
  border-color: #0395d7;
20087
20172
  background-color: #0395d7;
20088
20173
  }
20089
20174
 
20090
- .k-state-active.k-fab-info,
20091
- .k-state-selected.k-fab-info,
20092
- .k-fab-info:active {
20175
+ .k-active.k-fab-solid-info,
20176
+ .k-selected.k-fab-solid-info,
20177
+ .k-fab-solid-info:active {
20093
20178
  border-color: #2086a5;
20094
20179
  background-color: #2086a5;
20095
20180
  }
20096
20181
 
20097
- .k-state-active.k-fab-success,
20098
- .k-state-selected.k-fab-success,
20099
- .k-fab-success:active {
20182
+ .k-active.k-fab-solid-success,
20183
+ .k-selected.k-fab-solid-success,
20184
+ .k-fab-solid-success:active {
20100
20185
  border-color: #379045;
20101
20186
  background-color: #379045;
20102
20187
  }
20103
20188
 
20104
- .k-state-active.k-fab-warning,
20105
- .k-state-selected.k-fab-warning,
20106
- .k-fab-warning:active {
20189
+ .k-active.k-fab-solid-warning,
20190
+ .k-selected.k-fab-solid-warning,
20191
+ .k-fab-solid-warning:active {
20107
20192
  border-color: #e08600;
20108
20193
  background-color: #e08600;
20109
20194
  }
20110
20195
 
20111
- .k-state-active.k-fab-error,
20112
- .k-state-selected.k-fab-error,
20113
- .k-fab-error:active {
20196
+ .k-active.k-fab-solid-error,
20197
+ .k-selected.k-fab-solid-error,
20198
+ .k-fab-solid-error:active {
20114
20199
  border-color: #bf2300;
20115
20200
  background-color: #bf2300;
20116
20201
  }
20117
20202
 
20118
- .k-state-active.k-fab-dark,
20119
- .k-state-selected.k-fab-dark,
20120
- .k-fab-dark:active {
20203
+ .k-active.k-fab-solid-dark,
20204
+ .k-selected.k-fab-solid-dark,
20205
+ .k-fab-solid-dark:active {
20121
20206
  border-color: #383838;
20122
20207
  background-color: #383838;
20123
20208
  }
20124
20209
 
20125
- .k-state-active.k-fab-light,
20126
- .k-state-selected.k-fab-light,
20127
- .k-fab-light:active {
20210
+ .k-active.k-fab-solid-light,
20211
+ .k-selected.k-fab-solid-light,
20212
+ .k-fab-solid-light:active {
20128
20213
  border-color: #cfcfcf;
20129
20214
  background-color: #cfcfcf;
20130
20215
  }
20131
20216
 
20132
- .k-state-active.k-fab-inverse,
20133
- .k-state-selected.k-fab-inverse,
20134
- .k-fab-inverse:active {
20217
+ .k-active.k-fab-solid-inverse,
20218
+ .k-selected.k-fab-solid-inverse,
20219
+ .k-fab-solid-inverse:active {
20135
20220
  border-color: #383838;
20136
20221
  background-color: #383838;
20137
20222
  }
20138
20223
 
20139
- .k-state-disabled.k-fab-primary,
20140
- .k-fab-primary:disabled {
20224
+ .k-disabled.k-fab-solid-primary,
20225
+ .k-fab-solid-primary:disabled {
20141
20226
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
20142
20227
  background-color: #f89b66;
20143
20228
  color: white;
20144
20229
  opacity: 1;
20145
20230
  }
20146
20231
 
20147
- .k-state-disabled.k-fab-secondary,
20148
- .k-fab-secondary:disabled {
20232
+ .k-disabled.k-fab-solid-secondary,
20233
+ .k-fab-solid-secondary:disabled {
20149
20234
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
20150
20235
  background-color: #f2f2f2;
20151
20236
  color: #666666;
20152
20237
  opacity: 1;
20153
20238
  }
20154
20239
 
20155
- .k-state-disabled.k-fab-tertiary,
20156
- .k-fab-tertiary:disabled {
20240
+ .k-disabled.k-fab-solid-tertiary,
20241
+ .k-fab-solid-tertiary:disabled {
20157
20242
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
20158
20243
  background-color: #68cbf8;
20159
20244
  color: white;
20160
20245
  opacity: 1;
20161
20246
  }
20162
20247
 
20163
- .k-state-disabled.k-fab-info,
20164
- .k-fab-info:disabled {
20248
+ .k-disabled.k-fab-solid-info,
20249
+ .k-fab-solid-info:disabled {
20165
20250
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
20166
20251
  background-color: #7cc1d7;
20167
20252
  color: white;
20168
20253
  opacity: 1;
20169
20254
  }
20170
20255
 
20171
- .k-state-disabled.k-fab-success,
20172
- .k-fab-success:disabled {
20256
+ .k-disabled.k-fab-solid-success,
20257
+ .k-fab-solid-success:disabled {
20173
20258
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
20174
20259
  background-color: #8bc895;
20175
20260
  color: white;
20176
20261
  opacity: 1;
20177
20262
  }
20178
20263
 
20179
- .k-state-disabled.k-fab-warning,
20180
- .k-fab-warning:disabled {
20264
+ .k-disabled.k-fab-solid-warning,
20265
+ .k-fab-solid-warning:disabled {
20181
20266
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
20182
20267
  background-color: #ffc166;
20183
20268
  color: white;
20184
20269
  opacity: 1;
20185
20270
  }
20186
20271
 
20187
- .k-state-disabled.k-fab-error,
20188
- .k-fab-error:disabled {
20272
+ .k-disabled.k-fab-solid-error,
20273
+ .k-fab-solid-error:disabled {
20189
20274
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
20190
20275
  background-color: #e87e66;
20191
20276
  color: white;
20192
20277
  opacity: 1;
20193
20278
  }
20194
20279
 
20195
- .k-state-disabled.k-fab-dark,
20196
- .k-fab-dark:disabled {
20280
+ .k-disabled.k-fab-solid-dark,
20281
+ .k-fab-solid-dark:disabled {
20197
20282
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
20198
20283
  background-color: #8c8c8c;
20199
20284
  color: white;
20200
20285
  opacity: 1;
20201
20286
  }
20202
20287
 
20203
- .k-state-disabled.k-fab-light,
20204
- .k-fab-light:disabled {
20288
+ .k-disabled.k-fab-solid-light,
20289
+ .k-fab-solid-light:disabled {
20205
20290
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
20206
20291
  background-color: #f3f3f3;
20207
20292
  color: #666666;
20208
20293
  opacity: 1;
20209
20294
  }
20210
20295
 
20211
- .k-state-disabled.k-fab-inverse,
20212
- .k-fab-inverse:disabled {
20296
+ .k-disabled.k-fab-solid-inverse,
20297
+ .k-fab-solid-inverse:disabled {
20213
20298
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
20214
20299
  background-color: #8c8c8c;
20215
20300
  color: white;
@@ -20232,36 +20317,34 @@ kendo-label.k-radio-label > .k-label {
20232
20317
  outline-offset: -1px;
20233
20318
  }
20234
20319
 
20235
- .k-fab-item.k-state-hover .k-fab-item-icon,
20236
- .k-fab-item.k-state-hovered .k-fab-item-icon .k-fab-item:hover .k-fab-item-icon {
20320
+ .k-fab-item.k-hover .k-fab-item-icon,
20321
+ .k-fab-item:hover .k-fab-item-icon {
20237
20322
  border-color: #c2c2c2;
20238
20323
  background-color: #e6e6e6;
20239
20324
  }
20240
20325
 
20241
20326
  .k-fab-item:focus .k-fab-item-text,
20242
20327
  .k-fab-item:focus .k-fab-item-icon,
20243
- .k-fab-item.k-state-focus .k-fab-item-text,
20244
- .k-fab-item.k-state-focus .k-fab-item-icon,
20245
- .k-fab-item.k-state-focused .k-fab-item-text,
20246
- .k-fab-item.k-state-focused .k-fab-item-icon {
20328
+ .k-fab-item.k-focus .k-fab-item-text,
20329
+ .k-fab-item.k-focus .k-fab-item-icon {
20247
20330
  outline-style: solid;
20248
20331
  outline-width: 2px;
20249
20332
  outline-color: rgba(0, 0, 0, 0.08);
20250
20333
  }
20251
20334
 
20252
- .k-fab-item.k-state-active .k-fab-item-icon,
20335
+ .k-fab-item.k-active .k-fab-item-icon,
20253
20336
  .k-fab-item:active .k-fab-item-icon {
20254
20337
  border-color: #bababa;
20255
20338
  background-color: #dddddd;
20256
20339
  }
20257
20340
 
20258
- .k-fab-item.k-state-disabled,
20341
+ .k-fab-item.k-disabled,
20259
20342
  .k-fab-item:disabled {
20260
20343
  opacity: 1;
20261
20344
  }
20262
20345
 
20263
- .k-fab-item.k-state-disabled .k-fab-item-text,
20264
- .k-fab-item.k-state-disabled .k-fab-item-icon,
20346
+ .k-fab-item.k-disabled .k-fab-item-text,
20347
+ .k-fab-item.k-disabled .k-fab-item-icon,
20265
20348
  .k-fab-item:disabled .k-fab-item-text,
20266
20349
  .k-fab-item:disabled .k-fab-item-icon {
20267
20350
  box-shadow: 0 6px 10px rgba(91, 91, 91, 0.1744), 0 1px 18px rgba(101, 101, 101, 0.1552), 0 3px 5px rgba(70, 70, 70, 0.232);
@@ -20291,8 +20374,12 @@ kendo-label.k-radio-label > .k-label {
20291
20374
  }
20292
20375
 
20293
20376
  .k-menu-item {
20377
+ box-sizing: border-box;
20294
20378
  border-width: 0;
20295
20379
  outline: 0;
20380
+ display: flex;
20381
+ flex-flow: column nowrap;
20382
+ flex: none;
20296
20383
  position: relative;
20297
20384
  -webkit-user-select: none;
20298
20385
  -ms-user-select: none;
@@ -20316,26 +20403,30 @@ kendo-label.k-radio-label > .k-label {
20316
20403
  outline: 0;
20317
20404
  color: inherit;
20318
20405
  display: flex;
20319
- flex-direction: row;
20406
+ flex-flow: row nowrap;
20320
20407
  flex: 1 1 auto;
20408
+ gap: 4px;
20321
20409
  align-items: center;
20322
20410
  position: relative;
20323
20411
  white-space: nowrap;
20324
20412
  cursor: pointer;
20325
20413
  }
20326
20414
 
20327
- .k-menu-link > .k-icon:not(.k-menu-expand-arrow),
20328
- .k-menu-link > .k-image,
20329
- .k-menu-link > .k-sprite {
20330
- margin-right: 4px;
20415
+ .k-menu-link-text {
20416
+ display: flex;
20417
+ flex-flow: row nowrap;
20418
+ flex: 1 1 auto;
20419
+ overflow: hidden;
20420
+ text-overflow: ellipsis;
20331
20421
  }
20332
20422
 
20333
20423
  .k-menu-expand-arrow {
20334
- margin: 0;
20335
- position: absolute;
20336
- top: 50%;
20337
- transform: translateY(-50%);
20338
- right: 4px;
20424
+ margin-inline-end: -4px;
20425
+ display: inline-flex;
20426
+ flex-flow: row wrap;
20427
+ align-items: center;
20428
+ flex: none;
20429
+ position: relative;
20339
20430
  }
20340
20431
 
20341
20432
  .k-menu-horizontal {
@@ -20343,7 +20434,7 @@ kendo-label.k-radio-label > .k-label {
20343
20434
  }
20344
20435
 
20345
20436
  .k-menu-horizontal > .k-separator {
20346
- margin: 0 0px;
20437
+ margin: 0 4px;
20347
20438
  width: 0;
20348
20439
  height: auto;
20349
20440
  border-width: 0 0 0 1px;
@@ -20357,8 +20448,16 @@ kendo-label.k-radio-label > .k-label {
20357
20448
  .k-menu-vertical > .k-menu-item > .k-menu-link {
20358
20449
  }
20359
20450
 
20451
+ .k-menu-vertical .k-menu-expand-arrow {
20452
+ margin: 0;
20453
+ position: absolute;
20454
+ top: 50%;
20455
+ transform: translateY(-50%);
20456
+ right: 4px;
20457
+ }
20458
+
20360
20459
  .k-menu-vertical > .k-separator {
20361
- margin: 0px 0;
20460
+ margin: 4px 0;
20362
20461
  height: 0;
20363
20462
  border-width: 1px 0 0;
20364
20463
  border-style: solid;
@@ -20390,8 +20489,16 @@ kendo-label.k-radio-label > .k-label {
20390
20489
  margin-top: 0px;
20391
20490
  }
20392
20491
 
20492
+ .k-menu-group .k-menu-expand-arrow {
20493
+ margin: 0;
20494
+ position: absolute;
20495
+ top: 50%;
20496
+ transform: translateY(-50%);
20497
+ right: 4px;
20498
+ }
20499
+
20393
20500
  .k-menu-group .k-separator {
20394
- margin: 0px 0;
20501
+ margin: 4px 0;
20395
20502
  height: 0;
20396
20503
  border-width: 1px 0 0;
20397
20504
  border-style: solid;
@@ -20414,6 +20521,11 @@ kendo-label.k-radio-label > .k-label {
20414
20521
  padding-inline-end: 28px;
20415
20522
  }
20416
20523
 
20524
+ .k-menu-group-sm .k-menu-expand-arrow {
20525
+ margin-inline-start: 6px;
20526
+ margin-inline-end: -25px;
20527
+ }
20528
+
20417
20529
  .k-menu-group-md {
20418
20530
  font-size: 14px;
20419
20531
  line-height: 1.4285714286;
@@ -20429,13 +20541,18 @@ kendo-label.k-radio-label > .k-label {
20429
20541
  padding-inline-end: 32px;
20430
20542
  }
20431
20543
 
20544
+ .k-menu-group-md .k-menu-expand-arrow {
20545
+ margin-inline-start: 8px;
20546
+ margin-inline-end: -28px;
20547
+ }
20548
+
20432
20549
  .k-menu-group-lg {
20433
- font-size: 18px;
20550
+ font-size: 16px;
20434
20551
  line-height: 1.5;
20435
20552
  }
20436
20553
 
20437
20554
  .k-menu-group-lg .k-menu-item {
20438
- font-size: 18px;
20555
+ font-size: 16px;
20439
20556
  line-height: 1.5;
20440
20557
  }
20441
20558
 
@@ -20444,6 +20561,11 @@ kendo-label.k-radio-label > .k-label {
20444
20561
  padding-inline-end: 36px;
20445
20562
  }
20446
20563
 
20564
+ .k-menu-group-lg .k-menu-expand-arrow {
20565
+ margin-inline-start: 10px;
20566
+ margin-inline-end: -31px;
20567
+ }
20568
+
20447
20569
  .k-popups-wrapper {
20448
20570
  position: relative;
20449
20571
  border: 0;
@@ -20469,9 +20591,13 @@ kendo-label.k-radio-label > .k-label {
20469
20591
  z-index: 12000;
20470
20592
  }
20471
20593
 
20472
- .k-context-menu-popup > .k-popup:not(.k-menu-popup),
20473
20594
  .k-context-menu-popup .k-context-menu {
20474
- border: 0;
20595
+ border-width: 0;
20596
+ }
20597
+
20598
+ .k-popup .k-context-menu,
20599
+ .k-context-menu-popup .k-context-menu {
20600
+ border-width: 0;
20475
20601
  }
20476
20602
 
20477
20603
  .k-menu-scroll-wrapper {
@@ -20528,22 +20654,6 @@ kendo-label.k-radio-label > .k-label {
20528
20654
  border-top-width: 1px;
20529
20655
  }
20530
20656
 
20531
- .k-rtl .k-menu-link > .k-icon:not(.k-menu-expand-arrow),
20532
- .k-rtl .k-menu-link > .k-image,
20533
- .k-rtl .k-menu-link > .k-sprite,
20534
- [dir="rtl"] .k-menu-link > .k-icon:not(.k-menu-expand-arrow),
20535
- [dir="rtl"] .k-menu-link > .k-image,
20536
- [dir="rtl"] .k-menu-link > .k-sprite {
20537
- margin-left: 4px;
20538
- margin-right: 0;
20539
- }
20540
-
20541
- .k-rtl .k-menu-expand-arrow,
20542
- [dir="rtl"] .k-menu-expand-arrow {
20543
- right: unset;
20544
- left: 4px;
20545
- }
20546
-
20547
20657
  .k-rtl .k-menu-horizontal > .k-menu-item + .k-menu-item,
20548
20658
  [dir="rtl"] .k-menu-horizontal > .k-menu-item + .k-menu-item {
20549
20659
  margin-left: 0;
@@ -20811,7 +20921,7 @@ kendo-label.k-radio-label > .k-label {
20811
20921
  .k-window-title {
20812
20922
  padding: .5em 0;
20813
20923
  margin: -.5em 0;
20814
- font-size: 18px;
20924
+ font-size: 16px;
20815
20925
  line-height: 1.25;
20816
20926
  text-overflow: ellipsis;
20817
20927
  overflow: hidden;
@@ -21510,15 +21620,13 @@ kendo-card-footer {
21510
21620
  .k-card-title {
21511
21621
  margin: 0 0 8px;
21512
21622
  font-size: 16px;
21513
- font-family: inherit;
21514
- line-height: normal;
21623
+ line-height: 1.25;
21515
21624
  font-weight: 400;
21516
21625
  }
21517
21626
 
21518
21627
  .k-card-subtitle {
21519
21628
  margin: 0 0 8px;
21520
21629
  font-size: 12px;
21521
- font-family: inherit;
21522
21630
  line-height: normal;
21523
21631
  font-weight: 400;
21524
21632
  }
@@ -22586,7 +22694,7 @@ kendo-card-footer {
22586
22694
 
22587
22695
  .k-pager-input .k-textbox {
22588
22696
  margin: 0 1ex;
22589
- width: 3em;
22697
+ width: 5em;
22590
22698
  }
22591
22699
 
22592
22700
  .k-pager-sizes .k-dropdown-list,
@@ -23087,7 +23195,7 @@ kendo-card-footer {
23087
23195
  .k-tabstrip-items {
23088
23196
  outline: 0;
23089
23197
  display: flex;
23090
- flex-direction: row;
23198
+ flex-flow: row wrap;
23091
23199
  flex: 0 0 auto;
23092
23200
  }
23093
23201
 
@@ -24244,10 +24352,6 @@ kendo-card-footer {
24244
24352
  min-width: auto;
24245
24353
  }
24246
24354
 
24247
- .k-pane-wrapper .k-grid .k-grid-search {
24248
- width: 100%;
24249
- }
24250
-
24251
24355
  .k-grid.k-grid-mobile {
24252
24356
  border-width: 0;
24253
24357
  }
@@ -25426,14 +25530,6 @@ div.k-grid-footer {
25426
25530
  padding: 4px 8px;
25427
25531
  }
25428
25532
 
25429
- .k-grid-columnmenu-popup {
25430
- width: 230px;
25431
- }
25432
-
25433
- .k-grid-columnmenu-popup.k-popup {
25434
- padding: 2px 0;
25435
- }
25436
-
25437
25533
  .k-filter-row {
25438
25534
  line-height: 1.4285714286;
25439
25535
  }
@@ -25882,84 +25978,85 @@ div.k-grid-norecords {
25882
25978
  padding: 0 !important;
25883
25979
  }
25884
25980
 
25885
- .k-filter-menu.k-popup .k-filter-menu-container,
25886
- .k-grid-filter-popup.k-popup .k-filter-menu-container {
25981
+ .k-filter-menu-popup {
25887
25982
  width: 230px;
25888
25983
  }
25889
25984
 
25890
- .k-filter-menu.k-popup .k-multicheck-wrap,
25891
- .k-grid-filter-popup.k-popup .k-multicheck-wrap,
25892
- .k-popup .k-filter-menu .k-multicheck-wrap,
25893
- .k-popup .k-grid-filter-popup .k-multicheck-wrap {
25894
- padding: 8px 8px 0;
25985
+ .k-filter-menu {
25986
+ box-sizing: border-box;
25895
25987
  }
25896
25988
 
25897
- .k-filter-menu.k-popup .k-multicheck-wrap .k-item,
25898
- .k-grid-filter-popup.k-popup .k-multicheck-wrap .k-item,
25899
- .k-popup .k-filter-menu .k-multicheck-wrap .k-item,
25900
- .k-popup .k-grid-filter-popup .k-multicheck-wrap .k-item {
25901
- padding: 2px 0;
25989
+ .k-filter-menu-container {
25990
+ padding: 8px;
25991
+ box-sizing: border-box;
25992
+ display: flex;
25993
+ flex-flow: column nowrap;
25994
+ align-items: stretch;
25995
+ gap: 8px;
25902
25996
  }
25903
25997
 
25904
- .k-filter-menu.k-popup .k-multicheck-wrap .k-check-all-wrap,
25905
- .k-grid-filter-popup.k-popup .k-multicheck-wrap .k-check-all-wrap,
25906
- .k-popup .k-filter-menu .k-multicheck-wrap .k-check-all-wrap,
25907
- .k-popup .k-grid-filter-popup .k-multicheck-wrap .k-check-all-wrap {
25908
- padding-bottom: 4px;
25909
- border-bottom-width: 1px;
25910
- border-bottom-style: solid;
25998
+ .k-filter-menu-container .k-filter-and {
25999
+ width: min-content;
26000
+ align-self: start;
25911
26001
  }
25912
26002
 
25913
- .k-filter-menu.k-popup .k-filter-help-text,
25914
- .k-grid-filter-popup.k-popup .k-filter-help-text,
25915
- .k-popup .k-filter-menu .k-filter-help-text,
25916
- .k-popup .k-grid-filter-popup .k-filter-help-text {
25917
- padding: 8px 8px 0;
26003
+ .k-filter-menu-container .k-actions, .k-filter-menu-container .k-edit-buttons,
26004
+ .k-filter-menu-container .k-action-buttons,
26005
+ .k-filter-menu-container .k-columnmenu-actions, .k-filter-menu-container .k-form-buttons {
26006
+ margin: 0;
26007
+ padding: 0;
25918
26008
  }
25919
26009
 
25920
- .k-filter-menu.k-popup .k-filter-selected-items,
25921
- .k-grid-filter-popup.k-popup .k-filter-selected-items,
25922
- .k-popup .k-filter-menu .k-filter-selected-items,
25923
- .k-popup .k-grid-filter-popup .k-filter-selected-items {
25924
- padding: 8px 8px 0;
26010
+ .k-filter-menu-container kendo-numeric-filter-menu,
26011
+ .k-filter-menu-container kendo-grid-string-filter-menu,
26012
+ .k-filter-menu-container kendo-grid-date-filter-menu,
26013
+ .k-filter-menu-container kendo-grid-filter-menu-input-wrapper {
26014
+ display: flex;
26015
+ flex-flow: column nowrap;
26016
+ align-items: stretch;
26017
+ gap: 8px;
25925
26018
  }
25926
26019
 
25927
- .k-filter-menu .k-filter-menu-container {
25928
- box-sizing: border-box;
26020
+ .k-ie .k-filter-menu-container > * {
26021
+ margin-top: 8px;
25929
26022
  }
25930
26023
 
25931
- .k-filter-menu .k-widget,
25932
- .k-filter-menu .k-textbox,
25933
- .k-filter-menu .k-dropdown,
25934
- .k-filter-menu .k-numerictextbox,
25935
- .k-filter-menu .k-radio-list,
25936
- .k-filter-menu .k-datepicker,
25937
- .k-filter-menu .k-input {
25938
- margin: 8px 8px 0;
25939
- width: calc(100% - 16px);
25940
- box-sizing: border-box;
25941
- display: flex;
26024
+ .k-ie .k-filter-menu-container > :first-child {
26025
+ margin-top: 0;
25942
26026
  }
25943
26027
 
25944
- .k-filter-menu .k-switch {
25945
- margin: 8px 8px 0;
25946
- box-sizing: border-box;
25947
- display: flex;
26028
+ .k-ie .k-filter-menu-container .k-filter-and,
26029
+ .k-ie .k-filter-menu-container kendo-grid-filter-menu-input-wrapper > * {
26030
+ margin-top: 8px;
25948
26031
  }
25949
26032
 
25950
- .k-filter-menu .k-widget.k-filter-and {
25951
- width: 6em;
26033
+ .k-ie .k-filter-menu-container kendo-grid-filter-menu-input-wrapper > :first-child {
26034
+ margin-top: 0;
25952
26035
  }
25953
26036
 
25954
- .k-filter-menu .k-widget.k-button-group {
25955
- width: auto;
25956
- display: inline-flex;
26037
+ .k-filter-menu.k-popup .k-filter-menu-container,
26038
+ .k-grid-filter-popup.k-popup .k-filter-menu-container {
26039
+ width: 230px;
25957
26040
  }
25958
26041
 
25959
- .k-multicheck-wrap {
26042
+ .k-popup .k-multicheck-wrap {
26043
+ margin: 0;
26044
+ padding: 0;
25960
26045
  max-height: 300px;
25961
26046
  white-space: nowrap;
25962
26047
  overflow: auto;
26048
+ list-style: none;
26049
+ }
26050
+
26051
+ .k-popup .k-multicheck-wrap .k-item,
26052
+ .k-popup .k-multicheck-wrap .k-check-all-wrap {
26053
+ padding: 4px 8px;
26054
+ }
26055
+
26056
+ .k-popup .k-multicheck-wrap .k-item > .k-checkbox-label,
26057
+ .k-popup .k-multicheck-wrap .k-check-all-wrap > .k-checkbox-label {
26058
+ line-height: inherit;
26059
+ display: block;
25963
26060
  }
25964
26061
 
25965
26062
  .k-filter-selected-items {
@@ -25982,10 +26079,48 @@ div.k-grid-norecords {
25982
26079
  display: none !important;
25983
26080
  }
25984
26081
 
25985
- .k-autofitting input.k-input,
25986
- .k-autofitting span.k-input,
25987
- .k-autofitting input.k-textbox {
25988
- width: 0 !important;
26082
+ .k-column-menu-popup,
26083
+ .k-grid-columnmenu-popup {
26084
+ width: 230px;
26085
+ box-sizing: border-box;
26086
+ }
26087
+
26088
+ .k-column-menu-popup.k-popup,
26089
+ .k-grid-columnmenu-popup.k-popup {
26090
+ }
26091
+
26092
+ .k-popup > .k-column-menu-popup, .k-popup >
26093
+ .k-grid-columnmenu-popup {
26094
+ width: 100%;
26095
+ }
26096
+
26097
+ .k-column-menu-popup .k-actions, .k-column-menu-popup .k-edit-buttons,
26098
+ .k-column-menu-popup .k-action-buttons,
26099
+ .k-column-menu-popup .k-columnmenu-actions, .k-column-menu-popup .k-form-buttons,
26100
+ .k-grid-columnmenu-popup .k-actions,
26101
+ .k-grid-columnmenu-popup .k-edit-buttons,
26102
+ .k-grid-columnmenu-popup .k-action-buttons,
26103
+ .k-grid-columnmenu-popup .k-columnmenu-actions,
26104
+ .k-grid-columnmenu-popup .k-form-buttons {
26105
+ margin: 0;
26106
+ }
26107
+
26108
+ .k-column-menu {
26109
+ box-sizing: border-box;
26110
+ }
26111
+
26112
+ .k-column-menu .k-menu:not(.k-context-menu) {
26113
+ font-weight: 400;
26114
+ }
26115
+
26116
+ .k-column-menu .k-expander {
26117
+ border: 0;
26118
+ background: inherit;
26119
+ }
26120
+
26121
+ .k-column-menu .k-expander .k-columnmenu-item {
26122
+ display: flex;
26123
+ align-items: center;
25989
26124
  }
25990
26125
 
25991
26126
  .k-column-list {
@@ -25999,7 +26134,7 @@ div.k-grid-norecords {
25999
26134
 
26000
26135
  .k-column-chooser-title,
26001
26136
  .k-column-list-item {
26002
- padding: 2px 8px;
26137
+ padding: 4px 8px;
26003
26138
  }
26004
26139
 
26005
26140
  .k-column-list-item {
@@ -26032,23 +26167,6 @@ div.k-grid-norecords {
26032
26167
  overflow: hidden;
26033
26168
  }
26034
26169
 
26035
- .k-filter-menu .k-actions, .k-filter-menu .k-edit-buttons,
26036
- .k-filter-menu .k-action-buttons,
26037
- .k-filter-menu .k-columnmenu-actions, .k-filter-menu .k-form-buttons,
26038
- .k-column-list-wrapper .k-actions,
26039
- .k-column-list-wrapper .k-edit-buttons,
26040
- .k-column-list-wrapper .k-action-buttons,
26041
- .k-column-list-wrapper .k-columnmenu-actions,
26042
- .k-column-list-wrapper .k-form-buttons,
26043
- .k-columnmenu-item-content .k-actions,
26044
- .k-columnmenu-item-content .k-edit-buttons,
26045
- .k-columnmenu-item-content .k-action-buttons,
26046
- .k-columnmenu-item-content .k-columnmenu-actions,
26047
- .k-columnmenu-item-content .k-form-buttons {
26048
- margin-top: 4px;
26049
- padding: 8px 8px;
26050
- }
26051
-
26052
26170
  .k-column-menu-group-header {
26053
26171
  padding: 4px 8px;
26054
26172
  display: flex;
@@ -26068,20 +26186,6 @@ div.k-grid-norecords {
26068
26186
  flex: 1 1 auto;
26069
26187
  }
26070
26188
 
26071
- .k-column-menu .k-menu:not(.k-context-menu) {
26072
- font-weight: 400;
26073
- }
26074
-
26075
- .k-column-menu .k-expander {
26076
- border: 0;
26077
- background: inherit;
26078
- }
26079
-
26080
- .k-column-menu .k-expander .k-columnmenu-item {
26081
- display: flex;
26082
- align-items: center;
26083
- }
26084
-
26085
26189
  [dir="rtl"] .k-columnmenu-item > .k-icon,
26086
26190
  .k-rtl .k-columnmenu-item > .k-icon {
26087
26191
  margin-left: 4px;
@@ -26498,7 +26602,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
26498
26602
  .k-listview {
26499
26603
  margin: 0;
26500
26604
  padding: 0;
26501
- border-width: 1px;
26605
+ border-width: 0;
26502
26606
  border-style: solid;
26503
26607
  box-sizing: border-box;
26504
26608
  outline: 0;
@@ -26517,7 +26621,6 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
26517
26621
 
26518
26622
  .k-listview-header {
26519
26623
  border-width: 0;
26520
- border-bottom-width: 1px;
26521
26624
  border-style: solid;
26522
26625
  border-color: inherit;
26523
26626
  }
@@ -26583,7 +26686,6 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
26583
26686
 
26584
26687
  .k-listview-footer {
26585
26688
  border-width: 0;
26586
- border-top-width: 1px;
26587
26689
  border-style: solid;
26588
26690
  border-color: inherit;
26589
26691
  }
@@ -26594,16 +26696,10 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
26594
26696
 
26595
26697
  .k-listview-pager {
26596
26698
  border-width: 0;
26597
- border-top-width: 1px;
26598
26699
  border-color: inherit;
26599
26700
  font: inherit;
26600
26701
  }
26601
26702
 
26602
- .k-listview-pager-top {
26603
- border-top-width: 0;
26604
- border-bottom-width: 1px;
26605
- }
26606
-
26607
26703
  .k-listview-bordered > .k-listview-pager-top {
26608
26704
  border-bottom-width: 1px;
26609
26705
  }
@@ -26729,18 +26825,11 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
26729
26825
  min-width: 1.4285714286em;
26730
26826
  }
26731
26827
 
26732
- .k-spreadsheet-toolbar [data-tool="fontSize"] {
26828
+ .k-spreadsheet-toolbar .k-input,
26829
+ .k-spreadsheet-toolbar .k-picker:not(.k-colorpicker) {
26733
26830
  width: 5em;
26734
26831
  }
26735
26832
 
26736
- .k-spreadsheet-toolbar [data-tool="fontFamily"] {
26737
- width: 6em;
26738
- }
26739
-
26740
- .k-spreadsheet-toolbar [data-tool="format"] {
26741
- width: 4em;
26742
- }
26743
-
26744
26833
  .k-spreadsheet-action-bar {
26745
26834
  border-width: 0 0 1px;
26746
26835
  border-style: solid;
@@ -26894,6 +26983,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
26894
26983
  font-family: Arial, Verdana, Sans-serif;
26895
26984
  flex: 1;
26896
26985
  position: relative;
26986
+ overflow: hidden;
26897
26987
  }
26898
26988
 
26899
26989
  .k-spreadsheet-view .k-state-disabled {
@@ -27251,34 +27341,51 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
27251
27341
  overflow: visible;
27252
27342
  }
27253
27343
 
27254
- .k-spreadsheet-filter-menu .k-details {
27344
+ .k-spreadsheet-filter-menu .k-details,
27345
+ .k-spreadsheet-filter-menu .k-expander {
27255
27346
  padding: 0;
27256
27347
  border-width: 1px 0 0;
27257
27348
  border-style: solid;
27258
27349
  border-color: inherit;
27259
27350
  }
27260
27351
 
27261
- .k-spreadsheet-filter-menu .k-details-summary {
27262
- padding: 4px;
27352
+ .k-spreadsheet-filter-menu .k-expander {
27353
+ border: 0;
27354
+ background: inherit;
27355
+ }
27356
+
27357
+ .k-spreadsheet-filter-menu .k-details-summary,
27358
+ .k-spreadsheet-filter-menu .k-columnmenu-item {
27359
+ padding: 4px 8px;
27360
+ display: flex;
27361
+ align-items: center;
27263
27362
  cursor: pointer;
27264
27363
  }
27265
27364
 
27266
- .k-spreadsheet-filter-menu .k-details-summary > .k-icon {
27365
+ .k-spreadsheet-filter-menu .k-details-summary > .k-icon,
27366
+ .k-spreadsheet-filter-menu .k-columnmenu-item > .k-icon {
27267
27367
  margin-right: 4px;
27268
27368
  }
27269
27369
 
27270
- .k-spreadsheet-filter-menu .k-details-content {
27271
- padding: 4px 8px 4px 24px;
27370
+ .k-spreadsheet-filter-menu .k-details-content,
27371
+ .k-spreadsheet-filter-menu .k-columnmenu-item-content {
27372
+ padding: 8px;
27373
+ display: flex;
27374
+ flex-flow: column nowrap;
27375
+ gap: 8px;
27272
27376
  }
27273
27377
 
27274
- .k-spreadsheet-filter-menu .k-details-content > .k-widget {
27275
- width: 100%;
27276
- margin-bottom: 3px;
27378
+ .k-spreadsheet-filter-menu .k-details-content .k-filter-and,
27379
+ .k-spreadsheet-filter-menu .k-columnmenu-item-content .k-filter-and {
27380
+ width: min-content;
27381
+ align-self: flex-start;
27277
27382
  }
27278
27383
 
27279
- .k-spreadsheet-filter-menu .k-details-content .k-filter-and {
27280
- width: 75px;
27281
- margin: 8px 0;
27384
+ .k-spreadsheet-filter-menu .k-actions, .k-spreadsheet-filter-menu .k-edit-buttons,
27385
+ .k-spreadsheet-filter-menu .k-action-buttons,
27386
+ .k-spreadsheet-filter-menu .k-columnmenu-actions, .k-spreadsheet-filter-menu .k-form-buttons {
27387
+ margin: 0;
27388
+ padding: 0;
27282
27389
  }
27283
27390
 
27284
27391
  .k-spreadsheet-popup {
@@ -29417,6 +29524,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
29417
29524
  background: transparent;
29418
29525
  }
29419
29526
 
29527
+ .k-editor-toolbar,
29420
29528
  .k-editor > .k-toolbar {
29421
29529
  border-width: 0 0 1px 0;
29422
29530
  flex-shrink: 0;
@@ -29444,11 +29552,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
29444
29552
  visibility: hidden;
29445
29553
  }
29446
29554
 
29447
- .k-editor-toolbar .k-overflow-anchor {
29448
- border-width: 0;
29449
- padding: 8px;
29450
- width: calc(1.4285714286em + 26px);
29451
- height: calc(1.4285714286em + 26px);
29555
+ .k-editor-toolbar .k-overflow-tools .k-overflow-anchor {
29452
29556
  position: relative;
29453
29557
  }
29454
29558
 
@@ -29795,6 +29899,23 @@ td.k-editor-content {
29795
29899
  margin-bottom: 0;
29796
29900
  }
29797
29901
 
29902
+ .k-editor-table-wizard-dialog .k-numerictextbox {
29903
+ width: 10em;
29904
+ }
29905
+
29906
+ .k-editor-table-wizard-dialog .k-numerictextbox + .k-dropdown-list {
29907
+ width: 5em;
29908
+ }
29909
+
29910
+ .k-editor-table-wizard-dialog .k-numerictextbox + .k-colorpicker,
29911
+ .k-editor-table-wizard-dialog .k-numerictextbox + .k-dropdown-list {
29912
+ margin-left: 8px;
29913
+ }
29914
+
29915
+ .k-editor-table-wizard-dialog .k-colorpicker {
29916
+ vertical-align: middle;
29917
+ }
29918
+
29798
29919
  .k-editor-table-wizard-dialog .k-edit-field > .k-checkbox {
29799
29920
  position: relative;
29800
29921
  }
@@ -30013,18 +30134,17 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
30013
30134
  }
30014
30135
 
30015
30136
  .k-imageeditor-action-pane {
30137
+ padding: 32px 16px;
30138
+ width: 241px;
30016
30139
  border-width: 0;
30017
30140
  border-left-width: 1px;
30018
30141
  border-style: solid;
30019
30142
  border-color: inherit;
30020
- flex-shrink: 0;
30143
+ box-sizing: border-box;
30144
+ flex: none;
30021
30145
  overflow-y: auto;
30022
30146
  }
30023
30147
 
30024
- .k-imageeditor-action-pane > .k-form {
30025
- padding: 32px 16px;
30026
- }
30027
-
30028
30148
  .k-imageeditor-crop-overlay {
30029
30149
  width: 100%;
30030
30150
  height: 100%;
@@ -30103,10 +30223,6 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
30103
30223
  align-self: flex-start;
30104
30224
  }
30105
30225
 
30106
- .k-ie .k-imageeditor-action-pane {
30107
- flex: 0 0 auto;
30108
- }
30109
-
30110
30226
  .k-imageeditor {
30111
30227
  border-color: #cacaca;
30112
30228
  color: #272727;
@@ -30741,7 +30857,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
30741
30857
  }
30742
30858
 
30743
30859
  .k-task-details strong {
30744
- font-size: 18px;
30860
+ font-size: 16px;
30745
30861
  font-weight: normal;
30746
30862
  display: block;
30747
30863
  }
@@ -32024,7 +32140,7 @@ kendo-scheduler .k-recurrence-editor {
32024
32140
  .k-scheduler-edit-form .k-widget.k-recur-month,
32025
32141
  .k-scheduler-edit-form .k-widget.k-recur-weekday,
32026
32142
  .k-scheduler-edit-form .k-widget.k-recur-weekday-offset {
32027
- width: 9em;
32143
+ width: 10em;
32028
32144
  }
32029
32145
 
32030
32146
  .k-rtl .k-scheduler-header th,
@@ -32555,6 +32671,7 @@ kendo-scheduler .k-recurrence-editor {
32555
32671
  }
32556
32672
 
32557
32673
  .k-message-box .k-button {
32674
+ border-width: 0;
32558
32675
  flex-shrink: 0;
32559
32676
  }
32560
32677
 
@@ -32685,9 +32802,6 @@ kendo-scheduler .k-recurrence-editor {
32685
32802
 
32686
32803
  .k-chat-toolbar .k-button,
32687
32804
  .k-chat .k-toolbar-box .k-button {
32688
- border-color: transparent;
32689
- color: inherit;
32690
- background: none;
32691
32805
  flex: none;
32692
32806
  }
32693
32807
 
@@ -32867,17 +32981,6 @@ kendo-scheduler .k-recurrence-editor {
32867
32981
  background-color: #f0f0f0;
32868
32982
  }
32869
32983
 
32870
- .k-chat-toolbar .k-scroll-button,
32871
- .k-chat .k-toolbar-box .k-scroll-button {
32872
- background-color: #ffffff;
32873
- box-shadow: 0 0 20px 5px #ffffff;
32874
- }
32875
-
32876
- .k-chat-toolbar .k-scroll-button:hover,
32877
- .k-chat .k-toolbar-box .k-scroll-button:hover {
32878
- background-color: #ffffff;
32879
- }
32880
-
32881
32984
  .k-mediaplayer {
32882
32985
  border-width: 1px;
32883
32986
  border-style: solid;
@@ -32922,6 +33025,10 @@ kendo-scheduler .k-recurrence-editor {
32922
33025
  box-shadow: none;
32923
33026
  }
32924
33027
 
33028
+ .k-mediaplayer-toolbar .k-dropdown-list {
33029
+ width: auto;
33030
+ }
33031
+
32925
33032
  .k-mediaplayer-time-wrap {
32926
33033
  flex: 1;
32927
33034
  }
@@ -33495,7 +33602,7 @@ kendo-scheduler .k-recurrence-editor {
33495
33602
 
33496
33603
  .k-pdf-viewer .k-page .k-text-layer > span {
33497
33604
  position: absolute;
33498
- line-height: 1.2;
33605
+ line-height: 1.25;
33499
33606
  transform-origin: 0% 0%;
33500
33607
  color: transparent;
33501
33608
  }
@@ -33510,31 +33617,33 @@ kendo-scheduler .k-recurrence-editor {
33510
33617
 
33511
33618
  .k-pdf-viewer-search-dialog .k-search-container {
33512
33619
  display: flex;
33620
+ gap: 8px;
33621
+ flex-flow: row nowrap;
33513
33622
  flex: 0 0 auto;
33514
33623
  justify-content: flex-start;
33515
33624
  align-items: center;
33516
33625
  }
33517
33626
 
33518
- .k-pdf-viewer-search-dialog .k-search-container .k-match-case-button {
33519
- display: inline-flex;
33520
- height: 1.4285714286em;
33521
- justify-content: center;
33627
+ .k-pdf-viewer-search-dialog .k-search-container .k-search-dialog-draghandle {
33628
+ cursor: move;
33629
+ margin-left: 0;
33522
33630
  }
33523
33631
 
33524
- .k-pdf-viewer-search-dialog .k-search-container .k-search-matches {
33525
- display: inline-block;
33526
- min-width: 4.5em;
33527
- margin: 0 8px 0 8px;
33528
- vertical-align: middle;
33632
+ .k-pdf-viewer-search-dialog .k-search-container .k-textbox {
33633
+ width: 10em;
33634
+ flex: none;
33529
33635
  }
33530
33636
 
33531
- .k-pdf-viewer-search-dialog .k-search-container > .k-button {
33532
- margin-left: 8px;
33637
+ .k-pdf-viewer-search-dialog .k-search-container .k-textbox .k-button {
33638
+ border-width: 0;
33533
33639
  }
33534
33640
 
33535
- .k-pdf-viewer-search-dialog .k-search-container .k-search-dialog-draghandle {
33536
- cursor: move;
33537
- margin-left: 0;
33641
+ .k-pdf-viewer-search-dialog .k-search-container .k-search-matches {
33642
+ flex: 1 1 auto;
33643
+ }
33644
+
33645
+ .k-ie .k-pdf-viewer-search-dialog .k-search-container > * + * {
33646
+ margin-left: 8px;
33538
33647
  }
33539
33648
 
33540
33649
  .k-pdf-viewer {
@@ -34722,24 +34831,42 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
34722
34831
  display: none;
34723
34832
  }
34724
34833
 
34834
+ .k-navigator .k-button {
34835
+ padding: 0;
34836
+ width: auto;
34837
+ height: auto;
34838
+ line-height: 1;
34839
+ box-shadow: none;
34840
+ position: absolute;
34841
+ }
34842
+
34843
+ .k-navigator .k-button .k-icon {
34844
+ min-width: 0;
34845
+ min-height: 0;
34846
+ }
34847
+
34848
+ .k-navigator .k-navigator-n,
34725
34849
  .k-navigator .k-navigator-up {
34726
34850
  transform: translateX(-50%);
34727
34851
  top: 2px;
34728
34852
  left: 50%;
34729
34853
  }
34730
34854
 
34855
+ .k-navigator .k-navigator-e,
34731
34856
  .k-navigator .k-navigator-right {
34732
34857
  transform: translateY(-50%);
34733
34858
  right: 2px;
34734
34859
  top: 50%;
34735
34860
  }
34736
34861
 
34862
+ .k-navigator .k-navigator-s,
34737
34863
  .k-navigator .k-navigator-down {
34738
34864
  transform: translateX(-50%);
34739
34865
  bottom: 2px;
34740
34866
  left: 50%;
34741
34867
  }
34742
34868
 
34869
+ .k-navigator .k-navigator-w,
34743
34870
  .k-navigator .k-navigator-left {
34744
34871
  transform: translateY(-50%);
34745
34872
  left: 2px;
@@ -34818,7 +34945,7 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
34818
34945
  .k-orgchart-node-group-title {
34819
34946
  margin: 0 0 6px;
34820
34947
  font-size: 20px;
34821
- line-height: 1.2;
34948
+ line-height: 1.25;
34822
34949
  }
34823
34950
 
34824
34951
  .k-orgchart-node-group-subtitle {
@@ -34833,12 +34960,10 @@ div.k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
34833
34960
 
34834
34961
  .k-orgchart-card .k-card-title {
34835
34962
  margin: 0 0 0px;
34836
- font-size: 20px;
34837
34963
  }
34838
34964
 
34839
34965
  .k-orgchart-card .k-card-subtitle {
34840
34966
  margin: 0 0 0px;
34841
- font-size: 16px;
34842
34967
  }
34843
34968
 
34844
34969
  .k-orgchart-card .k-card-body {