@progress/kendo-theme-utils 5.12.1-dev.1 → 5.12.1-dev.2

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
@@ -30,6 +30,38 @@
30
30
  aspect-ratio: 16 / 9 !important;
31
31
  }
32
32
 
33
+ .k-aspect-ratio-auto {
34
+ aspect-ratio: auto;
35
+ }
36
+
37
+ .\!k-aspect-ratio-auto {
38
+ aspect-ratio: auto !important;
39
+ }
40
+
41
+ .k-aspect-ratio-1 {
42
+ aspect-ratio: 1;
43
+ }
44
+
45
+ .\!k-aspect-ratio-1 {
46
+ aspect-ratio: 1 !important;
47
+ }
48
+
49
+ .k-aspect-ratio-square {
50
+ aspect-ratio: 1 / 1;
51
+ }
52
+
53
+ .\!k-aspect-ratio-square {
54
+ aspect-ratio: 1 / 1 !important;
55
+ }
56
+
57
+ .k-aspect-ratio-video {
58
+ aspect-ratio: 16 / 9;
59
+ }
60
+
61
+ .\!k-aspect-ratio-video {
62
+ aspect-ratio: 16 / 9 !important;
63
+ }
64
+
33
65
  .k-d-none {
34
66
  display: none;
35
67
  }
@@ -62,11 +94,11 @@
62
94
  display: inline-block !important;
63
95
  }
64
96
 
