@progress/kendo-theme-classic 5.1.2-dev.6 → 5.2.1-dev.0
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 +309 -58
- package/dist/all.scss +272 -136
- package/lib/swatches/classic-green-dark.json +2 -1
- package/lib/swatches/classic-green.json +2 -1
- package/lib/swatches/classic-main-dark.json +2 -1
- package/lib/swatches/classic-main.json +2 -1
- package/lib/swatches/classic-opal-dark.json +2 -1
- package/lib/swatches/classic-opal.json +2 -1
- package/lib/swatches/classic-silver-dark.json +2 -1
- package/lib/swatches/classic-silver.json +2 -1
- package/package.json +4 -4
- package/scss/_variables.scss +5 -4
- package/scss/badge/_variables.scss +3 -3
- package/scss/bottom-navigation/_variables.scss +1 -1
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_variables.scss +11 -0
- package/scss/calendar/_variables.scss +1 -1
- package/scss/card/_variables.scss +1 -1
- package/scss/color-preview/_variables.scss +1 -1
- package/scss/coloreditor/_variables.scss +1 -1
- package/scss/colorgradient/_variables.scss +2 -2
- package/scss/fab/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +5 -0
- package/scss/listgroup/_variables.scss +1 -1
- package/scss/loader/_variables.scss +1 -1
- package/scss/notification/_variables.scss +2 -1
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +1 -1
- package/scss/scheduler/_variables.scss +2 -2
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +3 -3
- package/scss/tabstrip/_variables.scss +1 -1
- package/scss/taskboard/_variables.scss +1 -1
- package/scss/tilelayout/_variables.scss +1 -1
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/treeview/_variables.scss +1 -1
- package/scss/utils/_border.scss +4 -4
package/dist/all.css
CHANGED
|
@@ -1563,11 +1563,11 @@ kendo-sortable {
|
|
|
1563
1563
|
}
|
|
1564
1564
|
|
|
1565
1565
|
.k-rounded-lg {
|
|
1566
|
-
border-radius:
|
|
1566
|
+
border-radius: 8px;
|
|
1567
1567
|
}
|
|
1568
1568
|
|
|
1569
1569
|
.\!k-rounded-lg {
|
|
1570
|
-
border-radius:
|
|
1570
|
+
border-radius: 8px !important;
|
|
1571
1571
|
}
|
|
1572
1572
|
|
|
1573
1573
|
.k-rounded-full {
|
|
@@ -1619,13 +1619,13 @@ kendo-sortable {
|
|
|
1619
1619
|
}
|
|
1620
1620
|
|
|
1621
1621
|
.k-rounded-top-lg {
|
|
1622
|
-
border-top-left-radius:
|
|
1623
|
-
border-top-right-radius:
|
|
1622
|
+
border-top-left-radius: 8px;
|
|
1623
|
+
border-top-right-radius: 8px;
|
|
1624
1624
|
}
|
|
1625
1625
|
|
|
1626
1626
|
.\!k-rounded-top-lg {
|
|
1627
|
-
border-top-left-radius:
|
|
1628
|
-
border-top-right-radius:
|
|
1627
|
+
border-top-left-radius: 8px !important;
|
|
1628
|
+
border-top-right-radius: 8px !important;
|
|
1629
1629
|
}
|
|
1630
1630
|
|
|
1631
1631
|
.k-rounded-top-full {
|
|
@@ -1679,13 +1679,13 @@ kendo-sortable {
|
|
|
1679
1679
|
}
|
|
1680
1680
|
|
|
1681
1681
|
.k-rounded-right-lg {
|
|
1682
|
-
border-top-right-radius:
|
|
1683
|
-
border-bottom-right-radius:
|
|
1682
|
+
border-top-right-radius: 8px;
|
|
1683
|
+
border-bottom-right-radius: 8px;
|
|
1684
1684
|
}
|
|
1685
1685
|
|
|
1686
1686
|
.\!k-rounded-right-lg {
|
|
1687
|
-
border-top-right-radius:
|
|
1688
|
-
border-bottom-right-radius:
|
|
1687
|
+
border-top-right-radius: 8px !important;
|
|
1688
|
+
border-bottom-right-radius: 8px !important;
|
|
1689
1689
|
}
|
|
1690
1690
|
|
|
1691
1691
|
.k-rounded-right-full {
|
|
@@ -1739,13 +1739,13 @@ kendo-sortable {
|
|
|
1739
1739
|
}
|
|
1740
1740
|
|
|
1741
1741
|
.k-rounded-bottom-lg {
|
|
1742
|
-
border-bottom-left-radius:
|
|
1743
|
-
border-bottom-right-radius:
|
|
1742
|
+
border-bottom-left-radius: 8px;
|
|
1743
|
+
border-bottom-right-radius: 8px;
|
|
1744
1744
|
}
|
|
1745
1745
|
|
|
1746
1746
|
.\!k-rounded-bottom-lg {
|
|
1747
|
-
border-bottom-left-radius:
|
|
1748
|
-
border-bottom-right-radius:
|
|
1747
|
+
border-bottom-left-radius: 8px !important;
|
|
1748
|
+
border-bottom-right-radius: 8px !important;
|
|
1749
1749
|
}
|
|
1750
1750
|
|
|
1751
1751
|
.k-rounded-bottom-full {
|
|
@@ -1799,13 +1799,13 @@ kendo-sortable {
|
|
|
1799
1799
|
}
|
|
1800
1800
|
|
|
1801
1801
|
.k-rounded-left-lg {
|
|
1802
|
-
border-bottom-left-radius:
|
|
1803
|
-
border-top-left-radius:
|
|
1802
|
+
border-bottom-left-radius: 8px;
|
|
1803
|
+
border-top-left-radius: 8px;
|
|
1804
1804
|
}
|
|
1805
1805
|
|
|
1806
1806
|
.\!k-rounded-left-lg {
|
|
1807
|
-
border-bottom-left-radius:
|
|
1808
|
-
border-top-left-radius:
|
|
1807
|
+
border-bottom-left-radius: 8px !important;
|
|
1808
|
+
border-top-left-radius: 8px !important;
|
|
1809
1809
|
}
|
|
1810
1810
|
|
|
1811
1811
|
.k-rounded-left-full {
|
|
@@ -1851,11 +1851,11 @@ kendo-sortable {
|
|
|
1851
1851
|
}
|
|
1852
1852
|
|
|
1853
1853
|
.k-rounded-top-left-lg {
|
|
1854
|
-
border-top-left-radius:
|
|
1854
|
+
border-top-left-radius: 8px;
|
|
1855
1855
|
}
|
|
1856
1856
|
|
|
1857
1857
|
.\!k-rounded-top-left-lg {
|
|
1858
|
-
border-top-left-radius:
|
|
1858
|
+
border-top-left-radius: 8px !important;
|
|
1859
1859
|
}
|
|
1860
1860
|
|
|
1861
1861
|
.k-rounded-top-left-full {
|
|
@@ -1899,11 +1899,11 @@ kendo-sortable {
|
|
|
1899
1899
|
}
|
|
1900
1900
|
|
|
1901
1901
|
.k-rounded-top-right-lg {
|
|
1902
|
-
border-top-right-radius:
|
|
1902
|
+
border-top-right-radius: 8px;
|
|
1903
1903
|
}
|
|
1904
1904
|
|
|
1905
1905
|
.\!k-rounded-top-right-lg {
|
|
1906
|
-
border-top-right-radius:
|
|
1906
|
+
border-top-right-radius: 8px !important;
|
|
1907
1907
|
}
|
|
1908
1908
|
|
|
1909
1909
|
.k-rounded-top-right-full {
|
|
@@ -1947,11 +1947,11 @@ kendo-sortable {
|
|
|
1947
1947
|
}
|
|
1948
1948
|
|
|
1949
1949
|
.k-rounded-bottom-left-lg {
|
|
1950
|
-
border-bottom-left-radius:
|
|
1950
|
+
border-bottom-left-radius: 8px;
|
|
1951
1951
|
}
|
|
1952
1952
|
|
|
1953
1953
|
.\!k-rounded-bottom-left-lg {
|
|
1954
|
-
border-bottom-left-radius:
|
|
1954
|
+
border-bottom-left-radius: 8px !important;
|
|
1955
1955
|
}
|
|
1956
1956
|
|
|
1957
1957
|
.k-rounded-bottom-left-full {
|
|
@@ -1995,11 +1995,11 @@ kendo-sortable {
|
|
|
1995
1995
|
}
|
|
1996
1996
|
|
|
1997
1997
|
.k-rounded-bottom-right-lg {
|
|
1998
|
-
border-bottom-right-radius:
|
|
1998
|
+
border-bottom-right-radius: 8px;
|
|
1999
1999
|
}
|
|
2000
2000
|
|
|
2001
2001
|
.\!k-rounded-bottom-right-lg {
|
|
2002
|
-
border-bottom-right-radius:
|
|
2002
|
+
border-bottom-right-radius: 8px !important;
|
|
2003
2003
|
}
|
|
2004
2004
|
|
|
2005
2005
|
.k-rounded-bottom-right-full {
|
|
@@ -2087,165 +2087,321 @@ kendo-sortable {
|
|
|
2087
2087
|
}
|
|
2088
2088
|
|
|
2089
2089
|
.\!k-flex-col-reverse {
|
|
2090
|
-
flex-direction: column-reverse;
|
|
2090
|
+
flex-direction: column-reverse !important;
|
|
2091
2091
|
}
|
|
2092
2092
|
|
|
2093
2093
|
.k-flex-wrap {
|
|
2094
2094
|
flex-wrap: wrap;
|
|
2095
2095
|
}
|
|
2096
2096
|
|
|
2097
|
+
.\!k-flex-wrap {
|
|
2098
|
+
flex-wrap: wrap !important;
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2097
2101
|
.k-flex-nowrap {
|
|
2098
2102
|
flex-wrap: nowrap;
|
|
2099
2103
|
}
|
|
2100
2104
|
|
|
2105
|
+
.\!k-flex-nowrap {
|
|
2106
|
+
flex-wrap: nowrap !important;
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2101
2109
|
.k-flex-wrap-reverse {
|
|
2102
2110
|
flex-wrap: wrap-reverse;
|
|
2103
2111
|
}
|
|
2104
2112
|
|
|
2113
|
+
.\!k-flex-wrap-reverse {
|
|
2114
|
+
flex-wrap: wrap-reverse !important;
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2105
2117
|
.k-flex-initial {
|
|
2106
2118
|
flex: 0 1 auto;
|
|
2107
2119
|
}
|
|
2108
2120
|
|
|
2121
|
+
.\!k-flex-initial {
|
|
2122
|
+
flex: 0 1 auto !important;
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2109
2125
|
.k-flex-1 {
|
|
2110
2126
|
flex: 1 1 0%;
|
|
2111
2127
|
}
|
|
2112
2128
|
|
|
2129
|
+
.\!k-flex-1 {
|
|
2130
|
+
flex: 1 1 0% !important;
|
|
2131
|
+
}
|
|
2132
|
+
|
|
2113
2133
|
.k-flex-auto {
|
|
2114
2134
|
flex: 1 1 auto;
|
|
2115
2135
|
}
|
|
2116
2136
|
|
|
2137
|
+
.\!k-flex-auto {
|
|
2138
|
+
flex: 1 1 auto !important;
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2117
2141
|
.k-flex-none {
|
|
2118
2142
|
flex: none;
|
|
2119
2143
|
}
|
|
2120
2144
|
|
|
2145
|
+
.\!k-flex-none {
|
|
2146
|
+
flex: none !important;
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2121
2149
|
.k-flex-grow {
|
|
2122
2150
|
flex-grow: 1;
|
|
2123
2151
|
}
|
|
2124
2152
|
|
|
2153
|
+
.\!k-flex-grow {
|
|
2154
|
+
flex-grow: 1 !important;
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2125
2157
|
.k-flex-grow-0 {
|
|
2126
2158
|
flex-grow: 0;
|
|
2127
2159
|
}
|
|
2128
2160
|
|
|
2161
|
+
.\!k-flex-grow-0 {
|
|
2162
|
+
flex-grow: 0 !important;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2129
2165
|
.k-flex-shrink {
|
|
2130
2166
|
flex-shrink: 1;
|
|
2131
2167
|
}
|
|
2132
2168
|
|
|
2169
|
+
.\!k-flex-shrink {
|
|
2170
|
+
flex-shrink: 1 !important;
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2133
2173
|
.k-flex-shrink-0 {
|
|
2134
2174
|
flex-shrink: 0;
|
|
2135
2175
|
}
|
|
2136
2176
|
|
|
2177
|
+
.\!k-flex-shrink-0 {
|
|
2178
|
+
flex-shrink: 0 !important;
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2137
2181
|
.k-flex-basis-auto {
|
|
2138
2182
|
flex-basis: auto;
|
|
2139
2183
|
}
|
|
2140
2184
|
|
|
2185
|
+
.\!k-flex-basis-auto {
|
|
2186
|
+
flex-basis: auto !important;
|
|
2187
|
+
}
|
|
2188
|
+
|
|
2141
2189
|
.k-flex-basis-0 {
|
|
2142
2190
|
flex-basis: 0%;
|
|
2143
2191
|
}
|
|
2144
2192
|
|
|
2193
|
+
.\!k-flex-basis-0 {
|
|
2194
|
+
flex-basis: 0% !important;
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2145
2197
|
.k-align-items-start {
|
|
2146
2198
|
align-items: flex-start;
|
|
2147
2199
|
}
|
|
2148
2200
|
|
|
2201
|
+
.\!k-align-items-start {
|
|
2202
|
+
align-items: flex-start !important;
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2149
2205
|
.k-align-items-end {
|
|
2150
2206
|
align-items: flex-end;
|
|
2151
2207
|
}
|
|
2152
2208
|
|
|
2209
|
+
.\!k-align-items-end {
|
|
2210
|
+
align-items: flex-end !important;
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2153
2213
|
.k-align-items-center {
|
|
2154
2214
|
align-items: center;
|
|
2155
2215
|
}
|
|
2156
2216
|
|
|
2217
|
+
.\!k-align-items-center {
|
|
2218
|
+
align-items: center !important;
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2157
2221
|
.k-align-items-stretch {
|
|
2158
2222
|
align-items: stretch;
|
|
2159
2223
|
}
|
|
2160
2224
|
|
|
2225
|
+
.\!k-align-items-stretch {
|
|
2226
|
+
align-items: stretch !important;
|
|
2227
|
+
}
|
|
2228
|
+
|
|
2161
2229
|
.k-align-items-baseline {
|
|
2162
2230
|
align-items: baseline;
|
|
2163
2231
|
}
|
|
2164
2232
|
|
|
2233
|
+
.\!k-align-items-baseline {
|
|
2234
|
+
align-items: baseline !important;
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2165
2237
|
.k-align-content-start {
|
|
2166
2238
|
align-content: flex-start;
|
|
2167
2239
|
}
|
|
2168
2240
|
|
|
2241
|
+
.\!k-align-content-start {
|
|
2242
|
+
align-content: flex-start !important;
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2169
2245
|
.k-align-content-end {
|
|
2170
2246
|
align-content: flex-end;
|
|
2171
2247
|
}
|
|
2172
2248
|
|
|
2249
|
+
.\!k-align-content-end {
|
|
2250
|
+
align-content: flex-end !important;
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2173
2253
|
.k-align-content-center {
|
|
2174
2254
|
align-content: center;
|
|
2175
2255
|
}
|
|
2176
2256
|
|
|
2257
|
+
.\!k-align-content-center {
|
|
2258
|
+
align-content: center !important;
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2177
2261
|
.k-align-content-stretch {
|
|
2178
2262
|
align-content: stretch;
|
|
2179
2263
|
}
|
|
2180
2264
|
|
|
2265
|
+
.\!k-align-content-stretch {
|
|
2266
|
+
align-content: stretch !important;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2181
2269
|
.k-align-content-baseline {
|
|
2182
2270
|
align-content: baseline;
|
|
2183
2271
|
}
|
|
2184
2272
|
|
|
2273
|
+
.\!k-align-content-baseline {
|
|
2274
|
+
align-content: baseline !important;
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2185
2277
|
.k-align-self-start {
|
|
2186
2278
|
align-self: flex-start;
|
|
2187
2279
|
}
|
|
2188
2280
|
|
|
2281
|
+
.\!k-align-self-start {
|
|
2282
|
+
align-self: flex-start !important;
|
|
2283
|
+
}
|
|
2284
|
+
|
|
2189
2285
|
.k-align-self-end {
|
|
2190
2286
|
align-self: flex-end;
|
|
2191
2287
|
}
|
|
2192
2288
|
|
|
2289
|
+
.\!k-align-self-end {
|
|
2290
|
+
align-self: flex-end !important;
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2193
2293
|
.k-align-self-center {
|
|
2194
2294
|
align-self: center;
|
|
2195
2295
|
}
|
|
2196
2296
|
|
|
2297
|
+
.\!k-align-self-center {
|
|
2298
|
+
align-self: center !important;
|
|
2299
|
+
}
|
|
2300
|
+
|
|
2197
2301
|
.k-align-self-stretch {
|
|
2198
2302
|
align-self: stretch;
|
|
2199
2303
|
}
|
|
2200
2304
|
|
|
2305
|
+
.\!k-align-self-stretch {
|
|
2306
|
+
align-self: stretch !important;
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2201
2309
|
.k-align-self-baseline {
|
|
2202
2310
|
align-self: baseline;
|
|
2203
2311
|
}
|
|
2204
2312
|
|
|
2313
|
+
.\!k-align-self-baseline {
|
|
2314
|
+
align-self: baseline !important;
|
|
2315
|
+
}
|
|
2316
|
+
|
|
2205
2317
|
.k-justify-content-start {
|
|
2206
2318
|
justify-content: flex-start;
|
|
2207
2319
|
}
|
|
2208
2320
|
|
|
2321
|
+
.\!k-justify-content-start {
|
|
2322
|
+
justify-content: flex-start !important;
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2209
2325
|
.k-justify-content-end {
|
|
2210
2326
|
justify-content: flex-end;
|
|
2211
2327
|
}
|
|
2212
2328
|
|
|
2329
|
+
.\!k-justify-content-end {
|
|
2330
|
+
justify-content: flex-end !important;
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2213
2333
|
.k-justify-content-center {
|
|
2214
2334
|
justify-content: center;
|
|
2215
2335
|
}
|
|
2216
2336
|
|
|
2337
|
+
.\!k-justify-content-center {
|
|
2338
|
+
justify-content: center !important;
|
|
2339
|
+
}
|
|
2340
|
+
|
|
2217
2341
|
.k-justify-content-between {
|
|
2218
2342
|
justify-content: space-between;
|
|
2219
2343
|
}
|
|
2220
2344
|
|
|
2345
|
+
.\!k-justify-content-between {
|
|
2346
|
+
justify-content: space-between !important;
|
|
2347
|
+
}
|
|
2348
|
+
|
|
2221
2349
|
.k-justify-content-around {
|
|
2222
2350
|
justify-content: space-around;
|
|
2223
2351
|
}
|
|
2224
2352
|
|
|
2353
|
+
.\!k-justify-content-around {
|
|
2354
|
+
justify-content: space-around !important;
|
|
2355
|
+
}
|
|
2356
|
+
|
|
2225
2357
|
.k-justify-content-evenly {
|
|
2226
2358
|
justify-content: space-evenly;
|
|
2227
2359
|
}
|
|
2228
2360
|
|
|
2361
|
+
.\!k-justify-content-evenly {
|
|
2362
|
+
justify-content: space-evenly !important;
|
|
2363
|
+
}
|
|
2364
|
+
|
|
2229
2365
|
.k-justify-content-stretch > * {
|
|
2230
2366
|
flex: 1 0 0%;
|
|
2231
2367
|
}
|
|
2232
2368
|
|
|
2369
|
+
.\!k-justify-content-stretch > * {
|
|
2370
|
+
flex: 1 0 0% !important;
|
|
2371
|
+
}
|
|
2372
|
+
|
|
2233
2373
|
.k-justify-items-start {
|
|
2234
2374
|
justify-items: flex-start;
|
|
2235
2375
|
}
|
|
2236
2376
|
|
|
2377
|
+
.\!k-justify-items-start {
|
|
2378
|
+
justify-items: flex-start !important;
|
|
2379
|
+
}
|
|
2380
|
+
|
|
2237
2381
|
.k-justify-items-end {
|
|
2238
2382
|
justify-items: flex-end;
|
|
2239
2383
|
}
|
|
2240
2384
|
|
|
2385
|
+
.\!k-justify-items-end {
|
|
2386
|
+
justify-items: flex-end !important;
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2241
2389
|
.k-justify-items-center {
|
|
2242
2390
|
justify-items: center;
|
|
2243
2391
|
}
|
|
2244
2392
|
|
|
2393
|
+
.\!k-justify-items-center {
|
|
2394
|
+
justify-items: center !important;
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2245
2397
|
.k-justify-items-stretch {
|
|
2246
2398
|
justify-items: stretch;
|
|
2247
2399
|
}
|
|
2248
2400
|
|
|
2401
|
+
.\!k-justify-items-stretch {
|
|
2402
|
+
justify-items: stretch !important;
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2249
2405
|
.k-float-left {
|
|
2250
2406
|
float: left !important;
|
|
2251
2407
|
}
|
|
@@ -10978,6 +11134,13 @@ kendo-sortable {
|
|
|
10978
11134
|
right: 0;
|
|
10979
11135
|
}
|
|
10980
11136
|
|
|
11137
|
+
.k-list-item-text::before,
|
|
11138
|
+
.k-list-optionlabel::before {
|
|
11139
|
+
content: "\200b";
|
|
11140
|
+
width: 0px;
|
|
11141
|
+
overflow: hidden;
|
|
11142
|
+
}
|
|
11143
|
+
|
|
10981
11144
|
.k-list-group-item {
|
|
10982
11145
|
border-width: 0;
|
|
10983
11146
|
border-width: 1px 0 0;
|
|
@@ -12039,6 +12202,18 @@ kendo-badge-container {
|
|
|
12039
12202
|
flex: none;
|
|
12040
12203
|
}
|
|
12041
12204
|
|
|
12205
|
+
.k-split-button .k-split-button-arrow.k-button-sm {
|
|
12206
|
+
padding: 2px 2px;
|
|
12207
|
+
}
|
|
12208
|
+
|
|
12209
|
+
.k-split-button .k-split-button-arrow.k-button-md {
|
|
12210
|
+
padding: 4px 4px;
|
|
12211
|
+
}
|
|
12212
|
+
|
|
12213
|
+
.k-split-button .k-split-button-arrow.k-button-lg {
|
|
12214
|
+
padding: 6px 6px;
|
|
12215
|
+
}
|
|
12216
|
+
|
|
12042
12217
|
.k-split-button .k-split-button-arrow .k-button-icon {
|
|
12043
12218
|
min-width: 0;
|
|
12044
12219
|
}
|
|
@@ -13206,7 +13381,7 @@ select.k-picker {
|
|
|
13206
13381
|
position: relative;
|
|
13207
13382
|
z-index: 1;
|
|
13208
13383
|
overflow: hidden;
|
|
13209
|
-
text-overflow:
|
|
13384
|
+
text-overflow: ellipsis;
|
|
13210
13385
|
-webkit-appearance: none;
|
|
13211
13386
|
}
|
|
13212
13387
|
|
|
@@ -13255,7 +13430,7 @@ textarea.k-input-inner {
|
|
|
13255
13430
|
.k-input-value-text {
|
|
13256
13431
|
flex: 1;
|
|
13257
13432
|
overflow: hidden;
|
|
13258
|
-
text-overflow:
|
|
13433
|
+
text-overflow: ellipsis;
|
|
13259
13434
|
}
|
|
13260
13435
|
|
|
13261
13436
|
.k-input-value-text::before {
|
|
@@ -14387,6 +14562,8 @@ textarea.k-input-inner {
|
|
|
14387
14562
|
}
|
|
14388
14563
|
|
|
14389
14564
|
.k-chip-content {
|
|
14565
|
+
padding: .5em 0;
|
|
14566
|
+
margin: -.5em 0;
|
|
14390
14567
|
min-width: 0;
|
|
14391
14568
|
display: flex;
|
|
14392
14569
|
flex-flow: row nowrap;
|
|
@@ -16129,12 +16306,6 @@ kendo-label > .k-label {
|
|
|
16129
16306
|
width: 100%;
|
|
16130
16307
|
}
|
|
16131
16308
|
|
|
16132
|
-
.k-form .k-daterangepicker {
|
|
16133
|
-
width: 100%;
|
|
16134
|
-
flex-flow: column nowrap;
|
|
16135
|
-
gap: 0;
|
|
16136
|
-
}
|
|
16137
|
-
|
|
16138
16309
|
.k-form-buttons {
|
|
16139
16310
|
margin-top: 2em;
|
|
16140
16311
|
padding: 0;
|
|
@@ -18052,6 +18223,9 @@ kendo-label > .k-label {
|
|
|
18052
18223
|
line-height: 2em;
|
|
18053
18224
|
cursor: pointer;
|
|
18054
18225
|
padding: 0 1em;
|
|
18226
|
+
overflow: hidden;
|
|
18227
|
+
white-space: nowrap;
|
|
18228
|
+
text-overflow: clip;
|
|
18055
18229
|
}
|
|
18056
18230
|
|
|
18057
18231
|
.k-calendar-navigation .k-calendar-navigation-marker {
|
|
@@ -18791,6 +18965,10 @@ kendo-label > .k-label {
|
|
|
18791
18965
|
width: 46px;
|
|
18792
18966
|
}
|
|
18793
18967
|
|
|
18968
|
+
.k-colorgradient-inputs .k-input-inner {
|
|
18969
|
+
text-overflow: clip;
|
|
18970
|
+
}
|
|
18971
|
+
|
|
18794
18972
|
.k-colorgradient-color-contrast > div {
|
|
18795
18973
|
display: flex;
|
|
18796
18974
|
flex-flow: row nowrap;
|
|
@@ -23311,6 +23489,11 @@ kendo-card-footer {
|
|
|
23311
23489
|
width: 5em;
|
|
23312
23490
|
}
|
|
23313
23491
|
|
|
23492
|
+
.k-pager-sizes .k-input-inner,
|
|
23493
|
+
.k-pager-sizes .k-input-value-text {
|
|
23494
|
+
text-overflow: clip;
|
|
23495
|
+
}
|
|
23496
|
+
|
|
23314
23497
|
.k-rtl .k-pager-sizes .k-dropdown-list, .k-rtl .k-pager-sizes .k-dropdown,
|
|
23315
23498
|
.k-rtl .k-pager-sizes .k-dropdownlist,
|
|
23316
23499
|
.k-rtl .k-pager-sizes > select,
|
|
@@ -23507,6 +23690,7 @@ kendo-card-footer {
|
|
|
23507
23690
|
display: flex;
|
|
23508
23691
|
align-items: center;
|
|
23509
23692
|
justify-content: center;
|
|
23693
|
+
flex: none;
|
|
23510
23694
|
position: relative;
|
|
23511
23695
|
z-index: 1;
|
|
23512
23696
|
overflow: visible;
|
|
@@ -23537,7 +23721,7 @@ kendo-card-footer {
|
|
|
23537
23721
|
}
|
|
23538
23722
|
|
|
23539
23723
|
.k-stepper .k-step-label {
|
|
23540
|
-
max-width: 10em;
|
|
23724
|
+
max-width: clamp(100%, 10em, 100%);
|
|
23541
23725
|
display: inline-flex;
|
|
23542
23726
|
flex-wrap: wrap;
|
|
23543
23727
|
align-items: center;
|
|
@@ -27482,11 +27666,6 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
27482
27666
|
min-width: 1.4285714286em;
|
|
27483
27667
|
}
|
|
27484
27668
|
|
|
27485
|
-
.k-spreadsheet-toolbar .k-input,
|
|
27486
|
-
.k-spreadsheet-toolbar .k-picker {
|
|
27487
|
-
width: 5em;
|
|
27488
|
-
}
|
|
27489
|
-
|
|
27490
27669
|
.k-spreadsheet-toolbar .k-color-picker, .k-spreadsheet-toolbar .k-colorpicker {
|
|
27491
27670
|
width: min-content;
|
|
27492
27671
|
}
|
|
@@ -30799,6 +30978,11 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
30799
30978
|
overflow-y: auto;
|
|
30800
30979
|
}
|
|
30801
30980
|
|
|
30981
|
+
.k-imageeditor-action-pane .k-input-inner,
|
|
30982
|
+
.k-imageeditor-action-pane .k-input-value-text {
|
|
30983
|
+
text-overflow: clip;
|
|
30984
|
+
}
|
|
30985
|
+
|
|
30802
30986
|
.k-imageeditor-crop-overlay {
|
|
30803
30987
|
width: 100%;
|
|
30804
30988
|
height: 100%;
|
|
@@ -31617,6 +31801,37 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31617
31801
|
visibility: visible;
|
|
31618
31802
|
}
|
|
31619
31803
|
|
|
31804
|
+
.k-gantt-tooltip-validation {
|
|
31805
|
+
max-width: 200px;
|
|
31806
|
+
display: block;
|
|
31807
|
+
}
|
|
31808
|
+
|
|
31809
|
+
.k-gantt-tooltip-validation::before {
|
|
31810
|
+
content: "";
|
|
31811
|
+
width: 4px;
|
|
31812
|
+
height: 100%;
|
|
31813
|
+
position: absolute;
|
|
31814
|
+
top: 0;
|
|
31815
|
+
left: 0;
|
|
31816
|
+
}
|
|
31817
|
+
|
|
31818
|
+
.k-gantt-tooltip-validation-row {
|
|
31819
|
+
display: flex;
|
|
31820
|
+
flex-direction: row;
|
|
31821
|
+
justify-content: space-between;
|
|
31822
|
+
}
|
|
31823
|
+
|
|
31824
|
+
.k-gantt-tooltip-validation-label {
|
|
31825
|
+
display: inline-flex;
|
|
31826
|
+
white-space: nowrap;
|
|
31827
|
+
overflow: hidden;
|
|
31828
|
+
text-overflow: ellipsis;
|
|
31829
|
+
}
|
|
31830
|
+
|
|
31831
|
+
.k-gantt-tooltip-validation-value {
|
|
31832
|
+
font-weight: 700;
|
|
31833
|
+
}
|
|
31834
|
+
|
|
31620
31835
|
.k-pdf-export-shadow .k-gantt {
|
|
31621
31836
|
float: left;
|
|
31622
31837
|
}
|
|
@@ -31642,80 +31857,104 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31642
31857
|
}
|
|
31643
31858
|
|
|
31644
31859
|
.k-rtl .k-gantt-rows,
|
|
31645
|
-
.k-rtl .k-gantt-columns
|
|
31860
|
+
.k-rtl .k-gantt-columns,
|
|
31861
|
+
[dir="rtl"] .k-gantt-rows,
|
|
31862
|
+
[dir="rtl"] .k-gantt-columns {
|
|
31646
31863
|
left: auto;
|
|
31647
31864
|
right: 0;
|
|
31648
31865
|
}
|
|
31649
31866
|
|
|
31650
|
-
.k-rtl .k-task-wrap:not(.k-milestone-wrap)
|
|
31867
|
+
.k-rtl .k-task-wrap:not(.k-milestone-wrap),
|
|
31868
|
+
[dir="rtl"] .k-task-wrap:not(.k-milestone-wrap) {
|
|
31651
31869
|
margin: 0 -26px;
|
|
31652
31870
|
}
|
|
31653
31871
|
|
|
31654
|
-
.k-rtl .k-gantt-timeline .k-gantt-tasks tbody
|
|
31872
|
+
.k-rtl .k-gantt-timeline .k-gantt-tasks tbody,
|
|
31873
|
+
[dir="rtl"] .k-gantt-timeline .k-gantt-tasks tbody {
|
|
31655
31874
|
text-align: left;
|
|
31656
31875
|
}
|
|
31657
31876
|
|
|
31658
|
-
.k-rtl .k-gantt-timeline .k-header
|
|
31877
|
+
.k-rtl .k-gantt-timeline .k-header,
|
|
31878
|
+
[dir="rtl"] .k-gantt-timeline .k-header {
|
|
31659
31879
|
border-width: 0 1px 1px 0;
|
|
31660
31880
|
}
|
|
31661
31881
|
|
|
31662
|
-
.k-rtl .k-gantt-timeline .k-header:first-child
|
|
31882
|
+
.k-rtl .k-gantt-timeline .k-header:first-child,
|
|
31883
|
+
[dir="rtl"] .k-gantt-timeline .k-header:first-child {
|
|
31663
31884
|
border-right-width: 0;
|
|
31664
31885
|
}
|
|
31665
31886
|
|
|
31666
|
-
.k-rtl .k-gantt-timeline .k-task-start
|
|
31887
|
+
.k-rtl .k-gantt-timeline .k-task-start,
|
|
31888
|
+
[dir="rtl"] .k-gantt-timeline .k-task-start {
|
|
31667
31889
|
left: auto;
|
|
31668
31890
|
right: 0;
|
|
31669
31891
|
}
|
|
31670
31892
|
|
|
31671
|
-
.k-rtl .k-gantt-timeline .k-task-end
|
|
31893
|
+
.k-rtl .k-gantt-timeline .k-task-end,
|
|
31894
|
+
[dir="rtl"] .k-gantt-timeline .k-task-end {
|
|
31672
31895
|
right: auto;
|
|
31673
31896
|
left: 0;
|
|
31674
31897
|
}
|
|
31675
31898
|
|
|
31676
|
-
.k-rtl .k-task-content
|
|
31899
|
+
.k-rtl .k-task-content,
|
|
31900
|
+
[dir="rtl"] .k-task-content {
|
|
31677
31901
|
text-align: right;
|
|
31678
31902
|
}
|
|
31679
31903
|
|
|
31680
|
-
.k-rtl .k-task-complete
|
|
31904
|
+
.k-rtl .k-task-complete,
|
|
31905
|
+
[dir="rtl"] .k-task-complete {
|
|
31681
31906
|
left: auto;
|
|
31682
31907
|
right: 0;
|
|
31683
31908
|
}
|
|
31684
31909
|
|
|
31685
|
-
.k-rtl .k-task-draghandle
|
|
31910
|
+
.k-rtl .k-task-draghandle,
|
|
31911
|
+
[dir="rtl"] .k-task-draghandle {
|
|
31686
31912
|
margin-left: 0;
|
|
31687
31913
|
margin-right: 16px;
|
|
31688
31914
|
}
|
|
31689
31915
|
|
|
31690
|
-
.k-rtl .k-gantt-dependencies
|
|
31916
|
+
.k-rtl .k-gantt-dependencies,
|
|
31917
|
+
[dir="rtl"] .k-gantt-dependencies {
|
|
31691
31918
|
left: auto;
|
|
31692
31919
|
right: 0;
|
|
31693
31920
|
}
|
|
31694
31921
|
|
|
31695
|
-
.k-rtl .k-gantt-delete
|
|
31922
|
+
.k-rtl .k-gantt-delete,
|
|
31923
|
+
[dir="rtl"] .k-gantt-delete {
|
|
31696
31924
|
float: right;
|
|
31697
31925
|
}
|
|
31698
31926
|
|
|
31699
|
-
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-e
|
|
31927
|
+
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-e,
|
|
31928
|
+
[dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-e {
|
|
31700
31929
|
display: block;
|
|
31701
31930
|
}
|
|
31702
31931
|
|
|
31703
|
-
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-w
|
|
31932
|
+
.k-rtl .k-task-offset-wrap .k-task-content .k-resize-w,
|
|
31933
|
+
[dir="rtl"] .k-task-offset-wrap .k-task-content .k-resize-w {
|
|
31704
31934
|
display: none;
|
|
31705
31935
|
}
|
|
31706
31936
|
|
|
31707
|
-
.k-rtl .k-milestone-wrap
|
|
31937
|
+
.k-rtl .k-milestone-wrap,
|
|
31938
|
+
[dir="rtl"] .k-milestone-wrap {
|
|
31708
31939
|
margin-left: -2.4em;
|
|
31709
31940
|
}
|
|
31710
31941
|
|
|
31711
|
-
.k-rtl .k-milestone-wrap .k-task-moment
|
|
31942
|
+
.k-rtl .k-milestone-wrap .k-task-moment,
|
|
31943
|
+
[dir="rtl"] .k-milestone-wrap .k-task-moment {
|
|
31712
31944
|
margin-right: 0.2em;
|
|
31713
31945
|
}
|
|
31714
31946
|
|
|
31715
|
-
.k-rtl .k-gantt-timeline .k-milestone-wrap .k-task-start
|
|
31947
|
+
.k-rtl .k-gantt-timeline .k-milestone-wrap .k-task-start,
|
|
31948
|
+
[dir="rtl"] .k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
31716
31949
|
right: -0.1em;
|
|
31717
31950
|
}
|
|
31718
31951
|
|
|
31952
|
+
.k-rtl .k-gantt-tooltip-validation::before,
|
|
31953
|
+
[dir="rtl"] .k-gantt-tooltip-validation::before {
|
|
31954
|
+
left: auto;
|
|
31955
|
+
right: 0;
|
|
31956
|
+
}
|
|
31957
|
+
|
|
31719
31958
|
.k-gantt {
|
|
31720
31959
|
border-color: #cacaca;
|
|
31721
31960
|
color: #272727;
|
|
@@ -31898,6 +32137,18 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31898
32137
|
background-color: #f35800;
|
|
31899
32138
|
}
|
|
31900
32139
|
|
|
32140
|
+
.k-gantt-tooltip-validation::before {
|
|
32141
|
+
background-color: #656565;
|
|
32142
|
+
}
|
|
32143
|
+
|
|
32144
|
+
.k-gantt-tooltip-valid::before {
|
|
32145
|
+
background-color: #3ea44e;
|
|
32146
|
+
}
|
|
32147
|
+
|
|
32148
|
+
.k-gantt-tooltip-invalid::before {
|
|
32149
|
+
background-color: #d92800;
|
|
32150
|
+
}
|
|
32151
|
+
|
|
31901
32152
|
.k-scheduler {
|
|
31902
32153
|
border-width: 1px;
|
|
31903
32154
|
border-style: solid;
|