@progress/kendo-theme-classic 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/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/floating-label/_variables.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -2075,28 +2075,68 @@ kendo-sortable {
|
|
|
2075
2075
|
align-content: stretch !important;
|
|
2076
2076
|
}
|
|
2077
2077
|
|
|
2078
|
+
.k-align-content-center {
|
|
2079
|
+
align-content: center;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
.\!k-align-content-center {
|
|
2083
|
+
align-content: center !important;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2078
2086
|
.k-align-content-start {
|
|
2079
|
-
align-content:
|
|
2087
|
+
align-content: start;
|
|
2080
2088
|
}
|
|
2081
2089
|
|
|
2082
2090
|
.\!k-align-content-start {
|
|
2083
|
-
align-content:
|
|
2091
|
+
align-content: start !important;
|
|
2084
2092
|
}
|
|
2085
2093
|
|
|
2086
2094
|
.k-align-content-end {
|
|
2087
|
-
align-content:
|
|
2095
|
+
align-content: end;
|
|
2088
2096
|
}
|
|
2089
2097
|
|
|
2090
2098
|
.\!k-align-content-end {
|
|
2099
|
+
align-content: end !important;
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
.k-align-content-flex-start {
|
|
2103
|
+
align-content: flex-start;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2106
|
+
.\!k-align-content-flex-start {
|
|
2107
|
+
align-content: flex-start !important;
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
.k-align-content-flex-end {
|
|
2111
|
+
align-content: flex-end;
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
.\!k-align-content-flex-end {
|
|
2091
2115
|
align-content: flex-end !important;
|
|
2092
2116
|
}
|
|
2093
2117
|
|
|
2094
|
-
.k-align-content-
|
|
2095
|
-
align-content:
|
|
2118
|
+
.k-align-content-baseline {
|
|
2119
|
+
align-content: baseline;
|
|
2096
2120
|
}
|
|
2097
2121
|
|
|
2098
|
-
.\!k-align-content-
|
|
2099
|
-
align-content:
|
|
2122
|
+
.\!k-align-content-baseline {
|
|
2123
|
+
align-content: baseline !important;
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
.k-align-content-first-baseline {
|
|
2127
|
+
align-content: first baseline;
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
.\!k-align-content-first-baseline {
|
|
2131
|
+
align-content: first baseline !important;
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2134
|
+
.k-align-content-last-baseline {
|
|
2135
|
+
align-content: last baseline;
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
.\!k-align-content-last-baseline {
|
|
2139
|
+
align-content: last baseline !important;
|
|
2100
2140
|
}
|
|
2101
2141
|
|
|
2102
2142
|
.k-align-content-between {
|
|
@@ -2131,36 +2171,92 @@ kendo-sortable {
|
|
|
2131
2171
|
align-items: normal !important;
|
|
2132
2172
|
}
|
|
2133
2173
|
|
|
2174
|
+
.k-align-items-stretch {
|
|
2175
|
+
align-items: stretch;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
.\!k-align-items-stretch {
|
|
2179
|
+
align-items: stretch !important;
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
.k-align-items-center {
|
|
2183
|
+
align-items: center;
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
.\!k-align-items-center {
|
|
2187
|
+
align-items: center !important;
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2134
2190
|
.k-align-items-start {
|
|
2135
|
-
align-items:
|
|
2191
|
+
align-items: start;
|
|
2136
2192
|
}
|
|
2137
2193
|
|
|
2138
2194
|
.\!k-align-items-start {
|
|
2139
|
-
align-items:
|
|
2195
|
+
align-items: start !important;
|
|
2140
2196
|
}
|
|
2141
2197
|
|
|
2142
2198
|
.k-align-items-end {
|
|
2143
|
-
align-items:
|
|
2199
|
+
align-items: end;
|
|
2144
2200
|
}
|
|
2145
2201
|
|
|
2146
2202
|
.\!k-align-items-end {
|
|
2203
|
+
align-items: end !important;
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
.k-align-items-flex-start {
|
|
2207
|
+
align-items: flex-start;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2210
|
+
.\!k-align-items-flex-start {
|
|
2211
|
+
align-items: flex-start !important;
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
.k-align-items-flex-end {
|
|
2215
|
+
align-items: flex-end;
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
.\!k-align-items-flex-end {
|
|
2147
2219
|
align-items: flex-end !important;
|
|
2148
2220
|
}
|
|
2149
2221
|
|
|
2150
|
-
.k-align-items-
|
|
2151
|
-
align-items:
|
|
2222
|
+
.k-align-items-baseline {
|
|
2223
|
+
align-items: baseline;
|
|
2152
2224
|
}
|
|
2153
2225
|
|
|
2154
|
-
.\!k-align-items-
|
|
2155
|
-
align-items:
|
|
2226
|
+
.\!k-align-items-baseline {
|
|
2227
|
+
align-items: baseline !important;
|
|
2156
2228
|
}
|
|
2157
2229
|
|
|
2158
|
-
.k-align-items-
|
|
2159
|
-
align-items:
|
|
2230
|
+
.k-align-items-first-baseline {
|
|
2231
|
+
align-items: first baseline;
|
|
2160
2232
|
}
|
|
2161
2233
|
|
|
2162
|
-
.\!k-align-items-
|
|
2163
|
-
align-items:
|
|
2234
|
+
.\!k-align-items-first-baseline {
|
|
2235
|
+
align-items: first baseline !important;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
.k-align-items-last-baseline {
|
|
2239
|
+
align-items: last baseline;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
.\!k-align-items-last-baseline {
|
|
2243
|
+
align-items: last baseline !important;
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
.k-align-items-self-start {
|
|
2247
|
+
align-items: self-start;
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2250
|
+
.\!k-align-items-self-start {
|
|
2251
|
+
align-items: self-start !important;
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
.k-align-items-self-end {
|
|
2255
|
+
align-items: self-end;
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
.\!k-align-items-self-end {
|
|
2259
|
+
align-items: self-end !important;
|
|
2164
2260
|
}
|
|
2165
2261
|
|
|
2166
2262
|
.k-align-self-auto {
|
|
@@ -2187,28 +2283,84 @@ kendo-sortable {
|
|
|
2187
2283
|
align-self: stretch !important;
|
|
2188
2284
|
}
|
|
2189
2285
|
|
|
2286
|
+
.k-align-self-center {
|
|
2287
|
+
align-self: center;
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
.\!k-align-self-center {
|
|
2291
|
+
align-self: center !important;
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2190
2294
|
.k-align-self-start {
|
|
2191
|
-
align-self:
|
|
2295
|
+
align-self: start;
|
|
2192
2296
|
}
|
|
2193
2297
|
|
|
2194
2298
|
.\!k-align-self-start {
|
|
2195
|
-
align-self:
|
|
2299
|
+
align-self: start !important;
|
|
2196
2300
|
}
|
|
2197
2301
|
|
|
2198
2302
|
.k-align-self-end {
|
|
2199
|
-
align-self:
|
|
2303
|
+
align-self: end;
|
|
2200
2304
|
}
|
|
2201
2305
|
|
|
2202
2306
|
.\!k-align-self-end {
|
|
2307
|
+
align-self: end !important;
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
.k-align-self-flex-start {
|
|
2311
|
+
align-self: flex-start;
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
.\!k-align-self-flex-start {
|
|
2315
|
+
align-self: flex-start !important;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
.k-align-self-flex-end {
|
|
2319
|
+
align-self: flex-end;
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2322
|
+
.\!k-align-self-flex-end {
|
|
2203
2323
|
align-self: flex-end !important;
|
|
2204
2324
|
}
|
|
2205
2325
|
|
|
2206
|
-
.k-align-self-
|
|
2207
|
-
align-self:
|
|
2326
|
+
.k-align-self-baseline {
|
|
2327
|
+
align-self: baseline;
|
|
2208
2328
|
}
|
|
2209
2329
|
|
|
2210
|
-
.\!k-align-self-
|
|
2211
|
-
align-self:
|
|
2330
|
+
.\!k-align-self-baseline {
|
|
2331
|
+
align-self: baseline !important;
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
.k-align-self-first-baseline {
|
|
2335
|
+
align-self: first baseline;
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
.\!k-align-self-first-baseline {
|
|
2339
|
+
align-self: first baseline !important;
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
.k-align-self-last-baseline {
|
|
2343
|
+
align-self: last baseline;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
.\!k-align-self-last-baseline {
|
|
2347
|
+
align-self: last baseline !important;
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
.k-align-self-self-start {
|
|
2351
|
+
align-self: self-start;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
.\!k-align-self-self-start {
|
|
2355
|
+
align-self: self-start !important;
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2358
|
+
.k-align-self-self-end {
|
|
2359
|
+
align-self: self-end;
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
.\!k-align-self-self-end {
|
|
2363
|
+
align-self: self-end !important;
|
|
2212
2364
|
}
|
|
2213
2365
|
|
|
2214
2366
|
.k-basis-0 {
|
|
@@ -5603,28 +5755,92 @@ kendo-sortable {
|
|
|
5603
5755
|
justify-content: normal !important;
|
|
5604
5756
|
}
|
|
5605
5757
|
|
|
5758
|
+
.k-justify-content-stretch {
|
|
5759
|
+
justify-content: stretch;
|
|
5760
|
+
}
|
|
5761
|
+
|
|
5762
|
+
.\!k-justify-content-stretch {
|
|
5763
|
+
justify-content: stretch !important;
|
|
5764
|
+
}
|
|
5765
|
+
|
|
5766
|
+
.k-justify-content-center {
|
|
5767
|
+
justify-content: center;
|
|
5768
|
+
}
|
|
5769
|
+
|
|
5770
|
+
.\!k-justify-content-center {
|
|
5771
|
+
justify-content: center !important;
|
|
5772
|
+
}
|
|
5773
|
+
|
|
5606
5774
|
.k-justify-content-start {
|
|
5607
|
-
justify-content:
|
|
5775
|
+
justify-content: start;
|
|
5608
5776
|
}
|
|
5609
5777
|
|
|
5610
5778
|
.\!k-justify-content-start {
|
|
5611
|
-
justify-content:
|
|
5779
|
+
justify-content: start !important;
|
|
5612
5780
|
}
|
|
5613
5781
|
|
|
5614
5782
|
.k-justify-content-end {
|
|
5615
|
-
justify-content:
|
|
5783
|
+
justify-content: end;
|
|
5616
5784
|
}
|
|
5617
5785
|
|
|
5618
5786
|
.\!k-justify-content-end {
|
|
5787
|
+
justify-content: end !important;
|
|
5788
|
+
}
|
|
5789
|
+
|
|
5790
|
+
.k-justify-content-flex-start {
|
|
5791
|
+
justify-content: flex-start;
|
|
5792
|
+
}
|
|
5793
|
+
|
|
5794
|
+
.\!k-justify-content-flex-start {
|
|
5795
|
+
justify-content: flex-start !important;
|
|
5796
|
+
}
|
|
5797
|
+
|
|
5798
|
+
.k-justify-content-flex-end {
|
|
5799
|
+
justify-content: flex-end;
|
|
5800
|
+
}
|
|
5801
|
+
|
|
5802
|
+
.\!k-justify-content-flex-end {
|
|
5619
5803
|
justify-content: flex-end !important;
|
|
5620
5804
|
}
|
|
5621
5805
|
|
|
5622
|
-
.k-justify-content-
|
|
5623
|
-
justify-content:
|
|
5806
|
+
.k-justify-content-left {
|
|
5807
|
+
justify-content: left;
|
|
5624
5808
|
}
|
|
5625
5809
|
|
|
5626
|
-
.\!k-justify-content-
|
|
5627
|
-
justify-content:
|
|
5810
|
+
.\!k-justify-content-left {
|
|
5811
|
+
justify-content: left !important;
|
|
5812
|
+
}
|
|
5813
|
+
|
|
5814
|
+
.k-justify-content-right {
|
|
5815
|
+
justify-content: right;
|
|
5816
|
+
}
|
|
5817
|
+
|
|
5818
|
+
.\!k-justify-content-right {
|
|
5819
|
+
justify-content: right !important;
|
|
5820
|
+
}
|
|
5821
|
+
|
|
5822
|
+
.k-justify-content-baseline {
|
|
5823
|
+
justify-content: baseline;
|
|
5824
|
+
}
|
|
5825
|
+
|
|
5826
|
+
.\!k-justify-content-baseline {
|
|
5827
|
+
justify-content: baseline !important;
|
|
5828
|
+
}
|
|
5829
|
+
|
|
5830
|
+
.k-justify-content-first-baseline {
|
|
5831
|
+
justify-content: first baseline;
|
|
5832
|
+
}
|
|
5833
|
+
|
|
5834
|
+
.\!k-justify-content-first-baseline {
|
|
5835
|
+
justify-content: first baseline !important;
|
|
5836
|
+
}
|
|
5837
|
+
|
|
5838
|
+
.k-justify-content-last-baseline {
|
|
5839
|
+
justify-content: last baseline;
|
|
5840
|
+
}
|
|
5841
|
+
|
|
5842
|
+
.\!k-justify-content-last-baseline {
|
|
5843
|
+
justify-content: last baseline !important;
|
|
5628
5844
|
}
|
|
5629
5845
|
|
|
5630
5846
|
.k-justify-content-between {
|
|
@@ -5651,14 +5867,6 @@ kendo-sortable {
|
|
|
5651
5867
|
justify-content: space-evenly !important;
|
|
5652
5868
|
}
|
|
5653
5869
|
|
|
5654
|
-
.k-justify-content-stretch {
|
|
5655
|
-
justify-content: stretch;
|
|
5656
|
-
}
|
|
5657
|
-
|
|
5658
|
-
.\!k-justify-content-stretch {
|
|
5659
|
-
justify-content: stretch !important;
|
|
5660
|
-
}
|
|
5661
|
-
|
|
5662
5870
|
.k-justify-content-stretch > * {
|
|
5663
5871
|
flex: 1 0 0%;
|
|
5664
5872
|
}
|
|
@@ -5675,36 +5883,108 @@ kendo-sortable {
|
|
|
5675
5883
|
justify-items: normal !important;
|
|
5676
5884
|
}
|
|
5677
5885
|
|
|
5886
|
+
.k-justify-items-stretch {
|
|
5887
|
+
justify-items: stretch;
|
|
5888
|
+
}
|
|
5889
|
+
|
|
5890
|
+
.\!k-justify-items-stretch {
|
|
5891
|
+
justify-items: stretch !important;
|
|
5892
|
+
}
|
|
5893
|
+
|
|
5894
|
+
.k-justify-items-center {
|
|
5895
|
+
justify-items: center;
|
|
5896
|
+
}
|
|
5897
|
+
|
|
5898
|
+
.\!k-justify-items-center {
|
|
5899
|
+
justify-items: center !important;
|
|
5900
|
+
}
|
|
5901
|
+
|
|
5678
5902
|
.k-justify-items-start {
|
|
5679
|
-
justify-items:
|
|
5903
|
+
justify-items: start;
|
|
5680
5904
|
}
|
|
5681
5905
|
|
|
5682
5906
|
.\!k-justify-items-start {
|
|
5683
|
-
justify-items:
|
|
5907
|
+
justify-items: start !important;
|
|
5684
5908
|
}
|
|
5685
5909
|
|
|
5686
5910
|
.k-justify-items-end {
|
|
5687
|
-
justify-items:
|
|
5911
|
+
justify-items: end;
|
|
5688
5912
|
}
|
|
5689
5913
|
|
|
5690
5914
|
.\!k-justify-items-end {
|
|
5915
|
+
justify-items: end !important;
|
|
5916
|
+
}
|
|
5917
|
+
|
|
5918
|
+
.k-justify-items-flex-start {
|
|
5919
|
+
justify-items: flex-start;
|
|
5920
|
+
}
|
|
5921
|
+
|
|
5922
|
+
.\!k-justify-items-flex-start {
|
|
5923
|
+
justify-items: flex-start !important;
|
|
5924
|
+
}
|
|
5925
|
+
|
|
5926
|
+
.k-justify-items-flex-end {
|
|
5927
|
+
justify-items: flex-end;
|
|
5928
|
+
}
|
|
5929
|
+
|
|
5930
|
+
.\!k-justify-items-flex-end {
|
|
5691
5931
|
justify-items: flex-end !important;
|
|
5692
5932
|
}
|
|
5693
5933
|
|
|
5694
|
-
.k-justify-items-
|
|
5695
|
-
justify-items:
|
|
5934
|
+
.k-justify-items-self-start {
|
|
5935
|
+
justify-items: self-start;
|
|
5696
5936
|
}
|
|
5697
5937
|
|
|
5698
|
-
.\!k-justify-items-
|
|
5699
|
-
justify-items:
|
|
5938
|
+
.\!k-justify-items-self-start {
|
|
5939
|
+
justify-items: self-start !important;
|
|
5700
5940
|
}
|
|
5701
5941
|
|
|
5702
|
-
.k-justify-items-
|
|
5703
|
-
justify-items:
|
|
5942
|
+
.k-justify-items-self-end {
|
|
5943
|
+
justify-items: self-end;
|
|
5704
5944
|
}
|
|
5705
5945
|
|
|
5706
|
-
.\!k-justify-items-
|
|
5707
|
-
justify-items:
|
|
5946
|
+
.\!k-justify-items-self-end {
|
|
5947
|
+
justify-items: self-end !important;
|
|
5948
|
+
}
|
|
5949
|
+
|
|
5950
|
+
.k-justify-items-left {
|
|
5951
|
+
justify-items: left;
|
|
5952
|
+
}
|
|
5953
|
+
|
|
5954
|
+
.\!k-justify-items-left {
|
|
5955
|
+
justify-items: left !important;
|
|
5956
|
+
}
|
|
5957
|
+
|
|
5958
|
+
.k-justify-items-right {
|
|
5959
|
+
justify-items: right;
|
|
5960
|
+
}
|
|
5961
|
+
|
|
5962
|
+
.\!k-justify-items-right {
|
|
5963
|
+
justify-items: right !important;
|
|
5964
|
+
}
|
|
5965
|
+
|
|
5966
|
+
.k-justify-items-baseline {
|
|
5967
|
+
justify-items: baseline;
|
|
5968
|
+
}
|
|
5969
|
+
|
|
5970
|
+
.\!k-justify-items-baseline {
|
|
5971
|
+
justify-items: baseline !important;
|
|
5972
|
+
}
|
|
5973
|
+
|
|
5974
|
+
.k-justify-items-first-baseline {
|
|
5975
|
+
justify-items: first baseline;
|
|
5976
|
+
}
|
|
5977
|
+
|
|
5978
|
+
.\!k-justify-items-first-baseline {
|
|
5979
|
+
justify-items: first baseline !important;
|
|
5980
|
+
}
|
|
5981
|
+
|
|
5982
|
+
.k-justify-items-last-baseline {
|
|
5983
|
+
justify-items: last baseline;
|
|
5984
|
+
}
|
|
5985
|
+
|
|
5986
|
+
.\!k-justify-items-last-baseline {
|
|
5987
|
+
justify-items: last baseline !important;
|
|
5708
5988
|
}
|
|
5709
5989
|
|
|
5710
5990
|
.k-justify-self-auto {
|
|
@@ -5723,36 +6003,92 @@ kendo-sortable {
|
|
|
5723
6003
|
justify-self: normal !important;
|
|
5724
6004
|
}
|
|
5725
6005
|
|
|
6006
|
+
.k-justify-self-stretch {
|
|
6007
|
+
justify-self: stretch;
|
|
6008
|
+
}
|
|
6009
|
+
|
|
6010
|
+
.\!k-justify-self-stretch {
|
|
6011
|
+
justify-self: stretch !important;
|
|
6012
|
+
}
|
|
6013
|
+
|
|
6014
|
+
.k-justify-self-center {
|
|
6015
|
+
justify-self: center;
|
|
6016
|
+
}
|
|
6017
|
+
|
|
6018
|
+
.\!k-justify-self-center {
|
|
6019
|
+
justify-self: center !important;
|
|
6020
|
+
}
|
|
6021
|
+
|
|
5726
6022
|
.k-justify-self-start {
|
|
5727
|
-
justify-self:
|
|
6023
|
+
justify-self: start;
|
|
5728
6024
|
}
|
|
5729
6025
|
|
|
5730
6026
|
.\!k-justify-self-start {
|
|
5731
|
-
justify-self:
|
|
6027
|
+
justify-self: start !important;
|
|
5732
6028
|
}
|
|
5733
6029
|
|
|
5734
6030
|
.k-justify-self-end {
|
|
5735
|
-
justify-self:
|
|
6031
|
+
justify-self: end;
|
|
5736
6032
|
}
|
|
5737
6033
|
|
|
5738
6034
|
.\!k-justify-self-end {
|
|
6035
|
+
justify-self: end !important;
|
|
6036
|
+
}
|
|
6037
|
+
|
|
6038
|
+
.k-justify-self-flex-start {
|
|
6039
|
+
justify-self: flex-start;
|
|
6040
|
+
}
|
|
6041
|
+
|
|
6042
|
+
.\!k-justify-self-flex-start {
|
|
6043
|
+
justify-self: flex-start !important;
|
|
6044
|
+
}
|
|
6045
|
+
|
|
6046
|
+
.k-justify-self-flex-end {
|
|
6047
|
+
justify-self: flex-end;
|
|
6048
|
+
}
|
|
6049
|
+
|
|
6050
|
+
.\!k-justify-self-flex-end {
|
|
5739
6051
|
justify-self: flex-end !important;
|
|
5740
6052
|
}
|
|
5741
6053
|
|
|
5742
|
-
.k-justify-self-
|
|
5743
|
-
justify-self:
|
|
6054
|
+
.k-justify-self-self-start {
|
|
6055
|
+
justify-self: self-start;
|
|
5744
6056
|
}
|
|
5745
6057
|
|
|
5746
|
-
.\!k-justify-self-
|
|
5747
|
-
justify-self:
|
|
6058
|
+
.\!k-justify-self-self-start {
|
|
6059
|
+
justify-self: self-start !important;
|
|
5748
6060
|
}
|
|
5749
6061
|
|
|
5750
|
-
.k-justify-self-
|
|
5751
|
-
justify-self:
|
|
6062
|
+
.k-justify-self-self-end {
|
|
6063
|
+
justify-self: self-end;
|
|
5752
6064
|
}
|
|
5753
6065
|
|
|
5754
|
-
.\!k-justify-self-
|
|
5755
|
-
justify-self:
|
|
6066
|
+
.\!k-justify-self-self-end {
|
|
6067
|
+
justify-self: self-end !important;
|
|
6068
|
+
}
|
|
6069
|
+
|
|
6070
|
+
.k-justify-self-baseline {
|
|
6071
|
+
justify-self: baseline;
|
|
6072
|
+
}
|
|
6073
|
+
|
|
6074
|
+
.\!k-justify-self-baseline {
|
|
6075
|
+
justify-self: baseline !important;
|
|
6076
|
+
}
|
|
6077
|
+
|
|
6078
|
+
.k-justify-self-first-baseline {
|
|
6079
|
+
justify-self: first baseline;
|
|
6080
|
+
}
|
|
6081
|
+
|
|
6082
|
+
.\!k-justify-self-first-baseline {
|
|
6083
|
+
justify-self: first baseline !important;
|
|
6084
|
+
}
|
|
6085
|
+
|
|
6086
|
+
.k-justify-self-last-baseline {
|
|
6087
|
+
justify-self: last baseline;
|
|
6088
|
+
}
|
|
6089
|
+
|
|
6090
|
+
.\!k-justify-self-last-baseline {
|
|
6091
|
+
justify-self: last baseline !important;
|
|
5756
6092
|
}
|
|
5757
6093
|
|
|
5758
6094
|
.k-order-1 {
|
|
@@ -5883,28 +6219,60 @@ kendo-sortable {
|
|
|
5883
6219
|
place-content: normal !important;
|
|
5884
6220
|
}
|
|
5885
6221
|
|
|
6222
|
+
.k-place-content-stretch {
|
|
6223
|
+
place-content: stretch;
|
|
6224
|
+
}
|
|
6225
|
+
|
|
6226
|
+
.\!k-place-content-stretch {
|
|
6227
|
+
place-content: stretch !important;
|
|
6228
|
+
}
|
|
6229
|
+
|
|
6230
|
+
.k-place-content-center {
|
|
6231
|
+
place-content: center;
|
|
6232
|
+
}
|
|
6233
|
+
|
|
6234
|
+
.\!k-place-content-center {
|
|
6235
|
+
place-content: center !important;
|
|
6236
|
+
}
|
|
6237
|
+
|
|
5886
6238
|
.k-place-content-start {
|
|
5887
|
-
place-content:
|
|
6239
|
+
place-content: start;
|
|
5888
6240
|
}
|
|
5889
6241
|
|
|
5890
6242
|
.\!k-place-content-start {
|
|
5891
|
-
place-content:
|
|
6243
|
+
place-content: start !important;
|
|
5892
6244
|
}
|
|
5893
6245
|
|
|
5894
6246
|
.k-place-content-end {
|
|
5895
|
-
place-content:
|
|
6247
|
+
place-content: end;
|
|
5896
6248
|
}
|
|
5897
6249
|
|
|
5898
6250
|
.\!k-place-content-end {
|
|
6251
|
+
place-content: end !important;
|
|
6252
|
+
}
|
|
6253
|
+
|
|
6254
|
+
.k-place-content-flex-start {
|
|
6255
|
+
place-content: flex-start;
|
|
6256
|
+
}
|
|
6257
|
+
|
|
6258
|
+
.\!k-place-content-flex-start {
|
|
6259
|
+
place-content: flex-start !important;
|
|
6260
|
+
}
|
|
6261
|
+
|
|
6262
|
+
.k-place-content-flex-end {
|
|
6263
|
+
place-content: flex-end;
|
|
6264
|
+
}
|
|
6265
|
+
|
|
6266
|
+
.\!k-place-content-flex-end {
|
|
5899
6267
|
place-content: flex-end !important;
|
|
5900
6268
|
}
|
|
5901
6269
|
|
|
5902
|
-
.k-place-content-
|
|
5903
|
-
place-content:
|
|
6270
|
+
.k-place-content-baseline {
|
|
6271
|
+
place-content: baseline;
|
|
5904
6272
|
}
|
|
5905
6273
|
|
|
5906
|
-
.\!k-place-content-
|
|
5907
|
-
place-content:
|
|
6274
|
+
.\!k-place-content-baseline {
|
|
6275
|
+
place-content: baseline !important;
|
|
5908
6276
|
}
|
|
5909
6277
|
|
|
5910
6278
|
.k-place-content-between {
|
|
@@ -5931,14 +6299,6 @@ kendo-sortable {
|
|
|
5931
6299
|
place-content: space-evenly !important;
|
|
5932
6300
|
}
|
|
5933
6301
|
|
|
5934
|
-
.k-place-content-stretch {
|
|
5935
|
-
place-content: stretch;
|
|
5936
|
-
}
|
|
5937
|
-
|
|
5938
|
-
.\!k-place-content-stretch {
|
|
5939
|
-
place-content: stretch !important;
|
|
5940
|
-
}
|
|
5941
|
-
|
|
5942
6302
|
.k-place-items-normal {
|
|
5943
6303
|
place-items: normal;
|
|
5944
6304
|
}
|
|
@@ -5947,36 +6307,76 @@ kendo-sortable {
|
|
|
5947
6307
|
place-items: normal !important;
|
|
5948
6308
|
}
|
|
5949
6309
|
|
|
6310
|
+
.k-place-items-stretch {
|
|
6311
|
+
place-items: stretch;
|
|
6312
|
+
}
|
|
6313
|
+
|
|
6314
|
+
.\!k-place-items-stretch {
|
|
6315
|
+
place-items: stretch !important;
|
|
6316
|
+
}
|
|
6317
|
+
|
|
6318
|
+
.k-place-items-center {
|
|
6319
|
+
place-items: center;
|
|
6320
|
+
}
|
|
6321
|
+
|
|
6322
|
+
.\!k-place-items-center {
|
|
6323
|
+
place-items: center !important;
|
|
6324
|
+
}
|
|
6325
|
+
|
|
5950
6326
|
.k-place-items-start {
|
|
5951
|
-
place-items:
|
|
6327
|
+
place-items: start;
|
|
5952
6328
|
}
|
|
5953
6329
|
|
|
5954
6330
|
.\!k-place-items-start {
|
|
5955
|
-
place-items:
|
|
6331
|
+
place-items: start !important;
|
|
5956
6332
|
}
|
|
5957
6333
|
|
|
5958
6334
|
.k-place-items-end {
|
|
5959
|
-
place-items:
|
|
6335
|
+
place-items: end;
|
|
5960
6336
|
}
|
|
5961
6337
|
|
|
5962
6338
|
.\!k-place-items-end {
|
|
6339
|
+
place-items: end !important;
|
|
6340
|
+
}
|
|
6341
|
+
|
|
6342
|
+
.k-place-items-flex-start {
|
|
6343
|
+
place-items: flex-start;
|
|
6344
|
+
}
|
|
6345
|
+
|
|
6346
|
+
.\!k-place-items-flex-start {
|
|
6347
|
+
place-items: flex-start !important;
|
|
6348
|
+
}
|
|
6349
|
+
|
|
6350
|
+
.k-place-items-flex-end {
|
|
6351
|
+
place-items: flex-end;
|
|
6352
|
+
}
|
|
6353
|
+
|
|
6354
|
+
.\!k-place-items-flex-end {
|
|
5963
6355
|
place-items: flex-end !important;
|
|
5964
6356
|
}
|
|
5965
6357
|
|
|
5966
|
-
.k-place-items-
|
|
5967
|
-
place-items:
|
|
6358
|
+
.k-place-items-self-start {
|
|
6359
|
+
place-items: flex-start;
|
|
5968
6360
|
}
|
|
5969
6361
|
|
|
5970
|
-
.\!k-place-items-
|
|
5971
|
-
place-items:
|
|
6362
|
+
.\!k-place-items-self-start {
|
|
6363
|
+
place-items: flex-start !important;
|
|
5972
6364
|
}
|
|
5973
6365
|
|
|
5974
|
-
.k-place-items-
|
|
5975
|
-
place-items:
|
|
6366
|
+
.k-place-items-self-end {
|
|
6367
|
+
place-items: flex-end;
|
|
5976
6368
|
}
|
|
5977
6369
|
|
|
5978
|
-
.\!k-place-items-
|
|
5979
|
-
place-items:
|
|
6370
|
+
.\!k-place-items-self-end {
|
|
6371
|
+
place-items: flex-end !important;
|
|
6372
|
+
}
|
|
6373
|
+
|
|
6374
|
+
.k-place-items-baseline {
|
|
6375
|
+
place-items: baseline;
|
|
6376
|
+
}
|
|
6377
|
+
|
|
6378
|
+
.\!k-place-items-baseline {
|
|
6379
|
+
place-items: baseline !important;
|
|
5980
6380
|
}
|
|
5981
6381
|
|
|
5982
6382
|
.k-place-self-auto {
|
|
@@ -5995,6 +6395,22 @@ kendo-sortable {
|
|
|
5995
6395
|
place-self: normal !important;
|
|
5996
6396
|
}
|
|
5997
6397
|
|
|
6398
|
+
.k-place-self-stretch {
|
|
6399
|
+
place-self: stretch;
|
|
6400
|
+
}
|
|
6401
|
+
|
|
6402
|
+
.\!k-place-self-stretch {
|
|
6403
|
+
place-self: stretch !important;
|
|
6404
|
+
}
|
|
6405
|
+
|
|
6406
|
+
.k-place-self-center {
|
|
6407
|
+
place-self: center;
|
|
6408
|
+
}
|
|
6409
|
+
|
|
6410
|
+
.\!k-place-self-center {
|
|
6411
|
+
place-self: center !important;
|
|
6412
|
+
}
|
|
6413
|
+
|
|
5998
6414
|
.k-place-self-start {
|
|
5999
6415
|
place-self: flex-start;
|
|
6000
6416
|
}
|
|
@@ -6011,20 +6427,44 @@ kendo-sortable {
|
|
|
6011
6427
|
place-self: flex-end !important;
|
|
6012
6428
|
}
|
|
6013
6429
|
|
|
6014
|
-
.k-place-self-
|
|
6015
|
-
place-self:
|
|
6430
|
+
.k-place-self-flex-start {
|
|
6431
|
+
place-self: flex-start;
|
|
6016
6432
|
}
|
|
6017
6433
|
|
|
6018
|
-
.\!k-place-self-
|
|
6019
|
-
place-self:
|
|
6434
|
+
.\!k-place-self-flex-start {
|
|
6435
|
+
place-self: flex-start !important;
|
|
6020
6436
|
}
|
|
6021
6437
|
|
|
6022
|
-
.k-place-self-
|
|
6023
|
-
place-self:
|
|
6438
|
+
.k-place-self-flex-end {
|
|
6439
|
+
place-self: flex-end;
|
|
6024
6440
|
}
|
|
6025
6441
|
|
|
6026
|
-
.\!k-place-self-
|
|
6027
|
-
place-self:
|
|
6442
|
+
.\!k-place-self-flex-end {
|
|
6443
|
+
place-self: flex-end !important;
|
|
6444
|
+
}
|
|
6445
|
+
|
|
6446
|
+
.k-place-self-self-start {
|
|
6447
|
+
place-self: flex-start;
|
|
6448
|
+
}
|
|
6449
|
+
|
|
6450
|
+
.\!k-place-self-self-start {
|
|
6451
|
+
place-self: flex-start !important;
|
|
6452
|
+
}
|
|
6453
|
+
|
|
6454
|
+
.k-place-self-self-end {
|
|
6455
|
+
place-self: flex-end;
|
|
6456
|
+
}
|
|
6457
|
+
|
|
6458
|
+
.\!k-place-self-self-end {
|
|
6459
|
+
place-self: flex-end !important;
|
|
6460
|
+
}
|
|
6461
|
+
|
|
6462
|
+
.k-place-self-baseline {
|
|
6463
|
+
place-self: baseline;
|
|
6464
|
+
}
|
|
6465
|
+
|
|
6466
|
+
.\!k-place-self-baseline {
|
|
6467
|
+
place-self: baseline !important;
|
|
6028
6468
|
}
|
|
6029
6469
|
|
|
6030
6470
|
.k-m-0 {
|
|
@@ -41319,9 +41759,9 @@ kendo-grid .k-grid-row-sticky .k-table-td {
|
|
|
41319
41759
|
}
|
|
41320
41760
|
|
|
41321
41761
|
kendo-grid .k-grid-row-sticky td.k-grid-content-sticky,
|
|
41322
|
-
kendo-grid .k-grid-row-sticky.k-alt td.k-grid-content-sticky,
|
|
41762
|
+
kendo-grid .k-grid-row-sticky.k-table-alt-row td.k-grid-content-sticky,
|
|
41323
41763
|
kendo-grid .k-grid-row-sticky .k-table-td.k-grid-content-sticky,
|
|
41324
|
-
kendo-grid .k-grid-row-sticky.k-alt .k-table-td.k-grid-content-sticky {
|
|
41764
|
+
kendo-grid .k-grid-row-sticky.k-table-alt-row .k-table-td.k-grid-content-sticky {
|
|
41325
41765
|
z-index: 3;
|
|
41326
41766
|
}
|
|
41327
41767
|
|
|
@@ -43926,7 +44366,7 @@ kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
|
43926
44366
|
}
|
|
43927
44367
|
|
|
43928
44368
|
.k-pivot-layout .k-grid-footer,
|
|
43929
|
-
.k-pivot-layout .k-grid .k-alt {
|
|
44369
|
+
.k-pivot-layout .k-grid .k-table-alt-row {
|
|
43930
44370
|
font-weight: bold;
|
|
43931
44371
|
}
|
|
43932
44372
|
|
|
@@ -44195,7 +44635,7 @@ kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
|
44195
44635
|
color: #646464;
|
|
44196
44636
|
}
|
|
44197
44637
|
|
|
44198
|
-
.k-alt {
|
|
44638
|
+
.k-pivot .k-alt {
|
|
44199
44639
|
background-color: #f0f0f0;
|
|
44200
44640
|
}
|
|
44201
44641
|
|
package/dist/all.scss
CHANGED
|
@@ -6057,77 +6057,132 @@ $kendo-utils: (
|
|
|
6057
6057
|
"align-content": (
|
|
6058
6058
|
normal: normal,
|
|
6059
6059
|
stretch: stretch,
|
|
6060
|
-
start: flex-start,
|
|
6061
|
-
end: flex-end,
|
|
6062
6060
|
center: center,
|
|
6061
|
+
start: start,
|
|
6062
|
+
end: end,
|
|
6063
|
+
flex-start: flex-start,
|
|
6064
|
+
flex-end: flex-end,
|
|
6065
|
+
baseline: baseline,
|
|
6066
|
+
first-baseline: first baseline,
|
|
6067
|
+
last-baseline: last baseline,
|
|
6063
6068
|
between: space-between,
|
|
6064
6069
|
around: space-around,
|
|
6065
6070
|
evenly: space-evenly
|
|
6066
6071
|
),
|
|
6067
6072
|
"align-items": (
|
|
6068
6073
|
normal: normal,
|
|
6069
|
-
|
|
6070
|
-
end: flex-end,
|
|
6074
|
+
stretch: stretch,
|
|
6071
6075
|
center: center,
|
|
6072
|
-
|
|
6076
|
+
start: start,
|
|
6077
|
+
end: end,
|
|
6078
|
+
flex-start: flex-start,
|
|
6079
|
+
flex-end: flex-end,
|
|
6080
|
+
baseline: baseline,
|
|
6081
|
+
first-baseline: first baseline,
|
|
6082
|
+
last-baseline: last baseline,
|
|
6083
|
+
self-start: self-start,
|
|
6084
|
+
self-end: self-end
|
|
6073
6085
|
),
|
|
6074
6086
|
"align-self": (
|
|
6075
6087
|
auto: auto,
|
|
6076
6088
|
normal: normal,
|
|
6077
6089
|
stretch: stretch,
|
|
6078
|
-
|
|
6079
|
-
|
|
6080
|
-
|
|
6090
|
+
center: center,
|
|
6091
|
+
start: start,
|
|
6092
|
+
end: end,
|
|
6093
|
+
flex-start: flex-start,
|
|
6094
|
+
flex-end: flex-end,
|
|
6095
|
+
baseline: baseline,
|
|
6096
|
+
first-baseline: first baseline,
|
|
6097
|
+
last-baseline: last baseline,
|
|
6098
|
+
self-start: self-start,
|
|
6099
|
+
self-end: self-end
|
|
6081
6100
|
),
|
|
6082
6101
|
"justify-content": (
|
|
6083
6102
|
normal: normal,
|
|
6084
|
-
|
|
6085
|
-
end: flex-end,
|
|
6103
|
+
stretch: stretch,
|
|
6086
6104
|
center: center,
|
|
6105
|
+
start: start,
|
|
6106
|
+
end: end,
|
|
6107
|
+
flex-start: flex-start,
|
|
6108
|
+
flex-end: flex-end,
|
|
6109
|
+
left: left,
|
|
6110
|
+
right: right,
|
|
6111
|
+
baseline: baseline,
|
|
6112
|
+
first-baseline: first baseline,
|
|
6113
|
+
last-baseline: last baseline,
|
|
6087
6114
|
between: space-between,
|
|
6088
6115
|
around: space-around,
|
|
6089
|
-
evenly: space-evenly
|
|
6090
|
-
stretch: stretch
|
|
6116
|
+
evenly: space-evenly
|
|
6091
6117
|
),
|
|
6092
6118
|
"justify-items": (
|
|
6093
6119
|
normal: normal,
|
|
6094
|
-
|
|
6095
|
-
end: flex-end,
|
|
6120
|
+
stretch: stretch,
|
|
6096
6121
|
center: center,
|
|
6097
|
-
|
|
6122
|
+
start: start,
|
|
6123
|
+
end: end,
|
|
6124
|
+
flex-start: flex-start,
|
|
6125
|
+
flex-end: flex-end,
|
|
6126
|
+
self-start: self-start,
|
|
6127
|
+
self-end: self-end,
|
|
6128
|
+
left: left,
|
|
6129
|
+
right: right,
|
|
6130
|
+
baseline: baseline,
|
|
6131
|
+
first-baseline: first baseline,
|
|
6132
|
+
last-baseline: last baseline
|
|
6098
6133
|
),
|
|
6099
6134
|
"justify-self": (
|
|
6100
6135
|
auto: auto,
|
|
6101
6136
|
normal: normal,
|
|
6102
|
-
|
|
6103
|
-
end: flex-end,
|
|
6137
|
+
stretch: stretch,
|
|
6104
6138
|
center: center,
|
|
6105
|
-
|
|
6139
|
+
start: start,
|
|
6140
|
+
end: end,
|
|
6141
|
+
flex-start: flex-start,
|
|
6142
|
+
flex-end: flex-end,
|
|
6143
|
+
self-start: self-start,
|
|
6144
|
+
self-end: self-end,
|
|
6145
|
+
baseline: baseline,
|
|
6146
|
+
first-baseline: first baseline,
|
|
6147
|
+
last-baseline: last baseline
|
|
6106
6148
|
),
|
|
6107
6149
|
"place-content": (
|
|
6108
6150
|
normal: normal,
|
|
6109
|
-
|
|
6110
|
-
end: flex-end,
|
|
6151
|
+
stretch: stretch,
|
|
6111
6152
|
center: center,
|
|
6153
|
+
start: start,
|
|
6154
|
+
end: end,
|
|
6155
|
+
flex-start: flex-start,
|
|
6156
|
+
flex-end: flex-end,
|
|
6157
|
+
baseline: baseline,
|
|
6112
6158
|
between: space-between,
|
|
6113
6159
|
around: space-around,
|
|
6114
|
-
evenly: space-evenly
|
|
6115
|
-
stretch: stretch
|
|
6160
|
+
evenly: space-evenly
|
|
6116
6161
|
),
|
|
6117
6162
|
"place-items": (
|
|
6118
6163
|
normal: normal,
|
|
6119
|
-
|
|
6120
|
-
end: flex-end,
|
|
6164
|
+
stretch: stretch,
|
|
6121
6165
|
center: center,
|
|
6122
|
-
|
|
6166
|
+
start: start,
|
|
6167
|
+
end: end,
|
|
6168
|
+
flex-start: flex-start,
|
|
6169
|
+
flex-end: flex-end,
|
|
6170
|
+
self-start: flex-start,
|
|
6171
|
+
self-end: flex-end,
|
|
6172
|
+
baseline: baseline
|
|
6123
6173
|
),
|
|
6124
6174
|
"place-self": (
|
|
6125
6175
|
auto: auto,
|
|
6126
6176
|
normal: normal,
|
|
6177
|
+
stretch: stretch,
|
|
6178
|
+
center: center,
|
|
6127
6179
|
start: flex-start,
|
|
6128
6180
|
end: flex-end,
|
|
6129
|
-
|
|
6130
|
-
|
|
6181
|
+
flex-start: flex-start,
|
|
6182
|
+
flex-end: flex-end,
|
|
6183
|
+
self-start: flex-start,
|
|
6184
|
+
self-end: flex-end,
|
|
6185
|
+
baseline: baseline
|
|
6131
6186
|
),
|
|
6132
6187
|
|
|
6133
6188
|
// Spacing
|
|
@@ -18651,6 +18706,7 @@ $kendo-form-sizes: (
|
|
|
18651
18706
|
// Floating label
|
|
18652
18707
|
$kendo-floating-label-scale: 1 !default;
|
|
18653
18708
|
$kendo-floating-label-font-size: $kendo-input-font-size !default;
|
|
18709
|
+
$kendo-floating-label-max-width: 90% !default;
|
|
18654
18710
|
$kendo-floating-label-line-height: $kendo-input-line-height !default;
|
|
18655
18711
|
$kendo-floating-label-height: calc( #{$kendo-floating-label-line-height} * #{$kendo-floating-label-font-size} ) !default;
|
|
18656
18712
|
$kendo-floating-label-offset-x: calc( #{$kendo-input-padding-x} + #{$kendo-input-border-width} ) !default;
|
|
@@ -18691,7 +18747,7 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
18691
18747
|
}
|
|
18692
18748
|
|
|
18693
18749
|
> .k-label {
|
|
18694
|
-
max-width:
|
|
18750
|
+
max-width: $kendo-floating-label-max-width;
|
|
18695
18751
|
font-size: $kendo-floating-label-font-size;
|
|
18696
18752
|
line-height: $kendo-floating-label-line-height;
|
|
18697
18753
|
white-space: nowrap;
|
|
@@ -33974,9 +34030,9 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
|
|
|
33974
34030
|
}
|
|
33975
34031
|
|
|
33976
34032
|
.k-grid-row-sticky td.k-grid-content-sticky,
|
|
33977
|
-
.k-grid-row-sticky.k-alt td.k-grid-content-sticky,
|
|
34033
|
+
.k-grid-row-sticky.k-table-alt-row td.k-grid-content-sticky,
|
|
33978
34034
|
.k-grid-row-sticky .k-table-td.k-grid-content-sticky,
|
|
33979
|
-
.k-grid-row-sticky.k-alt .k-table-td.k-grid-content-sticky {
|
|
34035
|
+
.k-grid-row-sticky.k-table-alt-row .k-table-td.k-grid-content-sticky {
|
|
33980
34036
|
z-index: 3;
|
|
33981
34037
|
}
|
|
33982
34038
|
|
|
@@ -37136,7 +37192,7 @@ $kendo-pivotgrid-remove-text: null !default;
|
|
|
37136
37192
|
table-layout: auto;
|
|
37137
37193
|
|
|
37138
37194
|
.k-grid-footer,
|
|
37139
|
-
.k-grid .k-alt {
|
|
37195
|
+
.k-grid .k-table-alt-row {
|
|
37140
37196
|
font-weight: bold;
|
|
37141
37197
|
}
|
|
37142
37198
|
}
|
|
@@ -37485,7 +37541,7 @@ $kendo-pivotgrid-remove-text: null !default;
|
|
|
37485
37541
|
}
|
|
37486
37542
|
}
|
|
37487
37543
|
|
|
37488
|
-
.k-alt {
|
|
37544
|
+
.k-pivot .k-alt {
|
|
37489
37545
|
background-color: $kendo-pivotgrid-alt-bg;
|
|
37490
37546
|
}
|
|
37491
37547
|
|
package/dist/meta/variables.json
CHANGED
|
@@ -893,7 +893,7 @@
|
|
|
893
893
|
},
|
|
894
894
|
"kendo-utils": {
|
|
895
895
|
"type": "Map",
|
|
896
|
-
"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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, \"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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, xs: 4px, sm: 8px, md: 12px, lg: 16px, xl: 24px, thin: 2px, 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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, xs: 4px, sm: 8px, md: 12px, lg: 16px, xl: 24px, thin: 2px, hair: 1px), \"padding\": (0: 0, 1px: 1px, 0.5: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, xs: 4px, sm: 8px, md: 12px, lg: 16px, xl: 24px, thin: 2px, hair: 1px), \"space-between\": (), \"width\": (0: 0, 1px: 1px, 0.5: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, \"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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, \"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: 10px, sm: 12px, md: 14px, lg: 16px, xl: 20px), \"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\": #f35800, \"secondary\": #e9e9e9, \"tertiary\": #03a9f4, \"info\": #2498bc, \"success\": #3ea44e, \"warning\": #ff9800, \"error\": #d92800, \"dark\": #404040, \"light\": #ebebeb, \"inverse\": #404040, \"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\": #f35800, \"secondary\": #e9e9e9, \"tertiary\": #03a9f4, \"info\": #2498bc, \"success\": #3ea44e, \"warning\": #ff9800, \"error\": #d92800, \"dark\": #404040, \"light\": #ebebeb, \"inverse\": #404040, \"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\": #f35800, \"secondary\": #e9e9e9, \"tertiary\": #03a9f4, \"info\": #2498bc, \"success\": #3ea44e, \"warning\": #ff9800, \"error\": #d92800, \"dark\": #404040, \"light\": #ebebeb, \"inverse\": #404040, \"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-radius\": (DEFAULT: 4px, 0: 0, sm: 2px, md: 4px, lg: 8px, 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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, \"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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px), \"scroll-padding\": (0: 0, 1px: 1px, 0.5: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px), \"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))"
|
|
896
|
+
"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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, \"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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, xs: 4px, sm: 8px, md: 12px, lg: 16px, xl: 24px, thin: 2px, 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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, xs: 4px, sm: 8px, md: 12px, lg: 16px, xl: 24px, thin: 2px, hair: 1px), \"padding\": (0: 0, 1px: 1px, 0.5: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, xs: 4px, sm: 8px, md: 12px, lg: 16px, xl: 24px, thin: 2px, hair: 1px), \"space-between\": (), \"width\": (0: 0, 1px: 1px, 0.5: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, \"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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, \"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: 10px, sm: 12px, md: 14px, lg: 16px, xl: 20px), \"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\": #f35800, \"secondary\": #e9e9e9, \"tertiary\": #03a9f4, \"info\": #2498bc, \"success\": #3ea44e, \"warning\": #ff9800, \"error\": #d92800, \"dark\": #404040, \"light\": #ebebeb, \"inverse\": #404040, \"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\": #f35800, \"secondary\": #e9e9e9, \"tertiary\": #03a9f4, \"info\": #2498bc, \"success\": #3ea44e, \"warning\": #ff9800, \"error\": #d92800, \"dark\": #404040, \"light\": #ebebeb, \"inverse\": #404040, \"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\": #f35800, \"secondary\": #e9e9e9, \"tertiary\": #03a9f4, \"info\": #2498bc, \"success\": #3ea44e, \"warning\": #ff9800, \"error\": #d92800, \"dark\": #404040, \"light\": #ebebeb, \"inverse\": #404040, \"inherit\": inherit, \"current\": currentColor, \"transparent\": transparent, \"black\": black, \"white\": white), \"border-radius\": (DEFAULT: 4px, 0: 0, sm: 2px, md: 4px, lg: 8px, 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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px, \"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: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px), \"scroll-padding\": (0: 0, 1px: 1px, 0.5: 2px, 1: 4px, 1.5: 6px, 2: 8px, 2.5: 10px, 3: 12px, 3.5: 14px, 4: 16px, 4.5: 18px, 5: 20px, 5.5: 22px, 6: 24px, 6.5: 26px, 7: 28px, 7.5: 30px, 8: 32px, 9: 36px, 10: 40px, 11: 44px, 12: 48px, 13: 52px, 14: 56px, 15: 60px, 16: 64px, 17: 68px, 18: 72px, 19: 76px, 20: 80px, 21: 84px, 22: 88px, 23: 92px, 24: 96px), \"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))"
|
|
897
897
|
},
|
|
898
898
|
"ki-embed-font": {
|
|
899
899
|
"type": "Bool",
|
|
@@ -4071,6 +4071,10 @@
|
|
|
4071
4071
|
"type": "Number",
|
|
4072
4072
|
"value": "14px"
|
|
4073
4073
|
},
|
|
4074
|
+
"kendo-floating-label-max-width": {
|
|
4075
|
+
"type": "Number",
|
|
4076
|
+
"value": "90%"
|
|
4077
|
+
},
|
|
4074
4078
|
"kendo-floating-label-line-height": {
|
|
4075
4079
|
"type": "Number",
|
|
4076
4080
|
"value": "1.4285714286"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-classic",
|
|
3
3
|
"description": "Sass port of less based themes for Kendo UI theme",
|
|
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,9 +49,9 @@
|
|
|
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
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "bd878b468ff65ff14c8a636431427ad2ba4b7b7e"
|
|
57
57
|
}
|
|
@@ -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;
|