@progress/kendo-theme-utils 6.2.1-dev.1 → 6.2.1-dev.8
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 +4737 -541
- package/dist/all.scss +516 -84
- package/dist/meta/sassdoc-data.json +451 -125
- package/dist/meta/sassdoc-raw-data.json +451 -125
- package/dist/meta/variables.json +1 -1
- package/package.json +3 -3
- package/scss/_variables.scss +182 -26
- package/scss/background/_background-clip.scss +9 -0
- package/scss/background/index.import.scss +2 -0
- package/scss/effects/_opacity.scss +9 -0
- package/scss/effects/index.import.scss +7 -0
- package/scss/filter/_backdrop.scss +9 -0
- package/scss/filter/index.import.scss +5 -0
- package/scss/index.import.scss +6 -2
- package/scss/layout/_box-sizing.scss +9 -0
- package/scss/layout/_columns.scss +74 -0
- package/scss/layout/_display.scss +2 -0
- package/scss/layout/_object-fit.scss +9 -0
- package/scss/layout/_object-position.scss +9 -0
- package/scss/layout/_overflow.scss +2 -1
- package/scss/layout/_placement.scss +110 -0
- package/scss/layout/_position.scss +0 -104
- package/scss/layout/index.import.scss +10 -0
- package/scss/svg/_fill.scss +9 -0
- package/scss/svg/_stroke.scss +9 -0
- package/scss/svg/index.import.scss +7 -0
- package/scss/typography/_list-style.scss +9 -0
- package/scss/typography/_text-decoration.scss +9 -0
- package/scss/typography/_vertical-align.scss +9 -0
- package/scss/typography/index.import.scss +6 -3
package/dist/all.scss
CHANGED
|
@@ -1273,6 +1273,30 @@ $_kendo-escape-class-name: (
|
|
|
1273
1273
|
@return map-values( $map );
|
|
1274
1274
|
}
|
|
1275
1275
|
|
|
1276
|
+
/// Returns negative values of a number or numbers in a list.
|
|
1277
|
+
/// @param {Map} $map - The map to get the values from.
|
|
1278
|
+
/// @return {Map} - A comma separated list of the values in `$map`.
|
|
1279
|
+
///
|
|
1280
|
+
/// @example scss - Usage
|
|
1281
|
+
/// @debug k-map-negate( ( 0: 0, 1: 1px, 2: 2px ) ); // => ("-1": -1px, "-2": -2px)
|
|
1282
|
+
@function k-map-negate($map) {
|
|
1283
|
+
$_map-neg: ();
|
|
1284
|
+
|
|
1285
|
+
@if( k-meta-type-of($map) != map ) {
|
|
1286
|
+
@error "expected type of #{$map} is map, was #{k-meta-type-of($map)}";
|
|
1287
|
+
};
|
|
1288
|
+
@each $key, $value in $map {
|
|
1289
|
+
$_key-neg: "-" + $key;
|
|
1290
|
+
|
|
1291
|
+
@if( k-meta-type-of($value) == number and $value != 0) {
|
|
1292
|
+
$_map-neg: k-map-set($_map-neg, $_key-neg, -1 * $value );
|
|
1293
|
+
}
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
@return $_map-neg;
|
|
1297
|
+
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1276
1300
|
// #endregion
|
|
1277
1301
|
// #region @import "./_meta.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/_meta.import.scss
|
|
1278
1302
|
// Adapted from https://css-tricks.com/snippets/sass/advanced-type-checking/
|
|
@@ -1746,14 +1770,32 @@ $kendo-utils: (
|
|
|
1746
1770
|
video: k-string-unquote("16 / 9")
|
|
1747
1771
|
),
|
|
1748
1772
|
"container": (),
|
|
1749
|
-
"columns": (
|
|
1773
|
+
"columns": (
|
|
1774
|
+
1: 1,
|
|
1775
|
+
2: 2,
|
|
1776
|
+
3: 3,
|
|
1777
|
+
4: 4,
|
|
1778
|
+
5: 5,
|
|
1779
|
+
6: 6,
|
|
1780
|
+
7: 7,
|
|
1781
|
+
8: 8,
|
|
1782
|
+
9: 9,
|
|
1783
|
+
10: 10,
|
|
1784
|
+
11: 11,
|
|
1785
|
+
12: 12,
|
|
1786
|
+
auto: auto
|
|
1787
|
+
),
|
|
1750
1788
|
"break-after": (),
|
|
1751
1789
|
"break-before": (),
|
|
1752
1790
|
"break-inside": (),
|
|
1753
1791
|
"box-decoration-break": (),
|
|
1754
|
-
"box-sizing": (
|
|
1792
|
+
"box-sizing": (
|
|
1793
|
+
border: border-box,
|
|
1794
|
+
content: content-box
|
|
1795
|
+
),
|
|
1755
1796
|
"display": (
|
|
1756
1797
|
none,
|
|
1798
|
+
contents,
|
|
1757
1799
|
block,
|
|
1758
1800
|
inline,
|
|
1759
1801
|
inline-block,
|
|
@@ -1763,6 +1805,8 @@ $kendo-utils: (
|
|
|
1763
1805
|
inline-grid,
|
|
1764
1806
|
table,
|
|
1765
1807
|
inline-table,
|
|
1808
|
+
table-row,
|
|
1809
|
+
table-cell,
|
|
1766
1810
|
list-item
|
|
1767
1811
|
),
|
|
1768
1812
|
"float": (
|
|
@@ -1777,26 +1821,37 @@ $kendo-utils: (
|
|
|
1777
1821
|
none
|
|
1778
1822
|
),
|
|
1779
1823
|
"isolation": (),
|
|
1780
|
-
"object-fit": (
|
|
1781
|
-
|
|
1824
|
+
"object-fit": (
|
|
1825
|
+
contain,
|
|
1826
|
+
cover,
|
|
1827
|
+
fill,
|
|
1828
|
+
scale-down,
|
|
1829
|
+
initial,
|
|
1830
|
+
none
|
|
1831
|
+
),
|
|
1832
|
+
"object-position": (
|
|
1833
|
+
center: center,
|
|
1834
|
+
top: top,
|
|
1835
|
+
right: right,
|
|
1836
|
+
bottom: bottom,
|
|
1837
|
+
left: left,
|
|
1838
|
+
top-left: top left,
|
|
1839
|
+
top-right: top right,
|
|
1840
|
+
bottom-left: bottom left,
|
|
1841
|
+
bottom-right: bottom right
|
|
1842
|
+
),
|
|
1782
1843
|
"overflow": (
|
|
1783
1844
|
auto: auto,
|
|
1784
1845
|
hidden: hidden,
|
|
1785
1846
|
visible: visible,
|
|
1786
1847
|
scroll: scroll,
|
|
1787
|
-
clip: clip
|
|
1788
|
-
x-auto: auto,
|
|
1789
|
-
x-hidden: hidden,
|
|
1790
|
-
x-visible: visible,
|
|
1791
|
-
x-scroll: scroll,
|
|
1792
|
-
x-clip: clip,
|
|
1793
|
-
y-auto: auto,
|
|
1794
|
-
y-hidden: hidden,
|
|
1795
|
-
y-visible: visible,
|
|
1796
|
-
y-scroll: scroll,
|
|
1797
|
-
y-clip: clip
|
|
1848
|
+
clip: clip
|
|
1798
1849
|
),
|
|
1799
1850
|
"overscroll": (),
|
|
1851
|
+
"placement": k-map-merge( $kendo-spacing, (
|
|
1852
|
+
// sass-lint:disable-block indentation
|
|
1853
|
+
-1: -1px
|
|
1854
|
+
)),
|
|
1800
1855
|
"position": (
|
|
1801
1856
|
static,
|
|
1802
1857
|
relative,
|
|
@@ -1810,8 +1865,9 @@ $kendo-utils: (
|
|
|
1810
1865
|
-1: -1px
|
|
1811
1866
|
),
|
|
1812
1867
|
"visibility": (
|
|
1813
|
-
visible,
|
|
1814
|
-
hidden
|
|
1868
|
+
visible: visible,
|
|
1869
|
+
invisible: hidden,
|
|
1870
|
+
collapse: collapse
|
|
1815
1871
|
),
|
|
1816
1872
|
"zindex": (
|
|
1817
1873
|
0: 0,
|
|
@@ -1911,6 +1967,19 @@ $kendo-utils: (
|
|
|
1911
1967
|
11: 11,
|
|
1912
1968
|
12: 12,
|
|
1913
1969
|
13: 13,
|
|
1970
|
+
-1: -1,
|
|
1971
|
+
-2: -2,
|
|
1972
|
+
-3: -3,
|
|
1973
|
+
-4: -4,
|
|
1974
|
+
-5: -5,
|
|
1975
|
+
-6: -6,
|
|
1976
|
+
-7: -7,
|
|
1977
|
+
-8: -8,
|
|
1978
|
+
-9: -9,
|
|
1979
|
+
-10: -10,
|
|
1980
|
+
-11: -11,
|
|
1981
|
+
-12: -12,
|
|
1982
|
+
-13: -13,
|
|
1914
1983
|
auto: auto
|
|
1915
1984
|
),
|
|
1916
1985
|
"grid-column-end": (
|
|
@@ -1927,6 +1996,19 @@ $kendo-utils: (
|
|
|
1927
1996
|
11: 11,
|
|
1928
1997
|
12: 12,
|
|
1929
1998
|
13: 13,
|
|
1999
|
+
-1: -1,
|
|
2000
|
+
-2: -2,
|
|
2001
|
+
-3: -3,
|
|
2002
|
+
-4: -4,
|
|
2003
|
+
-5: -5,
|
|
2004
|
+
-6: -6,
|
|
2005
|
+
-7: -7,
|
|
2006
|
+
-8: -8,
|
|
2007
|
+
-9: -9,
|
|
2008
|
+
-10: -10,
|
|
2009
|
+
-11: -11,
|
|
2010
|
+
-12: -12,
|
|
2011
|
+
-13: -13,
|
|
1930
2012
|
auto: auto
|
|
1931
2013
|
),
|
|
1932
2014
|
"grid-column-span": (
|
|
@@ -1959,6 +2041,19 @@ $kendo-utils: (
|
|
|
1959
2041
|
11: 11,
|
|
1960
2042
|
12: 12,
|
|
1961
2043
|
13: 13,
|
|
2044
|
+
-1: -1,
|
|
2045
|
+
-2: -2,
|
|
2046
|
+
-3: -3,
|
|
2047
|
+
-4: -4,
|
|
2048
|
+
-5: -5,
|
|
2049
|
+
-6: -6,
|
|
2050
|
+
-7: -7,
|
|
2051
|
+
-8: -8,
|
|
2052
|
+
-9: -9,
|
|
2053
|
+
-10: -10,
|
|
2054
|
+
-11: -11,
|
|
2055
|
+
-12: -12,
|
|
2056
|
+
-13: -13,
|
|
1962
2057
|
auto: auto
|
|
1963
2058
|
),
|
|
1964
2059
|
"grid-row-end": (
|
|
@@ -1975,6 +2070,19 @@ $kendo-utils: (
|
|
|
1975
2070
|
11: 11,
|
|
1976
2071
|
12: 12,
|
|
1977
2072
|
13: 13,
|
|
2073
|
+
-1: -1,
|
|
2074
|
+
-2: -2,
|
|
2075
|
+
-3: -3,
|
|
2076
|
+
-4: -4,
|
|
2077
|
+
-5: -5,
|
|
2078
|
+
-6: -6,
|
|
2079
|
+
-7: -7,
|
|
2080
|
+
-8: -8,
|
|
2081
|
+
-9: -9,
|
|
2082
|
+
-10: -10,
|
|
2083
|
+
-11: -11,
|
|
2084
|
+
-12: -12,
|
|
2085
|
+
-13: -13,
|
|
1978
2086
|
auto: auto
|
|
1979
2087
|
),
|
|
1980
2088
|
"grid-row-span": (
|
|
@@ -1996,6 +2104,7 @@ $kendo-utils: (
|
|
|
1996
2104
|
"grid-auto-flow": (
|
|
1997
2105
|
row: row,
|
|
1998
2106
|
col: column,
|
|
2107
|
+
dense: dense,
|
|
1999
2108
|
row-dense: row dense,
|
|
2000
2109
|
col-dense: column dense,
|
|
2001
2110
|
unset: unset
|
|
@@ -2155,7 +2264,8 @@ $kendo-utils: (
|
|
|
2155
2264
|
),
|
|
2156
2265
|
|
|
2157
2266
|
// Spacing
|
|
2158
|
-
"margin": k-map-merge( $kendo-spacing,
|
|
2267
|
+
"margin": k-map-merge( $kendo-spacing,
|
|
2268
|
+
k-map-negate( $kendo-spacing), (
|
|
2159
2269
|
// sass-lint:disable-block indentation
|
|
2160
2270
|
// TODO: remove this extension once we fix docs
|
|
2161
2271
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
@@ -2164,7 +2274,8 @@ $kendo-utils: (
|
|
|
2164
2274
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
2165
2275
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
2166
2276
|
thin: k-map-get( $kendo-spacing, 0.5 ), // sass-lint:disable-line leading-zero
|
|
2167
|
-
hair: k-map-get( $kendo-spacing, 1px )
|
|
2277
|
+
hair: k-map-get( $kendo-spacing, 1px ),
|
|
2278
|
+
auto: auto
|
|
2168
2279
|
)),
|
|
2169
2280
|
"padding": k-map-merge( $kendo-spacing, (
|
|
2170
2281
|
// sass-lint:disable-block indentation
|
|
@@ -2245,13 +2356,19 @@ $kendo-utils: (
|
|
|
2245
2356
|
"font-variant-numeric": (),
|
|
2246
2357
|
"letter-spacing": (),
|
|
2247
2358
|
"line-height": (),
|
|
2248
|
-
"list-style-type": (
|
|
2359
|
+
"list-style-type": (
|
|
2360
|
+
none,
|
|
2361
|
+
disc,
|
|
2362
|
+
decimal
|
|
2363
|
+
),
|
|
2249
2364
|
"list-style-position": (),
|
|
2250
2365
|
"text-align": (
|
|
2251
2366
|
left,
|
|
2252
2367
|
right,
|
|
2253
2368
|
center,
|
|
2254
|
-
justify
|
|
2369
|
+
justify,
|
|
2370
|
+
start,
|
|
2371
|
+
end
|
|
2255
2372
|
),
|
|
2256
2373
|
"text-color": k-map-merge( $kendo-theme-colors, (
|
|
2257
2374
|
// sass-lint:disable-block indentation
|
|
@@ -2261,7 +2378,12 @@ $kendo-utils: (
|
|
|
2261
2378
|
"black": black,
|
|
2262
2379
|
"white": white
|
|
2263
2380
|
)),
|
|
2264
|
-
"text-decoration": (
|
|
2381
|
+
"text-decoration": (
|
|
2382
|
+
underline: underline,
|
|
2383
|
+
overline: overline,
|
|
2384
|
+
line-through: line-through,
|
|
2385
|
+
no-underline: none
|
|
2386
|
+
),
|
|
2265
2387
|
"text-decoration-width": (),
|
|
2266
2388
|
"text-decoration-style": (),
|
|
2267
2389
|
"text-decoration-color": (),
|
|
@@ -2277,7 +2399,16 @@ $kendo-utils: (
|
|
|
2277
2399
|
ellipsis: ellipsis
|
|
2278
2400
|
),
|
|
2279
2401
|
"text-indent": (),
|
|
2280
|
-
"vertical-align": (
|
|
2402
|
+
"vertical-align": (
|
|
2403
|
+
baseline,
|
|
2404
|
+
top,
|
|
2405
|
+
middle,
|
|
2406
|
+
bottom,
|
|
2407
|
+
text-top,
|
|
2408
|
+
text-bottom,
|
|
2409
|
+
sub,
|
|
2410
|
+
super
|
|
2411
|
+
),
|
|
2281
2412
|
"white-space": (
|
|
2282
2413
|
normal,
|
|
2283
2414
|
nowrap,
|
|
@@ -2289,6 +2420,12 @@ $kendo-utils: (
|
|
|
2289
2420
|
"word-break": (),
|
|
2290
2421
|
|
|
2291
2422
|
// Background
|
|
2423
|
+
"background-clip": (
|
|
2424
|
+
border: border-box,
|
|
2425
|
+
padding: padding-box,
|
|
2426
|
+
content: content-box,
|
|
2427
|
+
text: text
|
|
2428
|
+
),
|
|
2292
2429
|
"background-color": k-map-merge( $kendo-theme-colors, (
|
|
2293
2430
|
// sass-lint:disable-block indentation
|
|
2294
2431
|
"inherit": inherit,
|
|
@@ -2310,6 +2447,10 @@ $kendo-utils: (
|
|
|
2310
2447
|
dashed,
|
|
2311
2448
|
dotted,
|
|
2312
2449
|
double,
|
|
2450
|
+
// groove,
|
|
2451
|
+
// ridge,
|
|
2452
|
+
inset,
|
|
2453
|
+
outset,
|
|
2313
2454
|
hidden,
|
|
2314
2455
|
none
|
|
2315
2456
|
),
|
|
@@ -2334,13 +2475,20 @@ $kendo-utils: (
|
|
|
2334
2475
|
dashed,
|
|
2335
2476
|
dotted,
|
|
2336
2477
|
double,
|
|
2337
|
-
groove,
|
|
2338
|
-
ridge,
|
|
2478
|
+
// groove,
|
|
2479
|
+
// ridge,
|
|
2339
2480
|
inset,
|
|
2340
2481
|
outset,
|
|
2341
2482
|
none
|
|
2342
2483
|
),
|
|
2343
|
-
"outline-color": (
|
|
2484
|
+
"outline-color": k-map-merge( $kendo-theme-colors, (
|
|
2485
|
+
// sass-lint:disable-block indentation
|
|
2486
|
+
"inherit": inherit,
|
|
2487
|
+
"current": currentColor,
|
|
2488
|
+
"transparent": transparent,
|
|
2489
|
+
"black": black,
|
|
2490
|
+
"white": white
|
|
2491
|
+
)),
|
|
2344
2492
|
"outline-offset": (
|
|
2345
2493
|
0: 0,
|
|
2346
2494
|
1: 1px,
|
|
@@ -2350,8 +2498,32 @@ $kendo-utils: (
|
|
|
2350
2498
|
),
|
|
2351
2499
|
|
|
2352
2500
|
// Effects
|
|
2501
|
+
"box-shadow": (),
|
|
2502
|
+
"box-shadow-color": (),
|
|
2503
|
+
"opacity": (
|
|
2504
|
+
// sass-lint:disable-block leading-zero
|
|
2505
|
+
0: 0,
|
|
2506
|
+
5: 0.05,
|
|
2507
|
+
10: 0.1,
|
|
2508
|
+
20: 0.2,
|
|
2509
|
+
30: 0.3,
|
|
2510
|
+
40: 0.4,
|
|
2511
|
+
50: 0.5,
|
|
2512
|
+
60: 0.6,
|
|
2513
|
+
70: 0.7,
|
|
2514
|
+
80: 0.8,
|
|
2515
|
+
90: 0.9,
|
|
2516
|
+
100: 1
|
|
2517
|
+
),
|
|
2353
2518
|
|
|
2354
2519
|
// Filter
|
|
2520
|
+
"backdrop-blur": (
|
|
2521
|
+
DEFAULT: blur(8px),
|
|
2522
|
+
none: blur(0),
|
|
2523
|
+
sm: blur(4px),
|
|
2524
|
+
md: blur(6px),
|
|
2525
|
+
lg: blur(12px)
|
|
2526
|
+
),
|
|
2355
2527
|
|
|
2356
2528
|
// Table
|
|
2357
2529
|
"border-collapse": (
|
|
@@ -2518,6 +2690,14 @@ $kendo-utils: (
|
|
|
2518
2690
|
scroll: scroll-position,
|
|
2519
2691
|
contents: contents,
|
|
2520
2692
|
transform: transform
|
|
2693
|
+
),
|
|
2694
|
+
"fill-stroke": (
|
|
2695
|
+
none: none,
|
|
2696
|
+
inherit: inherit,
|
|
2697
|
+
current: currentColor,
|
|
2698
|
+
"transparent": transparent,
|
|
2699
|
+
"black": black,
|
|
2700
|
+
"white": white
|
|
2521
2701
|
)
|
|
2522
2702
|
) !default;
|
|
2523
2703
|
|
|
@@ -2633,6 +2813,18 @@ $kendo-utils: (
|
|
|
2633
2813
|
|
|
2634
2814
|
}
|
|
2635
2815
|
|
|
2816
|
+
// #endregion
|
|
2817
|
+
// #region @import "./_box-sizing.scss"; -> scss/layout/_box-sizing.scss
|
|
2818
|
+
// TODO: docs
|
|
2819
|
+
|
|
2820
|
+
@mixin kendo-utils--layout--box-sizing() {
|
|
2821
|
+
|
|
2822
|
+
// box-sizing utility classes
|
|
2823
|
+
$kendo-utils-box-sizing: k-map-get( $kendo-utils, "box-sizing" ) !default;
|
|
2824
|
+
@include generate-utils( box-sizing, box-sizing, $kendo-utils-box-sizing );
|
|
2825
|
+
|
|
2826
|
+
}
|
|
2827
|
+
|
|
2636
2828
|
// #endregion
|
|
2637
2829
|
// #region @import "./_clear.scss"; -> scss/layout/_clear.scss
|
|
2638
2830
|
// Clear documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/clear.
|
|
@@ -2665,6 +2857,83 @@ $kendo-utils: (
|
|
|
2665
2857
|
|
|
2666
2858
|
}
|
|
2667
2859
|
|
|
2860
|
+
// #endregion
|
|
2861
|
+
// #region @import "./_columns.scss"; -> scss/layout/_columns.scss
|
|
2862
|
+
// Columns documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/columns.
|
|
2863
|
+
|
|
2864
|
+
/// This is equivalent to `columns: 1;`. Element's content is displayed into 1 column.
|
|
2865
|
+
/// @name .k-columns-1
|
|
2866
|
+
/// @group columns
|
|
2867
|
+
/// @contextType css
|
|
2868
|
+
|
|
2869
|
+
/// This is equivalent to `columns: 2;`. Element's content is broken into 2 columns.
|
|
2870
|
+
/// @name .k-columns-2
|
|
2871
|
+
/// @group columns
|
|
2872
|
+
/// @contextType css
|
|
2873
|
+
|
|
2874
|
+
/// This is equivalent to `columns: 3;`. Element's content is broken into 3 columns.
|
|
2875
|
+
/// @name .k-columns-3
|
|
2876
|
+
/// @group columns
|
|
2877
|
+
/// @contextType css
|
|
2878
|
+
|
|
2879
|
+
/// This is equivalent to `columns: 4;`. Element's content is broken into 4 columns.
|
|
2880
|
+
/// @name .k-columns-4
|
|
2881
|
+
/// @group columns
|
|
2882
|
+
/// @contextType css
|
|
2883
|
+
|
|
2884
|
+
/// This is equivalent to `columns: 5;`. Element's content is broken into 5 columns.
|
|
2885
|
+
/// @name .k-columns-5
|
|
2886
|
+
/// @group columns
|
|
2887
|
+
/// @contextType css
|
|
2888
|
+
|
|
2889
|
+
/// This is equivalent to `columns: 6;`. Element's content is broken into 6 columns.
|
|
2890
|
+
/// @name .k-columns-6
|
|
2891
|
+
/// @group columns
|
|
2892
|
+
/// @contextType css
|
|
2893
|
+
|
|
2894
|
+
/// This is equivalent to `columns: 7;`. Element's content is broken into 7 columns.
|
|
2895
|
+
/// @name .k-columns-7
|
|
2896
|
+
/// @group columns
|
|
2897
|
+
/// @contextType css
|
|
2898
|
+
|
|
2899
|
+
/// This is equivalent to `columns: 8;`. Element's content is broken into 8 columns.
|
|
2900
|
+
/// @name .k-columns-8
|
|
2901
|
+
/// @group columns
|
|
2902
|
+
/// @contextType css
|
|
2903
|
+
|
|
2904
|
+
/// This is equivalent to `columns: 9;`. Element's content is broken into 9 columns.
|
|
2905
|
+
/// @name .k-columns-9
|
|
2906
|
+
/// @group columns
|
|
2907
|
+
/// @contextType css
|
|
2908
|
+
|
|
2909
|
+
/// This is equivalent to `columns: 10;`. Element's content is broken into 10 columns.
|
|
2910
|
+
/// @name .k-columns-10
|
|
2911
|
+
/// @group columns
|
|
2912
|
+
/// @contextType css
|
|
2913
|
+
|
|
2914
|
+
/// This is equivalent to `columns: 11;`. Element's content is broken into 11 columns.
|
|
2915
|
+
/// @name .k-columns-11
|
|
2916
|
+
/// @group columns
|
|
2917
|
+
/// @contextType css
|
|
2918
|
+
|
|
2919
|
+
/// This is equivalent to `columns: 12;`. Element's content is broken into 12 columns.
|
|
2920
|
+
/// @name .k-columns-12
|
|
2921
|
+
/// @group columns
|
|
2922
|
+
/// @contextType css
|
|
2923
|
+
|
|
2924
|
+
/// This is equivalent to `columns: auto;`.The number of columns is determined by other CSS properties, such as column-width.
|
|
2925
|
+
/// @name .k-columns-auto
|
|
2926
|
+
/// @group columns
|
|
2927
|
+
/// @contextType css
|
|
2928
|
+
|
|
2929
|
+
@mixin kendo-utils--layout--columns() {
|
|
2930
|
+
|
|
2931
|
+
// columns utility classes
|
|
2932
|
+
$kendo-utils-columns: k-map-get( $kendo-utils, "columns" ) !default;
|
|
2933
|
+
@include generate-utils( columns, columns, $kendo-utils-columns );
|
|
2934
|
+
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2668
2937
|
// #endregion
|
|
2669
2938
|
// #region @import "./_display.scss"; -> scss/layout/_display.scss
|
|
2670
2939
|
/// This is equivalent to `display: none;`. Turns off the display of an element so that it has no effect on layout (the document is rendered as though the element did not exist). All descendant elements also have their display turned off.
|
|
@@ -2722,6 +2991,8 @@ $kendo-utils: (
|
|
|
2722
2991
|
/// @group display
|
|
2723
2992
|
/// @contextType css
|
|
2724
2993
|
|
|
2994
|
+
// TODO tables' parts
|
|
2995
|
+
|
|
2725
2996
|
@mixin kendo-utils--layout--display() {
|
|
2726
2997
|
|
|
2727
2998
|
// Display utility classes
|
|
@@ -2765,6 +3036,30 @@ $kendo-utils: (
|
|
|
2765
3036
|
|
|
2766
3037
|
}
|
|
2767
3038
|
|
|
3039
|
+
// #endregion
|
|
3040
|
+
// #region @import "./_object-fit.scss"; -> scss/layout/_object-fit.scss
|
|
3041
|
+
// TODO: docs
|
|
3042
|
+
|
|
3043
|
+
@mixin kendo-utils--layout--object-fit() {
|
|
3044
|
+
|
|
3045
|
+
// object-fit utility classes
|
|
3046
|
+
$kendo-utils-object-fit: k-map-get( $kendo-utils, "object-fit" ) !default;
|
|
3047
|
+
@include generate-utils( object-fit, object-fit, $kendo-utils-object-fit );
|
|
3048
|
+
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
// #endregion
|
|
3052
|
+
// #region @import "./_object-position.scss"; -> scss/layout/_object-position.scss
|
|
3053
|
+
// TODO: docs
|
|
3054
|
+
|
|
3055
|
+
@mixin kendo-utils--layout--object-position() {
|
|
3056
|
+
|
|
3057
|
+
// object-position utility classes
|
|
3058
|
+
$kendo-utils-object-position: k-map-get( $kendo-utils, "object-position" ) !default;
|
|
3059
|
+
@include generate-utils( object-position, object-position, $kendo-utils-object-position );
|
|
3060
|
+
|
|
3061
|
+
}
|
|
3062
|
+
|
|
2768
3063
|
// #endregion
|
|
2769
3064
|
// #region @import "./_overflow.scss"; -> scss/layout/_overflow.scss
|
|
2770
3065
|
/// This is equivalent to `overflow: auto;`. Depends on the user agent. If content fits inside the padding box, it looks the same as visible, but still establishes a new block formatting context. Desktop browsers provide scrollbar if content overflows.
|
|
@@ -2847,38 +3142,14 @@ $kendo-utils: (
|
|
|
2847
3142
|
// Overflow utility classes
|
|
2848
3143
|
$kendo-utils-overflow: k-map-get( $kendo-utils, "overflow" ) !default;
|
|
2849
3144
|
@include generate-utils( overflow, overflow, $kendo-utils-overflow );
|
|
2850
|
-
|
|
3145
|
+
@include generate-utils( overflow-x, overflow-x, $kendo-utils-overflow );
|
|
3146
|
+
@include generate-utils( overflow-y, overflow-y, $kendo-utils-overflow );
|
|
2851
3147
|
}
|
|
2852
3148
|
|
|
2853
3149
|
// #endregion
|
|
2854
|
-
// #region @import "./
|
|
3150
|
+
// #region @import "./_placement.scss"; -> scss/layout/_placement.scss
|
|
2855
3151
|
// Position documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/position.
|
|
2856
3152
|
|
|
2857
|
-
/// This is equivalent to `position: static;`. The element is positioned according to the normal flow of the document. The top, right, bottom, left, and z-index properties have no effect. This is the default value.
|
|
2858
|
-
/// @name .k-pos-static
|
|
2859
|
-
/// @group position
|
|
2860
|
-
/// @contextType css
|
|
2861
|
-
|
|
2862
|
-
/// This is equivalent to `position: relative;`. The element is positioned according to the normal flow of the document, and then offset relative to itself based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements; thus, the space given for the element in the page layout is the same as if position were static.
|
|
2863
|
-
/// @name .k-pos-relative
|
|
2864
|
-
/// @group position
|
|
2865
|
-
/// @contextType css
|
|
2866
|
-
|
|
2867
|
-
/// This is equivalent to `position: absolute;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to its closest positioned ancestor, if any; otherwise, it is placed relative to the initial containing block. Its final position is determined by the values of top, right, bottom, and left.
|
|
2868
|
-
/// @name .k-pos-absolute
|
|
2869
|
-
/// @group position
|
|
2870
|
-
/// @contextType css
|
|
2871
|
-
|
|
2872
|
-
/// This is equivalent to `position: fixed;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to the initial containing block established by the viewport, except when one of its ancestors has a transform, perspective, or filter property set to something other than none (see the CSS Transforms Spec), in which case that ancestor behaves as the containing block. (Note that there are browser inconsistencies with perspective and filter contributing to containing block formation.) Its final position is determined by the values of top, right, bottom, and left.
|
|
2873
|
-
/// @name .k-pos-fixed
|
|
2874
|
-
/// @group position
|
|
2875
|
-
/// @contextType css
|
|
2876
|
-
|
|
2877
|
-
/// This is equivalent to `position: sticky;`. The element is positioned according to the normal flow of the document, and then offset relative to its nearest scrolling ancestor and containing block (nearest block-level ancestor), including table-related elements, based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements.
|
|
2878
|
-
/// @name .k-pos-sticky
|
|
2879
|
-
/// @group position
|
|
2880
|
-
/// @contextType css
|
|
2881
|
-
|
|
2882
3153
|
|
|
2883
3154
|
// TODO: inset docs
|
|
2884
3155
|
|
|
@@ -2903,35 +3174,26 @@ $kendo-utils: (
|
|
|
2903
3174
|
/// @group position
|
|
2904
3175
|
/// @contextType css
|
|
2905
3176
|
|
|
2906
|
-
@mixin kendo-utils--layout--
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
@include generate-utils(
|
|
2911
|
-
|
|
3177
|
+
@mixin kendo-utils--layout--placement() {
|
|
3178
|
+
// Top / right / bottom / left
|
|
3179
|
+
$kendo-utils-placement: k-map-get( $kendo-utils, "placement" ) !default;
|
|
3180
|
+
@include generate-utils( top, top, $kendo-utils-placement );
|
|
3181
|
+
@include generate-utils( right, right, $kendo-utils-placement );
|
|
3182
|
+
@include generate-utils( bottom, bottom, $kendo-utils-placement );
|
|
3183
|
+
@include generate-utils( left, left, $kendo-utils-placement );
|
|
2912
3184
|
|
|
2913
|
-
// Legacy aliases
|
|
2914
|
-
.#{$kendo-prefix}static { @extend .#{$kendo-prefix}pos-static !optional; }
|
|
2915
|
-
.\!#{$kendo-prefix}static { @extend .\!#{$kendo-prefix}pos-static !optional; }
|
|
2916
|
-
.#{$kendo-prefix}relative { @extend .#{$kendo-prefix}pos-relative !optional; }
|
|
2917
|
-
.\!#{$kendo-prefix}relative { @extend .\!#{$kendo-prefix}pos-relative !optional; }
|
|
2918
|
-
.#{$kendo-prefix}absolute { @extend .#{$kendo-prefix}pos-absolute !optional; }
|
|
2919
|
-
.\!#{$kendo-prefix}absolute { @extend .\!#{$kendo-prefix}pos-absolute !optional; }
|
|
2920
|
-
.#{$kendo-prefix}fixed { @extend .#{$kendo-prefix}pos-fixed !optional; }
|
|
2921
|
-
.\!#{$kendo-prefix}fixed { @extend .\!#{$kendo-prefix}pos-fixed !optional; }
|
|
2922
|
-
.#{$kendo-prefix}sticky { @extend .#{$kendo-prefix}pos-sticky !optional; }
|
|
2923
|
-
.\!#{$kendo-prefix}sticky { @extend .\!#{$kendo-prefix}pos-sticky !optional; }
|
|
2924
3185
|
|
|
3186
|
+
// Position length utility classes
|
|
3187
|
+
@each $side in (top, right, bottom, left) {
|
|
3188
|
+
.#{$kendo-prefix}#{$side},
|
|
3189
|
+
.#{$kendo-prefix}pos-#{$side} { #{$side}: 0; } // sass-lint:disable-line brace-style
|
|
3190
|
+
}
|
|
2925
3191
|
|
|
2926
3192
|
// Inset utility classes
|
|
2927
3193
|
$kendo-utils-inset: k-map-get( $kendo-utils, "inset" ) !default;
|
|
2928
3194
|
@include generate-utils( inset, inset, $kendo-utils-inset );
|
|
2929
3195
|
@include generate-utils( inset-x, inset-inline, $kendo-utils-inset );
|
|
2930
3196
|
@include generate-utils( inset-y, inset-block, $kendo-utils-inset );
|
|
2931
|
-
@include generate-utils( top, top, $kendo-utils-inset );
|
|
2932
|
-
@include generate-utils( right, right, $kendo-utils-inset );
|
|
2933
|
-
@include generate-utils( bottom, bottom, $kendo-utils-inset );
|
|
2934
|
-
@include generate-utils( left, left, $kendo-utils-inset );
|
|
2935
3197
|
@include generate-utils( top-left, ( top, left ), $kendo-utils-inset );
|
|
2936
3198
|
@include generate-utils( top-right, ( top, right ), $kendo-utils-inset );
|
|
2937
3199
|
@include generate-utils( bottom-left, ( bottom, left ), $kendo-utils-inset );
|
|
@@ -2995,12 +3257,55 @@ $kendo-utils: (
|
|
|
2995
3257
|
transform: translateX(-50%);
|
|
2996
3258
|
}
|
|
2997
3259
|
|
|
3260
|
+
}
|
|
2998
3261
|
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3262
|
+
// #endregion
|
|
3263
|
+
// #region @import "./_position.scss"; -> scss/layout/_position.scss
|
|
3264
|
+
// Position documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/position.
|
|
3265
|
+
|
|
3266
|
+
/// This is equivalent to `position: static;`. The element is positioned according to the normal flow of the document. The top, right, bottom, left, and z-index properties have no effect. This is the default value.
|
|
3267
|
+
/// @name .k-pos-static
|
|
3268
|
+
/// @group position
|
|
3269
|
+
/// @contextType css
|
|
3270
|
+
|
|
3271
|
+
/// This is equivalent to `position: relative;`. The element is positioned according to the normal flow of the document, and then offset relative to itself based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements; thus, the space given for the element in the page layout is the same as if position were static.
|
|
3272
|
+
/// @name .k-pos-relative
|
|
3273
|
+
/// @group position
|
|
3274
|
+
/// @contextType css
|
|
3275
|
+
|
|
3276
|
+
/// This is equivalent to `position: absolute;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to its closest positioned ancestor, if any; otherwise, it is placed relative to the initial containing block. Its final position is determined by the values of top, right, bottom, and left.
|
|
3277
|
+
/// @name .k-pos-absolute
|
|
3278
|
+
/// @group position
|
|
3279
|
+
/// @contextType css
|
|
3280
|
+
|
|
3281
|
+
/// This is equivalent to `position: fixed;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to the initial containing block established by the viewport, except when one of its ancestors has a transform, perspective, or filter property set to something other than none (see the CSS Transforms Spec), in which case that ancestor behaves as the containing block. (Note that there are browser inconsistencies with perspective and filter contributing to containing block formation.) Its final position is determined by the values of top, right, bottom, and left.
|
|
3282
|
+
/// @name .k-pos-fixed
|
|
3283
|
+
/// @group position
|
|
3284
|
+
/// @contextType css
|
|
3285
|
+
|
|
3286
|
+
/// This is equivalent to `position: sticky;`. The element is positioned according to the normal flow of the document, and then offset relative to its nearest scrolling ancestor and containing block (nearest block-level ancestor), including table-related elements, based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements.
|
|
3287
|
+
/// @name .k-pos-sticky
|
|
3288
|
+
/// @group position
|
|
3289
|
+
/// @contextType css
|
|
3290
|
+
|
|
3291
|
+
@mixin kendo-utils--layout--position() {
|
|
3292
|
+
|
|
3293
|
+
// Position utility classes
|
|
3294
|
+
$kendo-utils-position: k-map-get( $kendo-utils, "position" ) !default;
|
|
3295
|
+
@include generate-utils( pos, position, $kendo-utils-position );
|
|
3296
|
+
|
|
3297
|
+
|
|
3298
|
+
// Legacy aliases
|
|
3299
|
+
.#{$kendo-prefix}static { @extend .#{$kendo-prefix}pos-static !optional; }
|
|
3300
|
+
.\!#{$kendo-prefix}static { @extend .\!#{$kendo-prefix}pos-static !optional; }
|
|
3301
|
+
.#{$kendo-prefix}relative { @extend .#{$kendo-prefix}pos-relative !optional; }
|
|
3302
|
+
.\!#{$kendo-prefix}relative { @extend .\!#{$kendo-prefix}pos-relative !optional; }
|
|
3303
|
+
.#{$kendo-prefix}absolute { @extend .#{$kendo-prefix}pos-absolute !optional; }
|
|
3304
|
+
.\!#{$kendo-prefix}absolute { @extend .\!#{$kendo-prefix}pos-absolute !optional; }
|
|
3305
|
+
.#{$kendo-prefix}fixed { @extend .#{$kendo-prefix}pos-fixed !optional; }
|
|
3306
|
+
.\!#{$kendo-prefix}fixed { @extend .\!#{$kendo-prefix}pos-fixed !optional; }
|
|
3307
|
+
.#{$kendo-prefix}sticky { @extend .#{$kendo-prefix}pos-sticky !optional; }
|
|
3308
|
+
.\!#{$kendo-prefix}sticky { @extend .\!#{$kendo-prefix}pos-sticky !optional; }
|
|
3004
3309
|
|
|
3005
3310
|
}
|
|
3006
3311
|
|
|
@@ -3040,10 +3345,15 @@ $kendo-utils: (
|
|
|
3040
3345
|
|
|
3041
3346
|
@mixin kendo-utils--layout() {
|
|
3042
3347
|
@include kendo-utils--layout--aspect-ratio();
|
|
3348
|
+
@include kendo-utils--layout--box-sizing();
|
|
3043
3349
|
@include kendo-utils--layout--clear();
|
|
3350
|
+
@include kendo-utils--layout--columns();
|
|
3044
3351
|
@include kendo-utils--layout--display();
|
|
3045
3352
|
@include kendo-utils--layout--float();
|
|
3353
|
+
@include kendo-utils--layout--object-fit();
|
|
3354
|
+
@include kendo-utils--layout--object-position();
|
|
3046
3355
|
@include kendo-utils--layout--overflow();
|
|
3356
|
+
@include kendo-utils--layout--placement();
|
|
3047
3357
|
@include kendo-utils--layout--position();
|
|
3048
3358
|
@include kendo-utils--layout--visibility();
|
|
3049
3359
|
@include kendo-utils--layout--zindex();
|
|
@@ -3667,7 +3977,18 @@ $kendo-utils: (
|
|
|
3667
3977
|
// font variant
|
|
3668
3978
|
// letter spacing
|
|
3669
3979
|
// line height
|
|
3670
|
-
//
|
|
3980
|
+
// #region @import "./_list-style.scss"; -> scss/typography/_list-style.scss
|
|
3981
|
+
// TODO: docs
|
|
3982
|
+
|
|
3983
|
+
@mixin kendo-utils--typography--list-style-type() {
|
|
3984
|
+
|
|
3985
|
+
// list-style-type utility classes
|
|
3986
|
+
$kendo-utils-list-style-type: k-map-get( $kendo-utils, "list-style-type" ) !default;
|
|
3987
|
+
@include generate-utils( list, list-style-type, $kendo-utils-list-style-type );
|
|
3988
|
+
|
|
3989
|
+
}
|
|
3990
|
+
|
|
3991
|
+
// #endregion
|
|
3671
3992
|
// #region @import "./_text-align.scss"; -> scss/typography/_text-align.scss
|
|
3672
3993
|
// Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
|
|
3673
3994
|
|
|
@@ -3717,7 +4038,18 @@ $kendo-utils: (
|
|
|
3717
4038
|
}
|
|
3718
4039
|
|
|
3719
4040
|
// #endregion
|
|
3720
|
-
//
|
|
4041
|
+
// #region @import "./_text-decoration.scss"; -> scss/typography/_text-decoration.scss
|
|
4042
|
+
// TODO: docs
|
|
4043
|
+
|
|
4044
|
+
@mixin kendo-utils--typography--text-decoration() {
|
|
4045
|
+
|
|
4046
|
+
// text-decoration utility classes
|
|
4047
|
+
$kendo-utils-text-decoration: k-map-get( $kendo-utils, "text-decoration" ) !default;
|
|
4048
|
+
@include generate-utils( text, text-decoration, $kendo-utils-text-decoration );
|
|
4049
|
+
|
|
4050
|
+
}
|
|
4051
|
+
|
|
4052
|
+
// #endregion
|
|
3721
4053
|
// #region @import "./_text-overflow.scss"; -> scss/typography/_text-overflow.scss
|
|
3722
4054
|
@mixin kendo-utils--typography--text-overflow() {
|
|
3723
4055
|
|
|
@@ -3773,7 +4105,18 @@ $kendo-utils: (
|
|
|
3773
4105
|
|
|
3774
4106
|
// #endregion
|
|
3775
4107
|
// text indent
|
|
3776
|
-
//
|
|
4108
|
+
// #region @import "./_vertical-align.scss"; -> scss/typography/_vertical-align.scss
|
|
4109
|
+
// TODO: docs
|
|
4110
|
+
|
|
4111
|
+
@mixin kendo-utils--typography--vertical-align() {
|
|
4112
|
+
|
|
4113
|
+
// vertical-align utility classes
|
|
4114
|
+
$kendo-utils-vertical-align: k-map-get( $kendo-utils, "vertical-align" ) !default;
|
|
4115
|
+
@include generate-utils( align, vertical-align, $kendo-utils-vertical-align );
|
|
4116
|
+
|
|
4117
|
+
}
|
|
4118
|
+
|
|
4119
|
+
// #endregion
|
|
3777
4120
|
// #region @import "./_white-space.scss"; -> scss/typography/_white-space.scss
|
|
3778
4121
|
// White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
|
|
3779
4122
|
|
|
@@ -3828,15 +4171,30 @@ $kendo-utils: (
|
|
|
3828
4171
|
@include kendo-utils--typography--font-size();
|
|
3829
4172
|
@include kendo-utils--typography--font-style();
|
|
3830
4173
|
@include kendo-utils--typography--font-weight();
|
|
4174
|
+
@include kendo-utils--typography--list-style-type();
|
|
3831
4175
|
@include kendo-utils--typography--text-align();
|
|
3832
4176
|
@include kendo-utils--typography--text-color();
|
|
4177
|
+
@include kendo-utils--typography--text-decoration();
|
|
3833
4178
|
@include kendo-utils--typography--text-overflow();
|
|
3834
4179
|
@include kendo-utils--typography--text-transform();
|
|
4180
|
+
@include kendo-utils--typography--vertical-align();
|
|
3835
4181
|
@include kendo-utils--typography--white-space();
|
|
3836
4182
|
}
|
|
3837
4183
|
|
|
3838
4184
|
// #endregion
|
|
3839
4185
|
// #region @import "./background/index.import.scss"; -> scss/background/index.import.scss
|
|
4186
|
+
// #region @import "./_background-clip.scss"; -> scss/background/_background-clip.scss
|
|
4187
|
+
// TODO: docs
|
|
4188
|
+
|
|
4189
|
+
@mixin kendo-utils--background--background-clip() {
|
|
4190
|
+
|
|
4191
|
+
// Background color utility classes
|
|
4192
|
+
$kendo-utils-background-clip: k-map-get( $kendo-utils, "background-clip" ) !default;
|
|
4193
|
+
@include generate-utils( bg-clip, background-clip, $kendo-utils-background-clip );
|
|
4194
|
+
|
|
4195
|
+
}
|
|
4196
|
+
|
|
4197
|
+
// #endregion
|
|
3840
4198
|
// #region @import "./_background-color.scss"; -> scss/background/_background-color.scss
|
|
3841
4199
|
// TODO: docs
|
|
3842
4200
|
|
|
@@ -3852,6 +4210,7 @@ $kendo-utils: (
|
|
|
3852
4210
|
|
|
3853
4211
|
|
|
3854
4212
|
@mixin kendo-utils--background() {
|
|
4213
|
+
@include kendo-utils--background--background-clip();
|
|
3855
4214
|
@include kendo-utils--background--background-color();
|
|
3856
4215
|
}
|
|
3857
4216
|
|
|
@@ -4000,8 +4359,46 @@ $kendo-utils: (
|
|
|
4000
4359
|
}
|
|
4001
4360
|
|
|
4002
4361
|
// #endregion
|
|
4003
|
-
// effects
|
|
4004
|
-
//
|
|
4362
|
+
// #region @import "./effects/index.import.scss"; -> scss/effects/index.import.scss
|
|
4363
|
+
// box shadow
|
|
4364
|
+
// box shadow color
|
|
4365
|
+
// #region @import "./_opacity.scss"; -> scss/effects/_opacity.scss
|
|
4366
|
+
// TODO: docs
|
|
4367
|
+
|
|
4368
|
+
@mixin kendo-utils--effects--opacity() {
|
|
4369
|
+
|
|
4370
|
+
// opacity utility classes
|
|
4371
|
+
$kendo-utils-opacity: k-map-get( $kendo-utils, "opacity" ) !default;
|
|
4372
|
+
@include generate-utils( opacity, opacity, $kendo-utils-opacity );
|
|
4373
|
+
|
|
4374
|
+
}
|
|
4375
|
+
|
|
4376
|
+
// #endregion
|
|
4377
|
+
|
|
4378
|
+
@mixin kendo-utils--effects() {
|
|
4379
|
+
@include kendo-utils--effects--opacity();
|
|
4380
|
+
}
|
|
4381
|
+
|
|
4382
|
+
// #endregion
|
|
4383
|
+
// #region @import "./filter/index.import.scss"; -> scss/filter/index.import.scss
|
|
4384
|
+
// #region @import "./_backdrop.scss"; -> scss/filter/_backdrop.scss
|
|
4385
|
+
// TODO: docs
|
|
4386
|
+
|
|
4387
|
+
@mixin kendo-utils--filter--backdrop() {
|
|
4388
|
+
|
|
4389
|
+
// backdrop utility classes
|
|
4390
|
+
$kendo-utils-backdrop-blur: k-map-get( $kendo-utils, "backdrop-blur" ) !default;
|
|
4391
|
+
@include generate-utils( backdrop-blur, backdrop-filter, $kendo-utils-backdrop-blur );
|
|
4392
|
+
|
|
4393
|
+
}
|
|
4394
|
+
|
|
4395
|
+
// #endregion
|
|
4396
|
+
|
|
4397
|
+
@mixin kendo-utils--filter() {
|
|
4398
|
+
@include kendo-utils--filter--backdrop();
|
|
4399
|
+
}
|
|
4400
|
+
|
|
4401
|
+
// #endregion
|
|
4005
4402
|
// #region @import "./table/index.import.scss"; -> scss/table/index.import.scss
|
|
4006
4403
|
// #region @import "./_border-collapse.scss"; -> scss/table/_border-collapse.scss
|
|
4007
4404
|
// TODO: docs
|
|
@@ -4554,6 +4951,38 @@ $kendo-utils: (
|
|
|
4554
4951
|
@include kendo-utils--interactivity--will-change();
|
|
4555
4952
|
}
|
|
4556
4953
|
|
|
4954
|
+
// #endregion
|
|
4955
|
+
// #region @import "./svg/index.import.scss"; -> scss/svg/index.import.scss
|
|
4956
|
+
// #region @import "./_fill.scss"; -> scss/svg/_fill.scss
|
|
4957
|
+
// TODO: docs
|
|
4958
|
+
|
|
4959
|
+
@mixin kendo-utils--svg--fill() {
|
|
4960
|
+
|
|
4961
|
+
// fill utility classes
|
|
4962
|
+
$kendo-utils-fill: k-map-get( $kendo-utils, "fill-stroke" ) !default;
|
|
4963
|
+
@include generate-utils( fill, fill, $kendo-utils-fill );
|
|
4964
|
+
|
|
4965
|
+
}
|
|
4966
|
+
|
|
4967
|
+
// #endregion
|
|
4968
|
+
// #region @import "./_stroke.scss"; -> scss/svg/_stroke.scss
|
|
4969
|
+
// TODO: docs
|
|
4970
|
+
|
|
4971
|
+
@mixin kendo-utils--svg--stroke() {
|
|
4972
|
+
|
|
4973
|
+
// stroke utility classes
|
|
4974
|
+
$kendo-utils-stroke: k-map-get( $kendo-utils, "fill-stroke" ) !default;
|
|
4975
|
+
@include generate-utils( stroke, stroke, $kendo-utils-stroke );
|
|
4976
|
+
|
|
4977
|
+
}
|
|
4978
|
+
|
|
4979
|
+
// #endregion
|
|
4980
|
+
|
|
4981
|
+
@mixin kendo-utils--svg() {
|
|
4982
|
+
@include kendo-utils--svg--fill();
|
|
4983
|
+
@include kendo-utils--svg--stroke();
|
|
4984
|
+
}
|
|
4985
|
+
|
|
4557
4986
|
// #endregion
|
|
4558
4987
|
|
|
4559
4988
|
|
|
@@ -4567,9 +4996,12 @@ $kendo-utils: (
|
|
|
4567
4996
|
@include kendo-utils--typography();
|
|
4568
4997
|
@include kendo-utils--background();
|
|
4569
4998
|
@include kendo-utils--border();
|
|
4999
|
+
@include kendo-utils--effects();
|
|
5000
|
+
@include kendo-utils--filter();
|
|
4570
5001
|
@include kendo-utils--table();
|
|
4571
5002
|
@include kendo-utils--transform();
|
|
4572
5003
|
@include kendo-utils--interactivity();
|
|
5004
|
+
@include kendo-utils--svg();
|
|
4573
5005
|
}
|
|
4574
5006
|
|
|
4575
5007
|
// #endregion
|