65
- .k-d-flex {
97
+ .k-d-flex, .k-d-flex-row, .k-d-flex-col {
66
98
  display: flex;
67
99
  }
68
100
 
69
- .\!k-d-flex {
101
+ .\!k-d-flex, .\!k-d-flex-row, .\!k-d-flex-col {
70
102
  display: flex !important;
71
103
  }
72
104
 
@@ -713,25 +745,25 @@
713
745
  .k-top-start,
714
746
  .k-pos-top-start {
715
747
  top: 0;
716
- left: 0;
748
+ inset-inline-start: 0;
717
749
  }
718
750
 
719
751
  .k-top-end,
720
752
  .k-pos-top-end {
721
753
  top: 0;
722
- right: 0;
754
+ inset-inline-end: 0;
723
755
  }
724
756
 
725
757
  .k-bottom-start,
726
758
  .k-pos-bottom-start {
727
759
  bottom: 0;
728
- left: 0;
760
+ inset-inline-start: 0;
729
761
  }
730
762
 
731
763
  .k-bottom-end,
732
764
  .k-pos-bottom-end {
733
765
  bottom: 0;
734
- right: 0;
766
+ inset-inline-end: 0;
735
767
  }
736
768
 
737
769
  .k-top-center,
@@ -862,11 +894,11 @@
862
894
  z-index: auto !important;
863
895
  }
864
896
 
865
- .k-flex-row {
897
+ .k-flex-row, .k-d-flex-row {
866
898
  flex-direction: row;
867
899
  }
868
900
 
869
- .\!k-flex-row {
901
+ .\!k-flex-row, .\!k-d-flex-row, .\!k-d-flex-col {
870
902
  flex-direction: row !important;
871
903
  }
872
904
 
@@ -878,7 +910,7 @@
878
910
  flex-direction: row-reverse !important;
879
911
  }
880
912
 
881
- .k-flex-col {
913
+ .k-flex-col, .k-d-flex-col, .k-flex-column {
882
914
  flex-direction: column;
883
915
  }
884
916
 
@@ -886,7 +918,7 @@
886
918
  flex-direction: column !important;
887
919
  }
888
920
 
889
- .k-flex-col-reverse {
921
+ .k-flex-col-reverse, .k-flex-column-reverse {
890
922
  flex-direction: column-reverse;
891
923
  }
892
924
 
@@ -2814,11 +2846,11 @@
2814
2846
  grid-column: span 12/span 12 !important;
2815
2847
  }
2816
2848
 
2817
- .k-colspan-full {
2849
+ .k-colspan-full, .k-colspan-all {
2818
2850
  grid-column: 1 / -1;
2819
2851
  }
2820
2852
 
2821
- .\!k-colspan-full {
2853
+ .\!k-colspan-full, .\!k-colspan-all {
2822
2854
  grid-column: 1 / -1 !important;
2823
2855
  }
2824
2856
 
@@ -3262,11 +3294,11 @@
3262
3294
  grid-row: span 12/span 12 !important;
3263
3295
  }
3264
3296
 
3265
- .k-rowspan-full {
3297
+ .k-rowspan-full, .k-rowspan-all {
3266
3298
  grid-row: span 1/span -1;
3267
3299
  }
3268
3300
 
3269
- .\!k-rowspan-full {
3301
+ .\!k-rowspan-full, .\!k-rowspan-all {
3270
3302
  grid-row: span 1/span -1 !important;
3271
3303
  }
3272
3304
 
@@ -3310,6 +3342,14 @@
3310
3342
  grid-auto-flow: column dense !important;
3311
3343
  }
3312
3344
 
3345
+ .k-grid-flow-unset {
3346
+ grid-auto-flow: unset;
3347
+ }
3348
+
3349
+ .\!k-grid-flow-unset {
3350
+ grid-auto-flow: unset !important;
3351
+ }
3352
+
3313
3353
  .k-grid-auto-cols-auto {
3314
3354
  grid-auto-columns: auto;
3315
3355
  }
@@ -9826,6 +9866,78 @@
9826
9866
  font-weight: 900 !important;
9827
9867
  }
9828
9868
 
9869
+ .k-font-weight-thin {
9870
+ font-weight: 100;
9871
+ }
9872
+
9873
+ .\!k-font-weight-thin {
9874
+ font-weight: 100 !important;
9875
+ }
9876
+
9877
+ .k-font-weight-extralight {
9878
+ font-weight: 200;
9879
+ }
9880
+
9881
+ .\!k-font-weight-extralight {
9882
+ font-weight: 200 !important;
9883
+ }
9884
+
9885
+ .k-font-weight-light {
9886
+ font-weight: 300;
9887
+ }
9888
+
9889
+ .\!k-font-weight-light {
9890
+ font-weight: 300 !important;
9891
+ }
9892
+
9893
+ .k-font-weight-normal {
9894
+ font-weight: 400;
9895
+ }
9896
+
9897
+ .\!k-font-weight-normal {
9898
+ font-weight: 400 !important;
9899
+ }
9900
+
9901
+ .k-font-weight-medium {
9902
+ font-weight: 500;
9903
+ }
9904
+
9905
+ .\!k-font-weight-medium {
9906
+ font-weight: 500 !important;
9907
+ }
9908
+
9909
+ .k-font-weight-semibold {
9910
+ font-weight: 600;
9911
+ }
9912
+
9913
+ .\!k-font-weight-semibold {
9914
+ font-weight: 600 !important;
9915
+ }
9916
+
9917
+ .k-font-weight-bold {
9918
+ font-weight: 700;
9919
+ }
9920
+
9921
+ .\!k-font-weight-bold {
9922
+ font-weight: 700 !important;
9923
+ }
9924
+
9925
+ .k-font-weight-extrabold {
9926
+ font-weight: 800;
9927
+ }
9928
+
9929
+ .\!k-font-weight-extrabold {
9930
+ font-weight: 800 !important;
9931
+ }
9932
+
9933
+ .k-font-weight-black {
9934
+ font-weight: 900;
9935
+ }
9936
+
9937
+ .\!k-font-weight-black {
9938
+ font-weight: 900 !important;
9939
+ }
9940
+
9829
9941
  .k-text-left {
9830
9942
  text-align: left;
9831
9943
  }
@@ -9858,6 +9970,86 @@
9858
9970
  text-align: justify !important;
9859
9971
  }
9860
9972
 
9973
+ .k-text-inherit {
9974
+ color: inherit;
9975
+ }
9976
+
9977
+ .\!k-text-inherit {
9978
+ color: inherit !important;
9979
+ }
9980
+
9981
+ .k-text-current {
9982
+ color: currentColor;
9983
+ }
9984
+
9985
+ .\!k-text-current {
9986
+ color: currentColor !important;
9987
+ }
9988
+
9989
+ .k-text-transparent {
9990
+ color: transparent;
9991
+ }
9992
+
9993
+ .\!k-text-transparent {
9994
+ color: transparent !important;
9995
+ }
9996
+
9997
+ .k-text-black {
9998
+ color: black;
9999
+ }
10000
+
10001
+ .\!k-text-black {
10002
+ color: black !important;
10003
+ }
10004
+
10005
+ .k-text-white {
10006
+ color: white;
10007
+ }
10008
+
10009
+ .\!k-text-white {
10010
+ color: white !important;
10011
+ }
10012
+
10013
+ .k-color-inherit {
10014
+ color: inherit;
10015
+ }
10016
+
10017
+ .\!k-color-inherit {
10018
+ color: inherit !important;
10019
+ }
10020
+
10021
+ .k-color-current {
10022
+ color: currentColor;
10023
+ }
10024
+
10025
+ .\!k-color-current {
10026
+ color: currentColor !important;
10027
+ }
10028
+
10029
+ .k-color-transparent {
10030
+ color: transparent;
10031
+ }
10032
+
10033
+ .\!k-color-transparent {
10034
+ color: transparent !important;
10035
+ }
10036
+
10037
+ .k-color-black {
10038
+ color: black;
10039
+ }
10040
+
10041
+ .\!k-color-black {
10042
+ color: black !important;
10043
+ }
10044
+
10045
+ .k-color-white {
10046
+ color: white;
10047
+ }
10048
+
10049
+ .\!k-color-white {
10050
+ color: white !important;
10051
+ }
10052
+
9861
10053
  .k-text-uppercase {
9862
10054
  text-transform: uppercase;
9863
10055
  }
@@ -9898,7 +10090,7 @@
9898
10090
  white-space: normal !important;
9899
10091
  }
9900
10092
 
9901
- .k-white-space-nowrap {
10093
+ .k-white-space-nowrap, .k-text-nowrap {
9902
10094
  white-space: nowrap;
9903
10095
  }
9904
10096
 
@@ -9938,6 +10130,92 @@
9938
10130
  white-space: break-spaces !important;
9939
10131
  }
9940
10132
 
10133
+ .k-whitespace-normal {
10134
+ white-space: normal;
10135
+ }
10136
+
10137
+ .\!k-whitespace-normal {
10138
+ white-space: normal !important;
10139
+ }
10140
+
10141
+ .k-whitespace-nowrap {
10142
+ white-space: nowrap;
10143
+ }
10144
+
10145
+ .\!k-whitespace-nowrap {
10146
+ white-space: nowrap !important;
10147
+ }
10148
+
10149
+ .k-whitespace-pre {
10150
+ white-space: pre;
10151
+ }
10152
+
10153
+ .\!k-whitespace-pre {
10154
+ white-space: pre !important;
10155
+ }
10156
+
10157
+ .k-whitespace-pre-line {
10158
+ white-space: pre-line;
10159
+ }
10160
+
10161
+ .\!k-whitespace-pre-line {
10162
+ white-space: pre-line !important;
10163
+ }
10164
+
10165
+ .k-whitespace-pre-wrap {
10166
+ white-space: pre-wrap;
10167
+ }
10168
+
10169
+ .\!k-whitespace-pre-wrap {
10170
+ white-space: pre-wrap !important;
10171
+ }
10172
+
10173
+ .k-whitespace-break-spaces {
10174
+ white-space: break-spaces;
10175
+ }
10176
+
10177
+ .\!k-whitespace-break-spaces {
10178
+ white-space: break-spaces !important;
10179
+ }
10180
+
10181
+ .k-text-ellipsis {
10182
+ white-space: nowrap;
10183
+ overflow: hidden;
10184
+ text-overflow: ellipsis;
10185
+ }
10186
+
10187
+ .k-bg-inherit {
10188
+ background-color: inherit;
10189
+ }
10190
+
10191
+ .\!k-bg-inherit {
10192
+ background-color: inherit !important;
10193
+ }
10194
+
10195
+ .k-bg-transparent {
10196
+ background-color: transparent;
10197
+ }
10198
+
10199
+ .\!k-bg-transparent {
10200
+ background-color: transparent !important;
10201
+ }
10202
+
10203
+ .k-bg-black {
10204
+ background-color: black;
10205
+ }
10206
+
10207
+ .\!k-bg-black {
10208
+ background-color: black !important;
10209
+ }
10210
+
10211
+ .k-bg-white {
10212
+ background-color: white;
10213
+ }
10214
+
10215
+ .\!k-bg-white {
10216
+ background-color: white !important;
10217
+ }
10218
+
9941
10219
  .k-border {
9942
10220
  border-width: 1px;
9943
10221
  }
@@ -10218,6 +10496,166 @@
10218
10496
  border-block-width: 8px !important;
10219
10497
  }
