@progress/kendo-theme-bootstrap 4.43.1-dev.5 → 4.43.1-dev.6

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.
Files changed (27) hide show
  1. package/dist/all.css +973 -358
  2. package/dist/all.scss +402 -419
  3. package/modules/@progress/kendo-theme-default/package.json +2 -2
  4. package/modules/@progress/kendo-theme-default/scss/button/_layout.scss +54 -91
  5. package/modules/@progress/kendo-theme-default/scss/button/_theme.scss +177 -112
  6. package/modules/@progress/kendo-theme-default/scss/button/_variables.scss +74 -11
  7. package/modules/@progress/kendo-theme-default/scss/chat/_layout.scss +6 -0
  8. package/modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss +0 -4
  9. package/modules/@progress/kendo-theme-default/scss/common/_loading.scss +1 -13
  10. package/modules/@progress/kendo-theme-default/scss/grid/_layout.scss +1 -1
  11. package/modules/@progress/kendo-theme-default/scss/grid/_theme.scss +0 -6
  12. package/modules/@progress/kendo-theme-default/scss/listbox/_layout.scss +9 -0
  13. package/modules/@progress/kendo-theme-default/scss/mediaplayer/_layout.scss +8 -1
  14. package/modules/@progress/kendo-theme-default/scss/multiselect/_layout.scss +2 -2
  15. package/modules/@progress/kendo-theme-default/scss/slider/_layout.scss +35 -143
  16. package/modules/@progress/kendo-theme-default/scss/slider/_theme.scss +0 -6
  17. package/modules/@progress/kendo-theme-default/scss/spreadsheet/_layout.scss +1 -0
  18. package/modules/@progress/kendo-theme-default/scss/tabstrip/_layout.scss +5 -1
  19. package/modules/@progress/kendo-theme-default/scss/textarea/_layout.scss +1 -1
  20. package/modules/@progress/kendo-theme-default/scss/toolbar/_layout.scss +1 -0
  21. package/modules/@progress/kendo-theme-default/scss/treelist/_layout.scss +4 -0
  22. package/modules/@progress/kendo-theme-default/scss/treeview/_layout.scss +12 -18
  23. package/modules/@progress/kendo-theme-default/scss/window/_layout.scss +2 -2
  24. package/package.json +3 -3
  25. package/scss/button/_variables.scss +81 -18
  26. package/scss/grid/_theme.scss +0 -6
  27. package/scss/multiselect/_layout.scss +2 -0
package/dist/all.css CHANGED
@@ -958,16 +958,6 @@ kendo-sortable {
958
958
  bottom: -4px;
959
959
  }
960
960
 
961
- .k-loading {
962
- width: 64px;
963
- height: 64px;
964
- display: block;
965
- }
966
-
967
- .k-loading .animate {
968
- animation: loading 2s infinite linear;
969
- }
970
-
971
961
  .k-loading-mask,
972
962
  .k-loading-image,
