@progress/kendo-theme-bootstrap 6.1.1-dev.16 → 6.1.1-dev.25
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 +540 -100
- package/dist/all.scss +88 -32
- package/dist/meta/variables.json +5 -1
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +5 -5
- package/scss/floating-label/_variables.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -2064,28 +2064,68 @@ kendo-sortable {
|
|
|
2064
2064
|
align-content: stretch !important;
|
|
2065
2065
|
}
|
|
2066
2066
|
|
|
2067
|
+
.k-align-content-center {
|
|
2068
|
+
align-content: center;
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2071
|
+
.\!k-align-content-center {
|
|
2072
|
+
align-content: center !important;
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2067
2075
|
.k-align-content-start {
|
|
2068
|
-
align-content:
|
|
2076
|
+
align-content: start;
|
|
2069
2077
|
}
|
|
2070
2078
|
|
|
2071
2079
|
.\!k-align-content-start {
|
|
2072
|
-
align-content:
|
|
2080
|
+
align-content: start !important;
|
|
2073
2081
|
}
|
|
2074
2082
|
|
|
2075
2083
|
.k-align-content-end {
|
|
2076
|
-
align-content:
|
|
2084
|
+
align-content: end;
|
|
2077
2085
|
}
|
|
2078
2086
|
|
|
2079
2087
|
.\!k-align-content-end {
|
|
2088
|
+
align-content: end !important;
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
.k-align-content-flex-start {
|
|
2092
|
+
align-content: flex-start;
|
|
2093
|
+
}
|
|
2094
|
+
|
|
2095
|
+
.\!k-align-content-flex-start {
|
|
2096
|
+
align-content: flex-start !important;
|
|
2097
|
+
}
|
|
2098
|
+
|
|
2099
|
+
.k-align-content-flex-end {
|
|
2100
|
+
align-content: flex-end;
|
|
2101
|
+
}
|
|
2102
|
+
|
|
2103
|
+
.\!k-align-content-flex-end {
|
|
2080
2104
|
align-content: flex-end !important;
|
|
2081
2105
|
}
|
|
2082
2106
|
|
|
2083
|
-
.k-align-content-
|
|
2084
|
-
align-content:
|
|
2107
|
+
.k-align-content-baseline {
|
|
2108
|
+
align-content: baseline;
|
|
2085
2109
|
}
|
|
2086
2110
|
|
|
2087
|
-
.\!k-align-content-
|
|
2088
|
-
align-content:
|
|
2111
|
+
.\!k-align-content-baseline {
|
|
2112
|
+
align-content: baseline !important;
|
|
2113
|
+
}
|
|
2114
|
+
|
|
2115
|
+
.k-align-content-first-baseline {
|
|
2116
|
+
align-content: first baseline;
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
.\!k-align-content-first-baseline {
|
|
2120
|
+
align-content: first baseline !important;
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
.k-align-content-last-baseline {
|
|
2124
|
+
align-content: last baseline;
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
.\!k-align-content-last-baseline {
|
|
2128
|
+
align-content: last baseline !important;
|
|
2089
2129
|
}
|
|
2090
2130
|
|
|
2091
2131
|
.k-align-content-between {
|
|
@@ -2120,36 +2160,92 @@ kendo-sortable {
|
|
|
2120
2160
|
align-items: normal !important;
|
|
2121
2161
|
}
|
|
2122
2162
|
|
|
2163
|
+
.k-align-items-stretch {
|
|
2164
|
+
align-items: stretch;
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
.\!k-align-items-stretch {
|
|
2168
|
+
align-items: stretch !important;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
.k-align-items-center {
|
|
2172
|
+
align-items: center;
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
.\!k-align-items-center {
|
|
2176
|
+
align-items: center !important;
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2123
2179
|
.k-align-items-start {
|
|
2124
|
-
align-items:
|
|
2180
|
+
align-items: start;
|
|
2125
2181
|
}
|
|
2126
2182
|
|
|
2127
2183
|
.\!k-align-items-start {
|
|
2128
|
-
align-items:
|
|
2184
|
+
align-items: start !important;
|
|
2129
2185
|
}
|
|
2130
2186
|
|
|
2131
2187
|
.k-align-items-end {
|
|
2132
|
-
align-items:
|
|
2188
|
+
align-items: end;
|
|
2133
2189
|
}
|
|
2134
2190
|
|
|
2135
2191
|
.\!k-align-items-end {
|
|
2192
|
+
align-items: end !important;
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
.k-align-items-flex-start {
|
|
2196
|
+
align-items: flex-start;
|
|
2197
|
+
}
|
|
2198
|
+
|
|
2199
|
+
.\!k-align-items-flex-start {
|
|
2200
|
+
align-items: flex-start !important;
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2203
|
+
.k-align-items-flex-end {
|
|
2204
|
+
align-items: flex-end;
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
.\!k-align-items-flex-end {
|
|
2136
2208
|
align-items: flex-end !important;
|
|
2137
2209
|
}
|
|
2138
2210
|
|
|
2139
|
-
.k-align-items-
|
|
2140
|
-
align-items:
|
|
2211
|
+
.k-align-items-baseline {
|
|
2212
|
+
align-items: baseline;
|
|
2141
2213
|
}
|
|
2142
2214
|
|
|
2143
|
-
.\!k-align-items-
|
|
2144
|
-
align-items:
|
|
2215
|
+
.\!k-align-items-baseline {
|
|
2216
|
+
align-items: baseline !important;
|
|
2145
2217
|
}
|
|
2146
2218
|
|
|
2147
|
-
.k-align-items-
|
|
2148
|
-
align-items:
|
|
2219
|
+
.k-align-items-first-baseline {
|
|
2220
|
+
align-items: first baseline;
|
|
2149
2221
|
}
|
|
2150
2222
|
|
|
2151
|
-
.\!k-align-items-
|
|
2152
|
-
align-items:
|
|
2223
|
+
.\!k-align-items-first-baseline {
|
|
2224
|
+
align-items: first baseline !important;
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
.k-align-items-last-baseline {
|
|
2228
|
+
align-items: last baseline;
|
|
2229
|
+
}
|
|
2230
|
+
|
|
2231
|
+
.\!k-align-items-last-baseline {
|
|
2232
|
+
align-items: last baseline !important;
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
.k-align-items-self-start {
|
|
2236
|
+
align-items: self-start;
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
.\!k-align-items-self-start {
|
|
2240
|
+
align-items: self-start !important;
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
.k-align-items-self-end {
|
|
2244
|
+
align-items: self-end;
|
|
2245
|
+
}
|
|
2246
|
+
|
|
2247
|
+
.\!k-align-items-self-end {
|
|
2248
|
+
align-items: self-end !important;
|
|
2153
2249
|
}
|
|
2154
2250
|
|
|
2155
2251
|
.k-align-self-auto {
|
|
@@ -2176,28 +2272,84 @@ kendo-sortable {
|
|
|
2176
2272
|
align-self: stretch !important;
|
|
2177
2273
|
}
|
|
2178
2274
|
|
|
2275
|
+
.k-align-self-center {
|
|
2276
|
+
align-self: center;
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
.\!k-align-self-center {
|
|
2280
|
+
align-self: center !important;
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2179
2283
|
.k-align-self-start {
|
|
2180
|
-
align-self:
|
|
2284
|
+
align-self: start;
|
|
2181
2285
|
}
|
|
2182
2286
|
|
|
2183
2287
|
.\!k-align-self-start {
|
|
2184
|
-
align-self:
|
|
2288
|
+
align-self: start !important;
|
|
2185
2289
|
}
|
|
2186
2290
|
|
|
2187
2291
|
.k-align-self-end {
|
|
2188
|
-
align-self:
|
|
2292
|
+
align-self: end;
|
|
2189
2293
|
}
|
|
2190
2294
|
|
|
2191
2295
|
.\!k-align-self-end {
|
|
2296
|
+
align-self: end !important;
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
.k-align-self-flex-start {
|
|
2300
|
+
align-self: flex-start;
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
.\!k-align-self-flex-start {
|
|
2304
|
+
align-self: flex-start !important;
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
.k-align-self-flex-end {
|
|
2308
|
+
align-self: flex-end;
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
.\!k-align-self-flex-end {
|
|
2192
2312
|
align-self: flex-end !important;
|
|
2193
2313
|
}
|
|
2194
2314
|
|
|
2195
|
-
.k-align-self-
|
|
2196
|
-
align-self:
|
|
2315
|
+
.k-align-self-baseline {
|
|
2316
|
+
align-self: baseline;
|
|
2197
2317
|
}
|
|
2198
2318
|
|
|
2199
|
-
.\!k-align-self-
|
|
2200
|
-
align-self:
|
|
2319
|
+
.\!k-align-self-baseline {
|
|
2320
|
+
align-self: baseline !important;
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
.k-align-self-first-baseline {
|
|
2324
|
+
align-self: first baseline;
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
.\!k-align-self-first-baseline {
|
|
2328
|
+
align-self: first baseline !important;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
.k-align-self-last-baseline {
|
|
2332
|
+
align-self: last baseline;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
.\!k-align-self-last-baseline {
|
|
2336
|
+
align-self: last baseline !important;
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
.k-align-self-self-start {
|
|
2340
|
+
align-self: self-start;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
.\!k-align-self-self-start {
|
|
2344
|
+
align-self: self-start !important;
|
|
2345
|
+
}
|
|
2346
|
+
|
|
2347
|
+
.k-align-self-self-end {
|
|
2348
|
+
align-self: self-end;
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2351
|
+
.\!k-align-self-self-end {
|
|
2352
|
+
align-self: self-end !important;
|
|
2201
2353
|
}
|
|
2202
2354
|
|
|
2203
2355
|
.k-basis-0 {
|
|
@@ -5592,28 +5744,92 @@ kendo-sortable {
|
|
|
5592
5744
|
justify-content: normal !important;
|
|
5593
5745
|
}
|
|
5594
5746
|
|
|
5747
|
+
.k-justify-content-stretch {
|
|
5748
|
+
justify-content: stretch;
|
|
5749
|
+
}
|
|
5750
|
+
|
|
5751
|
+
.\!k-justify-content-stretch {
|
|
5752
|
+
justify-content: stretch !important;
|
|
5753
|
+
}
|
|
5754
|
+
|
|
5755
|
+
.k-justify-content-center {
|
|
5756
|
+
justify-content: center;
|
|
5757
|
+
}
|
|
5758
|
+
|
|
5759
|
+
.\!k-justify-content-center {
|
|
5760
|
+
justify-content: center !important;
|
|
5761
|
+
}
|
|
5762
|
+
|
|
5595
5763
|
.k-justify-content-start {
|
|
5596
|
-
justify-content:
|
|
5764
|
+
justify-content: start;
|
|
5597
5765
|
}
|
|
5598
5766
|
|
|
5599
5767
|
.\!k-justify-content-start {
|
|
5600
|
-
justify-content:
|
|
5768
|
+
justify-content: start !important;
|
|
5601
5769
|
}
|
|
5602
5770
|
|
|
5603
5771
|
.k-justify-content-end {
|
|
5604
|
-
justify-content:
|
|
5772
|
+
justify-content: end;
|
|
5605
5773
|
}
|
|
5606
5774
|
|
|
5607
5775
|
.\!k-justify-content-end {
|
|
5776
|
+
justify-content: end !important;
|
|
5777
|
+
}
|
|
5778
|
+
|
|
5779
|
+
.k-justify-content-flex-start {
|
|
5780
|
+
justify-content: flex-start;
|
|
5781
|
+
}
|
|
5782
|
+
|
|
5783
|
+
.\!k-justify-content-flex-start {
|
|
5784
|
+
justify-content: flex-start !important;
|
|
5785
|
+
}
|
|
5786
|
+
|
|
5787
|
+
.k-justify-content-flex-end {
|
|
5788
|
+
justify-content: flex-end;
|
|
5789
|
+
}
|
|
5790
|
+
|
|
5791
|
+
.\!k-justify-content-flex-end {
|
|
5608
5792
|
justify-content: flex-end !important;
|
|
5609
5793
|
}
|
|
5610
5794
|
|
|
5611
|
-
.k-justify-content-
|
|
5612
|
-
justify-content:
|
|
5795
|
+
.k-justify-content-left {
|
|
5796
|
+
justify-content: left;
|
|
5613
5797
|
}
|
|
5614
5798
|
|
|
5615
|
-
.\!k-justify-content-
|
|
5616
|
-
justify-content:
|
|
5799
|
+
.\!k-justify-content-left {
|
|
5800
|
+
justify-content: left !important;
|
|
5801
|
+
}
|
|
5802
|
+
|
|
5803
|
+
.k-justify-content-right {
|
|
5804
|
+
justify-content: right;
|
|
5805
|
+
}
|
|
5806
|
+
|
|
5807
|
+
.\!k-justify-content-right {
|
|
5808
|
+
justify-content: right !important;
|
|
5809
|
+
}
|
|
5810
|
+
|
|
5811
|
+
.k-justify-content-baseline {
|
|
5812
|
+
justify-content: baseline;
|
|
5813
|
+
}
|
|
5814
|
+
|
|
5815
|
+
.\!k-justify-content-baseline {
|
|
5816
|
+
justify-content: baseline !important;
|
|
5817
|
+
}
|
|
5818
|
+
|
|
5819
|
+
.k-justify-content-first-baseline {
|
|
5820
|
+
justify-content: first baseline;
|
|
5821
|
+
}
|
|
5822
|
+
|
|
5823
|
+
.\!k-justify-content-first-baseline {
|
|
5824
|
+
justify-content: first baseline !important;
|
|
5825
|
+
}
|
|
5826
|
+
|
|
5827
|
+
.k-justify-content-last-baseline {
|
|
5828
|
+
justify-content: last baseline;
|
|
5829
|
+
}
|
|
5830
|
+
|
|
5831
|
+
.\!k-justify-content-last-baseline {
|
|
5832
|
+
justify-content: last baseline !important;
|
|
5617
5833
|
}
|
|
5618
5834
|
|
|
5619
5835
|
.k-justify-content-between {
|
|
@@ -5640,14 +5856,6 @@ kendo-sortable {
|
|
|
5640
5856
|
justify-content: space-evenly !important;
|
|
5641
5857
|
}
|
|
5642
5858
|
|
|
5643
|
-
.k-justify-content-stretch {
|
|
5644
|
-
justify-content: stretch;
|
|
5645
|
-
}
|
|
5646
|
-
|
|
5647
|
-
.\!k-justify-content-stretch {
|
|
5648
|
-
justify-content: stretch !important;
|
|
5649
|
-
}
|
|
5650
|
-
|
|
5651
5859
|
.k-justify-content-stretch > * {
|
|
5652
5860
|
flex: 1 0 0%;
|
|
5653
5861
|
}
|
|
@@ -5664,36 +5872,108 @@ kendo-sortable {
|
|
|
5664
5872
|
justify-items: normal !important;
|
|
5665
5873
|
}
|
|
5666
5874
|
|
|
5875
|
+
.k-justify-items-stretch {
|
|
5876
|
+
justify-items: stretch;
|
|
5877
|
+
}
|
|
5878
|
+
|
|
5879
|
+
.\!k-justify-items-stretch {
|
|
5880
|
+
justify-items: stretch !important;
|
|
5881
|
+
}
|
|
5882
|
+
|
|
5883
|
+
.k-justify-items-center {
|
|
5884
|
+
justify-items: center;
|
|
5885
|
+
}
|
|
5886
|
+
|
|
5887
|
+
.\!k-justify-items-center {
|
|
5888
|
+
justify-items: center !important;
|
|
5889
|
+
}
|
|
5890
|
+
|
|
5667
5891
|
.k-justify-items-start {
|
|
5668
|
-
justify-items:
|
|
5892
|
+
justify-items: start;
|
|
5669
5893
|
}
|
|
5670
5894
|
|
|
5671
5895
|
.\!k-justify-items-start {
|
|
5672
|
-
justify-items:
|
|
5896
|
+
justify-items: start !important;
|
|
5673
5897
|
}
|
|
5674
5898
|
|
|
5675
5899
|
.k-justify-items-end {
|
|
5676
|
-
justify-items:
|
|
5900
|
+
justify-items: end;
|
|
5677
5901
|
}
|
|
5678
5902
|
|
|
5679
5903
|
.\!k-justify-items-end {
|
|
5904
|
+
justify-items: end !important;
|
|
5905
|
+
}
|
|
5906
|
+
|
|
5907
|
+
.k-justify-items-flex-start {
|
|
5908
|
+
justify-items: flex-start;
|
|
5909
|
+
}
|
|
5910
|
+
|
|
5911
|
+
.\!k-justify-items-flex-start {
|
|
5912
|
+
justify-items: flex-start !important;
|
|
5913
|
+
}
|
|
5914
|
+
|
|
5915
|
+
.k-justify-items-flex-end {
|
|
5916
|
+
justify-items: flex-end;
|
|
5917
|
+
}
|
|
5918
|
+
|
|
5919
|
+
.\!k-justify-items-flex-end {
|
|
5680
5920
|
justify-items: flex-end !important;
|
|
5681
5921
|
}
|
|
5682
5922
|
|
|
5683
|
-
.k-justify-items-
|
|
5684
|
-
justify-items:
|
|
5923
|
+
.k-justify-items-self-start {
|
|
5924
|
+
justify-items: self-start;
|
|
5685
5925
|
}
|
|
5686
5926
|
|
|
5687
|
-
.\!k-justify-items-
|
|
5688
|
-
justify-items:
|
|
5927
|
+
.\!k-justify-items-self-start {
|
|
5928
|
+
justify-items: self-start !important;
|
|
5689
5929
|
}
|
|
5690
5930
|
|
|
5691
|
-
.k-justify-items-
|
|
5692
|
-
justify-items:
|
|
5931
|
+
.k-justify-items-self-end {
|
|
5932
|
+
justify-items: self-end;
|
|
5693
5933
|
}
|
|
5694
5934
|
|
|
5695
|
-
.\!k-justify-items-
|
|
5696
|
-
justify-items:
|
|
5935
|
+
.\!k-justify-items-self-end {
|
|
5936
|
+
justify-items: self-end !important;
|
|
5937
|
+
}
|
|
5938
|
+
|
|
5939
|
+
.k-justify-items-left {
|
|
5940
|
+
justify-items: left;
|
|
5941
|
+
}
|
|
5942
|
+
|
|
5943
|
+
.\!k-justify-items-left {
|
|
5944
|
+
justify-items: left !important;
|
|
5945
|
+
}
|
|
5946
|
+
|
|
5947
|
+
.k-justify-items-right {
|
|
5948
|
+
justify-items: right;
|
|
5949
|
+
}
|
|
5950
|
+
|
|
5951
|
+
.\!k-justify-items-right {
|
|
5952
|
+
justify-items: right !important;
|
|
5953
|
+
}
|
|
5954
|
+
|
|
5955
|
+
.k-justify-items-baseline {
|
|
5956
|
+
justify-items: baseline;
|
|
5957
|
+
}
|
|
5958
|
+
|
|
5959
|
+
.\!k-justify-items-baseline {
|
|
5960
|
+
justify-items: baseline !important;
|
|
5961
|
+
}
|
|
5962
|
+
|
|
5963
|
+
.k-justify-items-first-baseline {
|
|
5964
|
+
justify-items: first baseline;
|
|
5965
|
+
}
|
|
5966
|
+
|
|
5967
|
+
.\!k-justify-items-first-baseline {
|
|
5968
|
+
justify-items: first baseline !important;
|
|
5969
|
+
}
|
|
5970
|
+
|
|
5971
|
+
.k-justify-items-last-baseline {
|
|
5972
|
+
justify-items: last baseline;
|
|
5973
|
+
}
|
|
5974
|
+
|
|
5975
|
+
.\!k-justify-items-last-baseline {
|
|
5976
|
+
justify-items: last baseline !important;
|
|
5697
5977
|
}
|
|
5698
5978
|
|
|
5699
5979
|
.k-justify-self-auto {
|
|
@@ -5712,36 +5992,92 @@ kendo-sortable {
|
|
|
5712
5992
|
justify-self: normal !important;
|
|
5713
5993
|
}
|
|
5714
5994
|
|
|
5995
|
+
.k-justify-self-stretch {
|
|
5996
|
+
justify-self: stretch;
|
|
5997
|
+
}
|
|
5998
|
+
|
|
5999
|
+
.\!k-justify-self-stretch {
|
|
6000
|
+
justify-self: stretch !important;
|
|
6001
|
+
}
|
|
6002
|
+
|
|
6003
|
+
.k-justify-self-center {
|
|
6004
|
+
justify-self: center;
|
|
6005
|
+
}
|
|
6006
|
+
|
|
6007
|
+
.\!k-justify-self-center {
|
|
6008
|
+
justify-self: center !important;
|
|
6009
|
+
}
|
|
6010
|
+
|
|
5715
6011
|
.k-justify-self-start {
|
|
5716
|
-
justify-self:
|
|
6012
|
+
justify-self: start;
|
|
5717
6013
|
}
|
|
5718
6014
|
|
|
5719
6015
|
.\!k-justify-self-start {
|
|
5720
|
-
justify-self:
|
|
6016
|
+
justify-self: start !important;
|
|
5721
6017
|
}
|
|
5722
6018
|
|
|
5723
6019
|
.k-justify-self-end {
|
|
5724
|
-
justify-self:
|
|
6020
|
+
justify-self: end;
|
|
5725
6021
|
}
|
|
5726
6022
|
|
|
5727
6023
|
.\!k-justify-self-end {
|
|
6024
|
+
justify-self: end !important;
|
|
6025
|
+
}
|
|
6026
|
+
|
|
6027
|
+
.k-justify-self-flex-start {
|
|
6028
|
+
justify-self: flex-start;
|
|
6029
|
+
}
|
|
6030
|
+
|
|
6031
|
+
.\!k-justify-self-flex-start {
|
|
6032
|
+
justify-self: flex-start !important;
|
|
6033
|
+
}
|
|
6034
|
+
|
|
6035
|
+
.k-justify-self-flex-end {
|
|
6036
|
+
justify-self: flex-end;
|
|
6037
|
+
}
|
|
6038
|
+
|
|
6039
|
+
.\!k-justify-self-flex-end {
|
|
5728
6040
|
justify-self: flex-end !important;
|
|
5729
6041
|
}
|
|
5730
6042
|
|
|
5731
|
-
.k-justify-self-
|
|
5732
|
-
justify-self:
|
|
6043
|
+
.k-justify-self-self-start {
|
|
6044
|
+
justify-self: self-start;
|
|
5733
6045
|
}
|
|
5734
6046
|
|
|
5735
|
-
.\!k-justify-self-
|
|
5736
|
-
justify-self:
|
|
6047
|
+
.\!k-justify-self-self-start {
|
|
6048
|
+
justify-self: self-start !important;
|
|
5737
6049
|
}
|
|
5738
6050
|
|
|
5739
|
-
.k-justify-self-
|
|
5740
|
-
justify-self:
|
|
6051
|
+
.k-justify-self-self-end {
|
|
6052
|
+
justify-self: self-end;
|
|
5741
6053
|
}
|
|
5742
6054
|
|
|
5743
|
-
.\!k-justify-self-
|
|
5744
|
-
justify-self:
|
|
6055
|
+
.\!k-justify-self-self-end {
|
|
6056
|
+
justify-self: self-end !important;
|
|
6057
|
+
}
|
|
6058
|
+
|
|
6059
|
+
.k-justify-self-baseline {
|
|
6060
|
+
justify-self: baseline;
|
|
6061
|
+
}
|
|
6062
|
+
|
|
6063
|
+
.\!k-justify-self-baseline {
|
|
6064
|
+
justify-self: baseline !important;
|
|
6065
|
+
}
|
|
6066
|
+
|
|
6067
|
+
.k-justify-self-first-baseline {
|
|
6068
|
+
justify-self: first baseline;
|
|
6069
|
+
}
|
|
6070
|
+
|
|
6071
|
+
.\!k-justify-self-first-baseline {
|
|
6072
|
+
justify-self: first baseline !important;
|
|
6073
|
+
}
|
|
6074
|
+
|
|
6075
|
+
.k-justify-self-last-baseline {
|
|
6076
|
+
justify-self: last baseline;
|
|
6077
|
+
}
|
|
6078
|
+
|
|
6079
|
+
.\!k-justify-self-last-baseline {
|
|
6080
|
+
justify-self: last baseline !important;
|
|
5745
6081
|
}
|
|
5746
6082
|
|
|
5747
6083
|
.k-order-1 {
|
|
@@ -5872,28 +6208,60 @@ kendo-sortable {
|
|
|
5872
6208
|
place-content: normal !important;
|
|
5873
6209
|
}
|
|
5874
6210
|
|
|
6211
|
+
.k-place-content-stretch {
|
|
6212
|
+
place-content: stretch;
|
|
6213
|
+
}
|
|
6214
|
+
|
|
6215
|
+
.\!k-place-content-stretch {
|
|
6216
|
+
place-content: stretch !important;
|
|
6217
|
+
}
|
|
6218
|
+
|
|
6219
|
+
.k-place-content-center {
|
|
6220
|
+
place-content: center;
|
|
6221
|
+
}
|
|
6222
|
+
|
|
6223
|
+
.\!k-place-content-center {
|
|
6224
|
+
place-content: center !important;
|
|
6225
|
+
}
|
|
6226
|
+
|
|
5875
6227
|
.k-place-content-start {
|
|
5876
|
-
place-content:
|
|
6228
|
+
place-content: start;
|
|
5877
6229
|
}
|
|
5878
6230
|
|
|
5879
6231
|
.\!k-place-content-start {
|
|
5880
|
-
place-content:
|
|
6232
|
+
place-content: start !important;
|
|
5881
6233
|
}
|
|
5882
6234
|
|
|
5883
6235
|
.k-place-content-end {
|
|
5884
|
-
place-content:
|
|
6236
|
+
place-content: end;
|
|
5885
6237
|
}
|
|
5886
6238
|
|
|
5887
6239
|
.\!k-place-content-end {
|
|
6240
|
+
place-content: end !important;
|
|
6241
|
+
}
|
|
6242
|
+
|
|
6243
|
+
.k-place-content-flex-start {
|
|
6244
|
+
place-content: flex-start;
|
|
6245
|
+
}
|
|
6246
|
+
|
|
6247
|
+
.\!k-place-content-flex-start {
|
|
6248
|
+
place-content: flex-start !important;
|
|
6249
|
+
}
|
|
6250
|
+
|
|
6251
|
+
.k-place-content-flex-end {
|
|
6252
|
+
place-content: flex-end;
|
|
6253
|
+
}
|
|
6254
|
+
|
|
6255
|
+
.\!k-place-content-flex-end {
|
|
5888
6256
|
place-content: flex-end !important;
|
|
5889
6257
|
}
|
|
5890
6258
|
|
|
5891
|
-
.k-place-content-
|
|
5892
|
-
place-content:
|
|
6259
|
+
.k-place-content-baseline {
|
|
6260
|
+
place-content: baseline;
|
|
5893
6261
|
}
|
|
5894
6262
|
|
|
5895
|
-
.\!k-place-content-
|
|
5896
|
-
place-content:
|
|
6263
|
+
.\!k-place-content-baseline {
|
|
6264
|
+
place-content: baseline !important;
|
|
5897
6265
|
}
|
|
5898
6266
|
|
|
5899
6267
|
.k-place-content-between {
|
|
@@ -5920,14 +6288,6 @@ kendo-sortable {
|
|
|
5920
6288
|
place-content: space-evenly !important;
|
|
5921
6289
|
}
|
|
5922
6290
|
|
|
5923
|
-
.k-place-content-stretch {
|
|
5924
|
-
place-content: stretch;
|
|
5925
|
-
}
|
|
5926
|
-
|
|
5927
|
-
.\!k-place-content-stretch {
|
|
5928
|
-
place-content: stretch !important;
|
|
5929
|
-
}
|
|
5930
|
-
|
|
5931
6291
|
.k-place-items-normal {
|
|
5932
6292
|
place-items: normal;
|
|
5933
6293
|
}
|
|
@@ -5936,36 +6296,76 @@ kendo-sortable {
|
|
|
5936
6296
|
place-items: normal !important;
|
|
5937
6297
|
}
|
|
5938
6298
|
|
|
6299
|
+
.k-place-items-stretch {
|
|
6300
|
+
place-items: stretch;
|
|
6301
|
+
}
|
|
6302
|
+
|
|
6303
|
+
.\!k-place-items-stretch {
|
|
6304
|
+
place-items: stretch !important;
|
|
6305
|
+
}
|
|
6306
|
+
|
|
6307
|
+
.k-place-items-center {
|
|
6308
|
+
place-items: center;
|
|
6309
|
+
}
|
|
6310
|
+
|
|
6311
|
+
.\!k-place-items-center {
|
|
6312
|
+
place-items: center !important;
|
|
6313
|
+
}
|
|
6314
|
+
|
|
5939
6315
|
.k-place-items-start {
|
|
5940
|
-
place-items:
|
|
6316
|
+
place-items: start;
|
|
5941
6317
|
}
|
|
5942
6318
|
|
|
5943
6319
|
.\!k-place-items-start {
|
|
5944
|
-
place-items:
|
|
6320
|
+
place-items: start !important;
|
|
5945
6321
|
}
|
|
5946
6322
|
|
|
5947
6323
|
.k-place-items-end {
|
|
5948
|
-
place-items:
|
|
6324
|
+
place-items: end;
|
|
5949
6325
|
}
|
|
5950
6326
|
|
|
5951
6327
|
.\!k-place-items-end {
|
|
6328
|
+
place-items: end !important;
|
|
6329
|
+
}
|
|
6330
|
+
|
|
6331
|
+
.k-place-items-flex-start {
|
|
6332
|
+
place-items: flex-start;
|
|
6333
|
+
}
|
|
6334
|
+
|
|
6335
|
+
.\!k-place-items-flex-start {
|
|
6336
|
+
place-items: flex-start !important;
|
|
6337
|
+
}
|
|
6338
|
+
|
|
6339
|
+
.k-place-items-flex-end {
|
|
6340
|
+
place-items: flex-end;
|
|
6341
|
+
}
|
|
6342
|
+
|
|
6343
|
+
.\!k-place-items-flex-end {
|
|
5952
6344
|
place-items: flex-end !important;
|
|
5953
6345
|
}
|
|
5954
6346
|
|
|
5955
|
-
.k-place-items-
|
|
5956
|
-
place-items:
|
|
6347
|
+
.k-place-items-self-start {
|
|
6348
|
+
place-items: flex-start;
|
|
5957
6349
|
}
|
|
5958
6350
|
|
|
5959
|
-
.\!k-place-items-
|
|
5960
|
-
place-items:
|
|
6351
|
+
.\!k-place-items-self-start {
|
|
6352
|
+
place-items: flex-start !important;
|
|
5961
6353
|
}
|
|
5962
6354
|
|
|
5963
|
-
.k-place-items-
|
|
5964
|
-
place-items:
|
|
6355
|
+
.k-place-items-self-end {
|
|
6356
|
+
place-items: flex-end;
|
|
5965
6357
|
}
|
|
5966
6358
|
|
|
5967
|
-
.\!k-place-items-
|
|
5968
|
-
place-items:
|
|
6359
|
+
.\!k-place-items-self-end {
|
|
6360
|
+
place-items: flex-end !important;
|
|
6361
|
+
}
|
|
6362
|
+
|
|
6363
|
+
.k-place-items-baseline {
|
|
6364
|
+
place-items: baseline;
|
|
6365
|
+
}
|
|
6366
|
+
|
|
6367
|
+
.\!k-place-items-baseline {
|
|
6368
|
+
place-items: baseline !important;
|
|
5969
6369
|
}
|
|
5970
6370
|
|
|
5971
6371
|
.k-place-self-auto {
|
|
@@ -5984,6 +6384,22 @@ kendo-sortable {
|
|
|
5984
6384
|
place-self: normal !important;
|
|
5985
6385
|
}
|
|
5986
6386
|
|
|
6387
|
+
.k-place-self-stretch {
|
|
6388
|
+
place-self: stretch;
|
|
6389
|
+
}
|
|
6390
|
+
|
|
6391
|
+
.\!k-place-self-stretch {
|
|
6392
|
+
place-self: stretch !important;
|
|
6393
|
+
}
|
|
6394
|
+
|
|
6395
|
+
.k-place-self-center {
|
|
6396
|
+
place-self: center;
|
|
6397
|
+
}
|
|
6398
|
+
|
|
6399
|
+
.\!k-place-self-center {
|
|
6400
|
+
place-self: center !important;
|
|
6401
|
+
}
|
|
6402
|
+
|
|
5987
6403
|
.k-place-self-start {
|
|
5988
6404
|
place-self: flex-start;
|
|
5989
6405
|
}
|
|
@@ -6000,20 +6416,44 @@ kendo-sortable {
|
|
|
6000
6416
|
place-self: flex-end !important;
|
|
6001
6417
|
}
|
|
6002
6418
|
|
|
6003
|
-
.k-place-self-
|
|
6004
|
-
place-self:
|
|
6419
|
+
.k-place-self-flex-start {
|
|
6420
|
+
place-self: flex-start;
|
|
6005
6421
|
}
|
|
6006
6422
|
|
|
6007
|
-
.\!k-place-self-
|
|
6008
|
-
place-self:
|
|
6423
|
+
.\!k-place-self-flex-start {
|
|
6424
|
+
place-self: flex-start !important;
|
|
6009
6425
|
}
|
|
6010
6426
|
|
|
6011
|
-
.k-place-self-
|
|
6012
|
-
place-self:
|
|
6427
|
+
.k-place-self-flex-end {
|
|
6428
|
+
place-self: flex-end;
|
|
6013
6429
|
}
|
|
6014
6430
|
|
|
6015
|
-
.\!k-place-self-
|
|
6016
|
-
place-self:
|
|
6431
|
+
.\!k-place-self-flex-end {
|
|
6432
|
+
place-self: flex-end !important;
|
|
6433
|
+
}
|
|
6434
|
+
|
|
6435
|
+
.k-place-self-self-start {
|
|
6436
|
+
place-self: flex-start;
|
|
6437
|
+
}
|
|
6438
|
+
|
|
6439
|
+
.\!k-place-self-self-start {
|
|
6440
|
+
place-self: flex-start !important;
|
|
6441
|
+
}
|
|
6442
|
+
|
|
6443
|
+
.k-place-self-self-end {
|
|
6444
|
+
place-self: flex-end;
|
|
6445
|
+
}
|
|
6446
|
+
|
|
6447
|
+
.\!k-place-self-self-end {
|
|
6448
|
+
place-self: flex-end !important;
|
|
6449
|
+
}
|
|
6450
|
+
|
|
6451
|
+
.k-place-self-baseline {
|
|
6452
|
+
place-self: baseline;
|
|
6453
|
+
}
|
|
6454
|
+
|
|
6455
|
+
.\!k-place-self-baseline {
|
|
6456
|
+
place-self: baseline !important;
|
|
6017
6457
|
}
|
|
6018
6458
|
|
|
6019
6459
|
.k-m-0 {
|
|
@@ -41512,9 +41952,9 @@ kendo-grid .k-grid-row-sticky .k-table-td {
|
|
|
41512
41952
|
}
|
|
41513
41953
|
|
|
41514
41954
|
kendo-grid .k-grid-row-sticky td.k-grid-content-sticky,
|
|
41515
|
-
kendo-grid .k-grid-row-sticky.k-alt td.k-grid-content-sticky,
|
|
41955
|
+
kendo-grid .k-grid-row-sticky.k-table-alt-row td.k-grid-content-sticky,
|
|
41516
41956
|
kendo-grid .k-grid-row-sticky .k-table-td.k-grid-content-sticky,
|
|
41517
|
-
kendo-grid .k-grid-row-sticky.k-alt .k-table-td.k-grid-content-sticky {
|
|
41957
|
+
kendo-grid .k-grid-row-sticky.k-table-alt-row .k-table-td.k-grid-content-sticky {
|
|
41518
41958
|
z-index: 3;
|
|
41519
41959
|
}
|
|
41520
41960
|
|
|
@@ -44100,7 +44540,7 @@ kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
|
44100
44540
|
}
|
|
44101
44541
|
|
|
44102
44542
|
.k-pivot-layout .k-grid-footer,
|
|
44103
|
-
.k-pivot-layout .k-grid .k-alt {
|
|
44543
|
+
.k-pivot-layout .k-grid .k-table-alt-row {
|
|
44104
44544
|
font-weight: bold;
|
|
44105
44545
|
}
|
|
44106
44546
|
|
|
@@ -44369,7 +44809,7 @@ kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
|
44369
44809
|
color: #6c757d;
|
|
44370
44810
|
}
|
|
44371
44811
|
|
|
44372
|
-
.k-alt {
|
|
44812
|
+
.k-pivot .k-alt {
|
|
44373
44813
|
background-color: #f8f9fa;
|
|
44374
44814
|
}
|
|
44375
44815
|
|
package/dist/all.scss
CHANGED
|
@@ -8027,77 +8027,132 @@ $kendo-utils: (
|
|
|
8027
8027
|
"align-content": (
|
|
8028
8028
|
normal: normal,
|
|
8029
8029
|
stretch: stretch,
|
|
8030
|
-
start: flex-start,
|
|
8031
|
-
end: flex-end,
|
|
8032
8030
|
center: center,
|
|
8031
|
+
start: start,
|
|
8032
|
+
end: end,
|
|
8033
|
+
flex-start: flex-start,
|
|
8034
|
+
flex-end: flex-end,
|
|
8035
|
+
baseline: baseline,
|
|
8036
|
+
first-baseline: first baseline,
|
|
8037
|
+
last-baseline: last baseline,
|
|
8033
8038
|
between: space-between,
|
|
8034
8039
|
around: space-around,
|
|
8035
8040
|
evenly: space-evenly
|
|
8036
8041
|
),
|
|
8037
8042
|
"align-items": (
|
|
8038
8043
|
normal: normal,
|
|
8039
|
-
|
|
8040
|
-
end: flex-end,
|
|
8044
|
+
stretch: stretch,
|
|
8041
8045
|
center: center,
|
|
8042
|
-
|
|
8046
|
+
start: start,
|
|
8047
|
+
end: end,
|
|
8048
|
+
flex-start: flex-start,
|
|
8049
|
+
flex-end: flex-end,
|
|
8050
|
+
baseline: baseline,
|
|
8051
|
+
first-baseline: first baseline,
|
|
8052
|
+
last-baseline: last baseline,
|
|
8053
|
+
self-start: self-start,
|
|
8054
|
+
self-end: self-end
|
|
8043
8055
|
),
|
|
8044
8056
|
"align-self": (
|
|
8045
8057
|
auto: auto,
|
|
8046
8058
|
normal: normal,
|
|
8047
8059
|
stretch: stretch,
|
|
8048
|
-
|
|
8049
|
-
|
|
8050
|
-
|
|
8060
|
+
center: center,
|
|
8061
|
+
start: start,
|
|
8062
|
+
end: end,
|
|
8063
|
+
flex-start: flex-start,
|
|
8064
|
+
flex-end: flex-end,
|
|
8065
|
+
baseline: baseline,
|
|
8066
|
+
first-baseline: first baseline,
|
|
8067
|
+
last-baseline: last baseline,
|
|
8068
|
+
self-start: self-start,
|
|
8069
|
+
self-end: self-end
|
|
8051
8070
|
),
|
|
8052
8071
|
"justify-content": (
|
|
8053
8072
|
normal: normal,
|
|
8054
|
-
|
|
8055
|
-
end: flex-end,
|
|
8073
|
+
stretch: stretch,
|
|
8056
8074
|
center: center,
|
|
8075
|
+
start: start,
|
|
8076
|
+
end: end,
|
|
8077
|
+
flex-start: flex-start,
|
|
8078
|
+
flex-end: flex-end,
|
|
8079
|
+
left: left,
|
|
8080
|
+
right: right,
|
|
8081
|
+
baseline: baseline,
|
|
8082
|
+
first-baseline: first baseline,
|
|
8083
|
+
last-baseline: last baseline,
|
|
8057
8084
|
between: space-between,
|
|
8058
8085
|
around: space-around,
|
|
8059
|
-
evenly: space-evenly
|
|
8060
|
-
stretch: stretch
|
|
8086
|
+
evenly: space-evenly
|
|
8061
8087
|
),
|
|
8062
8088
|
"justify-items": (
|
|
8063
8089
|
normal: normal,
|
|
8064
|
-
|
|
8065
|
-
end: flex-end,
|
|
8090
|
+
stretch: stretch,
|
|
8066
8091
|
center: center,
|
|
8067
|
-
|
|
8092
|
+
start: start,
|
|
8093
|
+
end: end,
|
|
8094
|
+
flex-start: flex-start,
|
|
8095
|
+
flex-end: flex-end,
|
|
8096
|
+
self-start: self-start,
|
|
8097
|
+
self-end: self-end,
|
|
8098
|
+
left: left,
|
|
8099
|
+
right: right,
|
|
8100
|
+
baseline: baseline,
|
|
8101
|
+
first-baseline: first baseline,
|
|
8102
|
+
last-baseline: last baseline
|
|
8068
8103
|
),
|
|
8069
8104
|
"justify-self": (
|
|
8070
8105
|
auto: auto,
|
|
8071
8106
|
normal: normal,
|
|
8072
|
-
|
|
8073
|
-
end: flex-end,
|
|
8107
|
+
stretch: stretch,
|
|
8074
8108
|
center: center,
|
|
8075
|
-
|
|
8109
|
+
start: start,
|
|
8110
|
+
end: end,
|
|
8111
|
+
flex-start: flex-start,
|
|
8112
|
+
flex-end: flex-end,
|
|
8113
|
+
self-start: self-start,
|
|
8114
|
+
self-end: self-end,
|
|
8115
|
+
baseline: baseline,
|
|
8116
|
+
first-baseline: first baseline,
|
|
8117
|
+
last-baseline: last baseline
|
|
8076
8118
|
),
|
|
8077
8119
|
"place-content": (
|
|
8078
8120
|
normal: normal,
|
|
8079
|
-
|
|
8080
|
-
end: flex-end,
|
|
8121
|
+
stretch: stretch,
|
|
8081
8122
|
center: center,
|
|
8123
|
+
start: start,
|
|
8124
|
+
end: end,
|
|
8125
|
+
flex-start: flex-start,
|
|
8126
|
+
flex-end: flex-end,
|
|
8127
|
+
baseline: baseline,
|
|
8082
8128
|
between: space-between,
|
|
8083
8129
|
around: space-around,
|
|
8084
|
-
evenly: space-evenly
|
|
8085
|
-
stretch: stretch
|
|
8130
|
+
evenly: space-evenly
|
|
8086
8131
|
),
|
|
8087
8132
|
"place-items": (
|
|
8088
8133
|
normal: normal,
|
|
8089
|
-
|
|
8090
|
-
end: flex-end,
|
|
8134
|
+
stretch: stretch,
|
|
8091
8135
|
center: center,
|
|
8092
|
-
|
|
8136
|
+
start: start,
|
|
8137
|
+
end: end,
|
|
8138
|
+
flex-start: flex-start,
|
|
8139
|
+
flex-end: flex-end,
|
|
8140
|
+
self-start: flex-start,
|
|
8141
|
+
self-end: flex-end,
|
|
8142
|
+
baseline: baseline
|
|
8093
8143
|
),
|
|
8094
8144
|
"place-self": (
|
|
8095
8145
|
auto: auto,
|
|
8096
8146
|
normal: normal,
|
|
8147
|
+
stretch: stretch,
|
|
8148
|
+
center: center,
|
|
8097
8149
|
start: flex-start,
|
|
8098
8150
|
end: flex-end,
|
|
8099
|
-
|
|
8100
|
-
|
|
8151
|
+
flex-start: flex-start,
|
|
8152
|
+
flex-end: flex-end,
|
|
8153
|
+
self-start: flex-start,
|
|
8154
|
+
self-end: flex-end,
|
|
8155
|
+
baseline: baseline
|
|
8101
8156
|
),
|
|
8102
8157
|
|
|
8103
8158
|
// Spacing
|
|
@@ -20783,6 +20838,7 @@ $kendo-form-sizes: (
|
|
|
20783
20838
|
// Floating label
|
|
20784
20839
|
$kendo-floating-label-scale: 1 !default;
|
|
20785
20840
|
$kendo-floating-label-font-size: $kendo-input-font-size !default;
|
|
20841
|
+
$kendo-floating-label-max-width: 90% !default;
|
|
20786
20842
|
$kendo-floating-label-line-height: $kendo-input-line-height !default;
|
|
20787
20843
|
$kendo-floating-label-height: calc( #{$kendo-floating-label-line-height} * #{$kendo-floating-label-font-size} ) !default;
|
|
20788
20844
|
$kendo-floating-label-offset-x: calc( #{$kendo-input-padding-x} + #{$kendo-input-border-width} ) !default;
|
|
@@ -20823,7 +20879,7 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
20823
20879
|
}
|
|
20824
20880
|
|
|
20825
20881
|
> .k-label {
|
|
20826
|
-
max-width:
|
|
20882
|
+
max-width: $kendo-floating-label-max-width;
|
|
20827
20883
|
font-size: $kendo-floating-label-font-size;
|
|
20828
20884
|
line-height: $kendo-floating-label-line-height;
|
|
20829
20885
|
white-space: nowrap;
|
|
@@ -36190,9 +36246,9 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
|
|
|
36190
36246
|
}
|
|
36191
36247
|
|
|
36192
36248
|
.k-grid-row-sticky td.k-grid-content-sticky,
|
|
36193
|
-
.k-grid-row-sticky.k-alt td.k-grid-content-sticky,
|
|
36249
|
+
.k-grid-row-sticky.k-table-alt-row td.k-grid-content-sticky,
|
|
36194
36250
|
.k-grid-row-sticky .k-table-td.k-grid-content-sticky,
|
|
36195
|
-
.k-grid-row-sticky.k-alt .k-table-td.k-grid-content-sticky {
|
|
36251
|
+
.k-grid-row-sticky.k-table-alt-row .k-table-td.k-grid-content-sticky {
|
|
36196
36252
|
z-index: 3;
|
|
36197
36253
|
}
|
|
36198
36254
|
|
|
@@ -39327,7 +39383,7 @@ $kendo-pivotgrid-remove-text: null !default;
|
|
|
39327
39383
|
table-layout: auto;
|
|
39328
39384
|
|
|
39329
39385
|
.k-grid-footer,
|
|
39330
|
-
.k-grid .k-alt {
|
|
39386
|
+
.k-grid .k-table-alt-row {
|
|
39331
39387
|
font-weight: bold;
|
|
39332
39388
|
}
|
|
39333
39389
|
}
|
|
@@ -39676,7 +39732,7 @@ $kendo-pivotgrid-remove-text: null !default;
|
|
|
39676
39732
|
}
|
|
39677
39733
|
}
|
|
39678
39734
|
|
|
39679
|
-
.k-alt {
|
|
39735
|
+
.k-pivot .k-alt {
|
|
39680
39736
|
background-color: $kendo-pivotgrid-alt-bg;
|
|
39681
39737
|
}
|
|
39682
39738
|
|
package/dist/meta/variables.json
CHANGED
|
@@ -4445,7 +4445,7 @@
|
|
|
4445
4445
|
},
|
|
4446
4446
|
"kendo-utils": {
|
|
4447
4447
|
"type": "Map",
|
|
4448
|
-
"value": "(\"screen-readers\": true, \"aspect-ratio\": (auto: auto, 1: 1, square: 1 / 1, video: 16 / 9), \"container\": (), \"columns\": (), \"break-after\": (), \"break-before\": (), \"break-inside\": (), \"box-decoration-break\": (), \"box-sizing\": (), \"display\": (none, block, inline, inline-block, flex, inline-flex, grid, inline-grid, table, inline-table, list-item), \"float\": (left, right, none), \"clear\": (left, right, both, none), \"isolation\": (), \"object-fit\": (), \"object-position\": (), \"overflow\": (auto: auto, hidden: hidden, visible: visible, scroll: scroll, clip: clip, x-auto: auto, x-hidden: hidden, x-visible: visible, x-scroll: scroll, x-clip: clip, y-auto: auto, y-hidden: hidden, y-visible: visible, y-scroll: scroll, y-clip: clip), \"overscroll\": (), \"position\": (static, relative, absolute, fixed, sticky), \"inset\": (0: 0, 1: 1px, -1: -1px), \"visibility\": (visible, hidden), \"zindex\": (0: 0, 10: 10, 20: 20, 30: 30, 40: 40, 50: 50, auto: auto), \"flex-direction\": (row: row, row-reverse: row-reverse, col: column, col-reverse: column-reverse), \"flex-wrap\": (wrap, wrap-reverse, nowrap), \"flex\": (1: 1 1 0%, auto: 1 1 auto, initial: 0 1 auto, none: none), \"flex-grow\": (DEFAULT: 1, 0: 0), \"flex-shrink\": (DEFAULT: 1, 0: 0), \"flex-basis\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content), \"order\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, first: -9999, last: 9999, none: 0), \"grid-template-columns\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-template-rows\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-column-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-column-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-column-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: 1 / -1, auto: auto), \"grid-row-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-row-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-row-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: span 1/span -1, auto: auto), \"grid-auto-flow\": (row: row, col: column, row-dense: row dense, col-dense: column dense, unset: unset), \"grid-auto-columns\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"grid-auto-rows\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"gap\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"align-content\": (normal: normal, stretch: stretch, start: flex-start, end: flex-end, center: center, between: space-between, around: space-around, evenly: space-evenly), \"align-items\": (normal: normal, start: flex-start, end: flex-end, center: center, stretch: stretch), \"align-self\": (auto: auto, normal: normal, stretch: stretch, start: flex-start, end: flex-end, center: center), \"justify-content\": (normal: normal, start: flex-start, end: flex-end, center: center, between: space-between, around: space-around, evenly: space-evenly, stretch: stretch), \"justify-items\": (normal: normal, start: flex-start, end: flex-end, center: center, stretch: stretch), \"justify-self\": (auto: auto, normal: normal, start: flex-start, end: flex-end, center: center, stretch: stretch), \"place-content\": (normal: normal, start: flex-start, end: flex-end, center: center, between: space-between, around: space-around, evenly: space-evenly, stretch: stretch), \"place-items\": (normal: normal, start: flex-start, end: flex-end, center: center, stretch: stretch), \"place-self\": (auto: auto, normal: normal, start: flex-start, end: flex-end, center: center, stretch: stretch), \"margin\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"padding\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"space-between\": (), \"width\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vw), \"min-width\": (0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"max-width\": (none: none, 0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"height\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vh), \"min-height\": (0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"max-height\": (none: none, 0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"font-family\": (), \"font-size\": (xs: 0.75rem, sm: 0.875rem, md: 1rem, lg: 1.25rem, xl: 1.5rem), \"font-smoothing\": (), \"font-style\": (italic: italic, non-italic: normal), \"font-weight\": (\"thin\": 100, \"extralight\": 200, \"light\": 300, \"normal\": 400, \"medium\": 500, \"semibold\": 600, \"bold\": 700, \"extrabold\": 800, \"black\": 900), \"font-variant-numeric\": (), \"letter-spacing\": (), \"line-height\": (), \"list-style-type\": (), \"list-style-position\": (), \"text-align\": (left, right, center, justify), \"text-color\": (\"primary\": #0d6efd, \"secondary\": #6c757d, \"tertiary\": #6f42c1, \"info\": #0dcaf0, \"success\": #198754, \"warning\": #ffc107, \"error\": #dc3545, \"dark\": #212529, \"light\": #f8f9fa, \"inverse\": #212529, \"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"text-decoration\": (), \"text-decoration-width\": (), \"text-decoration-style\": (), \"text-decoration-color\": (), \"text-decoration-offset\": (), \"text-transform\": (uppercase: uppercase, lowercase: lowercase, capitalize: capitalize, normal-case: none), \"text-overflow\": (), \"text-indent\": (), \"vertical-align\": (), \"white-space\": (normal, nowrap, pre, pre-line, pre-wrap, break-spaces), \"word-break\": (), \"background-color\": (\"primary\": #0d6efd, \"secondary\": #6c757d, \"tertiary\": #6f42c1, \"info\": #0dcaf0, \"success\": #198754, \"warning\": #ffc107, \"error\": #dc3545, \"dark\": #212529, \"light\": #f8f9fa, \"inverse\": #212529, \"inherit\": inherit, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"border-style\": (solid, dashed, dotted, double, hidden, none), \"border-color\": (\"primary\": #0d6efd, \"secondary\": #6c757d, \"tertiary\": #6f42c1, \"info\": #0dcaf0, \"success\": #198754, \"warning\": #ffc107, \"error\": #dc3545, \"dark\": #212529, \"light\": #f8f9fa, \"inverse\": #212529, \"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-radius\": (DEFAULT: 0.375rem, 0: 0, sm: 0.25rem, md: 0.375rem, lg: 0.5rem, full: 9999px), \"outline-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"outline-style\": (solid, dashed, dotted, double, groove, ridge, inset, outset, none), \"outline-color\": (), \"outline-offset\": (0: 0, 1: 1px, 2: 2px, 4: 4px, 8: 8px), \"border-collapse\": (collapse, separate), \"table-layout\": (auto, fixed), \"flip\": true, \"scale\": (0: 0, 0.25: 0.25, 0.5: 0.5, 0.75: 0.75, 1: 1, 1.25: 1.25, 1.5: 1.5, 2: 2), \"rotate\": (0: 0deg, 45: 45deg, 90: 90deg, 135: 135deg, 180: 180deg, 225: 225deg, 270: 270deg, 315: 315deg), \"translate\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%), \"skew\": (0: 0deg, 1: 1deg, 2: 2deg, 3: 3deg, 4: 4deg, 5: 5deg, 6: 6deg, 7: 7deg, 8: 8deg, 9: 9deg, 10: 10deg, 11: 11deg, 12: 12deg), \"origin\": (center: center, top: top, right: right, bottom: bottom, left: left, top-left: top left, top-right: top right, bottom-left: bottom left, bottom-right: bottom right), \"accent-color\": (), \"appearance\": (none, auto), \"cursor\": (none, auto, default, context-menu, help, pointer, progress, wait, cell, crosshair, text, vertical-text, alias, copy, move, no-drop, not-allowed, e-resize, n-resize, ne-resize, nw-resize, s-resize, se-resize, sw-resize, w-resize, ew-resize, ns-resize, nesw-resize, nwse-resize, col-resize, row-resize, all-scroll, zoom-in, zoom-out, grab, grabbing), \"caret-color\": (), \"pointer-events\": (none, auto), \"resize\": (DEFAULT: both, none: none, x: horizontal, y: vertical), \"scroll-behavior\": (auto, smooth), \"scroll-snap-type\": (none: none, snap-x: x var(--k-scroll-snap-strictness), snap-y: y var(--k-scroll-snap-strictness), snap-both: both var(--k-scroll-snap-strictness)), \"scroll-snap-align\": (start, end, center, none), \"scroll-snap-stop\": (normal, always), \"scroll-margin\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem), \"scroll-padding\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem), \"touch-action\": (none, auto, pan-x, pan-left, pan-right, pan-y, pan-up, pan-down, pinch-zoom, manipulation), \"user-select\": (none, auto, text, all, contain), \"will-change\": (auto: auto, scroll: scroll-position, contents: contents, transform: transform))"
|
|
4448
|
+
"value": "(\"screen-readers\": true, \"aspect-ratio\": (auto: auto, 1: 1, square: 1 / 1, video: 16 / 9), \"container\": (), \"columns\": (), \"break-after\": (), \"break-before\": (), \"break-inside\": (), \"box-decoration-break\": (), \"box-sizing\": (), \"display\": (none, block, inline, inline-block, flex, inline-flex, grid, inline-grid, table, inline-table, list-item), \"float\": (left, right, none), \"clear\": (left, right, both, none), \"isolation\": (), \"object-fit\": (), \"object-position\": (), \"overflow\": (auto: auto, hidden: hidden, visible: visible, scroll: scroll, clip: clip, x-auto: auto, x-hidden: hidden, x-visible: visible, x-scroll: scroll, x-clip: clip, y-auto: auto, y-hidden: hidden, y-visible: visible, y-scroll: scroll, y-clip: clip), \"overscroll\": (), \"position\": (static, relative, absolute, fixed, sticky), \"inset\": (0: 0, 1: 1px, -1: -1px), \"visibility\": (visible, hidden), \"zindex\": (0: 0, 10: 10, 20: 20, 30: 30, 40: 40, 50: 50, auto: auto), \"flex-direction\": (row: row, row-reverse: row-reverse, col: column, col-reverse: column-reverse), \"flex-wrap\": (wrap, wrap-reverse, nowrap), \"flex\": (1: 1 1 0%, auto: 1 1 auto, initial: 0 1 auto, none: none), \"flex-grow\": (DEFAULT: 1, 0: 0), \"flex-shrink\": (DEFAULT: 1, 0: 0), \"flex-basis\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content), \"order\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, first: -9999, last: 9999, none: 0), \"grid-template-columns\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-template-rows\": (1: repeat(1, minmax(0, 1fr)), 2: repeat(2, minmax(0, 1fr)), 3: repeat(3, minmax(0, 1fr)), 4: repeat(4, minmax(0, 1fr)), 5: repeat(5, minmax(0, 1fr)), 6: repeat(6, minmax(0, 1fr)), 7: repeat(7, minmax(0, 1fr)), 8: repeat(8, minmax(0, 1fr)), 9: repeat(9, minmax(0, 1fr)), 10: repeat(10, minmax(0, 1fr)), 11: repeat(11, minmax(0, 1fr)), 12: repeat(12, minmax(0, 1fr)), none: none), \"grid-column-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-column-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-column-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: 1 / -1, auto: auto), \"grid-row-start\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-row-end\": (1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10, 11: 11, 12: 12, 13: 13, auto: auto), \"grid-row-span\": (1: span 1/span 1, 2: span 2/span 2, 3: span 3/span 3, 4: span 4/span 4, 5: span 5/span 5, 6: span 6/span 6, 7: span 7/span 7, 8: span 8/span 8, 9: span 9/span 9, 10: span 10/span 10, 11: span 11/span 11, 12: span 12/span 12, full: span 1/span -1, auto: auto), \"grid-auto-flow\": (row: row, col: column, row-dense: row dense, col-dense: column dense, unset: unset), \"grid-auto-columns\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"grid-auto-rows\": (auto: auto, min: min-content, max: max-content, fr: minmax(0, 1fr)), \"gap\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"align-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, between: space-between, around: space-around, evenly: space-evenly), \"align-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, self-start: self-start, self-end: self-end), \"align-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, self-start: self-start, self-end: self-end), \"justify-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, left: left, right: right, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline, between: space-between, around: space-around, evenly: space-evenly), \"justify-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, left: left, right: right, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline), \"justify-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: self-start, self-end: self-end, baseline: baseline, first-baseline: first baseline, last-baseline: last baseline), \"place-content\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, baseline: baseline, between: space-between, around: space-around, evenly: space-evenly), \"place-items\": (normal: normal, stretch: stretch, center: center, start: start, end: end, flex-start: flex-start, flex-end: flex-end, self-start: flex-start, self-end: flex-end, baseline: baseline), \"place-self\": (auto: auto, normal: normal, stretch: stretch, center: center, start: flex-start, end: flex-end, flex-start: flex-start, flex-end: flex-end, self-start: flex-start, self-end: flex-end, baseline: baseline), \"margin\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"padding\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, xs: 0.25rem, sm: 0.5rem, md: 0.75rem, lg: 1rem, xl: 1.5rem, thin: 0.125rem, hair: 1px), \"space-between\": (), \"width\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vw), \"min-width\": (0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"max-width\": (none: none, 0: 0, full: 100%, screen: 100vw, min: min-content, max: max-content, fit: fit-content), \"height\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"auto\": auto, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%, \"min\": min-content, \"max\": max-content, \"fit\": fit-content, screen: 100vh), \"min-height\": (0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"max-height\": (none: none, 0: 0, full: 100%, screen: 100vh, min: min-content, max: max-content, fit: fit-content), \"font-family\": (), \"font-size\": (xs: 0.75rem, sm: 0.875rem, md: 1rem, lg: 1.25rem, xl: 1.5rem), \"font-smoothing\": (), \"font-style\": (italic: italic, non-italic: normal), \"font-weight\": (\"thin\": 100, \"extralight\": 200, \"light\": 300, \"normal\": 400, \"medium\": 500, \"semibold\": 600, \"bold\": 700, \"extrabold\": 800, \"black\": 900), \"font-variant-numeric\": (), \"letter-spacing\": (), \"line-height\": (), \"list-style-type\": (), \"list-style-position\": (), \"text-align\": (left, right, center, justify), \"text-color\": (\"primary\": #0d6efd, \"secondary\": #6c757d, \"tertiary\": #6f42c1, \"info\": #0dcaf0, \"success\": #198754, \"warning\": #ffc107, \"error\": #dc3545, \"dark\": #212529, \"light\": #f8f9fa, \"inverse\": #212529, \"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"text-decoration\": (), \"text-decoration-width\": (), \"text-decoration-style\": (), \"text-decoration-color\": (), \"text-decoration-offset\": (), \"text-transform\": (uppercase: uppercase, lowercase: lowercase, capitalize: capitalize, normal-case: none), \"text-overflow\": (), \"text-indent\": (), \"vertical-align\": (), \"white-space\": (normal, nowrap, pre, pre-line, pre-wrap, break-spaces), \"word-break\": (), \"background-color\": (\"primary\": #0d6efd, \"secondary\": #6c757d, \"tertiary\": #6f42c1, \"info\": #0dcaf0, \"success\": #198754, \"warning\": #ffc107, \"error\": #dc3545, \"dark\": #212529, \"light\": #f8f9fa, \"inverse\": #212529, \"inherit\": inherit, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"border-style\": (solid, dashed, dotted, double, hidden, none), \"border-color\": (\"primary\": #0d6efd, \"secondary\": #6c757d, \"tertiary\": #6f42c1, \"info\": #0dcaf0, \"success\": #198754, \"warning\": #ffc107, \"error\": #dc3545, \"dark\": #212529, \"light\": #f8f9fa, \"inverse\": #212529, \"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-radius\": (DEFAULT: 0.375rem, 0: 0, sm: 0.25rem, md: 0.375rem, lg: 0.5rem, full: 9999px), \"outline-width\": (DEFAULT: 1px, 0: 0, 2: 2px, 4: 4px, 8: 8px), \"outline-style\": (solid, dashed, dotted, double, groove, ridge, inset, outset, none), \"outline-color\": (), \"outline-offset\": (0: 0, 1: 1px, 2: 2px, 4: 4px, 8: 8px), \"border-collapse\": (collapse, separate), \"table-layout\": (auto, fixed), \"flip\": true, \"scale\": (0: 0, 0.25: 0.25, 0.5: 0.5, 0.75: 0.75, 1: 1, 1.25: 1.25, 1.5: 1.5, 2: 2), \"rotate\": (0: 0deg, 45: 45deg, 90: 90deg, 135: 135deg, 180: 180deg, 225: 225deg, 270: 270deg, 315: 315deg), \"translate\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem, \"1/2\": 50%, \"1/3\": 33.333333%, \"2/3\": 66.666667%, \"1/4\": 25%, \"2/4\": 50%, \"3/4\": 75%, \"1/5\": 20%, \"2/5\": 40%, \"3/5\": 60%, \"4/5\": 80%, \"1/6\": 16.666667%, \"2/6\": 33.333333%, \"3/6\": 50%, \"4/6\": 66.666667%, \"5/6\": 83.333333%, \"1/12\": 8.333333%, \"2/12\": 16.666667%, \"3/12\": 25%, \"4/12\": 33.333333%, \"5/12\": 41.666667%, \"6/12\": 50%, \"7/12\": 58.333333%, \"8/12\": 66.666667%, \"9/12\": 75%, \"10/12\": 83.333333%, \"11/12\": 91.666667%, \"full\": 100%), \"skew\": (0: 0deg, 1: 1deg, 2: 2deg, 3: 3deg, 4: 4deg, 5: 5deg, 6: 6deg, 7: 7deg, 8: 8deg, 9: 9deg, 10: 10deg, 11: 11deg, 12: 12deg), \"origin\": (center: center, top: top, right: right, bottom: bottom, left: left, top-left: top left, top-right: top right, bottom-left: bottom left, bottom-right: bottom right), \"accent-color\": (), \"appearance\": (none, auto), \"cursor\": (none, auto, default, context-menu, help, pointer, progress, wait, cell, crosshair, text, vertical-text, alias, copy, move, no-drop, not-allowed, e-resize, n-resize, ne-resize, nw-resize, s-resize, se-resize, sw-resize, w-resize, ew-resize, ns-resize, nesw-resize, nwse-resize, col-resize, row-resize, all-scroll, zoom-in, zoom-out, grab, grabbing), \"caret-color\": (), \"pointer-events\": (none, auto), \"resize\": (DEFAULT: both, none: none, x: horizontal, y: vertical), \"scroll-behavior\": (auto, smooth), \"scroll-snap-type\": (none: none, snap-x: x var(--k-scroll-snap-strictness), snap-y: y var(--k-scroll-snap-strictness), snap-both: both var(--k-scroll-snap-strictness)), \"scroll-snap-align\": (start, end, center, none), \"scroll-snap-stop\": (normal, always), \"scroll-margin\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem), \"scroll-padding\": (0: 0, 1px: 1px, 0.5: 0.125rem, 1: 0.25rem, 1.5: 0.375rem, 2: 0.5rem, 2.5: 0.625rem, 3: 0.75rem, 3.5: 0.875rem, 4: 1rem, 4.5: 1.125rem, 5: 1.25rem, 5.5: 1.375rem, 6: 1.5rem, 6.5: 1.625rem, 7: 1.75rem, 7.5: 1.875rem, 8: 2rem, 9: 2.25rem, 10: 2.5rem, 11: 2.75rem, 12: 3rem, 13: 3.25rem, 14: 3.5rem, 15: 3.75rem, 16: 4rem, 17: 4.25rem, 18: 4.5rem, 19: 4.75rem, 20: 5rem, 21: 5.25rem, 22: 5.5rem, 23: 5.75rem, 24: 6rem), \"touch-action\": (none, auto, pan-x, pan-left, pan-right, pan-y, pan-up, pan-down, pinch-zoom, manipulation), \"user-select\": (none, auto, text, all, contain), \"will-change\": (auto: auto, scroll: scroll-position, contents: contents, transform: transform))"
|
|
4449
4449
|
},
|
|
4450
4450
|
"ki-embed-font": {
|
|
4451
4451
|
"type": "Bool",
|
|
@@ -7615,6 +7615,10 @@
|
|
|
7615
7615
|
"type": "Number",
|
|
7616
7616
|
"value": "1rem"
|
|
7617
7617
|
},
|
|
7618
|
+
"kendo-floating-label-max-width": {
|
|
7619
|
+
"type": "Number",
|
|
7620
|
+
"value": "90%"
|
|
7621
|
+
},
|
|
7618
7622
|
"kendo-floating-label-line-height": {
|
|
7619
7623
|
"type": "Number",
|
|
7620
7624
|
"value": "1.5"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "6.1.1-dev.
|
|
4
|
+
"version": "6.1.1-dev.25+bd878b468",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@progress/kendo-font-icons": "1.4.0",
|
|
52
|
-
"@progress/kendo-theme-core": "
|
|
53
|
-
"@progress/kendo-theme-default": "
|
|
54
|
-
"@progress/kendo-theme-utils": "
|
|
52
|
+
"@progress/kendo-theme-core": "6.1.1-dev.25+bd878b468",
|
|
53
|
+
"@progress/kendo-theme-default": "6.1.1-dev.25+bd878b468",
|
|
54
|
+
"@progress/kendo-theme-utils": "6.1.1-dev.25+bd878b468",
|
|
55
55
|
"bootstrap": "5.2.1"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "bd878b468ff65ff14c8a636431427ad2ba4b7b7e"
|
|
58
58
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// Floating label
|
|
2
2
|
$kendo-floating-label-scale: 1 !default;
|
|
3
3
|
$kendo-floating-label-font-size: $kendo-input-font-size !default;
|
|
4
|
+
$kendo-floating-label-max-width: 90% !default;
|
|
4
5
|
$kendo-floating-label-line-height: $kendo-input-line-height !default;
|
|
5
6
|
$kendo-floating-label-height: calc( #{$kendo-floating-label-line-height} * #{$kendo-floating-label-font-size} ) !default;
|
|
6
7
|
$kendo-floating-label-offset-x: calc( #{$kendo-input-padding-x} + #{$kendo-input-border-width} ) !default;
|