10220
10498
 
10499
+ .k-border-top {
10500
+ border-top-width: 1px;
10501
+ }
10502
+
10503
+ .\!k-border-top {
10504
+ border-top-width: 1px !important;
10505
+ }
10506
+
10507
+ .k-border-top-0 {
10508
+ border-top-width: 0;
10509
+ }
10510
+
10511
+ .\!k-border-top-0 {
10512
+ border-top-width: 0 !important;
10513
+ }
10514
+
10515
+ .k-border-top-2 {
10516
+ border-top-width: 2px;
10517
+ }
10518
+
10519
+ .\!k-border-top-2 {
10520
+ border-top-width: 2px !important;
10521
+ }
10522
+
10523
+ .k-border-top-4 {
10524
+ border-top-width: 4px;
10525
+ }
10526
+
10527
+ .\!k-border-top-4 {
10528
+ border-top-width: 4px !important;
10529
+ }
10530
+
10531
+ .k-border-top-8 {
10532
+ border-top-width: 8px;
10533
+ }
10534
+
10535
+ .\!k-border-top-8 {
10536
+ border-top-width: 8px !important;
10537
+ }
10538
+
10539
+ .k-border-right {
10540
+ border-right-width: 1px;
10541
+ }
10542
+
10543
+ .\!k-border-right {
10544
+ border-right-width: 1px !important;
10545
+ }
10546
+
10547
+ .k-border-right-0 {
10548
+ border-right-width: 0;
10549
+ }
10550
+
10551
+ .\!k-border-right-0 {
10552
+ border-right-width: 0 !important;
10553
+ }
10554
+
10555
+ .k-border-right-2 {
10556
+ border-right-width: 2px;
10557
+ }
10558
+
10559
+ .\!k-border-right-2 {
10560
+ border-right-width: 2px !important;
10561
+ }
10562
+
10563
+ .k-border-right-4 {
10564
+ border-right-width: 4px;
10565
+ }
10566
+
10567
+ .\!k-border-right-4 {
10568
+ border-right-width: 4px !important;
10569
+ }
10570
+
10571
+ .k-border-right-8 {
10572
+ border-right-width: 8px;
10573
+ }
10574
+
10575
+ .\!k-border-right-8 {
10576
+ border-right-width: 8px !important;
10577
+ }
10578
+
10579
+ .k-border-bottom {
10580
+ border-bottom-width: 1px;
10581
+ }
10582
+
10583
+ .\!k-border-bottom {
10584
+ border-bottom-width: 1px !important;
10585
+ }
10586
+
10587
+ .k-border-bottom-0 {
10588
+ border-bottom-width: 0;
10589
+ }
10590
+
10591
+ .\!k-border-bottom-0 {
10592
+ border-bottom-width: 0 !important;
10593
+ }
10594
+
10595
+ .k-border-bottom-2 {
10596
+ border-bottom-width: 2px;
10597
+ }
10598
+
10599
+ .\!k-border-bottom-2 {
10600
+ border-bottom-width: 2px !important;
10601
+ }
10602
+
10603
+ .k-border-bottom-4 {
10604
+ border-bottom-width: 4px;
10605
+ }
10606
+
10607
+ .\!k-border-bottom-4 {
10608
+ border-bottom-width: 4px !important;
10609
+ }
10610
+
10611
+ .k-border-bottom-8 {
10612
+ border-bottom-width: 8px;
10613
+ }
10614
+
10615
+ .\!k-border-bottom-8 {
10616
+ border-bottom-width: 8px !important;
10617
+ }
10618
+
10619
+ .k-border-left {
10620
+ border-left-width: 1px;
10621
+ }
10622
+
10623
+ .\!k-border-left {
10624
+ border-left-width: 1px !important;
10625
+ }
10626
+
10627
+ .k-border-left-0 {
10628
+ border-left-width: 0;
10629
+ }
10630
+
10631
+ .\!k-border-left-0 {
10632
+ border-left-width: 0 !important;
10633
+ }
10634
+
10635
+ .k-border-left-2 {
10636
+ border-left-width: 2px;
10637
+ }
10638
+
10639
+ .\!k-border-left-2 {
10640
+ border-left-width: 2px !important;
10641
+ }
10642
+
10643
+ .k-border-left-4 {
10644
+ border-left-width: 4px;
10645
+ }
10646
+
10647
+ .\!k-border-left-4 {
10648
+ border-left-width: 4px !important;
10649
+ }
10650
+
10651
+ .k-border-left-8 {
10652
+ border-left-width: 8px;
10653
+ }
10654
+
10655
+ .\!k-border-left-8 {
10656
+ border-left-width: 8px !important;
10657
+ }
10658
+
10221
10659
  .k-border-solid {
10222
10660
  border-style: solid;
10223
10661
  }