973
963
  .k-loading-color {
@@ -1054,7 +1044,7 @@ kendo-sortable {
1054
1044
  .k-loading-image::after {
1055
1045
  content: "";
1056
1046
  border-width: 1px;
1057
- border-width: max( 1px, .015em );
1047
+ border-width: clamp(0.015em, 1px, 1px);
1058
1048
  font-size: 4em;
1059
1049
  }
1060
1050
 
@@ -13597,54 +13587,49 @@ kendo-badge-container {
13597
13587
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
13598
13588
  }
13599
13589
 
13600
- .k-button-group .k-button {
13601
- border-radius: 0;
13602
- }
13603
-
13604
- .k-button-group .k-button ~ .k-button {
13590
+ .k-button-group > .k-button + .k-button {
13605
13591
  margin-inline-start: -1px;
13606
13592
  }
13607
13593
 
13608
- .k-button-group .k-button:hover,
13609
- .k-button-group .k-button.k-state-hover,
13610
- .k-button-group .k-button:active,
13611
- .k-button-group .k-button.k-state-active,
13612
- .k-button-group .k-button.k-state-selected,
13613
- .k-button-group .k-button:focus,
13614
- .k-button-group .k-button.k-state-focus {
13594
+ .k-button-group > .k-button:hover,
13595
+ .k-button-group > .k-button.k-state-hover,
13596
+ .k-button-group > .k-button:focus,
13597
+ .k-button-group > .k-button.k-state-focus,
13598
+ .k-button-group > .k-button:active,
13599
+ .k-button-group > .k-button.k-state-active,
13600
+ .k-button-group > .k-button.k-state-selected {
13615
13601
  z-index: 2;
13616
13602
  }
13617
13603
 
13618
- .k-button-group .k-group-start,
13619
- .k-button-group .k-button:first-child {
13620
- border-top-left-radius: 0.25rem;
13621
- border-bottom-left-radius: 0.25rem;
13604
+ .k-button-group .k-button:not(:first-child):not(:last-child) {
13605
+ border-start-end-radius: 0;
13606
+ border-end-end-radius: 0;
13607
+ border-start-start-radius: 0;
13608
+ border-end-start-radius: 0;
13622
13609
  }
13623
13610
 
13624
- .k-button-group .k-group-end,
13625
- .k-button-group .k-button:last-child {
13626
- border-top-right-radius: 0.25rem;
13627
- border-bottom-right-radius: 0.25rem;
13611
+ .k-button-group > .k-button:first-child:not(:only-child) {
13612
+ border-start-end-radius: 0;
13613
+ border-end-end-radius: 0;
13628
13614
  }
13629
13615
 
13630
- .k-button-group .k-group-start.k-group-end,
13631
- .k-button-group .k-button:first-child:last-child {
13632
- border-radius: 0.25rem;
13616
+ .k-button-group > .k-button:last-child:not(:only-child) {
13617
+ border-start-start-radius: 0;
13618
+ border-end-start-radius: 0;
13619
+ }
13620
+
13621
+ .k-button-group:disabled, .k-button-group[disabled], .k-button-group.k-disabled, .k-button-group.k-state-disabled {
13622
+ opacity: 1;
13623
+ filter: none;
13633
13624
  }
13634
13625
 
13635
13626
  .k-button-group-stretched {
13636
- display: flex;
13627
+ width: 100%;
13637
13628
  }
13638
13629
 
13639
- .k-button-group-stretched .k-button {
13640
- display: inline-block;
13630
+ .k-button-group-stretched > * {
13641
13631
  flex: 1 0 0%;
13642
13632
  overflow: hidden;
13643
- text-overflow: ellipsis;
13644
- }
13645
-
13646
- .k-button-group-stretched .k-button > .k-icon {
13647
- vertical-align: text-bottom;
13648
13633
  }
13649
13634
 
13650
13635
  .k-split-button {
@@ -13656,37 +13641,14 @@ kendo-badge-container {
13656
13641
  vertical-align: middle;
13657
13642
  }
13658
13643
 
13659
- .k-split-button .k-button {
13660
- border-radius: 0;
13661
- }
13662
-
13663
- .k-split-button > .k-button:first-child {
13664
- border-top-left-radius: 0.25rem;
13665
- border-bottom-left-radius: 0.25rem;
13666
- }
13667
-
13668
- .k-split-button > .k-split-button-arrow,
13669
- .k-split-button > .k-button:last-child {
13670
- border-top-right-radius: 0.25rem;
13671
- border-bottom-right-radius: 0.25rem;
13672
- margin-inline-start: -1px;
13644
+ .k-split-button .k-split-button-arrow {
13673
13645
  padding: 0.375rem;
13674
13646
  width: auto;
13675
13647
  flex: none;
13676
13648
  }
13677
13649
 
13678
- .k-split-button[dir="rtl"] > .k-button:first-child {
13679
- border-top-left-radius: 0;
13680
- border-bottom-left-radius: 0;
13681
- border-top-right-radius: 0.25rem;
13682
- border-bottom-right-radius: 0.25rem;
13683
- }
13684
-
13685
- .k-split-button[dir="rtl"] > .k-button:last-child {
13686
- border-top-right-radius: 0;
13687
- border-bottom-right-radius: 0;
13688
- border-top-left-radius: 0.25rem;
13689
- border-bottom-left-radius: 0.25rem;
13650
+ .k-split-button .k-split-button-arrow .k-button-icon {
13651
+ min-width: 0;
13690
13652
  }
13691
13653
 
13692
13654
  .k-button-flat, .k-button.k-flat,
@@ -13719,52 +13681,36 @@ kendo-badge-container {
13719
13681
  .k-button-outline, .k-button.k-outline {
13720
13682
  box-shadow: none;
13721
13683
  color: inherit;
13722
- background: none;
13684
+ background-color: transparent;
13685
+ background-image: none !important;
13723
13686
  }
13724
13687
 
13725
- .k-button-clear {
13688
+ .k-button-link {
13689
+ box-shadow: none;
13726
13690
  border-color: transparent !important;
13727
13691
  color: inherit;
13728
- background: none !important;
13729
- box-shadow: none !important;
13730
- }
13731
-
13732
- .k-rtl .k-button-group .k-button {
13733
- border-radius: 0;
13734
- }
13735
-
13736
- .k-rtl .k-button-group .k-group-start,
13737
- .k-rtl .k-button-group .k-button:first-child {
13738
- border-top-right-radius: 0.25rem;
13739
- border-bottom-right-radius: 0.25rem;
13692
+ background-color: transparent !important;
13693
+ background-image: none !important;
13694
+ text-decoration: none;
13740
13695
  }
13741
13696
 
13742
- .k-rtl .k-button-group .k-group-end,
13743
- .k-rtl .k-button-group .k-button:last-child {
13744
- border-top-left-radius: 0.25rem;
13745
- border-bottom-left-radius: 0.25rem;
13697
+ .k-button-link:hover,
13698
+ .k-button-link.k-state-hover {
13699
+ text-decoration: underline;
13746
13700
  }
13747
13701
 
13748
- .k-rtl .k-button-group .k-group-start.k-group-end,
13749
- .k-rtl .k-button-group .k-button:first-child:last-child {
13750
- border-radius: 0.25rem;
13702
+ .k-button-clear {
13703
+ border-color: transparent !important;
13704
+ color: inherit;
13705
+ background: none !important;
13706
+ box-shadow: none !important;
13751
13707
  }
13752
13708
 
13753
- .k-rtl .k-split-button .k-button {
13709
+ .k-ie .k-button-group .k-button,
13710
+ .k-ie .k-split-button .k-button {
13754
13711
  border-radius: 0;
13755
13712
  }
13756
13713
 
13757
- .k-rtl .k-split-button > .k-button:first-child {
13758
- border-top-right-radius: 0.25rem;
13759
- border-bottom-right-radius: 0.25rem;
13760
- }
13761
-
13762
- .k-rtl .k-split-button > .k-split-button-arrow,
13763
- .k-rtl .k-split-button > .k-button:last-child {
13764
- border-top-left-radius: 0.25rem;
13765
- border-bottom-left-radius: 0.25rem;
13766
- }
13767
-
13768
13714
  .k-button-overlay, .k-button::before {
13769
13715
  border-radius: inherit;
13770
13716
  content: "";
@@ -13836,79 +13782,292 @@ kendo-badge-container {
13836
13782
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
13837
13783
  }
13838
13784
 
13839
- .k-button,
13840
- .k-button-secondary {
13785
+ .k-button {
13841
13786
  border-color: #e4e7eb;
13842
13787
  color: #212529;
13843
13788
  background-color: #e4e7eb;
13844
13789
  }
13845
13790
 
13846
- .k-button:hover, .k-button.k-state-hover,
13847
- .k-button-secondary:hover,
13848
- .k-button-secondary.k-state-hover {
13791
+ .k-button:hover, .k-button.k-state-hover {
13849
13792
  border-color: #c7cdd5;
13850
13793
  background-color: #ced3db;
13851
13794
  }
13852
13795
 
13853
- .k-button:focus, .k-button.k-state-focus, .k-button.k-state-focused,
13854
- .k-button-secondary:focus,
13855
- .k-button-secondary.k-state-focus,
13856
- .k-button-secondary.k-state-focused {
13857
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
13796
+ .k-button:focus, .k-button.k-state-focus, .k-button.k-state-focused {
13797
+ box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
13858
13798
  }
13859
13799
 
13860
- .k-button:active, .k-button.k-state-active,
13861
- .k-button-secondary:active,
13862
- .k-button-secondary.k-state-active {
13800
+ .k-button:active, .k-button.k-state-active {
13863
13801
  border-color: #bfc6d0;
13864
13802
  background-color: #c7cdd5;
13865
13803
  }
13866
13804
 
13867
- .k-button.k-state-selected,
13868
- .k-button-secondary.k-state-selected {
13805
+ .k-button.k-state-selected {
13869
13806
  border-color: #bfc6d0;
13870
13807
  background-color: #c7cdd5;
13871
13808
  }
13872
13809
 
13873
- .k-button-primary, .k-button.k-primary {
13810
+ .k-button-solid.k-button-solid-primary, .k-button-solid.k-button.k-primary {
13874
13811
  border-color: #0d6efd;
13875
13812
  color: white;
13876
13813
  background-color: #0d6efd;
13877
13814
  }
13878
13815
 
13879
- .k-button-primary:hover, .k-button.k-primary:hover, .k-button-primary.k-state-hover, .k-state-hover.k-button.k-primary {
13816
+ .k-button-solid.k-button-solid-primary:hover, .k-button-solid.k-button.k-primary:hover, .k-button-solid.k-button-solid-primary.k-state-hover, .k-button-solid.k-state-hover.k-button.k-primary {
13880
13817
  border-color: #0257d5;
13881
- color: white;
13882
13818
  background-color: #025ce2;
13883
13819
  }
13884
13820
 
13885
- .k-button-primary:focus, .k-button.k-primary:focus, .k-button-primary.k-state-focus, .k-state-focus.k-button.k-primary, .k-button-primary.k-state-focused, .k-state-focused.k-button.k-primary {
13886
- box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.5);
13821
+ .k-button-solid.k-button-solid-primary:focus, .k-button-solid.k-button.k-primary:focus, .k-button-solid.k-button-solid-primary.k-state-focus, .k-button-solid.k-state-focus.k-button.k-primary {
13822
+ box-shadow: 0 0 0px 0.25rem rgba(13, 110, 253, 0.5);
13887
13823
  }
13888
13824
 
13889
- .k-button-primary:active, .k-button.k-primary:active, .k-button-primary.k-state-active, .k-state-active.k-button.k-primary {
13825
+ .k-button-solid.k-button-solid-primary:active, .k-button-solid.k-button.k-primary:active, .k-button-solid.k-button-solid-primary.k-state-active, .k-button-solid.k-state-active.k-button.k-primary {
13890
13826
  border-color: #0252c9;
13891
- color: white;
13892
13827
  background-color: #0257d5;
13893
13828
  }
13894
13829
 
13895
- .k-button-primary.k-state-selected, .k-state-selected.k-button.k-primary {
13830
+ .k-button-solid.k-button-solid-primary.k-state-selected, .k-button-solid.k-state-selected.k-button.k-primary {
13896
13831
  border-color: #0252c9;
13897
- color: white;
13898
13832
  background-color: #0257d5;
13899
13833
  }
13900
13834
 
13835
+ .k-button-solid.k-button-solid-secondary {
13836
+ border-color: #6c757d;
13837
+ color: white;
13838
+ background-color: #6c757d;
13839
+ }
13840
+
13841
+ .k-button-solid.k-button-solid-secondary:hover, .k-button-solid.k-button-solid-secondary.k-state-hover {
13842
+ border-color: #545b62;
13843
+ background-color: #5a6268;
13844
+ }
13845
+
13846
+ .k-button-solid.k-button-solid-secondary:focus, .k-button-solid.k-button-solid-secondary.k-state-focus {
13847
+ box-shadow: 0 0 0px 0.25rem rgba(108, 117, 125, 0.5);
13848
+ }
13849
+
13850
+ .k-button-solid.k-button-solid-secondary:active, .k-button-solid.k-button-solid-secondary.k-state-active {
13851
+ border-color: #4e555b;
13852
+ background-color: #545b62;
13853
+ }
13854
+
13855
+ .k-button-solid.k-button-solid-secondary.k-state-selected {
13856
+ border-color: #4e555b;
13857
+ background-color: #545b62;
13858
+ }
13859
+
13860
+ .k-button-solid.k-button-solid-tertiary {
13861
+ border-color: #6f42c1;
13862
+ color: white;
13863
+ background-color: #6f42c1;
13864
+ }
13865
+
13866
+ .k-button-solid.k-button-solid-tertiary:hover, .k-button-solid.k-button-solid-tertiary.k-state-hover {
13867
+ border-color: #59339d;
13868
+ background-color: #5e37a6;
13869
+ }
13870
+
13871
+ .k-button-solid.k-button-solid-tertiary:focus, .k-button-solid.k-button-solid-tertiary.k-state-focus {
13872
+ box-shadow: 0 0 0px 0.25rem rgba(111, 66, 193, 0.5);
13873
+ }
13874
+
13875
+ .k-button-solid.k-button-solid-tertiary:active, .k-button-solid.k-button-solid-tertiary.k-state-active {
13876
+ border-color: #533093;
13877
+ background-color: #59339d;
13878
+ }
13879
+
13880
+ .k-button-solid.k-button-solid-tertiary.k-state-selected {
13881
+ border-color: #533093;
13882
+ background-color: #59339d;
13883
+ }
13884
+
13885
+ .k-button-solid.k-button-solid-info {
13886
+ border-color: #0dcaf0;
13887
+ color: white;
13888
+ background-color: #0dcaf0;
13889
+ }
13890
+
13891
+ .k-button-solid.k-button-solid-info:hover, .k-button-solid.k-button-solid-info.k-state-hover {
13892
+ border-color: #0aa1c0;
13893
+ background-color: #0babcc;
13894
+ }
13895
+
13896
+ .k-button-solid.k-button-solid-info:focus, .k-button-solid.k-button-solid-info.k-state-focus {
13897
+ box-shadow: 0 0 0px 0.25rem rgba(13, 202, 240, 0.5);
13898
+ }
13899
+
13900
+ .k-button-solid.k-button-solid-info:active, .k-button-solid.k-button-solid-info.k-state-active {
13901
+ border-color: #0a97b4;
13902
+ background-color: #0aa1c0;
13903
+ }
13904
+
13905
+ .k-button-solid.k-button-solid-info.k-state-selected {
13906
+ border-color: #0a97b4;
13907
+ background-color: #0aa1c0;
13908
+ }
13909
+
13910
+ .k-button-solid.k-button-solid-success {
13911
+ border-color: #198754;
13912
+ color: white;
13913
+ background-color: #198754;
13914
+ }
13915
+
13916
+ .k-button-solid.k-button-solid-success:hover, .k-button-solid.k-button-solid-success.k-state-hover {
13917
+ border-color: #115c39;
13918
+ background-color: #136740;
13919
+ }
13920
+
13921
+ .k-button-solid.k-button-solid-success:focus, .k-button-solid.k-button-solid-success.k-state-focus {
13922
+ box-shadow: 0 0 0px 0.25rem rgba(25, 135, 84, 0.5);
13923
+ }
13924
+
13925
+ .k-button-solid.k-button-solid-success:active, .k-button-solid.k-button-solid-success.k-state-active {
13926
+ border-color: #0f5133;
13927
+ background-color: #115c39;
13928
+ }
13929
+
13930
+ .k-button-solid.k-button-solid-success.k-state-selected {
13931
+ border-color: #0f5133;
13932
+ background-color: #115c39;
13933
+ }
13934
+
13935
+ .k-button-solid.k-button-solid-warning {
13936
+ border-color: #ffc107;
13937
+ color: black;
13938
+ background-color: #ffc107;
13939
+ }
13940
+
13941
+ .k-button-solid.k-button-solid-warning:hover, .k-button-solid.k-button-solid-warning.k-state-hover {
13942
+ border-color: #d39e00;
13943
+ background-color: #e0a800;
13944
+ }
13945
+
13946
+ .k-button-solid.k-button-solid-warning:focus, .k-button-solid.k-button-solid-warning.k-state-focus {
13947
+ box-shadow: 0 0 0px 0.25rem rgba(255, 193, 7, 0.5);
13948
+ }
13949
+
13950
+ .k-button-solid.k-button-solid-warning:active, .k-button-solid.k-button-solid-warning.k-state-active {
13951
+ border-color: #c69500;
13952
+ background-color: #d39e00;
13953
+ }
13954
+
13955
+ .k-button-solid.k-button-solid-warning.k-state-selected {
13956
+ border-color: #c69500;
13957
+ background-color: #d39e00;
13958
+ }
13959
+
13960
+ .k-button-solid.k-button-solid-error {
13961
+ border-color: #dc3545;
13962
+ color: white;
13963
+ background-color: #dc3545;
13964
+ }
13965
+
13966
+ .k-button-solid.k-button-solid-error:hover, .k-button-solid.k-button-solid-error.k-state-hover {
13967
+ border-color: #bd2130;
13968
+ background-color: #c82333;
13969
+ }
13970
+
13971
+ .k-button-solid.k-button-solid-error:focus, .k-button-solid.k-button-solid-error.k-state-focus {
13972
+ box-shadow: 0 0 0px 0.25rem rgba(220, 53, 69, 0.5);
13973
+ }
13974
+
13975
+ .k-button-solid.k-button-solid-error:active, .k-button-solid.k-button-solid-error.k-state-active {
13976
+ border-color: #b21f2d;
13977
+ background-color: #bd2130;
13978
+ }
13979
+
13980
+ .k-button-solid.k-button-solid-error.k-state-selected {
13981
+ border-color: #b21f2d;
13982
+ background-color: #bd2130;
13983
+ }
13984
+
13985
+ .k-button-solid.k-button-solid-dark {
13986
+ border-color: #212529;
13987
+ color: white;
13988
+ background-color: #212529;
13989
+ }
13990
+
13991
+ .k-button-solid.k-button-solid-dark:hover, .k-button-solid.k-button-solid-dark.k-state-hover {
13992
+ border-color: #0a0c0d;
13993
+ background-color: #101214;
13994
+ }
13995
+
13996
+ .k-button-solid.k-button-solid-dark:focus, .k-button-solid.k-button-solid-dark.k-state-focus {
13997
+ box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
13998
+ }
13999
+
14000
+ .k-button-solid.k-button-solid-dark:active, .k-button-solid.k-button-solid-dark.k-state-active {
14001
+ border-color: #050506;
14002
+ background-color: #0a0c0d;
14003
+ }
14004
+
14005
+ .k-button-solid.k-button-solid-dark.k-state-selected {
14006
+ border-color: #050506;
14007
+ background-color: #0a0c0d;
14008
+ }
14009
+
14010
+ .k-button-solid.k-button-solid-light {
14011
+ border-color: #f8f9fa;
14012
+ color: black;
14013
+ background-color: #f8f9fa;
14014
+ }
14015
+
14016
+ .k-button-solid.k-button-solid-light:hover, .k-button-solid.k-button-solid-light.k-state-hover {
14017
+ border-color: #dae0e5;
14018
+ background-color: #e2e6ea;
14019
+ }
14020
+
14021
+ .k-button-solid.k-button-solid-light:focus, .k-button-solid.k-button-solid-light.k-state-focus {
14022
+ box-shadow: 0 0 0px 0.25rem rgba(248, 249, 250, 0.5);
14023
+ }
14024
+
14025
+ .k-button-solid.k-button-solid-light:active, .k-button-solid.k-button-solid-light.k-state-active {
14026
+ border-color: #d3d9df;
14027
+ background-color: #dae0e5;
14028
+ }
14029
+
14030
+ .k-button-solid.k-button-solid-light.k-state-selected {
14031
+ border-color: #d3d9df;
14032
+ background-color: #dae0e5;
14033
+ }
14034
+
14035
+ .k-button-solid.k-button-solid-inverse {
14036
+ border-color: #212529;
14037
+ color: white;
14038
+ background-color: #212529;
14039
+ }
14040
+
14041
+ .k-button-solid.k-button-solid-inverse:hover, .k-button-solid.k-button-solid-inverse.k-state-hover {
14042
+ border-color: #0a0c0d;
14043
+ background-color: #101214;
14044
+ }
14045
+
14046
+ .k-button-solid.k-button-solid-inverse:focus, .k-button-solid.k-button-solid-inverse.k-state-focus {
14047
+ box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
14048
+ }
14049
+
14050
+ .k-button-solid.k-button-solid-inverse:active, .k-button-solid.k-button-solid-inverse.k-state-active {
14051
+ border-color: #050506;
14052
+ background-color: #0a0c0d;
14053
+ }
14054
+
14055
+ .k-button-solid.k-button-solid-inverse.k-state-selected {
14056
+ border-color: #050506;
14057
+ background-color: #0a0c0d;
14058
+ }
14059
+
13901
14060
  .k-split-button:focus,
13902
14061
  .k-split-button.k-state-focus,
13903
14062
  .k-split-button.k-state-focused {
13904
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
14063
+ box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
13905
14064
  }
13906
14065
 
13907
14066
  .k-button-outline, .k-button.k-outline {
13908
14067
  box-shadow: none;
13909
14068
  border-color: currentColor;
13910
14069
  color: #212529;
13911
- background: none;
14070
+ background-color: transparent;
13912
14071
  }
13913
14072
 
13914
14073
  .k-button-outline:hover, .k-button.k-outline:hover, .k-button-outline.k-state-hover, .k-state-hover.k-button.k-outline {
@@ -13918,7 +14077,7 @@ kendo-badge-container {
13918
14077
  }
13919
14078
 
13920
14079
  .k-button-outline:focus, .k-button.k-outline:focus, .k-button-outline.k-state-focus, .k-state-focus.k-button.k-outline, .k-button-outline.k-state-focused, .k-state-focused.k-button.k-outline {
13921
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
14080
+ box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
13922
14081
  }
13923
14082
 
13924
14083
  .k-button-outline:active, .k-button.k-outline:active, .k-button-outline.k-state-active, .k-state-active.k-button.k-outline {
@@ -13933,37 +14092,316 @@ kendo-badge-container {
13933
14092
  background-color: #212529;
13934
14093
  }
13935
14094
 
13936
- .k-button-outline.k-primary, .k-primary.k-button.k-outline {
14095
+ .k-button-outline.k-button-outline-primary, .k-button-outline-primary.k-button.k-outline, .k-button-outline.k-primary, .k-primary.k-button.k-outline {
14096
+ box-shadow: none;
13937
14097
  border-color: currentColor;
13938
14098
  color: #0d6efd;
13939
- background: none;
13940
- box-shadow: none;
14099
+ background-color: transparent;
13941
14100
  }
13942
14101
 
13943
- .k-button-outline.k-primary:hover, .k-primary.k-button.k-outline:hover, .k-button-outline.k-primary.k-state-hover, .k-primary.k-state-hover.k-button.k-outline {
14102
+ .k-button-outline.k-button-outline-primary:hover, .k-button-outline-primary.k-button.k-outline:hover, .k-button-outline.k-primary:hover, .k-primary.k-button.k-outline:hover, .k-button-outline.k-button-outline-primary.k-state-hover, .k-button-outline-primary.k-state-hover.k-button.k-outline, .k-button-outline.k-state-hover.k-primary, .k-state-hover.k-primary.k-button.k-outline {
13944
14103
  border-color: #0d6efd;
13945
14104
  color: white;
13946
14105
  background-color: #0d6efd;
13947
14106
  }
13948
14107
 
13949
- .k-button-outline.k-primary:focus, .k-primary.k-button.k-outline:focus, .k-button-outline.k-primary.k-state-focus, .k-primary.k-state-focus.k-button.k-outline, .k-button-outline.k-primary.k-state-focused, .k-primary.k-state-focused.k-button.k-outline {
13950
- box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.5);
14108
+ .k-button-outline.k-button-outline-primary:focus, .k-button-outline-primary.k-button.k-outline:focus, .k-button-outline.k-primary:focus, .k-primary.k-button.k-outline:focus, .k-button-outline.k-button-outline-primary.k-state-focus, .k-button-outline-primary.k-state-focus.k-button.k-outline, .k-button-outline.k-state-focus.k-primary, .k-state-focus.k-primary.k-button.k-outline, .k-button-outline.k-button-outline-primary.k-state-focused, .k-button-outline-primary.k-state-focused.k-button.k-outline, .k-button-outline.k-state-focused.k-primary, .k-state-focused.k-primary.k-button.k-outline {
14109
+ box-shadow: 0 0 0px 0.25rem rgba(13, 110, 253, 0.5);
13951
14110
  }
13952
14111
 
13953
- .k-button-outline.k-primary:active, .k-primary.k-button.k-outline:active, .k-button-outline.k-primary.k-state-active, .k-primary.k-state-active.k-button.k-outline {
14112
+ .k-button-outline.k-button-outline-primary:active, .k-button-outline-primary.k-button.k-outline:active, .k-button-outline.k-primary:active, .k-primary.k-button.k-outline:active, .k-button-outline.k-button-outline-primary.k-state-active, .k-button-outline-primary.k-state-active.k-button.k-outline, .k-button-outline.k-state-active.k-primary, .k-state-active.k-primary.k-button.k-outline {
13954
14113
  border-color: #0d6efd;
13955
14114
  color: white;
13956
14115
  background-color: #0d6efd;
13957
14116
  box-shadow: none;
13958
14117
  }
13959
14118
 
13960
- .k-button-outline.k-primary.k-state-selected, .k-primary.k-state-selected.k-button.k-outline {
14119
+ .k-button-outline.k-button-outline-primary.k-state-selected, .k-button-outline-primary.k-state-selected.k-button.k-outline, .k-button-outline.k-state-selected.k-primary, .k-state-selected.k-primary.k-button.k-outline {
13961
14120
  border-color: #0d6efd;
13962
14121
  color: white;
13963
14122
  background-color: #0d6efd;
13964
14123
  box-shadow: none;
13965
14124
  }
13966
14125
 
14126
+ .k-button-outline.k-button-outline-secondary, .k-button-outline-secondary.k-button.k-outline {
14127
+ box-shadow: none;
14128
+ border-color: currentColor;
14129
+ color: #6c757d;
14130
+ background-color: transparent;
14131
+ }
14132
+
14133
+ .k-button-outline.k-button-outline-secondary:hover, .k-button-outline-secondary.k-button.k-outline:hover, .k-button-outline.k-button-outline-secondary.k-state-hover, .k-button-outline-secondary.k-state-hover.k-button.k-outline {
14134
+ border-color: #6c757d;
14135
+ color: white;
14136
+ background-color: #6c757d;
14137
+ }
14138
+
14139
+ .k-button-outline.k-button-outline-secondary:focus, .k-button-outline-secondary.k-button.k-outline:focus, .k-button-outline.k-button-outline-secondary.k-state-focus, .k-button-outline-secondary.k-state-focus.k-button.k-outline, .k-button-outline.k-button-outline-secondary.k-state-focused, .k-button-outline-secondary.k-state-focused.k-button.k-outline {
14140
+ box-shadow: 0 0 0px 0.25rem rgba(108, 117, 125, 0.5);
14141
+ }
14142
+
14143
+ .k-button-outline.k-button-outline-secondary:active, .k-button-outline-secondary.k-button.k-outline:active, .k-button-outline.k-button-outline-secondary.k-state-active, .k-button-outline-secondary.k-state-active.k-button.k-outline {
14144
+ border-color: #6c757d;
14145
+ color: white;
14146
+ background-color: #6c757d;
14147
+ box-shadow: none;
14148
+ }
14149
+
14150
+ .k-button-outline.k-button-outline-secondary.k-state-selected, .k-button-outline-secondary.k-state-selected.k-button.k-outline {
14151
+ border-color: #6c757d;
14152
+ color: white;
14153
+ background-color: #6c757d;
14154
+ box-shadow: none;
14155
+ }
14156
+
14157
+ .k-button-outline.k-button-outline-tertiary, .k-button-outline-tertiary.k-button.k-outline {
14158
+ box-shadow: none;
14159
+ border-color: currentColor;
14160
+ color: #6f42c1;
14161
+ background-color: transparent;
14162
+ }
14163
+
14164
+ .k-button-outline.k-button-outline-tertiary:hover, .k-button-outline-tertiary.k-button.k-outline:hover, .k-button-outline.k-button-outline-tertiary.k-state-hover, .k-button-outline-tertiary.k-state-hover.k-button.k-outline {
14165
+ border-color: #6f42c1;
14166
+ color: white;
14167
+ background-color: #6f42c1;
14168
+ }
14169
+
14170
+ .k-button-outline.k-button-outline-tertiary:focus, .k-button-outline-tertiary.k-button.k-outline:focus, .k-button-outline.k-button-outline-tertiary.k-state-focus, .k-button-outline-tertiary.k-state-focus.k-button.k-outline, .k-button-outline.k-button-outline-tertiary.k-state-focused, .k-button-outline-tertiary.k-state-focused.k-button.k-outline {
14171
+ box-shadow: 0 0 0px 0.25rem rgba(111, 66, 193, 0.5);
14172
+ }
14173
+
14174
+ .k-button-outline.k-button-outline-tertiary:active, .k-button-outline-tertiary.k-button.k-outline:active, .k-button-outline.k-button-outline-tertiary.k-state-active, .k-button-outline-tertiary.k-state-active.k-button.k-outline {
14175
+ border-color: #6f42c1;
14176
+ color: white;
14177
+ background-color: #6f42c1;
14178
+ box-shadow: none;
14179
+ }
14180
+
14181
+ .k-button-outline.k-button-outline-tertiary.k-state-selected, .k-button-outline-tertiary.k-state-selected.k-button.k-outline {
14182
+ border-color: #6f42c1;
14183
+ color: white;
14184
+ background-color: #6f42c1;
14185
+ box-shadow: none;
14186
+ }
14187
+
14188
+ .k-button-outline.k-button-outline-info, .k-button-outline-info.k-button.k-outline {
14189
+ box-shadow: none;
14190
+ border-color: currentColor;
14191
+ color: #0dcaf0;
14192
+ background-color: transparent;
14193
+ }
14194
+
14195
+ .k-button-outline.k-button-outline-info:hover, .k-button-outline-info.k-button.k-outline:hover, .k-button-outline.k-button-outline-info.k-state-hover, .k-button-outline-info.k-state-hover.k-button.k-outline {
14196
+ border-color: #0dcaf0;
14197
+ color: white;
14198
+ background-color: #0dcaf0;
14199
+ }
14200
+
14201
+ .k-button-outline.k-button-outline-info:focus, .k-button-outline-info.k-button.k-outline:focus, .k-button-outline.k-button-outline-info.k-state-focus, .k-button-outline-info.k-state-focus.k-button.k-outline, .k-button-outline.k-button-outline-info.k-state-focused, .k-button-outline-info.k-state-focused.k-button.k-outline {
14202
+ box-shadow: 0 0 0px 0.25rem rgba(13, 202, 240, 0.5);
14203
+ }
14204
+
14205
+ .k-button-outline.k-button-outline-info:active, .k-button-outline-info.k-button.k-outline:active, .k-button-outline.k-button-outline-info.k-state-active, .k-button-outline-info.k-state-active.k-button.k-outline {
14206
+ border-color: #0dcaf0;
14207
+ color: white;
14208
+ background-color: #0dcaf0;
14209
+ box-shadow: none;
14210
+ }
14211
+
14212
+ .k-button-outline.k-button-outline-info.k-state-selected, .k-button-outline-info.k-state-selected.k-button.k-outline {
14213
+ border-color: #0dcaf0;
14214
+ color: white;
14215
+ background-color: #0dcaf0;
14216
+ box-shadow: none;
14217
+ }
14218
+
14219
+ .k-button-outline.k-button-outline-success, .k-button-outline-success.k-button.k-outline {
14220
+ box-shadow: none;
14221
+ border-color: currentColor;
14222
+ color: #198754;
14223
+ background-color: transparent;
14224
+ }
14225
+
14226
+ .k-button-outline.k-button-outline-success:hover, .k-button-outline-success.k-button.k-outline:hover, .k-button-outline.k-button-outline-success.k-state-hover, .k-button-outline-success.k-state-hover.k-button.k-outline {
14227
+ border-color: #198754;
14228
+ color: white;
14229
+ background-color: #198754;
14230
+ }
14231
+
14232
+ .k-button-outline.k-button-outline-success:focus, .k-button-outline-success.k-button.k-outline:focus, .k-button-outline.k-button-outline-success.k-state-focus, .k-button-outline-success.k-state-focus.k-button.k-outline, .k-button-outline.k-button-outline-success.k-state-focused, .k-button-outline-success.k-state-focused.k-button.k-outline {
14233
+ box-shadow: 0 0 0px 0.25rem rgba(25, 135, 84, 0.5);
14234
+ }
14235
+
14236
+ .k-button-outline.k-button-outline-success:active, .k-button-outline-success.k-button.k-outline:active, .k-button-outline.k-button-outline-success.k-state-active, .k-button-outline-success.k-state-active.k-button.k-outline {
14237
+ border-color: #198754;
14238
+ color: white;
14239
+ background-color: #198754;
14240
+ box-shadow: none;
14241
+ }
14242
+
14243
+ .k-button-outline.k-button-outline-success.k-state-selected, .k-button-outline-success.k-state-selected.k-button.k-outline {
14244
+ border-color: #198754;
14245
+ color: white;
14246
+ background-color: #198754;
14247
+ box-shadow: none;
14248
+ }
14249
+
14250
+ .k-button-outline.k-button-outline-warning, .k-button-outline-warning.k-button.k-outline {
14251
+ box-shadow: none;
14252
+ border-color: currentColor;
14253
+ color: #ffc107;
14254
+ background-color: transparent;
14255
+ }
14256
+
14257
+ .k-button-outline.k-button-outline-warning:hover, .k-button-outline-warning.k-button.k-outline:hover, .k-button-outline.k-button-outline-warning.k-state-hover, .k-button-outline-warning.k-state-hover.k-button.k-outline {
14258
+ border-color: #ffc107;
14259
+ color: black;
14260
+ background-color: #ffc107;
14261
+ }
14262
+
14263
+ .k-button-outline.k-button-outline-warning:focus, .k-button-outline-warning.k-button.k-outline:focus, .k-button-outline.k-button-outline-warning.k-state-focus, .k-button-outline-warning.k-state-focus.k-button.k-outline, .k-button-outline.k-button-outline-warning.k-state-focused, .k-button-outline-warning.k-state-focused.k-button.k-outline {
14264
+ box-shadow: 0 0 0px 0.25rem rgba(255, 193, 7, 0.5);
14265
+ }
14266
+
14267
+ .k-button-outline.k-button-outline-warning:active, .k-button-outline-warning.k-button.k-outline:active, .k-button-outline.k-button-outline-warning.k-state-active, .k-button-outline-warning.k-state-active.k-button.k-outline {
14268
+ border-color: #ffc107;
14269
+ color: black;
14270
+ background-color: #ffc107;
14271
+ box-shadow: none;
14272
+ }
14273
+
14274
+ .k-button-outline.k-button-outline-warning.k-state-selected, .k-button-outline-warning.k-state-selected.k-button.k-outline {
14275
+ border-color: #ffc107;
14276
+ color: black;
14277
+ background-color: #ffc107;
14278
+ box-shadow: none;
14279
+ }
14280
+
14281
+ .k-button-outline.k-button-outline-error, .k-button-outline-error.k-button.k-outline {
14282
+ box-shadow: none;
14283
+ border-color: currentColor;
14284
+ color: #dc3545;
14285
+ background-color: transparent;
14286
+ }
14287
+
14288
+ .k-button-outline.k-button-outline-error:hover, .k-button-outline-error.k-button.k-outline:hover, .k-button-outline.k-button-outline-error.k-state-hover, .k-button-outline-error.k-state-hover.k-button.k-outline {
14289
+ border-color: #dc3545;
14290
+ color: white;
14291
+ background-color: #dc3545;
14292
+ }
14293
+
14294
+ .k-button-outline.k-button-outline-error:focus, .k-button-outline-error.k-button.k-outline:focus, .k-button-outline.k-button-outline-error.k-state-focus, .k-button-outline-error.k-state-focus.k-button.k-outline, .k-button-outline.k-button-outline-error.k-state-focused, .k-button-outline-error.k-state-focused.k-button.k-outline {
14295
+ box-shadow: 0 0 0px 0.25rem rgba(220, 53, 69, 0.5);
14296
+ }
14297
+
14298
+ .k-button-outline.k-button-outline-error:active, .k-button-outline-error.k-button.k-outline:active, .k-button-outline.k-button-outline-error.k-state-active, .k-button-outline-error.k-state-active.k-button.k-outline {
14299
+ border-color: #dc3545;
14300
+ color: white;
14301
+ background-color: #dc3545;
14302
+ box-shadow: none;
14303
+ }
14304
+
14305
+ .k-button-outline.k-button-outline-error.k-state-selected, .k-button-outline-error.k-state-selected.k-button.k-outline {
14306
+ border-color: #dc3545;
14307
+ color: white;
14308
+ background-color: #dc3545;
14309
+ box-shadow: none;
14310
+ }
14311
+
14312
+ .k-button-outline.k-button-outline-dark, .k-button-outline-dark.k-button.k-outline {
14313
+ box-shadow: none;
14314
+ border-color: currentColor;
14315
+ color: #212529;
14316
+ background-color: transparent;
14317
+ }
14318
+
14319
+ .k-button-outline.k-button-outline-dark:hover, .k-button-outline-dark.k-button.k-outline:hover, .k-button-outline.k-button-outline-dark.k-state-hover, .k-button-outline-dark.k-state-hover.k-button.k-outline {
14320
+ border-color: #212529;
14321
+ color: white;
14322
+ background-color: #212529;
14323
+ }
14324
+
14325
+ .k-button-outline.k-button-outline-dark:focus, .k-button-outline-dark.k-button.k-outline:focus, .k-button-outline.k-button-outline-dark.k-state-focus, .k-button-outline-dark.k-state-focus.k-button.k-outline, .k-button-outline.k-button-outline-dark.k-state-focused, .k-button-outline-dark.k-state-focused.k-button.k-outline {
14326
+ box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
14327
+ }
14328
+
14329
+ .k-button-outline.k-button-outline-dark:active, .k-button-outline-dark.k-button.k-outline:active, .k-button-outline.k-button-outline-dark.k-state-active, .k-button-outline-dark.k-state-active.k-button.k-outline {
14330
+ border-color: #212529;
14331
+ color: white;
14332
+ background-color: #212529;
14333
+ box-shadow: none;
14334
+ }
14335
+
14336
+ .k-button-outline.k-button-outline-dark.k-state-selected, .k-button-outline-dark.k-state-selected.k-button.k-outline {
14337
+ border-color: #212529;
14338
+ color: white;
14339
+ background-color: #212529;
14340
+ box-shadow: none;
14341
+ }
14342
+
14343
+ .k-button-outline.k-button-outline-light, .k-button-outline-light.k-button.k-outline {
14344
+ box-shadow: none;
14345
+ border-color: currentColor;
14346
+ color: #f8f9fa;
14347
+ background-color: transparent;
14348
+ }
14349
+
14350
+ .k-button-outline.k-button-outline-light:hover, .k-button-outline-light.k-button.k-outline:hover, .k-button-outline.k-button-outline-light.k-state-hover, .k-button-outline-light.k-state-hover.k-button.k-outline {
14351
+ border-color: #f8f9fa;
14352
+ color: black;
14353
+ background-color: #f8f9fa;
14354
+ }
14355
+
14356
+ .k-button-outline.k-button-outline-light:focus, .k-button-outline-light.k-button.k-outline:focus, .k-button-outline.k-button-outline-light.k-state-focus, .k-button-outline-light.k-state-focus.k-button.k-outline, .k-button-outline.k-button-outline-light.k-state-focused, .k-button-outline-light.k-state-focused.k-button.k-outline {
14357
+ box-shadow: 0 0 0px 0.25rem rgba(248, 249, 250, 0.5);
14358
+ }
14359
+
14360
+ .k-button-outline.k-button-outline-light:active, .k-button-outline-light.k-button.k-outline:active, .k-button-outline.k-button-outline-light.k-state-active, .k-button-outline-light.k-state-active.k-button.k-outline {
14361
+ border-color: #f8f9fa;
14362
+ color: black;
14363
+ background-color: #f8f9fa;
14364
+ box-shadow: none;
14365
+ }
14366
+
14367
+ .k-button-outline.k-button-outline-light.k-state-selected, .k-button-outline-light.k-state-selected.k-button.k-outline {
14368
+ border-color: #f8f9fa;
14369
+ color: black;
14370
+ background-color: #f8f9fa;
14371
+ box-shadow: none;
14372
+ }
14373
+
14374
+ .k-button-outline.k-button-outline-inverse, .k-button-outline-inverse.k-button.k-outline {
14375
+ box-shadow: none;
14376
+ border-color: currentColor;
14377
+ color: #212529;
14378
+ background-color: transparent;
14379
+ }
14380
+
14381
+ .k-button-outline.k-button-outline-inverse:hover, .k-button-outline-inverse.k-button.k-outline:hover, .k-button-outline.k-button-outline-inverse.k-state-hover, .k-button-outline-inverse.k-state-hover.k-button.k-outline {
14382
+ border-color: #212529;
14383
+ color: white;
14384
+ background-color: #212529;
14385
+ }
14386
+
14387
+ .k-button-outline.k-button-outline-inverse:focus, .k-button-outline-inverse.k-button.k-outline:focus, .k-button-outline.k-button-outline-inverse.k-state-focus, .k-button-outline-inverse.k-state-focus.k-button.k-outline, .k-button-outline.k-button-outline-inverse.k-state-focused, .k-button-outline-inverse.k-state-focused.k-button.k-outline {
14388
+ box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
14389
+ }
14390
+
14391
+ .k-button-outline.k-button-outline-inverse:active, .k-button-outline-inverse.k-button.k-outline:active, .k-button-outline.k-button-outline-inverse.k-state-active, .k-button-outline-inverse.k-state-active.k-button.k-outline {
14392
+ border-color: #212529;
14393
+ color: white;
14394
+ background-color: #212529;
14395
+ box-shadow: none;
14396
+ }
14397
+
14398
+ .k-button-outline.k-button-outline-inverse.k-state-selected, .k-button-outline-inverse.k-state-selected.k-button.k-outline {
14399
+ border-color: #212529;
14400
+ color: white;
14401
+ background-color: #212529;
14402
+ box-shadow: none;
14403
+ }
14404
+
13967
14405
  .k-button-flat, .k-button.k-flat,
13968
14406
  .k-button.k-bare, .k-button-flat:hover, .k-button.k-flat:hover,
13969
14407
  .k-button.k-bare:hover, .k-button-flat.k-state-hover, .k-state-hover.k-button.k-flat,
@@ -13975,17 +14413,310 @@ kendo-badge-container {
13975
14413
  color: inherit;
13976
14414
  }
13977
14415
 
13978
- .k-button-flat.k-primary, .k-primary.k-button.k-flat,
13979
- .k-primary.k-button.k-bare, .k-button-flat.k-primary:hover, .k-primary.k-button.k-flat:hover,
13980
- .k-primary.k-button.k-bare:hover, .k-button-flat.k-primary.k-state-hover, .k-primary.k-state-hover.k-button.k-flat,
13981
- .k-primary.k-state-hover.k-button.k-bare, .k-button-flat.k-primary:active, .k-primary.k-button.k-flat:active,
13982
- .k-primary.k-button.k-bare:active, .k-button-flat.k-primary.k-state-active, .k-primary.k-state-active.k-button.k-flat,
13983
- .k-primary.k-state-active.k-button.k-bare, .k-button-flat.k-primary:focus, .k-primary.k-button.k-flat:focus,
13984
- .k-primary.k-button.k-bare:focus, .k-button-flat.k-primary.k-state-focus, .k-primary.k-state-focus.k-button.k-flat,
13985
- .k-primary.k-state-focus.k-button.k-bare {
14416
+ .k-button-flat.k-button-flat-primary, .k-button-flat-primary.k-button.k-flat,
14417
+ .k-button-flat-primary.k-button.k-bare, .k-button-flat.k-primary, .k-primary.k-button.k-flat,
14418
+ .k-primary.k-button.k-bare, .k-button-flat.k-button-flat-primary:hover, .k-button-flat-primary.k-button.k-flat:hover,
14419
+ .k-button-flat-primary.k-button.k-bare:hover, .k-button-flat.k-primary:hover, .k-primary.k-button.k-flat:hover,
14420
+ .k-primary.k-button.k-bare:hover, .k-button-flat.k-button-flat-primary.k-state-hover, .k-button-flat-primary.k-state-hover.k-button.k-flat,
14421
+ .k-button-flat-primary.k-state-hover.k-button.k-bare, .k-button-flat.k-state-hover.k-primary, .k-state-hover.k-primary.k-button.k-flat,
14422
+ .k-state-hover.k-primary.k-button.k-bare, .k-button-flat.k-button-flat-primary:active, .k-button-flat-primary.k-button.k-flat:active,
14423
+ .k-button-flat-primary.k-button.k-bare:active, .k-button-flat.k-primary:active, .k-primary.k-button.k-flat:active,
14424
+ .k-primary.k-button.k-bare:active, .k-button-flat.k-button-flat-primary.k-state-active, .k-button-flat-primary.k-state-active.k-button.k-flat,
14425
+ .k-button-flat-primary.k-state-active.k-button.k-bare, .k-button-flat.k-state-active.k-primary, .k-state-active.k-primary.k-button.k-flat,
14426
+ .k-state-active.k-primary.k-button.k-bare, .k-button-flat.k-button-flat-primary:focus, .k-button-flat-primary.k-button.k-flat:focus,
14427
+ .k-button-flat-primary.k-button.k-bare:focus, .k-button-flat.k-primary:focus, .k-primary.k-button.k-flat:focus,
14428
+ .k-primary.k-button.k-bare:focus, .k-button-flat.k-button-flat-primary.k-state-focus, .k-button-flat-primary.k-state-focus.k-button.k-flat,
14429
+ .k-button-flat-primary.k-state-focus.k-button.k-bare, .k-button-flat.k-state-focus.k-primary, .k-state-focus.k-primary.k-button.k-flat,
14430
+ .k-state-focus.k-primary.k-button.k-bare {
13986
14431
  color: #0d6efd;
13987
14432
  }
13988
14433
 
14434
+ .k-button-flat.k-button-flat-secondary, .k-button-flat-secondary.k-button.k-flat,
14435
+ .k-button-flat-secondary.k-button.k-bare, .k-button-flat.k-button-flat-secondary:hover, .k-button-flat-secondary.k-button.k-flat:hover,
14436
+ .k-button-flat-secondary.k-button.k-bare:hover, .k-button-flat.k-button-flat-secondary.k-state-hover, .k-button-flat-secondary.k-state-hover.k-button.k-flat,
14437
+ .k-button-flat-secondary.k-state-hover.k-button.k-bare, .k-button-flat.k-button-flat-secondary:active, .k-button-flat-secondary.k-button.k-flat:active,
14438
+ .k-button-flat-secondary.k-button.k-bare:active, .k-button-flat.k-button-flat-secondary.k-state-active, .k-button-flat-secondary.k-state-active.k-button.k-flat,
14439
+ .k-button-flat-secondary.k-state-active.k-button.k-bare, .k-button-flat.k-button-flat-secondary:focus, .k-button-flat-secondary.k-button.k-flat:focus,
14440
+ .k-button-flat-secondary.k-button.k-bare:focus, .k-button-flat.k-button-flat-secondary.k-state-focus, .k-button-flat-secondary.k-state-focus.k-button.k-flat,
14441
+ .k-button-flat-secondary.k-state-focus.k-button.k-bare {
14442
+ color: #6c757d;
14443
+ }
14444
+
14445
+ .k-button-flat.k-button-flat-tertiary, .k-button-flat-tertiary.k-button.k-flat,
14446
+ .k-button-flat-tertiary.k-button.k-bare, .k-button-flat.k-button-flat-tertiary:hover, .k-button-flat-tertiary.k-button.k-flat:hover,
14447
+ .k-button-flat-tertiary.k-button.k-bare:hover, .k-button-flat.k-button-flat-tertiary.k-state-hover, .k-button-flat-tertiary.k-state-hover.k-button.k-flat,
14448
+ .k-button-flat-tertiary.k-state-hover.k-button.k-bare, .k-button-flat.k-button-flat-tertiary:active, .k-button-flat-tertiary.k-button.k-flat:active,
14449
+ .k-button-flat-tertiary.k-button.k-bare:active, .k-button-flat.k-button-flat-tertiary.k-state-active, .k-button-flat-tertiary.k-state-active.k-button.k-flat,
14450
+ .k-button-flat-tertiary.k-state-active.k-button.k-bare, .k-button-flat.k-button-flat-tertiary:focus, .k-button-flat-tertiary.k-button.k-flat:focus,
14451
+ .k-button-flat-tertiary.k-button.k-bare:focus, .k-button-flat.k-button-flat-tertiary.k-state-focus, .k-button-flat-tertiary.k-state-focus.k-button.k-flat,
14452
+ .k-button-flat-tertiary.k-state-focus.k-button.k-bare {
14453
+ color: #6f42c1;
14454
+ }
14455
+
14456
+ .k-button-flat.k-button-flat-info, .k-button-flat-info.k-button.k-flat,
14457
+ .k-button-flat-info.k-button.k-bare, .k-button-flat.k-button-flat-info:hover, .k-button-flat-info.k-button.k-flat:hover,
14458
+ .k-button-flat-info.k-button.k-bare:hover, .k-button-flat.k-button-flat-info.k-state-hover, .k-button-flat-info.k-state-hover.k-button.k-flat,
14459
+ .k-button-flat-info.k-state-hover.k-button.k-bare, .k-button-flat.k-button-flat-info:active, .k-button-flat-info.k-button.k-flat:active,
14460
+ .k-button-flat-info.k-button.k-bare:active, .k-button-flat.k-button-flat-info.k-state-active, .k-button-flat-info.k-state-active.k-button.k-flat,
14461
+ .k-button-flat-info.k-state-active.k-button.k-bare, .k-button-flat.k-button-flat-info:focus, .k-button-flat-info.k-button.k-flat:focus,
14462
+ .k-button-flat-info.k-button.k-bare:focus, .k-button-flat.k-button-flat-info.k-state-focus, .k-button-flat-info.k-state-focus.k-button.k-flat,
14463
+ .k-button-flat-info.k-state-focus.k-button.k-bare {
14464
+ color: #0dcaf0;
14465
+ }
14466
+
14467
+ .k-button-flat.k-button-flat-success, .k-button-flat-success.k-button.k-flat,
14468
+ .k-button-flat-success.k-button.k-bare, .k-button-flat.k-button-flat-success:hover, .k-button-flat-success.k-button.k-flat:hover,
14469
+ .k-button-flat-success.k-button.k-bare:hover, .k-button-flat.k-button-flat-success.k-state-hover, .k-button-flat-success.k-state-hover.k-button.k-flat,
14470
+ .k-button-flat-success.k-state-hover.k-button.k-bare, .k-button-flat.k-button-flat-success:active, .k-button-flat-success.k-button.k-flat:active,
14471
+ .k-button-flat-success.k-button.k-bare:active, .k-button-flat.k-button-flat-success.k-state-active, .k-button-flat-success.k-state-active.k-button.k-flat,
14472
+ .k-button-flat-success.k-state-active.k-button.k-bare, .k-button-flat.k-button-flat-success:focus, .k-button-flat-success.k-button.k-flat:focus,
14473
+ .k-button-flat-success.k-button.k-bare:focus, .k-button-flat.k-button-flat-success.k-state-focus, .k-button-flat-success.k-state-focus.k-button.k-flat,
14474
+ .k-button-flat-success.k-state-focus.k-button.k-bare {
14475
+ color: #198754;
14476
+ }
14477
+
14478
+ .k-button-flat.k-button-flat-warning, .k-button-flat-warning.k-button.k-flat,
14479
+ .k-button-flat-warning.k-button.k-bare, .k-button-flat.k-button-flat-warning:hover, .k-button-flat-warning.k-button.k-flat:hover,
14480
+ .k-button-flat-warning.k-button.k-bare:hover, .k-button-flat.k-button-flat-warning.k-state-hover, .k-button-flat-warning.k-state-hover.k-button.k-flat,
14481
+ .k-button-flat-warning.k-state-hover.k-button.k-bare, .k-button-flat.k-button-flat-warning:active, .k-button-flat-warning.k-button.k-flat:active,
14482
+ .k-button-flat-warning.k-button.k-bare:active, .k-button-flat.k-button-flat-warning.k-state-active, .k-button-flat-warning.k-state-active.k-button.k-flat,
14483
+ .k-button-flat-warning.k-state-active.k-button.k-bare, .k-button-flat.k-button-flat-warning:focus, .k-button-flat-warning.k-button.k-flat:focus,
14484
+ .k-button-flat-warning.k-button.k-bare:focus, .k-button-flat.k-button-flat-warning.k-state-focus, .k-button-flat-warning.k-state-focus.k-button.k-flat,
14485
+ .k-button-flat-warning.k-state-focus.k-button.k-bare {
14486
+ color: #ffc107;
14487
+ }
14488
+
14489
+ .k-button-flat.k-button-flat-error, .k-button-flat-error.k-button.k-flat,
14490
+ .k-button-flat-error.k-button.k-bare, .k-button-flat.k-button-flat-error:hover, .k-button-flat-error.k-button.k-flat:hover,
14491
+ .k-button-flat-error.k-button.k-bare:hover, .k-button-flat.k-button-flat-error.k-state-hover, .k-button-flat-error.k-state-hover.k-button.k-flat,
14492
+ .k-button-flat-error.k-state-hover.k-button.k-bare, .k-button-flat.k-button-flat-error:active, .k-button-flat-error.k-button.k-flat:active,
14493
+ .k-button-flat-error.k-button.k-bare:active, .k-button-flat.k-button-flat-error.k-state-active, .k-button-flat-error.k-state-active.k-button.k-flat,
14494
+ .k-button-flat-error.k-state-active.k-button.k-bare, .k-button-flat.k-button-flat-error:focus, .k-button-flat-error.k-button.k-flat:focus,
14495
+ .k-button-flat-error.k-button.k-bare:focus, .k-button-flat.k-button-flat-error.k-state-focus, .k-button-flat-error.k-state-focus.k-button.k-flat,
14496
+ .k-button-flat-error.k-state-focus.k-button.k-bare {
14497
+ color: #dc3545;
14498
+ }
14499
+
14500
+ .k-button-flat.k-button-flat-dark, .k-button-flat-dark.k-button.k-flat,
14501
+ .k-button-flat-dark.k-button.k-bare, .k-button-flat.k-button-flat-dark:hover, .k-button-flat-dark.k-button.k-flat:hover,
14502
+ .k-button-flat-dark.k-button.k-bare:hover, .k-button-flat.k-button-flat-dark.k-state-hover, .k-button-flat-dark.k-state-hover.k-button.k-flat,
14503
+ .k-button-flat-dark.k-state-hover.k-button.k-bare, .k-button-flat.k-button-flat-dark:active, .k-button-flat-dark.k-button.k-flat:active,
14504
+ .k-button-flat-dark.k-button.k-bare:active, .k-button-flat.k-button-flat-dark.k-state-active, .k-button-flat-dark.k-state-active.k-button.k-flat,
14505
+ .k-button-flat-dark.k-state-active.k-button.k-bare, .k-button-flat.k-button-flat-dark:focus, .k-button-flat-dark.k-button.k-flat:focus,
14506
+ .k-button-flat-dark.k-button.k-bare:focus, .k-button-flat.k-button-flat-dark.k-state-focus, .k-button-flat-dark.k-state-focus.k-button.k-flat,
14507
+ .k-button-flat-dark.k-state-focus.k-button.k-bare {
14508
+ color: #212529;
14509
+ }
14510
+
14511
+ .k-button-flat.k-button-flat-light, .k-button-flat-light.k-button.k-flat,
14512
+ .k-button-flat-light.k-button.k-bare, .k-button-flat.k-button-flat-light:hover, .k-button-flat-light.k-button.k-flat:hover,
14513
+ .k-button-flat-light.k-button.k-bare:hover, .k-button-flat.k-button-flat-light.k-state-hover, .k-button-flat-light.k-state-hover.k-button.k-flat,
14514
+ .k-button-flat-light.k-state-hover.k-button.k-bare, .k-button-flat.k-button-flat-light:active, .k-button-flat-light.k-button.k-flat:active,
14515
+ .k-button-flat-light.k-button.k-bare:active, .k-button-flat.k-button-flat-light.k-state-active, .k-button-flat-light.k-state-active.k-button.k-flat,
14516
+ .k-button-flat-light.k-state-active.k-button.k-bare, .k-button-flat.k-button-flat-light:focus, .k-button-flat-light.k-button.k-flat:focus,
14517
+ .k-button-flat-light.k-button.k-bare:focus, .k-button-flat.k-button-flat-light.k-state-focus, .k-button-flat-light.k-state-focus.k-button.k-flat,
14518
+ .k-button-flat-light.k-state-focus.k-button.k-bare {
14519
+ color: #f8f9fa;
14520
+ }
14521
+
14522
+ .k-button-flat.k-button-flat-inverse, .k-button-flat-inverse.k-button.k-flat,
14523
+ .k-button-flat-inverse.k-button.k-bare, .k-button-flat.k-button-flat-inverse:hover, .k-button-flat-inverse.k-button.k-flat:hover,
14524
+ .k-button-flat-inverse.k-button.k-bare:hover, .k-button-flat.k-button-flat-inverse.k-state-hover, .k-button-flat-inverse.k-state-hover.k-button.k-flat,
14525
+ .k-button-flat-inverse.k-state-hover.k-button.k-bare, .k-button-flat.k-button-flat-inverse:active, .k-button-flat-inverse.k-button.k-flat:active,
14526
+ .k-button-flat-inverse.k-button.k-bare:active, .k-button-flat.k-button-flat-inverse.k-state-active, .k-button-flat-inverse.k-state-active.k-button.k-flat,
14527
+ .k-button-flat-inverse.k-state-active.k-button.k-bare, .k-button-flat.k-button-flat-inverse:focus, .k-button-flat-inverse.k-button.k-flat:focus,
14528
+ .k-button-flat-inverse.k-button.k-bare:focus, .k-button-flat.k-button-flat-inverse.k-state-focus, .k-button-flat-inverse.k-state-focus.k-button.k-flat,
14529
+ .k-button-flat-inverse.k-state-focus.k-button.k-bare {
14530
+ color: #212529;
14531
+ }
14532
+
14533
+ .k-button-link.k-button-link-primary {
14534
+ box-shadow: none;
14535
+ color: #0d6efd;
14536
+ }
14537
+
14538
+ .k-button-link.k-button-link-primary:hover, .k-button-link.k-button-link-primary.k-state-hover {
14539
+ color: #0b5cd5;
14540
+ }
14541
+
14542
+ .k-button-link.k-button-link-primary:focus, .k-button-link.k-button-link-primary.k-state-focus {
14543
+ box-shadow: 0 0 0px 0.25rem rgba(13, 110, 253, 0.5);
14544
+ }
14545
+
14546
+ .k-button-link.k-button-link-primary:active, .k-button-link.k-button-link-primary.k-state-active, .k-button-link.k-button-link-primary.k-state-selected {
14547
+ color: #0b5cd5;
14548
+ }
14549
+
14550
+ .k-button-link.k-button-link-secondary {
14551
+ box-shadow: none;
14552
+ color: #6c757d;
14553
+ }
14554
+
14555
+ .k-button-link.k-button-link-secondary:hover, .k-button-link.k-button-link-secondary.k-state-hover {
14556
+ color: #5b6269;
14557
+ }
14558
+
14559
+ .k-button-link.k-button-link-secondary:focus, .k-button-link.k-button-link-secondary.k-state-focus {
14560
+ box-shadow: 0 0 0px 0.25rem rgba(108, 117, 125, 0.5);
14561
+ }
14562
+
14563
+ .k-button-link.k-button-link-secondary:active, .k-button-link.k-button-link-secondary.k-state-active, .k-button-link.k-button-link-secondary.k-state-selected {
14564
+ color: #5b6269;
14565
+ }
14566
+
14567
+ .k-button-link.k-button-link-tertiary {
14568
+ box-shadow: none;
14569
+ color: #6f42c1;
14570
+ }
14571
+
14572
+ .k-button-link.k-button-link-tertiary:hover, .k-button-link.k-button-link-tertiary.k-state-hover {
14573
+ color: #5d37a2;
14574
+ }
14575
+
14576
+ .k-button-link.k-button-link-tertiary:focus, .k-button-link.k-button-link-tertiary.k-state-focus {
14577
+ box-shadow: 0 0 0px 0.25rem rgba(111, 66, 193, 0.5);
14578
+ }
14579
+
14580
+ .k-button-link.k-button-link-tertiary:active, .k-button-link.k-button-link-tertiary.k-state-active, .k-button-link.k-button-link-tertiary.k-state-selected {
14581
+ color: #5d37a2;
14582
+ }
14583
+
14584
+ .k-button-link.k-button-link-info {
14585
+ box-shadow: none;
14586
+ color: #0dcaf0;
14587
+ }
14588
+
14589
+ .k-button-link.k-button-link-info:hover, .k-button-link.k-button-link-info.k-state-hover {
14590
+ color: #0baaca;
14591
+ }
14592
+
14593
+ .k-button-link.k-button-link-info:focus, .k-button-link.k-button-link-info.k-state-focus {
14594
+ box-shadow: 0 0 0px 0.25rem rgba(13, 202, 240, 0.5);
14595
+ }
14596
+
14597
+ .k-button-link.k-button-link-info:active, .k-button-link.k-button-link-info.k-state-active, .k-button-link.k-button-link-info.k-state-selected {
14598
+ color: #0baaca;
14599
+ }
14600
+
14601
+ .k-button-link.k-button-link-success {
14602
+ box-shadow: none;
14603
+ color: #198754;
14604
+ }
14605
+
14606
+ .k-button-link.k-button-link-success:hover, .k-button-link.k-button-link-success.k-state-hover {
14607
+ color: #157147;
14608
+ }
14609
+
14610
+ .k-button-link.k-button-link-success:focus, .k-button-link.k-button-link-success.k-state-focus {
14611
+ box-shadow: 0 0 0px 0.25rem rgba(25, 135, 84, 0.5);
14612
+ }
14613
+
14614
+ .k-button-link.k-button-link-success:active, .k-button-link.k-button-link-success.k-state-active, .k-button-link.k-button-link-success.k-state-selected {
14615
+ color: #157147;
14616
+ }
14617
+
14618
+ .k-button-link.k-button-link-warning {
14619
+ box-shadow: none;
14620
+ color: #ffc107;
14621
+ }
14622
+
14623
+ .k-button-link.k-button-link-warning:hover, .k-button-link.k-button-link-warning.k-state-hover {
14624
+ color: #d6a206;
14625
+ }
14626
+
14627
+ .k-button-link.k-button-link-warning:focus, .k-button-link.k-button-link-warning.k-state-focus {
14628
+ box-shadow: 0 0 0px 0.25rem rgba(255, 193, 7, 0.5);
14629
+ }
14630
+
14631
+ .k-button-link.k-button-link-warning:active, .k-button-link.k-button-link-warning.k-state-active, .k-button-link.k-button-link-warning.k-state-selected {
14632
+ color: #d6a206;
14633
+ }
14634
+
14635
+ .k-button-link.k-button-link-error {
14636
+ box-shadow: none;
14637
+ color: #dc3545;
14638
+ }
14639
+
14640
+ .k-button-link.k-button-link-error:hover, .k-button-link.k-button-link-error.k-state-hover {
14641
+ color: #b92d3a;
14642
+ }
14643
+
14644
+ .k-button-link.k-button-link-error:focus, .k-button-link.k-button-link-error.k-state-focus {
14645
+ box-shadow: 0 0 0px 0.25rem rgba(220, 53, 69, 0.5);
14646
+ }
14647
+
14648
+ .k-button-link.k-button-link-error:active, .k-button-link.k-button-link-error.k-state-active, .k-button-link.k-button-link-error.k-state-selected {
14649
+ color: #b92d3a;
14650
+ }
14651
+
14652
+ .k-button-link.k-button-link-dark {
14653
+ box-shadow: none;
14654
+ color: #212529;
14655
+ }
14656
+
14657
+ .k-button-link.k-button-link-dark:hover, .k-button-link.k-button-link-dark.k-state-hover {
14658
+ color: #1c1f22;
14659
+ }
14660
+
14661
+ .k-button-link.k-button-link-dark:focus, .k-button-link.k-button-link-dark.k-state-focus {
14662
+ box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
14663
+ }
14664
+
14665
+ .k-button-link.k-button-link-dark:active, .k-button-link.k-button-link-dark.k-state-active, .k-button-link.k-button-link-dark.k-state-selected {
14666
+ color: #1c1f22;
14667
+ }
14668
+
14669
+ .k-button-link.k-button-link-light {
14670
+ box-shadow: none;
14671
+ color: #f8f9fa;
14672
+ }
14673
+
14674
+ .k-button-link.k-button-link-light:hover, .k-button-link.k-button-link-light.k-state-hover {
14675
+ color: #d0d1d2;
14676
+ }
14677
+
14678
+ .k-button-link.k-button-link-light:focus, .k-button-link.k-button-link-light.k-state-focus {
14679
+ box-shadow: 0 0 0px 0.25rem rgba(248, 249, 250, 0.5);
14680
+ }
14681
+
14682
+ .k-button-link.k-button-link-light:active, .k-button-link.k-button-link-light.k-state-active, .k-button-link.k-button-link-light.k-state-selected {
14683
+ color: #d0d1d2;
14684
+ }
14685
+
14686
+ .k-button-link.k-button-link-inverse {
14687
+ box-shadow: none;
14688
+ color: #212529;
14689
+ }
14690
+
14691
+ .k-button-link.k-button-link-inverse:hover, .k-button-link.k-button-link-inverse.k-state-hover {
14692
+ color: #1c1f22;
14693
+ }
14694
+
14695
+ .k-button-link.k-button-link-inverse:focus, .k-button-link.k-button-link-inverse.k-state-focus {
14696
+ box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
14697
+ }
14698
+
14699
+ .k-button-link.k-button-link-inverse:active, .k-button-link.k-button-link-inverse.k-state-active, .k-button-link.k-button-link-inverse.k-state-selected {
14700
+ color: #1c1f22;
14701
+ }
14702
+
14703
+ .k-button-link.k-button-link-base {
14704
+ box-shadow: none;
14705
+ color: #212529;
14706
+ }
14707
+
14708
+ .k-button-link.k-button-link-base:hover, .k-button-link.k-button-link-base.k-state-hover {
14709
+ color: #1c1f22;
14710
+ }
14711
+
14712
+ .k-button-link.k-button-link-base:focus, .k-button-link.k-button-link-base.k-state-focus {
14713
+ box-shadow: 0 0 0px 0.25rem rgba(33, 37, 41, 0.5);
14714
+ }
14715
+
14716
+ .k-button-link.k-button-link-base:active, .k-button-link.k-button-link-base.k-state-active, .k-button-link.k-button-link-base.k-state-selected {
14717
+ color: #1c1f22;
14718
+ }
14719
+
13989
14720
  .k-button-clear {
13990
14721
  color: inherit;
13991
14722
  }
@@ -14174,6 +14905,7 @@ kendo-toolbar-renderer {
14174
14905
  .editorToolbarWindow.k-window-content .k-toolbar {
14175
14906
  padding: 0;
14176
14907
  border-width: 0;
14908
+ flex-shrink: 1;
14177
14909
  color: inherit;
14178
14910
  background: none;
14179
14911
  }
@@ -15018,7 +15750,7 @@ input.k-textbox {
15018
15750
  box-sizing: border-box;
15019
15751
  box-shadow: none;
15020
15752
  background: none;
15021
- display: inline-flex;
15753
+ display: flex;
15022
15754
  flex-wrap: nowrap;
15023
15755
  vertical-align: middle;
15024
15756
  position: relative;
@@ -15192,11 +15924,20 @@ textarea.k-textarea {
15192
15924
 
15193
15925
  .k-listbox .k-list-scroller {
15194
15926
  width: 100%;
15927
+ height: inherit;
15195
15928
  border-width: 1px;
15196
15929
  border-style: solid;
15197
15930
  box-sizing: border-box;
15198
15931
  }
15199
15932
 
15933
+ .k-listbox .k-list-scroller .k-list-scroller {
15934
+ border-width: 0;
15935
+ }
15936
+
15937
+ .k-listbox .k-list-scroller .k-list {
15938
+ height: inherit;
15939
+ }
15940
+
15200
15941
  .k-listbox .k-drop-hint {
15201
15942
  border-top-width: 1px;
15202
15943
  border-top-style: solid;
@@ -15684,43 +16425,12 @@ textarea.k-textarea {
15684
16425
  line-height: 1.5;
15685
16426
  background: none;
15686
16427
  display: inline-flex;
15687
- align-items: stretch;
16428
+ align-items: center;
15688
16429
  position: relative;
15689
16430
  -webkit-touch-callout: none;
15690
16431
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
15691
16432
  }
15692
16433
 
15693
- .k-slider .k-button {
15694
- height: 28px;
15695
- line-height: 28px;
15696
- margin: 0;
15697
- min-width: 0;
15698
- outline: 0;
15699
- padding: 0;
15700
- position: absolute;
15701
- width: 28px;
15702
- box-sizing: content-box;
15703
- }
15704
-
15705
- .k-slider .k-button .k-icon,
15706
- .k-slider .k-button .k-button-icon {
15707
- vertical-align: baseline;
15708
- line-height: 28px;
15709
- height: 100%;
15710
- }
15711
-
15712
- .k-slider .k-button-increase {
15713
- position: absolute;
15714
- right: 0;
15715
- top: 0;
15716
- }
15717
-
15718
- .k-slider .k-button-decrease {
15719
- position: absolute;
15720
- left: 0;
15721
- top: 0;
15722
- }
15723
-
15724
16434
  .k-slider .k-label {
15725
16435
  width: auto;
15726
16436
  font-size: .92em;
@@ -15755,26 +16465,14 @@ textarea.k-textarea {
15755
16465
  right: 0;
15756
16466
  }
15757
16467
 
15758
- .k-rtl .k-slider .k-button-increase, .k-slider.k-rtl .k-button-increase,
15759
- [dir="rtl"] .k-slider .k-button-increase, .k-slider[dir="rtl"] .k-button-increase {
15760
- left: 0;
15761
- right: auto;
15762
- }
15763
-
15764
- .k-rtl .k-slider .k-button-decrease, .k-slider.k-rtl .k-button-decrease,
15765
- [dir="rtl"] .k-slider .k-button-decrease, .k-slider[dir="rtl"] .k-button-decrease {
15766
- right: 0;
15767
- left: auto;
15768
- }
15769
-
15770
16468
  .k-slider {
16469
+ width: min-content;
16470
+ height: min-content;
15771
16471
  gap: 7px;
15772
16472
  }
15773
16473
 
15774
16474
  .k-slider > .k-button {
15775
- position: relative;
15776
- flex-shrink: 0;
15777
- align-self: center;
16475
+ flex: none;
15778
16476
  }
15779
16477
 
15780
16478
  .k-slider > .k-slider-track-wrap {
@@ -15790,10 +16488,9 @@ textarea.k-textarea {
15790
16488
  display: flex;
15791
16489
  flex-flow: inherit;
15792
16490
  justify-content: space-between;
15793
- }
15794
-
15795
- .k-slider > .k-slider-track-wrap .k-slider-items::after {
15796
- display: none;
16491
+ -webkit-user-select: none;
16492
+ -ms-user-select: none;
16493
+ user-select: none;
15797
16494
  }
15798
16495
 
15799
16496
  .k-slider > .k-slider-track-wrap .k-tick {
@@ -15804,6 +16501,10 @@ textarea.k-textarea {
15804
16501
  position: absolute;
15805
16502
  }
15806
16503
 
16504
+ .k-slider-horizontal > .k-slider-track-wrap {
16505
+ height: 26px;
16506
+ }
16507
+
15807
16508
  .k-slider-horizontal > .k-slider-track-wrap .k-slider-track {
15808
16509
  width: 100%;
15809
16510
  }
@@ -15855,6 +16556,10 @@ textarea.k-textarea {
15855
16556
  transform: translate(50%, -50%) scale(1);
15856
16557
  }
15857
16558
 
16559
+ .k-slider-vertical > .k-slider-track-wrap {
16560
+ width: 26px;
16561
+ }
16562
+
15858
16563
  .k-slider-vertical > .k-slider-track-wrap .k-slider-track {
15859
16564
  height: 100%;
15860
16565
  }
@@ -15884,15 +16589,9 @@ textarea.k-textarea {
15884
16589
 
15885
16590
  .k-slider-vertical {
15886
16591
  height: 200px;
15887
- width: 30px;
15888
16592
  flex-flow: column-reverse nowrap;
15889
16593
  }
15890
16594
 
15891
- .k-slider-vertical .k-button-decrease {
15892
- bottom: 0;
15893
- top: auto;
15894
- }
15895
-
15896
16595
  .k-slider-vertical .k-tick {
15897
16596
  text-align: right;
15898
16597
  margin-left: 2px;
@@ -15903,77 +16602,77 @@ textarea.k-textarea {
15903
16602
  }
15904
16603
 
15905
16604
  .k-slider-vertical .k-tick {
15906
- background-position: -92px center;
16605
+ background-position: -94px center;
15907
16606
  }
15908
16607
 
15909
16608
  .k-slider-vertical .k-slider-topleft .k-tick {
15910
- background-position: -122px center;
16609
+ background-position: -124px center;
15911
16610
  }
15912
16611
 
15913
16612
  .k-slider-vertical .k-slider-bottomright .k-tick {
15914
- background-position: -152px center;
16613
+ background-position: -154px center;
15915
16614
  }
15916
16615
 
15917
16616
  .k-slider-vertical .k-tick-large {
15918
16617
  display: flex;
15919
16618
  align-items: center;
15920
- background-position: -2px center;
16619
+ background-position: -4px center;
15921
16620
  }
15922
16621
 
15923
16622
  .k-slider-vertical .k-slider-topleft .k-tick-large {
15924
- background-position: -32px center;
16623
+ background-position: -34px center;
15925
16624
  }
15926
16625
 
15927
16626
  .k-slider-vertical .k-slider-bottomright .k-tick-large {
15928
- background-position: -62px center;
16627
+ background-position: -64px center;
15929
16628
  }
15930
16629
 
15931
16630
  .k-slider-vertical .k-first {
15932
- background-position: -92px 100%;
16631
+ background-position: -94px 100%;
15933
16632
  }
15934
16633
 
15935
16634
  .k-slider-vertical .k-tick-large.k-first {
15936
- background-position: -2px 100%;
16635
+ background-position: -4px 100%;
15937
16636
  }
15938
16637
 
15939
16638
  .k-slider-vertical .k-slider-topleft .k-first {
15940
- background-position: -122px 100%;
16639
+ background-position: -124px 100%;
15941
16640
  }
15942
16641
 
15943
16642
  .k-slider-vertical .k-slider-topleft .k-tick-large.k-first {
15944
- background-position: -32px 100%;
16643
+ background-position: -34px 100%;
15945
16644
  }
15946
16645
 
15947
16646
  .k-slider-vertical .k-slider-bottomright .k-first {
15948
- background-position: -152px 100%;
16647
+ background-position: -154px 100%;
15949
16648
  }
15950
16649
 
15951
16650
  .k-slider-vertical .k-slider-bottomright .k-tick-large.k-first {
15952
- background-position: -62px 100%;
16651
+ background-position: -64px 100%;
15953
16652
  }
15954
16653
 
15955
16654
  .k-slider-vertical .k-last {
15956
- background-position: -92px 0;
16655
+ background-position: -94px 0;
15957
16656
  }
15958
16657
 
15959
16658
  .k-slider-vertical .k-tick-large.k-last {
15960
- background-position: -2px 0;
16659
+ background-position: -4px 0;
15961
16660
  }
15962
16661
 
15963
16662
  .k-slider-vertical .k-slider-topleft .k-last {
15964
- background-position: -122px 0;
16663
+ background-position: -124px 0;
15965
16664
  }
15966
16665
 
15967
16666
  .k-slider-vertical .k-slider-topleft .k-tick-large.k-last {
15968
- background-position: -32px 0;
16667
+ background-position: -34px 0;
15969
16668
  }
15970
16669
 
15971
16670
  .k-slider-vertical .k-slider-bottomright .k-last {
15972
- background-position: -152px 0;
16671
+ background-position: -154px 0;
15973
16672
  }
15974
16673
 
15975
16674
  .k-slider-vertical .k-slider-bottomright .k-tick-large.k-last {
15976
- background-position: -62px 0;
16675
+ background-position: -64px 0;
15977
16676
  }
15978
16677
 
15979
16678
  .k-slider-vertical .k-label {
@@ -16009,17 +16708,10 @@ textarea.k-textarea {
16009
16708
  }
16010
16709
 
16011
16710
  .k-slider-horizontal {
16012
- height: 30px;
16013
16711
  width: 200px;
16014
16712
  flex-flow: row nowrap;
16015
16713
  }
16016
16714
 
16017
- .k-slider-horizontal .k-tick {
16018
- float: left;
16019
- height: 100%;
16020
- text-align: center;
16021
- }
16022
-
16023
16715
  .k-slider-horizontal .k-tick {
16024
16716
  background-position: center -92px;
16025
16717
  }
@@ -16120,11 +16812,6 @@ textarea.k-textarea {
16120
16812
  left: auto;
16121
16813
  }
16122
16814
 
16123
- .k-rtl .k-slider-horizontal .k-slider-buttons .k-slider-track, .k-slider-horizontal.k-rtl .k-slider-buttons .k-slider-track,
16124
- [dir="rtl"] .k-slider-horizontal .k-slider-buttons .k-slider-track, .k-slider-horizontal[dir="rtl"] .k-slider-buttons .k-slider-track {
16125
- right: 38px;
16126
- }
16127
-
16128
16815
  .k-rtl .k-slider-horizontal .k-button .k-i-arrow-e,
16129
16816
  .k-rtl .k-slider-horizontal .k-button .k-i-arrow-w, .k-slider-horizontal.k-rtl .k-button .k-i-arrow-e,
16130
16817
  .k-slider-horizontal.k-rtl .k-button .k-i-arrow-w,
@@ -16134,11 +16821,6 @@ textarea.k-textarea {
16134
16821
  transform: scaleX(-1);
16135
16822
  }
16136
16823
 
16137
- .k-slider-wrap {
16138
- height: 100%;
16139
- width: 100%;
16140
- }
16141
-
16142
16824
  .k-slider-track,
16143
16825
  .k-slider-selection {
16144
16826
  margin: 0;
@@ -16162,14 +16844,6 @@ textarea.k-textarea {
16162
16844
  width: 4px;
16163
16845
  }
16164
16846
 
16165
- .k-slider-horizontal .k-slider-buttons .k-slider-track {
16166
- left: 38px;
16167
- }
16168
-
16169
- .k-slider-vertical .k-slider-buttons .k-slider-track {
16170
- bottom: 38px;
16171
- }
16172
-
16173
16847
  .k-draghandle {
16174
16848
  background-color: transparent;
16175
16849
  background-repeat: no-repeat;
@@ -16179,29 +16853,11 @@ textarea.k-textarea {
16179
16853
  position: absolute;
16180
16854
  text-align: center;
16181
16855
  text-decoration: none;
16182
- box-sizing: content-box;
16856
+ box-sizing: border-box;
16183
16857
  width: 14px;
16184
16858
  height: 14px;
16185
16859
  }
16186
16860
 
16187
- .k-slider-horizontal .k-draghandle {
16188
- top: 50%;
16189
- transform: translateY(-50%);
16190
- }
16191
-
16192
- .k-slider-horizontal .k-draghandle:active, .k-slider-horizontal .k-draghandle.k-pressed {
16193
- transform: translateY(-50%) scale(1);
16194
- }
16195
-
16196
- .k-slider-vertical .k-draghandle {
16197
- left: 50%;
16198
- transform: translateX(-50%);
16199
- }
16200
-
16201
- .k-slider-vertical .k-draghandle:active, .k-slider-vertical .k-draghandle.k-pressed {
16202
- transform: translateX(-50%) scale(1);
16203
- }
16204
-
16205
16861
  .k-slider-transitions.k-slider-horizontal .k-draghandle {
16206
16862
  transition: left 0.3s ease-out, background-color 0.3s ease-out, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
16207
16863
  }
@@ -16226,35 +16882,11 @@ textarea.k-textarea {
16226
16882
  transition: none;
16227
16883
  }
16228
16884
 
16229
- .k-slider-items {
16230
- -webkit-user-select: none;
16231
- -ms-user-select: none;
16232
- user-select: none;
16233
- }
16234
-
16235
- .k-slider-buttons .k-slider-items {
16236
- margin-left: 38px;
16237
- }
16238
-
16239
- .k-slider-horizontal .k-slider-items {
16240
- height: 100%;
16241
- padding: 2px 0;
16242
- box-sizing: border-box;
16243
- }
16244
-
16245
- .k-slider-vertical .k-slider-items {
16246
- padding-top: 1px;
16247
- }
16248
-
16249
- .k-slider-vertical .k-slider-buttons .k-slider-items {
16250
- margin: 0;
16251
- padding-top: 38px;
16252
- }
16253
-
16254
- .k-slider-items::after {
16255
- content: "";
16256
- display: block;
16257
- clear: both;
16885
+ .k-slider.k-readonly .k-button,
16886
+ .k-slider.k-readonly .k-slider-track,
16887
+ .k-slider.k-readonly .k-tick,
16888
+ .k-slider.k-readonly .k-draghandle {
16889
+ pointer-events: none;
16258
16890
  }
16259
16891
 
16260
16892
  .k-slider-tooltip .k-callout-n,
@@ -16297,26 +16929,20 @@ textarea.k-textarea {
16297
16929
 
16298
16930
  .k-slider .k-draghandle:hover {
16299
16931
  border-color: #0257d5;
16300
- color: white;
16301
16932
  background-color: #025ce2;
16302
16933
  }
16303
16934
 
16304
16935
  .k-slider .k-draghandle:active, .k-slider .k-draghandle.k-pressed {
16305
16936
  border-color: #0252c9;
16306
- color: white;
16307
16937
  background-color: #0257d5;
16308
16938
  }
16309
16939
 
16310
16940
  .k-slider .k-draghandle:focus, .k-slider .k-draghandle.k-state-focused {
16311
- box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.5);
16941
+ box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
16312
16942
  }
16313
16943
 
16314
16944
  .k-slider.k-state-focused .k-draghandle {
16315
- box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.5);
16316
- }
16317
-
16318
- .k-slider .k-slider-wrap:focus {
16319
- outline: none;
16945
+ box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
16320
16946
  }
16321
16947
 
16322
16948
  .k-slider-horizontal .k-tick {
@@ -16775,7 +17401,7 @@ textarea.k-textarea {
16775
17401
  }
16776
17402
 
16777
17403
  .k-calendar .k-calendar-view .k-today.k-state-focused .k-link {
16778
- box-shadow: inset 0 0 0 1px #0d6efd, inset 0 0 0 3px rgba(228, 231, 235, 0.5);
17404
+ box-shadow: inset 0 0 0 1px #0d6efd, inset 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
16779
17405
  }
16780
17406
 
16781
17407
  .k-calendar .k-other-month {
@@ -16814,7 +17440,7 @@ textarea.k-textarea {
16814
17440
 
16815
17441
  .k-calendar .k-calendar-td.k-state-focused .k-link,
16816
17442
  .k-calendar .k-calendar-td.k-state-focus .k-link {
16817
- box-shadow: inset 0 0 0 3px rgba(228, 231, 235, 0.5);
17443
+ box-shadow: inset 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
16818
17444
  }
16819
17445
 
16820
17446
  .k-calendar .k-calendar-td.k-state-selected.k-state-focused .k-link,
@@ -17541,10 +18167,6 @@ textarea.k-textarea {
17541
18167
  z-index: 1;
17542
18168
  }
17543
18169
 
17544
- .k-colorgradient-slider .k-slider-wrap > .k-slider-track {
17545
- height: 180px;
17546
- }
17547
-
17548
18170
  .k-colorgradient-slider .k-slider-selection {
17549
18171
  display: none;
17550
18172
  }
@@ -17863,13 +18485,13 @@ textarea.k-textarea {
17863
18485
  .k-colorpicker:focus, .k-colorpicker.k-state-focus {
17864
18486
  border-color: #bfc6d0;
17865
18487
  background-color: #c7cdd5;
17866
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
18488
+ box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
17867
18489
  }
17868
18490
 
17869
18491
  .k-colorpicker:focus-within {
17870
18492
  border-color: #bfc6d0;
17871
18493
  background-color: #c7cdd5;
17872
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
18494
+ box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
17873
18495
  }
17874
18496
 
17875
18497
  .k-colorpicker.k-invalid, .k-colorpicker.ng-invalid, .k-colorpicker.k-state-invalid {
@@ -18737,13 +19359,13 @@ select.k-dropdown, select.k-dropdowntree {
18737
19359
  .k-dropdown:focus, .k-dropdowntree:focus, .k-dropdown.k-state-focus, .k-state-focus.k-dropdowntree {
18738
19360
  border-color: #bfc6d0;
18739
19361
  background-color: #c7cdd5;
18740
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
19362
+ box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
18741
19363
  }
18742
19364
 
18743
19365
  .k-dropdown:focus-within, .k-dropdowntree:focus-within {
18744
19366
  border-color: #bfc6d0;
18745
19367
  background-color: #c7cdd5;
18746
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
19368
+ box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
18747
19369
  }
18748
19370
 
18749
19371
  .k-dropdown.k-invalid, .k-invalid.k-dropdowntree, .k-dropdown.ng-invalid, .ng-invalid.k-dropdowntree, .k-dropdown.k-state-invalid, .k-state-invalid.k-dropdowntree {
@@ -18818,8 +19440,8 @@ select.k-dropdown, select.k-dropdowntree {
18818
19440
  }
18819
19441
 
18820
19442
  .k-multiselect .k-multiselect-wrap .k-button, .k-dropdowntree .k-multiselect-wrap .k-button {
18821
- min-height: calc(1.5em + 0.25rem + 2px);
18822
- padding: 0.125rem 0.375rem;
19443
+ min-height: calc(1.5em + 0.1875rem + 2px);
19444
+ padding: 0.09375rem 0.375rem;
18823
19445
  margin: 0.25rem 0 0 0.25rem;
18824
19446
  cursor: default;
18825
19447
  display: inline-flex;
@@ -18959,6 +19581,8 @@ select.k-dropdown, select.k-dropdowntree {
18959
19581
  }
18960
19582
 
18961
19583
  .k-multiselect .k-multiselect-wrap .k-button, .k-dropdowntree .k-multiselect-wrap .k-button {
19584
+ padding-top: 2px;
19585
+ padding-bottom: 2px;
18962
19586
  margin: calc(0.25rem - 1px) 0 0 calc(0.25rem - 1px);
18963
19587
  }
18964
19588
 
@@ -19066,6 +19690,14 @@ select.k-dropdown, select.k-dropdowntree {
19066
19690
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
19067
19691
  }
19068
19692
 
19693
+ .k-treeview-filter {
19694
+ padding: 0.25rem;
19695
+ box-sizing: border-box;
19696
+ display: block;
19697
+ position: relative;
19698
+ flex: none;
19699
+ }
19700
+
19069
19701
  .k-treeview-group,
19070
19702
  .k-treeview .k-group {
19071
19703
  margin: 0;
@@ -19123,21 +19755,13 @@ select.k-dropdown, select.k-dropdowntree {
19123
19755
  cursor: pointer;
19124
19756
  }
19125
19757
 
19126
- .k-treeview-toggle + .k-checkbox-wrap,
19127
- .k-treeview-toggle + .k-checkbox-wrapper,
19128
- .k-treeview .k-i-expand + .k-checkbox-wrap,
19129
- .k-treeview .k-i-expand + .k-checkbox-wrapper,
19130
- .k-treeview .k-i-collapse + .k-checkbox-wrap,
19131
- .k-treeview .k-i-collapse + .k-checkbox-wrapper {
19132
- margin-left: 0.5rem;
19133
- }
19134
-
19135
19758
  .k-treeview-loading {
19136
19759
  margin-right: 0.5rem;
19137
19760
  }
19138
19761
 
19139
19762
  .k-treeview .k-checkbox-wrap,
19140
19763
  .k-treeview .k-checkbox-wrapper {
19764
+ margin-left: 0.5rem;
19141
19765
  margin-right: 0.5rem;
19142
19766
  align-self: center;
19143
19767
  }
@@ -19197,35 +19821,12 @@ select.k-dropdown, select.k-dropdowntree {
19197
19821
  margin-right: -16px;
19198
19822
  }
19199
19823
 
19200
- .k-rtl .k-treeview .k-i-expand + .k-checkbox-wrap,
19201
- .k-rtl .k-treeview .k-i-expand + .k-checkbox-wrapper,
19202
- .k-rtl .k-treeview .k-i-collapse + .k-checkbox-wrap,
19203
- .k-rtl .k-treeview .k-i-collapse + .k-checkbox-wrapper,
19204
- .k-rtl .k-treeview .k-treeview-toggle + .k-checkbox-wrap,
19205
- .k-rtl .k-treeview .k-treeview-toggle + .k-checkbox-wrapper,
19206
- .k-treeview[dir="rtl"] .k-i-expand + .k-checkbox-wrap,
19207
- .k-treeview[dir="rtl"] .k-i-expand + .k-checkbox-wrapper,
19208
- .k-treeview[dir="rtl"] .k-i-collapse + .k-checkbox-wrap,
19209
- .k-treeview[dir="rtl"] .k-i-collapse + .k-checkbox-wrapper,
19210
- .k-treeview[dir="rtl"] .k-treeview-toggle + .k-checkbox-wrap,
19211
- .k-treeview[dir="rtl"] .k-treeview-toggle + .k-checkbox-wrapper {
19212
- margin-right: 0.5rem;
19213
- }
19214
-
19215
19824
  .k-rtl .k-treeview .k-treeview-loading,
19216
19825
  .k-treeview[dir="rtl"] .k-treeview-loading {
19217
19826
  margin-right: 0;
19218
19827
  margin-left: 0.5rem;
19219
19828
  }
19220
19829
 
19221
- .k-rtl .k-treeview .k-checkbox-wrap,
19222
- .k-rtl .k-treeview .k-checkbox-wrapper,
19223
- .k-treeview[dir="rtl"] .k-checkbox-wrap,
19224
- .k-treeview[dir="rtl"] .k-checkbox-wrapper {
19225
- margin-right: 0;
19226
- margin-left: 0.5rem;
19227
- }
19228
-
19229
19830
  .k-rtl .k-treeview .k-treeview-leaf .k-icon,
19230
19831
  .k-rtl .k-treeview .k-treeview-leaf .k-image,
19231
19832
  .k-rtl .k-treeview .k-treeview-leaf .k-sprite,
@@ -21719,11 +22320,11 @@ select.k-dropdown, select.k-dropdowntree {
21719
22320
  }
21720
22321
 
21721
22322
  .k-window-content:first-child {
21722
- padding-top: max( 1rem, 1rem );
22323
+ padding-top: clamp(1rem, 1rem, 1rem);
21723
22324
  }
21724
22325
 
21725
22326
  .k-window-content:last-child {
21726
- padding-bottom: max( 1rem, 1rem );
22327
+ padding-bottom: clamp(1rem, 1rem, 1rem);
21727
22328
  }
21728
22329
 
21729
22330
  .k-window-iframecontent {
@@ -24053,7 +24654,7 @@ kendo-card-footer {
24053
24654
  color: inherit;
24054
24655
  background-color: transparent;
24055
24656
  display: flex;
24056
- flex-direction: column;
24657
+ flex-flow: column nowrap;
24057
24658
  -webkit-touch-callout: none;
24058
24659
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
24059
24660
  }
@@ -24147,6 +24748,7 @@ kendo-card-footer {
24147
24748
  top: 0;
24148
24749
  left: 0;
24149
24750
  transition: width .2s linear;
24751
+ display: none;
24150
24752
  }
24151
24753
 
24152
24754
  .k-tabstrip-items .k-loading.k-complete {
@@ -24156,6 +24758,7 @@ kendo-card-footer {
24156
24758
 
24157
24759
  .k-tabstrip-scrollable > .k-tabstrip-items-wrapper > .k-tabstrip-items {
24158
24760
  flex: 1 1 auto;
24761
+ flex-wrap: nowrap;
24159
24762
  white-space: nowrap;
24160
24763
  overflow: hidden;
24161
24764
  }
@@ -27019,7 +27622,7 @@ div.k-grid-norecords {
27019
27622
 
27020
27623
  .k-popup > .k-column-menu-popup, .k-popup >
27021
27624
  .k-grid-columnmenu-popup {
27022
- width: 100%;
27625
+ max-width: 100%;
27023
27626
  }
27024
27627
 
27025
27628
  .k-column-menu-popup .k-actions, .k-column-menu-popup .k-edit-buttons,
@@ -27245,11 +27848,6 @@ div.k-grid-norecords {
27245
27848
  background-color: #bdd4f7;
27246
27849
  }
27247
27850
 
27248
- .k-grid .k-grid-content-locked .k-state-hover td,
27249
- .k-grid .k-grid-content-locked tr:hover td {
27250
- background-color: #ebebeb;
27251
- }
27252
-
27253
27851
  .k-grid .k-grid-content-locked .k-state-selected:hover td,
27254
27852
  .k-grid .k-grid-content-locked .k-state-selected.k-state-hover td {
27255
27853
  background-color: #b8cff1;
@@ -29620,7 +30218,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
29620
30218
  .k-fieldselector .k-list li.k-item:focus,
29621
30219
  .k-fieldselector .k-list li.k-item.k-state-focus,
29622
30220
  .k-fieldselector .k-list li.k-item.k-state-focused {
29623
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
30221
+ box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
29624
30222
  }
29625
30223
 
29626
30224
  .k-pivot-toolbar .k-button.k-empty,
@@ -29731,7 +30329,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
29731
30329
  .k-fieldselector .k-list li.k-item:focus,
29732
30330
  .k-fieldselector .k-list li.k-item.k-state-focus,
29733
30331
  .k-fieldselector .k-list li.k-item.k-state-focused {
29734
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
30332
+ box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
29735
30333
  }
29736
30334
 
29737
30335
  .k-fieldselector .k-i-loading {
@@ -29773,6 +30371,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
29773
30371
  .k-treelist .k-status .k-loading {
29774
30372
  vertical-align: baseline;
29775
30373
  margin-right: 5px;
30374
+ display: none;
29776
30375
  }
29777
30376
 
29778
30377
  .k-treelist tr.k-hidden {
@@ -33784,7 +34383,7 @@ ul.k-scheduler-views li.k-state-selected {
33784
34383
  }
33785
34384
 
33786
34385
  ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-scheduler-views li.k-state-focused {
33787
- box-shadow: 0 0 0 3px rgba(228, 231, 235, 0.5);
34386
+ box-shadow: 0 0 0 0.25rem rgba(228, 231, 235, 0.5);
33788
34387
  }
33789
34388
 
33790
34389
  .k-scheduler-footer li {
@@ -34309,12 +34908,19 @@ ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-sched
34309
34908
  .k-chat-toolbar .k-scroll-button,
34310
34909
  .k-chat .k-toolbar-box .k-scroll-button {
34311
34910
  height: 100%;
34911
+ aspect-ratio: auto;
34312
34912
  position: absolute;
34313
34913
  z-index: 2;
34314
34914
  top: 50%;
34315
34915
  transform: translateY(-50%);
34316
34916
  }
34317
34917
 
34918
+ .k-chat-toolbar .k-scroll-button .k-button-icon,
34919
+ .k-chat .k-toolbar-box .k-scroll-button .k-button-icon {
34920
+ min-width: auto;
34921
+ min-height: auto;
34922
+ }
34923
+
34318
34924
  .k-chat-toolbar .k-scroll-button-left,
34319
34925
  .k-chat .k-toolbar-box .k-scroll-button-left {
34320
34926
  left: 0;
@@ -34529,12 +35135,17 @@ ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-sched
34529
35135
  align-items: center;
34530
35136
  }
34531
35137
 
35138
+ .k-mediaplayer-volume {
35139
+ width: 100px;
35140
+ }
35141
+
34532
35142
  .k-slider.k-mediaplayer-seekbar {
34533
35143
  width: 100%;
34534
35144
  position: absolute;
34535
35145
  z-index: 3;
34536
- top: -17px;
35146
+ top: 0;
34537
35147
  left: 0;
35148
+ transform: translateY(-50%);
34538
35149
  }
34539
35150
 
34540
35151
  .k-mediaplayer-seekbar .k-slider-track {
@@ -34542,6 +35153,10 @@ ul.k-scheduler-views li:focus, ul.k-scheduler-views li.k-state-focus, ul.k-sched
34542
35153
  border-radius: 0;
34543
35154
  }
34544
35155
 
35156
+ .k-mediaplayer-seekbar .k-slider-selection {
35157
+ border-radius: 0;
35158
+ }
35159
+
34545
35160
  .k-mediaplayer-fullscreen {
34546
35161
  z-index: 10000;
34547
35162
  position: fixed;