@@ -10554,6 +10992,286 @@
10554
10992
  border-block-style: none !important;
10555
10993
  }
10556
10994
 
10995
+ .k-border-inherit {
10996
+ border-color: inherit;
10997
+ }
10998
+
10999
+ .\!k-border-inherit {
11000
+ border-color: inherit !important;
11001
+ }
11002
+
11003
+ .k-border-current {
11004
+ border-color: currentColor;
11005
+ }
11006
+
11007
+ .\!k-border-current {
11008
+ border-color: currentColor !important;
11009
+ }
11010
+
11011
+ .k-border-transparent {
11012
+ border-color: transparent;
11013
+ }
11014
+
11015
+ .\!k-border-transparent {
11016
+ border-color: transparent !important;
11017
+ }
11018
+
11019
+ .k-border-black {
11020
+ border-color: black;
11021
+ }
11022
+
11023
+ .\!k-border-black {
11024
+ border-color: black !important;
11025
+ }
11026
+
11027
+ .k-border-white {
11028
+ border-color: white;
11029
+ }
11030
+
11031
+ .\!k-border-white {
11032
+ border-color: white !important;
11033
+ }
11034
+
11035
+ .k-border-t-inherit {
11036
+ border-top-color: inherit;
11037
+ }
11038
+
11039
+ .\!k-border-t-inherit {
11040
+ border-top-color: inherit !important;
11041
+ }
11042
+
11043
+ .k-border-t-current {
11044
+ border-top-color: currentColor;
11045
+ }
11046
+
11047
+ .\!k-border-t-current {
11048
+ border-top-color: currentColor !important;
11049
+ }
11050
+
11051
+ .k-border-t-transparent {
11052
+ border-top-color: transparent;
11053
+ }
11054
+
11055
+ .\!k-border-t-transparent {
11056
+ border-top-color: transparent !important;
11057
+ }
11058
+
11059
+ .k-border-t-black {
11060
+ border-top-color: black;
11061
+ }
11062
+
11063
+ .\!k-border-t-black {
11064
+ border-top-color: black !important;
11065
+ }
11066
+
11067
+ .k-border-t-white {
11068
+ border-top-color: white;
11069
+ }
11070
+
11071
+ .\!k-border-t-white {
11072
+ border-top-color: white !important;
11073
+ }
11074
+
11075
+ .k-border-r-inherit {
11076
+ border-right-color: inherit;
11077
+ }
11078
+
11079
+ .\!k-border-r-inherit {
11080
+ border-right-color: inherit !important;
11081
+ }
11082
+
11083
+ .k-border-r-current {
11084
+ border-right-color: currentColor;
11085
+ }
11086
+
11087
+ .\!k-border-r-current {
11088
+ border-right-color: currentColor !important;
11089
+ }
11090
+
11091
+ .k-border-r-transparent {
11092
+ border-right-color: transparent;
11093
+ }
11094
+
11095
+ .\!k-border-r-transparent {
11096
+ border-right-color: transparent !important;
11097
+ }
11098
+
11099
+ .k-border-r-black {
11100
+ border-right-color: black;
11101
+ }
11102
+
11103
+ .\!k-border-r-black {
11104
+ border-right-color: black !important;
11105
+ }
11106
+
11107
+ .k-border-r-white {
11108
+ border-right-color: white;
11109
+ }
11110
+
11111
+ .\!k-border-r-white {
11112
+ border-right-color: white !important;
11113
+ }
11114
+
11115
+ .k-border-b-inherit {
11116
+ border-bottom-color: inherit;
11117
+ }
11118
+
11119
+ .\!k-border-b-inherit {
11120
+ border-bottom-color: inherit !important;
11121
+ }
11122
+
11123
+ .k-border-b-current {
11124
+ border-bottom-color: currentColor;
11125
+ }
11126
+
11127
+ .\!k-border-b-current {
11128
+ border-bottom-color: currentColor !important;
11129
+ }
11130
+
11131
+ .k-border-b-transparent {
11132
+ border-bottom-color: transparent;
11133
+ }
11134
+
11135
+ .\!k-border-b-transparent {
11136
+ border-bottom-color: transparent !important;
11137
+ }
11138
+
11139
+ .k-border-b-black {
11140
+ border-bottom-color: black;
11141
+ }
11142
+
11143
+ .\!k-border-b-black {
11144
+ border-bottom-color: black !important;
11145
+ }
11146
+
11147
+ .k-border-b-white {
11148
+ border-bottom-color: white;
11149
+ }
11150
+
11151
+ .\!k-border-b-white {
11152
+ border-bottom-color: white !important;
11153
+ }
11154
+
11155
+ .k-border-l-inherit {
11156
+ border-left-color: inherit;
11157
+ }
11158
+
11159
+ .\!k-border-l-inherit {
11160
+ border-left-color: inherit !important;
11161
+ }
11162
+
11163
+ .k-border-l-current {
11164
+ border-left-color: currentColor;
11165
+ }
11166
+
11167
+ .\!k-border-l-current {
11168
+ border-left-color: currentColor !important;
11169
+ }
11170
+
11171
+ .k-border-l-transparent {
11172
+ border-left-color: transparent;
11173
+ }
11174
+
11175
+ .\!k-border-l-transparent {
11176
+ border-left-color: transparent !important;
11177
+ }
11178
+
11179
+ .k-border-l-black {
11180
+ border-left-color: black;
11181
+ }
11182
+
11183
+ .\!k-border-l-black {
11184
+ border-left-color: black !important;
11185
+ }
11186
+
11187
+ .k-border-l-white {
11188
+ border-left-color: white;
11189
+ }
11190
+
11191
+ .\!k-border-l-white {
11192
+ border-left-color: white !important;
11193
+ }
11194
+
11195
+ .k-border-x-inherit {
11196
+ border-inline-color: inherit;
11197
+ }
11198
+
11199
+ .\!k-border-x-inherit {
11200
+ border-inline-color: inherit !important;
11201
+ }
11202
+
11203
+ .k-border-x-current {
11204
+ border-inline-color: currentColor;
11205
+ }
11206
+
11207
+ .\!k-border-x-current {
11208
+ border-inline-color: currentColor !important;
11209
+ }
11210
+
11211
+ .k-border-x-transparent {
11212
+ border-inline-color: transparent;
11213
+ }
11214
+
11215
+ .\!k-border-x-transparent {
11216
+ border-inline-color: transparent !important;
11217
+ }
11218
+
11219
+ .k-border-x-black {
11220
+ border-inline-color: black;
11221
+ }
11222
+
11223
+ .\!k-border-x-black {
11224
+ border-inline-color: black !important;
11225
+ }
11226
+
11227
+ .k-border-x-white {
11228
+ border-inline-color: white;
11229
+ }
11230
+
11231
+ .\!k-border-x-white {
11232
+ border-inline-color: white !important;
11233
+ }
11234
+
11235
+ .k-border-y-inherit {
11236
+ border-block-color: inherit;
11237
+ }
11238
+
11239
+ .\!k-border-y-inherit {
11240
+ border-block-color: inherit !important;
11241
+ }
11242
+
11243
+ .k-border-y-current {
11244
+ border-block-color: currentColor;
11245
+ }
11246
+
11247
+ .\!k-border-y-current {
11248
+ border-block-color: currentColor !important;
11249
+ }
11250
+
11251
+ .k-border-y-transparent {
11252
+ border-block-color: transparent;
11253
+ }
11254
+
11255
+ .\!k-border-y-transparent {
11256
+ border-block-color: transparent !important;
11257
+ }
11258
+
11259
+ .k-border-y-black {
11260
+ border-block-color: black;
11261
+ }
11262
+
11263
+ .\!k-border-y-black {
11264
+ border-block-color: black !important;
11265
+ }
11266
+
11267
+ .k-border-y-white {
11268
+ border-block-color: white;
11269
+ }
11270
+
11271
+ .\!k-border-y-white {
11272
+ border-block-color: white !important;
11273
+ }
11274
+
10557
11275
  .k-rounded {
10558
11276
  border-radius: 0.25rem;
10559
11277
  }
@@ -10594,14 +11312,6 @@
10594
11312
  border-radius: 0.5rem !important;
10595
11313
  }
10596
11314
 
10597
- .k-rounded-none {
10598
- border-radius: 0;
10599
- }
10600
-
10601
- .\!k-rounded-none {
10602
- border-radius: 0 !important;
10603
- }
10604
-
10605
11315
  .k-rounded-full {
10606
11316
  border-radius: 9999px;
10607
11317
  }
@@ -10650,14 +11360,6 @@
10650
11360
  border-top-left-radius: 0.5rem !important;
10651
11361
  }
10652
11362
 
10653
- .k-rounded-tl-none {
10654
- border-top-left-radius: 0;
10655
- }
10656
-
10657
- .\!k-rounded-tl-none {
10658
- border-top-left-radius: 0 !important;
10659
- }
10660
-
10661
11363
  .k-rounded-tl-full {
10662
11364
  border-top-left-radius: 9999px;
10663
11365
  }
@@ -10706,14 +11408,6 @@
10706
11408
  border-top-right-radius: 0.5rem !important;
10707
11409
  }
10708
11410
 
10709
- .k-rounded-tr-none {
10710
- border-top-right-radius: 0;
10711
- }
10712
-
10713
- .\!k-rounded-tr-none {
10714
- border-top-right-radius: 0 !important;
10715
- }
10716
-
10717
11411
  .k-rounded-tr-full {
10718
11412
  border-top-right-radius: 9999px;
10719
11413
  }
@@ -10762,14 +11456,6 @@
10762
11456
  border-bottom-right-radius: 0.5rem !important;
10763
11457
  }
10764
11458
 
10765
- .k-rounded-br-none {
10766
- border-bottom-right-radius: 0;
10767
- }
10768
-
10769
- .\!k-rounded-br-none {
10770
- border-bottom-right-radius: 0 !important;
10771
- }
10772
-
10773
11459
  .k-rounded-br-full {
10774
11460
  border-bottom-right-radius: 9999px;
10775
11461
  }
@@ -10818,14 +11504,6 @@
10818
11504
  border-bottom-left-radius: 0.5rem !important;
10819
11505
  }
10820
11506
 
10821
- .k-rounded-bl-none {
10822
- border-bottom-left-radius: 0;
10823
- }
10824
-
10825
- .\!k-rounded-bl-none {
10826
- border-bottom-left-radius: 0 !important;
10827
- }
10828
-
10829
11507
  .k-rounded-bl-full {
10830
11508
  border-bottom-left-radius: 9999px;
10831
11509
  }
@@ -10884,16 +11562,6 @@
10884
11562
  border-top-right-radius: 0.5rem !important;
10885
11563
  }
10886
11564
 
10887
- .k-rounded-t-none {
10888
- border-top-left-radius: 0;
10889
- border-top-right-radius: 0;
10890
- }
10891
-
10892
- .\!k-rounded-t-none {
10893
- border-top-left-radius: 0 !important;
10894
- border-top-right-radius: 0 !important;
10895
- }
10896
-
10897
11565
  .k-rounded-t-full {
10898
11566
  border-top-left-radius: 9999px;
10899
11567
  border-top-right-radius: 9999px;
@@ -10954,16 +11622,6 @@
10954
11622
  border-bottom-right-radius: 0.5rem !important;
10955
11623
  }
10956
11624
 
10957
- .k-rounded-r-none {
10958
- border-top-right-radius: 0;
10959
- border-bottom-right-radius: 0;
10960
- }
10961
-
10962
- .\!k-rounded-r-none {
10963
- border-top-right-radius: 0 !important;
10964
- border-bottom-right-radius: 0 !important;
10965
- }
10966
-
10967
11625
  .k-rounded-r-full {
10968
11626
  border-top-right-radius: 9999px;
10969
11627
  border-bottom-right-radius: 9999px;
@@ -11024,16 +11682,6 @@
11024
11682
  border-bottom-right-radius: 0.5rem !important;
11025
11683
  }
11026
11684
 
11027
- .k-rounded-b-none {
11028
- border-bottom-left-radius: 0;
11029
- border-bottom-right-radius: 0;
11030
- }
11031
-
11032
- .\!k-rounded-b-none {
11033
- border-bottom-left-radius: 0 !important;
11034
- border-bottom-right-radius: 0 !important;
11035
- }
11036
-
11037
11685
  .k-rounded-b-full {
11038
11686
  border-bottom-left-radius: 9999px;
11039
11687
  border-bottom-right-radius: 9999px;
@@ -11094,16 +11742,6 @@
11094
11742
  border-bottom-left-radius: 0.5rem !important;
11095
11743
  }
11096
11744
 
11097
- .k-rounded-l-none {
11098
- border-top-left-radius: 0;
11099
- border-bottom-left-radius: 0;
11100
- }
11101
-
11102
- .\!k-rounded-l-none {
11103
- border-top-left-radius: 0 !important;
11104
- border-bottom-left-radius: 0 !important;
11105
- }
11106
-
11107
11745
  .k-rounded-l-full {
11108
11746
  border-top-left-radius: 9999px;
11109
11747
  border-bottom-left-radius: 9999px;