@progress/kendo-theme-default 6.5.0-dev.0 → 6.5.0-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +340 -42
- package/dist/all.scss +2466 -937
- package/dist/meta/sassdoc-data.json +42142 -20554
- package/dist/meta/sassdoc-raw-data.json +18650 -8700
- package/dist/meta/variables.json +331 -267
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/_variables.scss +6 -1
- package/scss/action-sheet/_layout.scss +7 -0
- package/scss/action-sheet/_variables.scss +1 -0
- package/scss/appbar/_variables.scss +39 -7
- package/scss/bottom-navigation/_variables.scss +42 -8
- package/scss/breadcrumb/_layout.scss +28 -13
- package/scss/breadcrumb/_variables.scss +177 -6
- package/scss/coloreditor/_variables.scss +53 -4
- package/scss/colorgradient/_variables.scss +86 -4
- package/scss/colorpalette/_variables.scss +18 -1
- package/scss/common/_index.scss +0 -1
- package/scss/core/_index.scss +2 -15
- package/scss/dialog/_variables.scss +16 -2
- package/scss/editor/_variables.scss +33 -0
- package/scss/expansion-panel/_variables.scss +55 -11
- package/scss/filter/_variables.scss +18 -1
- package/scss/listbox/_variables.scss +21 -20
- package/scss/listview/_variables.scss +42 -7
- package/scss/loader/_variables.scss +88 -12
- package/scss/menu/_variables.scss +2 -2
- package/scss/notification/_variables.scss +20 -19
- package/scss/popover/_variables.scss +60 -6
- package/scss/progressbar/_variables.scss +24 -23
- package/scss/scrollview/_variables.scss +59 -6
- package/scss/tilelayout/_variables.scss +22 -3
- package/scss/upload/_variables.scss +62 -9
- package/scss/window/_variables.scss +61 -6
- package/scss/common/_selection.scss +0 -27
package/dist/all.scss
CHANGED
|
@@ -5,18 +5,10 @@
|
|
|
5
5
|
// #region @import "./core/_index.scss"; -> scss/core/_index.scss
|
|
6
6
|
$wcag-min-contrast-ratio: 4.5 !default;
|
|
7
7
|
|
|
8
|
-
//
|
|
9
|
-
// #region @import "
|
|
8
|
+
// Variables
|
|
9
|
+
// #region @import "../_variables.scss"; -> scss/_variables.scss
|
|
10
|
+
// #region @import "./core/functions/index.import.scss"; -> scss/core/functions/index.import.scss
|
|
10
11
|
// #region @import "@progress/kendo-theme-core/scss/functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
11
|
-
// #region @import "../_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
|
|
12
|
-
// Equilateral triangle variables
|
|
13
|
-
// stylelint-disable number-max-precision
|
|
14
|
-
$equilateral-index: 1.7320508076 !default;
|
|
15
|
-
$equilateral-height: .8660254038 !default;
|
|
16
|
-
// stylelint-enable number-max-precision
|
|
17
|
-
|
|
18
|
-
// #endregion
|
|
19
|
-
|
|
20
12
|
// #region @import "./_color.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/_color.import.scss
|
|
21
13
|
/// Returns the alpha channel of a color.
|
|
22
14
|
/// @param {Color} $color - The color to get the alpha channel for.
|
|
@@ -1242,6 +1234,36 @@ $_kendo-escape-class-name: (
|
|
|
1242
1234
|
@return $map;
|
|
1243
1235
|
}
|
|
1244
1236
|
|
|
1237
|
+
/// Returns a deep-map with the keys and values from `$map` and `$args`.
|
|
1238
|
+
/// @param {Map} $maps - The maps to deep-merge.
|
|
1239
|
+
/// @return {Map} - A map with the keys and values from `$map` and `$args`.
|
|
1240
|
+
///
|
|
1241
|
+
/// @example scss - Usage
|
|
1242
|
+
/// @debug k-map-deep-merge( ( "foo": ("bar": "baz", "baz": "qux" ) ), ( "foo": ("bar": "foo") ) ); // => ( "foo": ("bar": "foo", "baz": "qux" ))
|
|
1243
|
+
@function k-map-deep-merge($maps...) {
|
|
1244
|
+
$merged: ();
|
|
1245
|
+
|
|
1246
|
+
@each $map in $maps {
|
|
1247
|
+
@each $key, $val in $map {
|
|
1248
|
+
@if (k-meta-type-of($val) == 'map') {
|
|
1249
|
+
$current: k-map-get($merged, $key);
|
|
1250
|
+
@if (k-meta-type-of($current) == 'map') {
|
|
1251
|
+
$val: k-map-deep-merge($current, $val);
|
|
1252
|
+
$map: k-map-merge(
|
|
1253
|
+
$map,
|
|
1254
|
+
(
|
|
1255
|
+
$key: $val
|
|
1256
|
+
)
|
|
1257
|
+
);
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
$merged: k-map-merge($merged, $map);
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
@return $merged;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1245
1267
|
/// Returns a map with the keys and values from `$map` except for `$keys`.
|
|
1246
1268
|
/// @param {Map} $map - The map to remove keys from.
|
|
1247
1269
|
/// @param {Any} $keys - The keys to remove from `$map`.
|
|
@@ -1323,6 +1345,10 @@ $_kendo-escape-class-name: (
|
|
|
1323
1345
|
/// @example scss - Usage
|
|
1324
1346
|
/// @debug k-meta-function-exists( "k-string-replace" ); // => true
|
|
1325
1347
|
@function k-meta-function-exists( $name ) {
|
|
1348
|
+
@if $name == "" {
|
|
1349
|
+
@return false;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1326
1352
|
@return function-exists( $name );
|
|
1327
1353
|
}
|
|
1328
1354
|
|
|
@@ -1543,6 +1569,15 @@ $_kendo-escape-class-name: (
|
|
|
1543
1569
|
|
|
1544
1570
|
// #endregion
|
|
1545
1571
|
// #region @import "./_string.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/_string.import.scss
|
|
1572
|
+
$svg-escaped-characters: (
|
|
1573
|
+
("%", "%25"),
|
|
1574
|
+
("<", "%3c"),
|
|
1575
|
+
(">", "%3e"),
|
|
1576
|
+
("#", "%23"),
|
|
1577
|
+
("(", "%28"),
|
|
1578
|
+
(")", "%29")
|
|
1579
|
+
) !default;
|
|
1580
|
+
|
|
1546
1581
|
/// Returns the first index of `$substring` in `$string`, or `null` if `$string` doesn’t contain `$substring`.
|
|
1547
1582
|
/// @param {String} $string - The string to process.
|
|
1548
1583
|
/// @param {String} $substring - The substring to look for.
|
|
@@ -1662,329 +1697,664 @@ $_kendo-escape-class-name: (
|
|
|
1662
1697
|
@return unquote( $string );
|
|
1663
1698
|
}
|
|
1664
1699
|
|
|
1665
|
-
// #endregion
|
|
1666
1700
|
|
|
1667
|
-
//
|
|
1701
|
+
// See https://www.sassmeister.com/gist/1b4f2da5527830088e4d
|
|
1702
|
+
@function str-replace($string, $search, $replace: "") {
|
|
1703
|
+
$index: k-string-index($string, $search);
|
|
1668
1704
|
|
|
1669
|
-
|
|
1705
|
+
@if $index {
|
|
1706
|
+
@return k-string-slice($string, 1, $index - 1) + $replace + str-replace(k-string-slice($string, $index + k-string-length($search)), $search, $replace);
|
|
1707
|
+
}
|
|
1670
1708
|
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
// #region @import "@progress/kendo-theme-core/scss/color-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/index.import.scss
|
|
1674
|
-
// #region @import "./_functions.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_functions.import.scss
|
|
1675
|
-
@function k-generate-theme-variant( $variant, $matrix, $src-palette-name ) {
|
|
1676
|
-
$result: ();
|
|
1709
|
+
@return $string;
|
|
1710
|
+
}
|
|
1677
1711
|
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1712
|
+
// See https://codepen.io/kevinweber/pen/dXWoRw
|
|
1713
|
+
@function escape-svg($string) {
|
|
1714
|
+
@if k-string-index($string, "data:image/svg+xml") {
|
|
1715
|
+
@each $char, $encoded in $svg-escaped-characters {
|
|
1716
|
+
// Do not escape the url brackets
|
|
1717
|
+
@if k-string-index($string, "url(") == 1 {
|
|
1718
|
+
$string: url("#{str-replace(k-string-slice($string, 6, -3), $char, $encoded)}");
|
|
1719
|
+
} @else {
|
|
1720
|
+
$string: str-replace($string, $char, $encoded);
|
|
1721
|
+
}
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1681
1724
|
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
$border-prop: k-list-nth( $indices, 3 );
|
|
1685
|
-
$gradient-prop: if( $indices-count > 3, k-list-nth( $indices, 4 ), null );
|
|
1686
|
-
$shadow-prop: if( $indices-count > 4, k-list-nth( $indices, 5 ), null );
|
|
1687
|
-
$outline-prop: if( $indices-count > 5, k-list-nth( $indices, 6 ), null );
|
|
1725
|
+
@return $string;
|
|
1726
|
+
}
|
|
1688
1727
|
|
|
1689
|
-
|
|
1690
|
-
$bg: if( k-meta-type-of( $bg-prop ) == number, k-get-theme-color( $src-palette-name, $bg-prop ), $bg-prop );
|
|
1691
|
-
$text: if( k-meta-type-of( $text-prop ) == number, k-get-theme-color( $src-palette-name, $text-prop ), $text-prop );
|
|
1692
|
-
$border: if( k-meta-type-of( $border-prop ) == number, k-get-theme-color( $src-palette-name, $border-prop ), $border-prop );
|
|
1693
|
-
$gradient: $gradient-prop;
|
|
1694
|
-
$shadow: $shadow-prop;
|
|
1695
|
-
$outline: $outline-prop;
|
|
1728
|
+
// #endregion
|
|
1696
1729
|
|
|
1697
|
-
|
|
1698
|
-
#{$prefix}bg: $bg,
|
|
1699
|
-
#{$prefix}text: $text,
|
|
1700
|
-
#{$prefix}border: $border,
|
|
1701
|
-
#{$prefix}gradient: $gradient,
|
|
1702
|
-
#{$prefix}shadow: $shadow,
|
|
1703
|
-
#{$prefix}outline: $outline
|
|
1704
|
-
));
|
|
1705
|
-
}
|
|
1730
|
+
// #endregion
|
|
1706
1731
|
|
|
1707
|
-
|
|
1708
|
-
#{$variant}: $result
|
|
1709
|
-
);
|
|
1732
|
+
// #endregion
|
|
1710
1733
|
|
|
1711
|
-
|
|
1734
|
+
$kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
|
|
1735
|
+
$kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
|
|
1712
1736
|
|
|
1713
|
-
|
|
1737
|
+
// Options
|
|
1738
|
+
$kendo-enable-rounded: true !default;
|
|
1739
|
+
$kendo-enable-shadows: true !default;
|
|
1740
|
+
$kendo-enable-gradients: true !default;
|
|
1741
|
+
$kendo-enable-transitions: true !default;
|
|
1742
|
+
$kendo-enable-focus-contrast: false !default;
|
|
1743
|
+
$kendo-enable-typography: false !default;
|
|
1714
1744
|
|
|
1745
|
+
$kendo-use-input-button-width: true !default;
|
|
1746
|
+
$kendo-use-input-spinner-width: true !default;
|
|
1747
|
+
$kendo-use-input-spinner-icon-offset: false !default;
|
|
1715
1748
|
|
|
1716
|
-
|
|
1717
|
-
$result: ();
|
|
1749
|
+
$kendo-auto-bootstrap: true !default;
|
|
1718
1750
|
|
|
1719
|
-
// @debug $theme-matrix;
|
|
1720
|
-
// @debug $palette-matrix;
|
|
1721
1751
|
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1752
|
+
// Spacing
|
|
1753
|
+
$kendo-spacing: (
|
|
1754
|
+
0: 0,
|
|
1755
|
+
1px: 1px,
|
|
1756
|
+
0.5: 2px,
|
|
1757
|
+
1: 4px,
|
|
1758
|
+
1.5: 6px,
|
|
1759
|
+
2: 8px,
|
|
1760
|
+
2.5: 10px,
|
|
1761
|
+
3: 12px,
|
|
1762
|
+
3.5: 14px,
|
|
1763
|
+
4: 16px,
|
|
1764
|
+
4.5: 18px,
|
|
1765
|
+
5: 20px,
|
|
1766
|
+
5.5: 22px,
|
|
1767
|
+
6: 24px,
|
|
1768
|
+
6.5: 26px,
|
|
1769
|
+
7: 28px,
|
|
1770
|
+
7.5: 30px,
|
|
1771
|
+
8: 32px,
|
|
1772
|
+
9: 36px,
|
|
1773
|
+
10: 40px,
|
|
1774
|
+
11: 44px,
|
|
1775
|
+
12: 48px,
|
|
1776
|
+
13: 52px,
|
|
1777
|
+
14: 56px,
|
|
1778
|
+
15: 60px,
|
|
1779
|
+
16: 64px,
|
|
1780
|
+
17: 68px,
|
|
1781
|
+
18: 72px,
|
|
1782
|
+
19: 76px,
|
|
1783
|
+
20: 80px,
|
|
1784
|
+
21: 84px,
|
|
1785
|
+
22: 88px,
|
|
1786
|
+
23: 92px,
|
|
1787
|
+
24: 96px
|
|
1788
|
+
) !default;
|
|
1726
1789
|
|
|
1727
|
-
@if ($tc-index == null ) { // stylelint-disable-line
|
|
1728
|
-
$tmp-result: k-generate-theme-variant( $variant, $matrix, $src-palette-name );
|
|
1729
|
-
$result: k-map-merge( $result, $tmp-result);
|
|
1730
|
-
} @else {
|
|
1731
|
-
@each $color, $palette in $palette-matrix {
|
|
1732
|
-
$variant-name: k-string-replace( $variant, THEME_COLOR, $color);
|
|
1733
|
-
$palette-name: k-string-unquote($src-palette-name + "");
|
|
1734
1790
|
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1791
|
+
/// Icon size.
|
|
1792
|
+
/// @group common
|
|
1793
|
+
$kendo-icon-size: 16px !default;
|
|
1794
|
+
/// xtra small icon size.
|
|
1795
|
+
/// @group common
|
|
1796
|
+
$kendo-icon-size-xs: calc( #{$kendo-icon-size} * .75 ) !default;
|
|
1797
|
+
/// Small icon size.
|
|
1798
|
+
/// @group common
|
|
1799
|
+
$kendo-icon-size-sm: calc( #{$kendo-icon-size} * .875 ) !default;
|
|
1800
|
+
/// Medium icon size.
|
|
1801
|
+
/// @group common
|
|
1802
|
+
$kendo-icon-size-md: $kendo-icon-size !default;
|
|
1803
|
+
/// Large icon size.
|
|
1804
|
+
/// @group common
|
|
1805
|
+
$kendo-icon-size-lg: calc( #{$kendo-icon-size} * 1.25 ) !default;
|
|
1806
|
+
/// Extra large icon size.
|
|
1807
|
+
/// @group common
|
|
1808
|
+
$kendo-icon-size-xl: calc( #{$kendo-icon-size} * 1.5 ) !default;
|
|
1809
|
+
/// Double extra large icon size.
|
|
1810
|
+
/// @group common
|
|
1811
|
+
$kendo-icon-size-xxl: calc( #{$kendo-icon-size} * 2 ) !default;
|
|
1812
|
+
/// Triple extra large icon size.
|
|
1813
|
+
/// @group common
|
|
1814
|
+
$kendo-icon-size-xxxl: calc( #{$kendo-icon-size} * 3 ) !default;
|
|
1739
1815
|
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
}
|
|
1743
|
-
}
|
|
1744
|
-
}
|
|
1816
|
+
$kendo-icon-spacing: k-map-get( $kendo-spacing, 1 ) !default;
|
|
1817
|
+
$kendo-icon-padding: k-map-get( $kendo-spacing, 1 ) !default;
|
|
1745
1818
|
|
|
1746
|
-
|
|
1747
|
-
|
|
1819
|
+
/// Horizontal padding.
|
|
1820
|
+
/// @group common
|
|
1821
|
+
$kendo-padding-x: 8px !default;
|
|
1822
|
+
/// Vertical padding.
|
|
1823
|
+
/// @group common
|
|
1824
|
+
$kendo-padding-y: 4px !default;
|
|
1825
|
+
/// Small horizontal padding.
|
|
1826
|
+
/// @group common
|
|
1827
|
+
$kendo-padding-sm-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
1828
|
+
/// Small vertical padding.
|
|
1829
|
+
/// @group common
|
|
1830
|
+
$kendo-padding-sm-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
1831
|
+
/// Medium horizontal padding.
|
|
1832
|
+
/// @group common
|
|
1833
|
+
$kendo-padding-md-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
1834
|
+
/// Medium vertical padding.
|
|
1835
|
+
/// @group common
|
|
1836
|
+
$kendo-padding-md-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
1837
|
+
/// Large horizontal padding.
|
|
1838
|
+
/// @group common
|
|
1839
|
+
$kendo-padding-lg-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
1840
|
+
/// Large vertical padding.
|
|
1841
|
+
/// @group common
|
|
1842
|
+
$kendo-padding-lg-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
1748
1843
|
|
|
1844
|
+
/// Border radius for all components.
|
|
1845
|
+
/// @group common
|
|
1846
|
+
$kendo-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
|
|
1847
|
+
/// Small border radius.
|
|
1848
|
+
/// @group common
|
|
1849
|
+
$kendo-border-radius-sm: $kendo-border-radius - k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
1850
|
+
/// Medium border radius.
|
|
1851
|
+
/// @group common
|
|
1852
|
+
$kendo-border-radius-md: $kendo-border-radius !default;
|
|
1853
|
+
/// Large border radius.
|
|
1854
|
+
/// @group common
|
|
1855
|
+
$kendo-border-radius-lg: $kendo-border-radius + k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
1749
1856
|
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1857
|
+
$kendo-border-radii: (
|
|
1858
|
+
DEFAULT: $kendo-border-radius-md,
|
|
1859
|
+
0: 0,
|
|
1860
|
+
sm: $kendo-border-radius-sm,
|
|
1861
|
+
md: $kendo-border-radius-md,
|
|
1862
|
+
lg: $kendo-border-radius-lg,
|
|
1863
|
+
full: 9999px
|
|
1864
|
+
) !default;
|
|
1753
1865
|
|
|
1754
|
-
@function k-get-theme-color( $palette, $hue ) {
|
|
1755
|
-
@if ( k-meta-type-of( $palette ) == "map" ) {
|
|
1756
|
-
@return k-map-get( $palette, $hue );
|
|
1757
|
-
}
|
|
1758
1866
|
|
|
1759
|
-
|
|
1760
|
-
|
|
1867
|
+
$kendo-zindex-popup: 1 !default;
|
|
1868
|
+
$kendo-zindex-window: 2 !default;
|
|
1869
|
+
$kendo-zindex-loading: 100 !default;
|
|
1761
1870
|
|
|
1762
|
-
@function k-get-theme-color-var( $name, $fallback: "inherit", $prefix: "kendo-" ) {
|
|
1763
|
-
@return var( --#{$prefix}#{$name}, #{$fallback} );
|
|
1764
|
-
}
|
|
1765
1871
|
|
|
1766
|
-
//
|
|
1767
|
-
|
|
1872
|
+
// Color settings
|
|
1873
|
+
$kendo-is-dark-theme: false !default;
|
|
1768
1874
|
|
|
1769
|
-
//
|
|
1770
|
-
|
|
1771
|
-
|
|
1875
|
+
// Theme colors
|
|
1876
|
+
/// The color that focuses the user attention.
|
|
1877
|
+
/// Used for primary buttons and for elements of primary importance across the theme.
|
|
1878
|
+
/// @group color-system
|
|
1879
|
+
/// @type Color
|
|
1880
|
+
$kendo-color-primary: #ff6358 !default;
|
|
1881
|
+
$kendo-color-primary-lighter: k-color-tint( $kendo-color-primary, 2 ) !default;
|
|
1882
|
+
$kendo-color-primary-darker: k-color-shade( $kendo-color-primary, 2 ) !default;
|
|
1772
1883
|
|
|
1773
|
-
/// The color
|
|
1774
|
-
///
|
|
1884
|
+
/// The color used along with the primary color denoted by $kendo-color-primary.
|
|
1885
|
+
/// Used to provide contrast between the background and foreground colors.
|
|
1886
|
+
/// @group color-system
|
|
1775
1887
|
/// @type Color
|
|
1888
|
+
$kendo-color-primary-contrast: k-contrast-legacy( $kendo-color-primary ) !default;
|
|
1889
|
+
|
|
1890
|
+
/// The secondary color of the theme.
|
|
1776
1891
|
/// @group color-system
|
|
1777
|
-
|
|
1892
|
+
/// @type Color
|
|
1893
|
+
$kendo-color-secondary: #666666 !default;
|
|
1894
|
+
$kendo-color-secondary-lighter: k-color-tint( $kendo-color-secondary, 2 ) !default;
|
|
1895
|
+
$kendo-color-secondary-darker: k-color-shade( $kendo-color-secondary, 2 ) !default;
|
|
1778
1896
|
|
|
1779
|
-
/// The color
|
|
1780
|
-
///
|
|
1897
|
+
/// The color used along with the secondary color denoted by $kendo-color-secondary.
|
|
1898
|
+
/// Used to provide contrast between the background and foreground colors.
|
|
1899
|
+
/// @group color-system
|
|
1781
1900
|
/// @type Color
|
|
1901
|
+
$kendo-color-secondary-contrast: k-contrast-legacy( $kendo-color-secondary ) !default;
|
|
1902
|
+
|
|
1903
|
+
/// The tertiary color of the theme.
|
|
1782
1904
|
/// @group color-system
|
|
1783
|
-
|
|
1905
|
+
/// @type Color
|
|
1906
|
+
$kendo-color-tertiary: #03a9f4 !default;
|
|
1907
|
+
$kendo-color-tertiary-lighter: k-color-tint( $kendo-color-tertiary, 2 ) !default;
|
|
1908
|
+
$kendo-color-tertiary-darker: k-color-shade( $kendo-color-tertiary, 2 ) !default;
|
|
1784
1909
|
|
|
1785
|
-
/// The color
|
|
1786
|
-
///
|
|
1910
|
+
/// The color used along with the tertiary color denoted by $kendo-color-tertiary.
|
|
1911
|
+
/// Used to provide contrast between the background and foreground colors.
|
|
1912
|
+
/// @group color-system
|
|
1787
1913
|
/// @type Color
|
|
1914
|
+
$kendo-color-tertiary-contrast: k-contrast-legacy( $kendo-color-tertiary ) !default;
|
|
1915
|
+
|
|
1916
|
+
/// The color for informational messages and states.
|
|
1788
1917
|
/// @group color-system
|
|
1789
|
-
|
|
1918
|
+
/// @type Color
|
|
1919
|
+
$kendo-color-info: #0058e9 !default;
|
|
1920
|
+
$kendo-color-info-lighter: k-color-tint( $kendo-color-info, 2 ) !default;
|
|
1921
|
+
$kendo-color-info-darker: k-color-shade( $kendo-color-info, 2 ) !default;
|
|
1790
1922
|
|
|
1791
|
-
///
|
|
1792
|
-
/// Note: you cannot change this value.
|
|
1793
|
-
/// @type Gradient
|
|
1923
|
+
/// The color for success messages and states.
|
|
1794
1924
|
/// @group color-system
|
|
1795
|
-
|
|
1925
|
+
/// @type Color
|
|
1926
|
+
$kendo-color-success: #37b400 !default;
|
|
1927
|
+
$kendo-color-success-lighter: k-color-tint( $kendo-color-success, 2 ) !default;
|
|
1928
|
+
$kendo-color-success-darker: k-color-shade( $kendo-color-success, 2 ) !default;
|
|
1796
1929
|
|
|
1797
|
-
///
|
|
1798
|
-
/// Note: you cannot change this value.
|
|
1799
|
-
/// @type Gradient
|
|
1930
|
+
/// The color for warning messages and states.
|
|
1800
1931
|
/// @group color-system
|
|
1801
|
-
|
|
1932
|
+
/// @type Color
|
|
1933
|
+
$kendo-color-warning: #ffc000 !default;
|
|
1934
|
+
$kendo-color-warning-lighter: k-color-tint( $kendo-color-warning, 2 ) !default;
|
|
1935
|
+
$kendo-color-warning-darker: k-color-shade( $kendo-color-warning, 2 ) !default;
|
|
1802
1936
|
|
|
1803
|
-
///
|
|
1804
|
-
/// Note: you cannot change this value.
|
|
1805
|
-
/// @type Gradient
|
|
1937
|
+
/// The color for error messages and states.
|
|
1806
1938
|
/// @group color-system
|
|
1807
|
-
|
|
1939
|
+
/// @type Color
|
|
1940
|
+
$kendo-color-error: #f31700 !default;
|
|
1941
|
+
$kendo-color-error-lighter: k-color-tint( $kendo-color-error, 2 ) !default;
|
|
1942
|
+
$kendo-color-error-darker: k-color-shade( $kendo-color-error, 2 ) !default;
|
|
1808
1943
|
|
|
1809
|
-
///
|
|
1810
|
-
/// Note: you cannot change this value.
|
|
1811
|
-
/// @type Gradient
|
|
1944
|
+
/// The dark color of the theme.
|
|
1812
1945
|
/// @group color-system
|
|
1813
|
-
|
|
1946
|
+
/// @type Color
|
|
1947
|
+
$kendo-color-dark: #424242 !default;
|
|
1814
1948
|
|
|
1815
|
-
///
|
|
1816
|
-
/// Note: you cannot change this value.
|
|
1817
|
-
/// @type Gradient
|
|
1949
|
+
/// The light color of the theme.
|
|
1818
1950
|
/// @group color-system
|
|
1819
|
-
|
|
1951
|
+
/// @type Color
|
|
1952
|
+
$kendo-color-light: #ebebeb !default;
|
|
1820
1953
|
|
|
1821
|
-
|
|
1822
|
-
// #region @import "./_palettes.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_palettes.scss
|
|
1823
|
-
/// Color palettes to be used in the Kendo UI themes.
|
|
1824
|
-
/// @access private
|
|
1825
|
-
/// @type Record<String, ColorMap>
|
|
1826
|
-
/// @prop {ColorMap} neutral - The neutral palette
|
|
1827
|
-
/// @prop {ColorMap} marsala - The marsala palette
|
|
1828
|
-
/// @prop {ColorMap} bootstrapGray - The Bootstrap gray palette
|
|
1829
|
-
/// @prop {ColorMap} bootstrapBlue - The Bootstrap blue palette
|
|
1830
|
-
/// @prop {ColorMap} bootstrapIndigo - The Bootstrap indigo palette
|
|
1831
|
-
/// @prop {ColorMap} bootstrapPurple - The Bootstrap purple palette
|
|
1832
|
-
/// @prop {ColorMap} bootstrapPink - The Bootstrap pink palette
|
|
1833
|
-
/// @prop {ColorMap} bootstrapRed - The Bootstrap red palette
|
|
1834
|
-
/// @prop {ColorMap} bootstrapOrange - The Bootstrap orange palette
|
|
1835
|
-
/// @prop {ColorMap} bootstrapYellow - The Bootstrap yellow palette
|
|
1836
|
-
/// @prop {ColorMap} bootstrapGreen - The Bootstrap green palette
|
|
1837
|
-
/// @prop {ColorMap} bootstrapTeal - The Bootstrap teal palette
|
|
1838
|
-
/// @prop {ColorMap} bootstrapCyan - The Bootstrap cyan palette
|
|
1839
|
-
/// @prop {ColorMap} fluentNeutral - The Fluent neutral palette
|
|
1840
|
-
/// @prop {ColorMap} materialGray - The Material gray palette
|
|
1841
|
-
/// @prop {ColorMap} materialBlueGray - The Material blue gray palette
|
|
1842
|
-
/// @prop {ColorMap} materialRed - The Material red palette
|
|
1843
|
-
/// @prop {ColorMap} materialPink - The Material pink palette
|
|
1844
|
-
/// @prop {ColorMap} materialPurple - The Material purple palette
|
|
1845
|
-
/// @prop {ColorMap} materialDeepPurple - The Material deep purple palette
|
|
1846
|
-
/// @prop {ColorMap} materialIndigo - The Material indigo palette
|
|
1847
|
-
/// @prop {ColorMap} materialBlue - The Material blue palette
|
|
1848
|
-
/// @prop {ColorMap} materialLightBlue - The Material light blue palette
|
|
1849
|
-
/// @prop {ColorMap} materialCyan - The Material cyan palette
|
|
1850
|
-
/// @prop {ColorMap} materialTeal - The Material teal palette
|
|
1851
|
-
/// @prop {ColorMap} materialGreen - The Material green palette
|
|
1852
|
-
/// @prop {ColorMap} materialLightGreen - The Material light green palette
|
|
1853
|
-
/// @prop {ColorMap} materialLime - The Material lime palette
|
|
1854
|
-
/// @prop {ColorMap} materialYellow - The Material yellow palette
|
|
1855
|
-
/// @prop {ColorMap} materialAmber - The Material amber palette
|
|
1856
|
-
/// @prop {ColorMap} materialOrange - The Material orange palette
|
|
1857
|
-
/// @prop {ColorMap} materialDeepOrange - The Material deep orange palette
|
|
1858
|
-
/// @prop {ColorMap} materialBrown - The Material brown palette
|
|
1859
|
-
/// @prop {ColorMap} primerGray - The Primer gray palette
|
|
1860
|
-
/// @prop {ColorMap} primerBlue - The Primer blue palette
|
|
1861
|
-
/// @prop {ColorMap} primerGreen - The Primer green palette
|
|
1862
|
-
/// @prop {ColorMap} primerYellow - The Primer yellow palette
|
|
1863
|
-
/// @prop {ColorMap} primerOrange - The Primer orange palette
|
|
1864
|
-
/// @prop {ColorMap} primerRed - The Primer red palette
|
|
1865
|
-
/// @prop {ColorMap} primerPurple - The Primer purple palette
|
|
1866
|
-
/// @prop {ColorMap} primerPink - The Primer pink palette
|
|
1867
|
-
/// @prop {ColorMap} primerCoral - The Primer coral palette
|
|
1868
|
-
/// @prop {ColorMap} tailwindNeutral - The Tailwind neutral palette
|
|
1869
|
-
/// @prop {ColorMap} tailwindSlate - The Tailwind slate palette
|
|
1870
|
-
/// @prop {ColorMap} tailwindGray - The Tailwind gray palette
|
|
1871
|
-
/// @prop {ColorMap} tailwindZinc - The Tailwind zinc palette
|
|
1872
|
-
/// @prop {ColorMap} tailwindStone - The Tailwind stone palette
|
|
1873
|
-
/// @prop {ColorMap} tailwindRed - The Tailwind red palette
|
|
1874
|
-
/// @prop {ColorMap} tailwindOrange - The Tailwind orange palette
|
|
1875
|
-
/// @prop {ColorMap} tailwindAmber - The Tailwind amber palette
|
|
1876
|
-
/// @prop {ColorMap} tailwindYellow - The Tailwind yellow palette
|
|
1877
|
-
/// @prop {ColorMap} tailwindLime - The Tailwind lime palette
|
|
1878
|
-
/// @prop {ColorMap} tailwindGreen - The Tailwind green palette
|
|
1879
|
-
/// @prop {ColorMap} tailwindEmerald - The Tailwind emerald palette
|
|
1880
|
-
/// @prop {ColorMap} tailwindTeal - The Tailwind teal palette
|
|
1881
|
-
/// @prop {ColorMap} tailwindCyan - The Tailwind cyan palette
|
|
1882
|
-
/// @prop {ColorMap} tailwindSky - The Tailwind sky palette
|
|
1883
|
-
/// @prop {ColorMap} tailwindBlue - The Tailwind blue palette
|
|
1884
|
-
/// @prop {ColorMap} tailwindIndigo - The Tailwind indigo palette
|
|
1885
|
-
/// @prop {ColorMap} tailwindViolet - The Tailwind violet palette
|
|
1886
|
-
/// @prop {ColorMap} tailwindPurple - The Tailwind purple palette
|
|
1887
|
-
/// @prop {ColorMap} tailwindFuchsia - The Tailwind fuchsia palette
|
|
1888
|
-
/// @prop {ColorMap} tailwindPink - The Tailwind pink palette
|
|
1889
|
-
/// @prop {ColorMap} tailwindRose - The Tailwind rose palette
|
|
1890
|
-
///
|
|
1954
|
+
/// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
|
|
1891
1955
|
/// @group color-system
|
|
1892
|
-
$kendo-
|
|
1956
|
+
$kendo-color-inverse: if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark ) !default;
|
|
1893
1957
|
|
|
1894
|
-
// Kendo
|
|
1895
|
-
neutral: (
|
|
1896
|
-
0: #ffffff,
|
|
1897
|
-
50: #f8f8f8,
|
|
1898
|
-
100: #ededed,
|
|
1899
|
-
200: #d6d6d6,
|
|
1900
|
-
300: #b7b7b7,
|
|
1901
|
-
400: #949494,
|
|
1902
|
-
500: #767676,
|
|
1903
|
-
600: #5f5f5f,
|
|
1904
|
-
700: #494949,
|
|
1905
|
-
800: #373737,
|
|
1906
|
-
900: #282828,
|
|
1907
|
-
1000: #000000
|
|
1908
|
-
),
|
|
1909
|
-
marsala: (
|
|
1910
|
-
0: #ffffff,
|
|
1911
|
-
50: #faf0f2,
|
|
1912
|
-
100: #f3dde0,
|
|
1913
|
-
200: #e197a3,
|
|
1914
|
-
300: #c54e69,
|
|
1915
|
-
400: #8b3548,
|
|
1916
|
-
500: #622331,
|
|
1917
|
-
600: #551d2a,
|
|
1918
|
-
700: #441620,
|
|
1919
|
-
800: #340f17,
|
|
1920
|
-
900: #23080e,
|
|
1921
|
-
1000: #000000
|
|
1922
|
-
),
|
|
1923
1958
|
|
|
1959
|
+
$kendo-theme-colors: (
|
|
1960
|
+
"primary": $kendo-color-primary,
|
|
1961
|
+
"secondary": $kendo-color-secondary,
|
|
1962
|
+
"tertiary": $kendo-color-tertiary,
|
|
1963
|
+
"info": $kendo-color-info,
|
|
1964
|
+
"success": $kendo-color-success,
|
|
1965
|
+
"warning": $kendo-color-warning,
|
|
1966
|
+
"error": $kendo-color-error,
|
|
1967
|
+
"dark": $kendo-color-dark,
|
|
1968
|
+
"light": $kendo-color-light,
|
|
1969
|
+
"inverse": $kendo-color-inverse
|
|
1970
|
+
) !default;
|
|
1924
1971
|
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1972
|
+
|
|
1973
|
+
// Typography
|
|
1974
|
+
|
|
1975
|
+
/// Base font size across all components.
|
|
1976
|
+
/// @group typography
|
|
1977
|
+
$kendo-font-size: 14px !default;
|
|
1978
|
+
/// Extra small font size across all components.
|
|
1979
|
+
/// @group typography
|
|
1980
|
+
$kendo-font-size-xs: 10px !default;
|
|
1981
|
+
/// Small font size across all components.
|
|
1982
|
+
/// @group typography
|
|
1983
|
+
$kendo-font-size-sm: 12px !default;
|
|
1984
|
+
/// Medium font size across all components.
|
|
1985
|
+
/// @group typography
|
|
1986
|
+
$kendo-font-size-md: $kendo-font-size !default;
|
|
1987
|
+
/// Large font size across all components.
|
|
1988
|
+
/// @group typography
|
|
1989
|
+
$kendo-font-size-lg: 16px !default;
|
|
1990
|
+
/// Extra large font size across all components.
|
|
1991
|
+
/// @group typography
|
|
1992
|
+
$kendo-font-size-xl: 20px !default;
|
|
1993
|
+
|
|
1994
|
+
$kendo-font-sizes: (
|
|
1995
|
+
xs: $kendo-font-size-xs,
|
|
1996
|
+
sm: $kendo-font-size-sm,
|
|
1997
|
+
md: $kendo-font-size-md,
|
|
1998
|
+
lg: $kendo-font-size-lg,
|
|
1999
|
+
xl: $kendo-font-size-xl
|
|
2000
|
+
) !default;
|
|
2001
|
+
|
|
2002
|
+
/// Font family for text.
|
|
2003
|
+
/// @group typography
|
|
2004
|
+
$kendo-font-family-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
|
|
2005
|
+
|
|
2006
|
+
/// Font family for monospaced text. Used for styling the code.
|
|
2007
|
+
/// @group typography
|
|
2008
|
+
$kendo-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono", "Ubuntu Mono", "Lucida Console", "Courier New", monospace !default;
|
|
2009
|
+
|
|
2010
|
+
/// Font family across all components.
|
|
2011
|
+
/// @group typography
|
|
2012
|
+
$kendo-font-family: inherit !default;
|
|
2013
|
+
|
|
2014
|
+
/// Line height used along with $kendo-font-size.
|
|
2015
|
+
/// @group typography
|
|
2016
|
+
$kendo-line-height: k-math-div( 20, 14 ) !default;
|
|
2017
|
+
/// Extra small line height used along with $kendo-font-size-xs.
|
|
2018
|
+
/// @group typography
|
|
2019
|
+
$kendo-line-height-xs: 1 !default;
|
|
2020
|
+
/// Small line height used along with $kendo-font-size-sm.
|
|
2021
|
+
/// @group typography
|
|
2022
|
+
$kendo-line-height-sm: 1.25 !default;
|
|
2023
|
+
/// Medium line height used along with $kendo-font-size-md.
|
|
2024
|
+
/// @group typography
|
|
2025
|
+
$kendo-line-height-md: $kendo-line-height !default;
|
|
2026
|
+
/// Large line height used along with $kendo-font-size-lg.
|
|
2027
|
+
/// @group typography
|
|
2028
|
+
$kendo-line-height-lg: 1.5 !default;
|
|
2029
|
+
$kendo-line-height-em: calc( #{$kendo-line-height} * 1em ) !default;
|
|
2030
|
+
|
|
2031
|
+
/// Light font weight.
|
|
2032
|
+
/// @group typography
|
|
2033
|
+
$kendo-font-weight-light: 300 !default;
|
|
2034
|
+
/// Normal font weight.
|
|
2035
|
+
/// @group typography
|
|
2036
|
+
$kendo-font-weight-normal: 400 !default;
|
|
2037
|
+
/// Medium font weight.
|
|
2038
|
+
/// @group typography
|
|
2039
|
+
$kendo-font-weight-medium: 500 !default;
|
|
2040
|
+
/// Semibold font weight.
|
|
2041
|
+
/// @group typography
|
|
2042
|
+
$kendo-font-weight-semibold: 600 !default;
|
|
2043
|
+
/// Bold font weight.
|
|
2044
|
+
/// @group typography
|
|
2045
|
+
$kendo-font-weight-bold: 700 !default;
|
|
2046
|
+
|
|
2047
|
+
/// Letter spacing.
|
|
2048
|
+
/// @group typography
|
|
2049
|
+
$kendo-letter-spacing: null !default;
|
|
2050
|
+
|
|
2051
|
+
|
|
2052
|
+
// Generic styles
|
|
2053
|
+
|
|
2054
|
+
/// Background color of the body.
|
|
2055
|
+
/// @group common
|
|
2056
|
+
$kendo-body-bg: $kendo-color-white !default;
|
|
2057
|
+
/// Text color of the body.
|
|
2058
|
+
/// @group common
|
|
2059
|
+
$kendo-body-text: #424242 !default;
|
|
2060
|
+
|
|
2061
|
+
/// Subtle text color.
|
|
2062
|
+
/// @group common
|
|
2063
|
+
$kendo-subtle-text: #666666 !default;
|
|
2064
|
+
|
|
2065
|
+
$kendo-app-bg: k-try-shade( $kendo-body-bg, .25 ) !default;
|
|
2066
|
+
$kendo-app-text: $kendo-body-text !default;
|
|
2067
|
+
$kendo-app-border: rgba( $kendo-color-black, .08 ) !default;
|
|
2068
|
+
|
|
2069
|
+
// Link
|
|
2070
|
+
/// Text color of the links.
|
|
2071
|
+
/// @group common
|
|
2072
|
+
$kendo-link-text: $kendo-color-primary !default;
|
|
2073
|
+
/// Text color of the links on hover.
|
|
2074
|
+
/// @group common
|
|
2075
|
+
$kendo-link-hover-text: $kendo-color-primary-darker !default;
|
|
2076
|
+
|
|
2077
|
+
|
|
2078
|
+
// Components
|
|
2079
|
+
|
|
2080
|
+
// Component
|
|
2081
|
+
/// Background color of a component.
|
|
2082
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.
|
|
2083
|
+
/// @group component
|
|
2084
|
+
$kendo-component-bg: $kendo-body-bg !default;
|
|
2085
|
+
/// Text color of a component.
|
|
2086
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.
|
|
2087
|
+
/// @group component
|
|
2088
|
+
$kendo-component-text: $kendo-body-text !default;
|
|
2089
|
+
/// Border color of a component.
|
|
2090
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.
|
|
2091
|
+
/// @group component
|
|
2092
|
+
$kendo-component-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
|
|
2093
|
+
|
|
2094
|
+
|
|
2095
|
+
/// The background of the components' chrome area.
|
|
2096
|
+
$kendo-base-bg: #fafafa !default;
|
|
2097
|
+
/// The text color of the components' chrome area.
|
|
2098
|
+
$kendo-base-text: $kendo-body-text !default;
|
|
2099
|
+
/// The border color of the components' chrome area.
|
|
2100
|
+
$kendo-base-border: rgba( black, .08 ) !default;
|
|
2101
|
+
/// The gradient background of the components' chrome area.
|
|
2102
|
+
$kendo-base-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
|
|
2103
|
+
|
|
2104
|
+
/// The background of hovered items.
|
|
2105
|
+
$kendo-hover-bg: k-try-shade( $kendo-base-bg, .5 ) !default;
|
|
2106
|
+
/// The text color of hovered items.
|
|
2107
|
+
$kendo-hover-text: $kendo-base-text !default;
|
|
2108
|
+
/// The border color of hovered items.
|
|
2109
|
+
$kendo-hover-border: $kendo-base-border !default;
|
|
2110
|
+
/// The gradient background of hovered items.
|
|
2111
|
+
$kendo-hover-gradient: $kendo-base-gradient !default;
|
|
2112
|
+
|
|
2113
|
+
/// The background of selected items.
|
|
2114
|
+
$kendo-selected-bg: $kendo-color-primary !default;
|
|
2115
|
+
/// The text color of selected items.
|
|
2116
|
+
$kendo-selected-text: k-contrast-legacy( $kendo-selected-bg ) !default;
|
|
2117
|
+
/// The border color of selected items.
|
|
2118
|
+
$kendo-selected-border: $kendo-base-border !default;
|
|
2119
|
+
/// The gradient background of selected items.
|
|
2120
|
+
$kendo-selected-gradient: $kendo-base-gradient !default;
|
|
2121
|
+
|
|
2122
|
+
/// The background of selected and hovered items.
|
|
2123
|
+
$kendo-selected-hover-bg: k-try-shade( $kendo-selected-bg, .5 ) !default;
|
|
2124
|
+
/// The text color of selected and hovered items.
|
|
2125
|
+
$kendo-selected-hover-text: $kendo-selected-text !default;
|
|
2126
|
+
/// The border of selected and hovered items.
|
|
2127
|
+
$kendo-selected-hover-border: $kendo-base-border !default;
|
|
2128
|
+
/// The gradient of selected and hovered items.
|
|
2129
|
+
$kendo-selected-hover-gradient: $kendo-base-gradient !default;
|
|
2130
|
+
|
|
2131
|
+
// TODO: refactor
|
|
2132
|
+
/// Box shadow of focused items.
|
|
2133
|
+
$kendo-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
2134
|
+
|
|
2135
|
+
/// Transition used across all components.
|
|
2136
|
+
$kendo-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out !default;
|
|
2137
|
+
|
|
2138
|
+
|
|
2139
|
+
/// Text color of disabled items.
|
|
2140
|
+
$kendo-disabled-text: #8f8f8f !default;
|
|
2141
|
+
/// Filter used for disabled items.
|
|
2142
|
+
$kendo-disabled-filter: grayscale(.1) !default;
|
|
2143
|
+
/// Opacity used for disabled items.
|
|
2144
|
+
$kendo-disabled-opacity: .6 !default;
|
|
2145
|
+
|
|
2146
|
+
$kendo-disabled-styling: (
|
|
2147
|
+
opacity: $kendo-disabled-opacity,
|
|
2148
|
+
filter: $kendo-disabled-filter
|
|
2149
|
+
) !default;
|
|
2150
|
+
|
|
2151
|
+
|
|
2152
|
+
// Generic styles
|
|
2153
|
+
|
|
2154
|
+
/// Background color of the component header.
|
|
2155
|
+
/// @group component
|
|
2156
|
+
$kendo-component-header-bg: $kendo-base-bg !default;
|
|
2157
|
+
/// Text color of the component header.
|
|
2158
|
+
/// @group component
|
|
2159
|
+
$kendo-component-header-text: $kendo-base-text !default;
|
|
2160
|
+
/// Border color of the component header.
|
|
2161
|
+
/// @group component
|
|
2162
|
+
$kendo-component-header-border: $kendo-base-border !default;
|
|
2163
|
+
/// Gradient of the component header.
|
|
2164
|
+
/// @group component
|
|
2165
|
+
$kendo-component-header-gradient: null !default;
|
|
2166
|
+
|
|
2167
|
+
|
|
2168
|
+
/// Background color of the invalid items.
|
|
2169
|
+
/// @group component
|
|
2170
|
+
$kendo-invalid-bg: null !default;
|
|
2171
|
+
/// Text color of the invalid items.
|
|
2172
|
+
/// @group component
|
|
2173
|
+
$kendo-invalid-text: $kendo-color-error !default;
|
|
2174
|
+
/// Border color of the invalid items.
|
|
2175
|
+
/// @group component
|
|
2176
|
+
$kendo-invalid-border: $kendo-color-error !default;
|
|
2177
|
+
/// Shadow of the invalid items.
|
|
2178
|
+
/// @group component
|
|
2179
|
+
$kendo-invalid-shadow: null !default;
|
|
2180
|
+
|
|
2181
|
+
// Loading
|
|
2182
|
+
$kendo-loading-opacity: .3 !default;
|
|
2183
|
+
$kendo-zindex-loading: 100 !default;
|
|
2184
|
+
// #endregion
|
|
2185
|
+
|
|
2186
|
+
// #region @import "@progress/kendo-theme-core/scss/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/index.import.scss
|
|
2187
|
+
// #region @import "./functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
2188
|
+
// File already imported_once. Skipping output.
|
|
2189
|
+
// #endregion
|
|
2190
|
+
// #region @import "./color-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/index.import.scss
|
|
2191
|
+
// #region @import "./_functions.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_functions.import.scss
|
|
2192
|
+
// #region @import "./_palettes.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_palettes.scss
|
|
2193
|
+
/// Color palettes to be used in the Kendo UI themes.
|
|
2194
|
+
/// @access private
|
|
2195
|
+
/// @type Record<String, ColorMap>
|
|
2196
|
+
/// @prop {ColorMap} neutral - The neutral palette
|
|
2197
|
+
/// @prop {ColorMap} marsala - The marsala palette
|
|
2198
|
+
/// @prop {ColorMap} bootstrapGray - The Bootstrap gray palette
|
|
2199
|
+
/// @prop {ColorMap} bootstrapBlue - The Bootstrap blue palette
|
|
2200
|
+
/// @prop {ColorMap} bootstrapIndigo - The Bootstrap indigo palette
|
|
2201
|
+
/// @prop {ColorMap} bootstrapPurple - The Bootstrap purple palette
|
|
2202
|
+
/// @prop {ColorMap} bootstrapPink - The Bootstrap pink palette
|
|
2203
|
+
/// @prop {ColorMap} bootstrapRed - The Bootstrap red palette
|
|
2204
|
+
/// @prop {ColorMap} bootstrapOrange - The Bootstrap orange palette
|
|
2205
|
+
/// @prop {ColorMap} bootstrapYellow - The Bootstrap yellow palette
|
|
2206
|
+
/// @prop {ColorMap} bootstrapGreen - The Bootstrap green palette
|
|
2207
|
+
/// @prop {ColorMap} bootstrapTeal - The Bootstrap teal palette
|
|
2208
|
+
/// @prop {ColorMap} bootstrapCyan - The Bootstrap cyan palette
|
|
2209
|
+
/// @prop {ColorMap} fluentNeutral - The Fluent neutral palette
|
|
2210
|
+
/// @prop {ColorMap} materialGray - The Material gray palette
|
|
2211
|
+
/// @prop {ColorMap} materialBlueGray - The Material blue gray palette
|
|
2212
|
+
/// @prop {ColorMap} materialRed - The Material red palette
|
|
2213
|
+
/// @prop {ColorMap} materialPink - The Material pink palette
|
|
2214
|
+
/// @prop {ColorMap} materialPurple - The Material purple palette
|
|
2215
|
+
/// @prop {ColorMap} materialDeepPurple - The Material deep purple palette
|
|
2216
|
+
/// @prop {ColorMap} materialIndigo - The Material indigo palette
|
|
2217
|
+
/// @prop {ColorMap} materialBlue - The Material blue palette
|
|
2218
|
+
/// @prop {ColorMap} materialLightBlue - The Material light blue palette
|
|
2219
|
+
/// @prop {ColorMap} materialCyan - The Material cyan palette
|
|
2220
|
+
/// @prop {ColorMap} materialTeal - The Material teal palette
|
|
2221
|
+
/// @prop {ColorMap} materialGreen - The Material green palette
|
|
2222
|
+
/// @prop {ColorMap} materialLightGreen - The Material light green palette
|
|
2223
|
+
/// @prop {ColorMap} materialLime - The Material lime palette
|
|
2224
|
+
/// @prop {ColorMap} materialYellow - The Material yellow palette
|
|
2225
|
+
/// @prop {ColorMap} materialAmber - The Material amber palette
|
|
2226
|
+
/// @prop {ColorMap} materialOrange - The Material orange palette
|
|
2227
|
+
/// @prop {ColorMap} materialDeepOrange - The Material deep orange palette
|
|
2228
|
+
/// @prop {ColorMap} materialBrown - The Material brown palette
|
|
2229
|
+
/// @prop {ColorMap} primerGray - The Primer gray palette
|
|
2230
|
+
/// @prop {ColorMap} primerBlue - The Primer blue palette
|
|
2231
|
+
/// @prop {ColorMap} primerGreen - The Primer green palette
|
|
2232
|
+
/// @prop {ColorMap} primerYellow - The Primer yellow palette
|
|
2233
|
+
/// @prop {ColorMap} primerOrange - The Primer orange palette
|
|
2234
|
+
/// @prop {ColorMap} primerRed - The Primer red palette
|
|
2235
|
+
/// @prop {ColorMap} primerPurple - The Primer purple palette
|
|
2236
|
+
/// @prop {ColorMap} primerPink - The Primer pink palette
|
|
2237
|
+
/// @prop {ColorMap} primerCoral - The Primer coral palette
|
|
2238
|
+
/// @prop {ColorMap} tailwindNeutral - The Tailwind neutral palette
|
|
2239
|
+
/// @prop {ColorMap} tailwindSlate - The Tailwind slate palette
|
|
2240
|
+
/// @prop {ColorMap} tailwindGray - The Tailwind gray palette
|
|
2241
|
+
/// @prop {ColorMap} tailwindZinc - The Tailwind zinc palette
|
|
2242
|
+
/// @prop {ColorMap} tailwindStone - The Tailwind stone palette
|
|
2243
|
+
/// @prop {ColorMap} tailwindRed - The Tailwind red palette
|
|
2244
|
+
/// @prop {ColorMap} tailwindOrange - The Tailwind orange palette
|
|
2245
|
+
/// @prop {ColorMap} tailwindAmber - The Tailwind amber palette
|
|
2246
|
+
/// @prop {ColorMap} tailwindYellow - The Tailwind yellow palette
|
|
2247
|
+
/// @prop {ColorMap} tailwindLime - The Tailwind lime palette
|
|
2248
|
+
/// @prop {ColorMap} tailwindGreen - The Tailwind green palette
|
|
2249
|
+
/// @prop {ColorMap} tailwindEmerald - The Tailwind emerald palette
|
|
2250
|
+
/// @prop {ColorMap} tailwindTeal - The Tailwind teal palette
|
|
2251
|
+
/// @prop {ColorMap} tailwindCyan - The Tailwind cyan palette
|
|
2252
|
+
/// @prop {ColorMap} tailwindSky - The Tailwind sky palette
|
|
2253
|
+
/// @prop {ColorMap} tailwindBlue - The Tailwind blue palette
|
|
2254
|
+
/// @prop {ColorMap} tailwindIndigo - The Tailwind indigo palette
|
|
2255
|
+
/// @prop {ColorMap} tailwindViolet - The Tailwind violet palette
|
|
2256
|
+
/// @prop {ColorMap} tailwindPurple - The Tailwind purple palette
|
|
2257
|
+
/// @prop {ColorMap} tailwindFuchsia - The Tailwind fuchsia palette
|
|
2258
|
+
/// @prop {ColorMap} tailwindPink - The Tailwind pink palette
|
|
2259
|
+
/// @prop {ColorMap} tailwindRose - The Tailwind rose palette
|
|
2260
|
+
///
|
|
2261
|
+
/// @group color-system
|
|
2262
|
+
$kendo-palettes: (
|
|
2263
|
+
|
|
2264
|
+
// Kendo
|
|
2265
|
+
neutral: (
|
|
2266
|
+
0: #ffffff,
|
|
2267
|
+
50: #f8f8f8,
|
|
2268
|
+
100: #ededed,
|
|
2269
|
+
200: #d6d6d6,
|
|
2270
|
+
300: #b7b7b7,
|
|
2271
|
+
400: #949494,
|
|
2272
|
+
500: #767676,
|
|
2273
|
+
600: #5f5f5f,
|
|
2274
|
+
700: #494949,
|
|
2275
|
+
800: #373737,
|
|
2276
|
+
900: #282828,
|
|
2277
|
+
1000: #000000
|
|
2278
|
+
),
|
|
2279
|
+
marsala: (
|
|
2280
|
+
0: #ffffff,
|
|
2281
|
+
50: #faf0f2,
|
|
2282
|
+
100: #f3dde0,
|
|
2283
|
+
200: #e197a3,
|
|
2284
|
+
300: #c54e69,
|
|
2285
|
+
400: #8b3548,
|
|
2286
|
+
500: #622331,
|
|
2287
|
+
600: #551d2a,
|
|
2288
|
+
700: #441620,
|
|
2289
|
+
800: #340f17,
|
|
2290
|
+
900: #23080e,
|
|
2291
|
+
1000: #000000
|
|
2292
|
+
),
|
|
2293
|
+
|
|
2294
|
+
|
|
2295
|
+
// Bootstrap
|
|
2296
|
+
bootstrapGray: (
|
|
2297
|
+
0: #ffffff,
|
|
2298
|
+
100: #f8f9fa,
|
|
2299
|
+
200: #e9ecef,
|
|
2300
|
+
300: #dee2e6,
|
|
2301
|
+
400: #ced4da,
|
|
2302
|
+
500: #adb5bd,
|
|
2303
|
+
600: #6c757d,
|
|
2304
|
+
700: #495057,
|
|
2305
|
+
800: #343a40,
|
|
2306
|
+
900: #212529,
|
|
2307
|
+
1000: #000000
|
|
2308
|
+
),
|
|
2309
|
+
bootstrapBlue: (
|
|
2310
|
+
0: #ffffff,
|
|
2311
|
+
100: #cfe2ff,
|
|
2312
|
+
200: #9ec5fe,
|
|
2313
|
+
300: #6ea8fe,
|
|
2314
|
+
400: #3d8bfd,
|
|
2315
|
+
500: #0d6efd,
|
|
2316
|
+
600: #0a58ca,
|
|
2317
|
+
700: #084298,
|
|
2318
|
+
800: #052c65,
|
|
2319
|
+
900: #031633,
|
|
2320
|
+
1000: #000000
|
|
2321
|
+
),
|
|
2322
|
+
bootstrapIndigo: (
|
|
2323
|
+
0: #ffffff,
|
|
2324
|
+
100: #e0cffc,
|
|
2325
|
+
200: #c29ffa,
|
|
2326
|
+
300: #a370f7,
|
|
2327
|
+
400: #8540f5,
|
|
2328
|
+
500: #6610f2,
|
|
2329
|
+
600: #520dc2,
|
|
2330
|
+
700: #3d0a91,
|
|
2331
|
+
800: #290661,
|
|
2332
|
+
900: #140330,
|
|
2333
|
+
1000: #000000
|
|
2334
|
+
),
|
|
2335
|
+
bootstrapPurple: (
|
|
2336
|
+
0: #ffffff,
|
|
2337
|
+
100: #e2d9f3,
|
|
2338
|
+
200: #c5b3e6,
|
|
2339
|
+
300: #a98eda,
|
|
2340
|
+
400: #8c68cd,
|
|
2341
|
+
500: #6f42c1,
|
|
2342
|
+
600: #59359a,
|
|
2343
|
+
700: #432874,
|
|
2344
|
+
800: #2c1a4d,
|
|
2345
|
+
900: #160d27,
|
|
2346
|
+
1000: #000000
|
|
2347
|
+
),
|
|
2348
|
+
bootstrapPink: (
|
|
2349
|
+
0: #ffffff,
|
|
2350
|
+
100: #f7d6e6,
|
|
2351
|
+
200: #efadce,
|
|
2352
|
+
300: #e685b5,
|
|
2353
|
+
400: #de5c9d,
|
|
2354
|
+
500: #d63384,
|
|
2355
|
+
600: #ab296a,
|
|
2356
|
+
700: #801f4f,
|
|
2357
|
+
800: #561435,
|
|
1988
2358
|
900: #2b0a1a,
|
|
1989
2359
|
1000: #000000
|
|
1990
2360
|
),
|
|
@@ -2807,13 +3177,380 @@ $kendo-palettes: (
|
|
|
2807
3177
|
|
|
2808
3178
|
// #endregion
|
|
2809
3179
|
|
|
3180
|
+
@function k-generate-theme-variant( $variant, $matrix, $src-palette-name ) {
|
|
3181
|
+
$result: ();
|
|
3182
|
+
|
|
3183
|
+
@each $ui-state, $indices in $matrix {
|
|
3184
|
+
$prefix: if( $ui-state == DEFAULT, "", "#{$ui-state}-" );
|
|
3185
|
+
$indices-count: k-list-length( $indices );
|
|
3186
|
+
|
|
3187
|
+
$bg-prop: k-list-nth( $indices, 1 );
|
|
3188
|
+
$text-prop: k-list-nth( $indices, 2 );
|
|
3189
|
+
$border-prop: k-list-nth( $indices, 3 );
|
|
3190
|
+
$gradient-prop: if( $indices-count > 3, k-list-nth( $indices, 4 ), null );
|
|
3191
|
+
$shadow-prop: if( $indices-count > 4, k-list-nth( $indices, 5 ), null );
|
|
3192
|
+
$outline-prop: if( $indices-count > 5, k-list-nth( $indices, 6 ), null );
|
|
3193
|
+
|
|
3194
|
+
// Take value from the palette only if it is a number
|
|
3195
|
+
$bg: if( k-meta-type-of( $bg-prop ) == number, k-get-theme-color( $src-palette-name, $bg-prop ), $bg-prop );
|
|
3196
|
+
$text: if( k-meta-type-of( $text-prop ) == number, k-get-theme-color( $src-palette-name, $text-prop ), $text-prop );
|
|
3197
|
+
$border: if( k-meta-type-of( $border-prop ) == number, k-get-theme-color( $src-palette-name, $border-prop ), $border-prop );
|
|
3198
|
+
$gradient: $gradient-prop;
|
|
3199
|
+
$shadow: $shadow-prop;
|
|
3200
|
+
$outline: $outline-prop;
|
|
3201
|
+
|
|
3202
|
+
$result: k-map-merge($result, (
|
|
3203
|
+
#{$prefix}bg: $bg,
|
|
3204
|
+
#{$prefix}text: $text,
|
|
3205
|
+
#{$prefix}border: $border,
|
|
3206
|
+
#{$prefix}gradient: $gradient,
|
|
3207
|
+
#{$prefix}shadow: $shadow,
|
|
3208
|
+
#{$prefix}outline: $outline
|
|
3209
|
+
));
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
$result: (
|
|
3213
|
+
#{$variant}: $result
|
|
3214
|
+
);
|
|
3215
|
+
|
|
3216
|
+
@return $result;
|
|
3217
|
+
|
|
3218
|
+
};
|
|
3219
|
+
|
|
3220
|
+
|
|
3221
|
+
@function k-process-variant-matrices( $theme-matrix, $palette-matrix: () ) {
|
|
3222
|
+
$result: ();
|
|
3223
|
+
|
|
3224
|
+
// @debug $theme-matrix;
|
|
3225
|
+
// @debug $palette-matrix;
|
|
3226
|
+
|
|
3227
|
+
@each $variant, $definition in $theme-matrix {
|
|
3228
|
+
$tc-index: k-string-index( $variant, "THEME_COLOR" );
|
|
3229
|
+
$src-palette-name: k-map-get( $definition, PALETTE );
|
|
3230
|
+
$matrix: k-map-remove( $definition, PALETTE );
|
|
3231
|
+
|
|
3232
|
+
@if ($tc-index == null ) { // stylelint-disable-line
|
|
3233
|
+
$tmp-result: k-generate-theme-variant( $variant, $matrix, $src-palette-name );
|
|
3234
|
+
$result: k-map-merge( $result, $tmp-result);
|
|
3235
|
+
} @else {
|
|
3236
|
+
@each $color, $palette in $palette-matrix {
|
|
3237
|
+
$variant-name: k-string-replace( $variant, THEME_COLOR, $color);
|
|
3238
|
+
$palette-name: k-string-unquote($src-palette-name + "");
|
|
3239
|
+
|
|
3240
|
+
@if ($palette-name == THEME_COLOR) {
|
|
3241
|
+
$palette-name: k-string-replace( $palette-name, THEME_COLOR, $color );
|
|
3242
|
+
$palette-name: k-map-get( $palette-matrix, $palette-name );
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3245
|
+
$tmp-result: k-generate-theme-variant( $variant-name, $matrix, $palette-name );
|
|
3246
|
+
$result: k-map-merge( $result, $tmp-result );
|
|
3247
|
+
}
|
|
3248
|
+
}
|
|
3249
|
+
}
|
|
3250
|
+
|
|
3251
|
+
@return $result;
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3254
|
+
|
|
3255
|
+
@function k-get-theme-palette( $name ) {
|
|
3256
|
+
@return k-map-get( $kendo-palettes, $name );
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
@function k-get-theme-color( $palette, $hue ) {
|
|
3260
|
+
@if ( k-meta-type-of( $palette ) == "map" ) {
|
|
3261
|
+
@return k-map-get( $palette, $hue );
|
|
3262
|
+
}
|
|
3263
|
+
|
|
3264
|
+
@return k-map-get( k-get-theme-palette( $palette ), $hue );
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
@function k-get-theme-color-var( $name, $fallback: "inherit", $prefix: "kendo-" ) {
|
|
3268
|
+
@return var( --#{$prefix}#{$name}, #{$fallback} );
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
@function k-generate-theme-variation( $theme-color, $source-palette-name, $mapping ) {
|
|
3272
|
+
$temp: ( );
|
|
3273
|
+
|
|
3274
|
+
@each $ui-state, $indices in $mapping {
|
|
3275
|
+
$prefix: if( $ui-state == normal, '', '#{$ui-state}-' );
|
|
3276
|
+
|
|
3277
|
+
$bg-prop: k-list-nth($indices, 1);
|
|
3278
|
+
$text-prop: k-list-nth($indices, 2);
|
|
3279
|
+
$border-prop: k-list-nth($indices, 3);
|
|
3280
|
+
|
|
3281
|
+
// Take value from the palette only if it is a number
|
|
3282
|
+
$bg: if( k-meta-type-of($bg-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$bg-prop} ), $bg-prop );
|
|
3283
|
+
$text: if( k-meta-type-of($text-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$text-prop} ), $text-prop );
|
|
3284
|
+
$border: if( k-meta-type-of($border-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$border-prop} ), $border-prop );
|
|
3285
|
+
|
|
3286
|
+
|
|
3287
|
+
$temp: k-map-deep-merge( $temp, (
|
|
3288
|
+
#{$prefix}bg: $bg,
|
|
3289
|
+
#{$prefix}text: $text,
|
|
3290
|
+
#{$prefix}border: $border
|
|
3291
|
+
));
|
|
3292
|
+
|
|
3293
|
+
// Add outline if provided in the map
|
|
3294
|
+
@if ( k-list-length($indices) > 3 ) {
|
|
3295
|
+
$outline-prop: k-list-nth($indices, 4);
|
|
3296
|
+
$outline: if( k-meta-type-of($outline-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$outline-prop} ), $outline-prop );
|
|
3297
|
+
|
|
3298
|
+
$temp: k-map-deep-merge( $temp, (
|
|
3299
|
+
#{$prefix}outline: $outline
|
|
3300
|
+
));
|
|
3301
|
+
}
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3304
|
+
$map: (
|
|
3305
|
+
#{$theme-color}: $temp
|
|
3306
|
+
);
|
|
3307
|
+
|
|
3308
|
+
@return $map;
|
|
3309
|
+
|
|
3310
|
+
};
|
|
3311
|
+
|
|
3312
|
+
@function k-generate-fill-mode-theme-variation( $fill-mode, $theme-color, $source-palette-name, $mapping ) {
|
|
3313
|
+
|
|
3314
|
+
$map: k-generate-theme-variation( $theme-color, $source-palette-name, $mapping );
|
|
3315
|
+
|
|
3316
|
+
$result: (
|
|
3317
|
+
#{$fill-mode}: $map
|
|
3318
|
+
);
|
|
3319
|
+
|
|
3320
|
+
@return $result;
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3323
|
+
// #endregion
|
|
3324
|
+
// #region @import "./_mixins.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_mixins.import.scss
|
|
3325
|
+
@mixin k-css-vars($map) {
|
|
3326
|
+
@each $group, $values in $map {
|
|
3327
|
+
@each $key, $value in $values {
|
|
3328
|
+
--kendo-#{k-meta-inspect($group)}-#{$key}: #{$value};
|
|
3329
|
+
}
|
|
3330
|
+
}
|
|
3331
|
+
}
|
|
3332
|
+
|
|
2810
3333
|
// #endregion
|
|
3334
|
+
// #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_variables.scss
|
|
3335
|
+
// Color constants
|
|
3336
|
+
|
|
3337
|
+
/// The color white.
|
|
3338
|
+
/// Note: you cannot change this value.
|
|
3339
|
+
/// @type Color
|
|
3340
|
+
/// @group color-system
|
|
3341
|
+
$kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
|
|
3342
|
+
|
|
3343
|
+
/// The color black.
|
|
3344
|
+
/// Note: you cannot change this value.
|
|
3345
|
+
/// @type Color
|
|
3346
|
+
/// @group color-system
|
|
3347
|
+
$kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
|
|
3348
|
+
|
|
3349
|
+
/// The color transparent.
|
|
3350
|
+
/// Note: you cannot change this value.
|
|
3351
|
+
/// @type Color
|
|
3352
|
+
/// @group color-system
|
|
3353
|
+
$kendo-color-rgba-transparent: rgba( 0, 0, 0, 0 ); // stylelint-disable-line scss/dollar-variable-default
|
|
3354
|
+
|
|
3355
|
+
/// A gradient that goes from transparent to black.
|
|
3356
|
+
/// Note: you cannot change this value.
|
|
3357
|
+
/// @type Gradient
|
|
3358
|
+
/// @group color-system
|
|
3359
|
+
$kendo-gradient-transparent-to-black: rgba( black, 0 ), black; // stylelint-disable-line scss/dollar-variable-default
|
|
3360
|
+
|
|
3361
|
+
/// A gradient that goes from transparent to white.
|
|
3362
|
+
/// Note: you cannot change this value.
|
|
3363
|
+
/// @type Gradient
|
|
3364
|
+
/// @group color-system
|
|
3365
|
+
$kendo-gradient-transparent-to-white: rgba( white, 0 ), white; // stylelint-disable-line scss/dollar-variable-default
|
|
3366
|
+
|
|
3367
|
+
/// A gradient that goes from black to transparent.
|
|
3368
|
+
/// Note: you cannot change this value.
|
|
3369
|
+
/// @type Gradient
|
|
3370
|
+
/// @group color-system
|
|
3371
|
+
$kendo-gradient-black-to-transparent: black, rgba( black, 0 ); // stylelint-disable-line scss/dollar-variable-default
|
|
3372
|
+
|
|
3373
|
+
/// A gradient that goes from white to transparent.
|
|
3374
|
+
/// Note: you cannot change this value.
|
|
3375
|
+
/// @type Gradient
|
|
3376
|
+
/// @group color-system
|
|
3377
|
+
$kendo-gradient-white-to-transparent: white, rgba( white, 0 ); // stylelint-disable-line scss/dollar-variable-default
|
|
3378
|
+
|
|
3379
|
+
/// A gradient that cycles through the colors of the rainbow.
|
|
3380
|
+
/// Note: you cannot change this value.
|
|
3381
|
+
/// @type Gradient
|
|
3382
|
+
/// @group color-system
|
|
3383
|
+
$kendo-gradient-rainbow: #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000; // stylelint-disable-line scss/dollar-variable-default
|
|
3384
|
+
|
|
3385
|
+
|
|
3386
|
+
// Root styles
|
|
3387
|
+
$kendo-body-bg: $kendo-color-white !default;
|
|
3388
|
+
$kendo-body-text: k-get-theme-color-var( neutral-160 ) !default;
|
|
3389
|
+
|
|
3390
|
+
// Component styles
|
|
3391
|
+
$kendo-component-bg: $kendo-body-bg !default;
|
|
3392
|
+
$kendo-component-text: $kendo-body-text !default;
|
|
3393
|
+
$kendo-component-border: k-get-theme-color-var( neutral-30 ) !default;
|
|
3394
|
+
|
|
3395
|
+
// States styles
|
|
3396
|
+
$kendo-hover-bg: k-get-theme-color-var( neutral-20 ) !default;
|
|
3397
|
+
$kendo-hover-text: k-get-theme-color-var( neutral-190 ) !default;
|
|
3398
|
+
$kendo-hover-border: k-get-theme-color-var( neutral-20 ) !default;
|
|
3399
|
+
|
|
3400
|
+
$kendo-selected-bg: k-get-theme-color-var( neutral-30 ) !default;
|
|
3401
|
+
$kendo-selected-text: k-get-theme-color-var( neutral-160 ) !default;
|
|
3402
|
+
$kendo-selected-border: k-get-theme-color-var( neutral-130 ) !default;
|
|
3403
|
+
|
|
3404
|
+
$kendo-selected-hover-bg: k-get-theme-color-var( neutral-40 ) !default;
|
|
3405
|
+
$kendo-selected-hover-text: k-get-theme-color-var( neutral-190 ) !default;
|
|
3406
|
+
$kendo-selected-hover-border: k-get-theme-color-var( neutral-130 ) !default;
|
|
3407
|
+
|
|
3408
|
+
$kendo-focus-outline: k-get-theme-color-var( neutral-130 ) !default;
|
|
3409
|
+
|
|
3410
|
+
$kendo-subtle-text: k-get-theme-color-var( neutral-130 ) !default;
|
|
3411
|
+
|
|
3412
|
+
// Shadows
|
|
3413
|
+
|
|
3414
|
+
/// Shadow for cards and grid item thumbnails.
|
|
3415
|
+
/// Equivalent to fluent depth 4.
|
|
3416
|
+
$kendo-box-shadow-depth-1: 0 1.6px 3.6px rgba( $kendo-color-black, 0.132 ), 0 0.3px 0.9px rgba( $kendo-color-black, 0.108 ) !default;
|
|
3417
|
+
/// Shadow for command bars and dropdowns.
|
|
3418
|
+
/// Equivalent to fluent depth 8.
|
|
3419
|
+
$kendo-box-shadow-depth-2: 0 3.2px 7.2px rgba( $kendo-color-black, 0.132 ), 0 0.6px 1.8px rgba( $kendo-color-black, 0.108 ) !default;
|
|
3420
|
+
/// Shadow for teaching callouts and hover cards / tooltips.
|
|
3421
|
+
/// Equivalent to fluent depth 16.
|
|
3422
|
+
$kendo-box-shadow-depth-3: 0 6.4px 14.4px rgba( $kendo-color-black, 0.132 ), 0 1.2px 3.6px rgba( $kendo-color-black, 0.108 ) !default;
|
|
3423
|
+
/// Shadow for panels and pop up dialogs.
|
|
3424
|
+
/// Equivalent to fluent depth 64.
|
|
3425
|
+
$kendo-box-shadow-depth-4: 0 25.6px 57.6px rgba( $kendo-color-black, 0.22 ), 0 4.8px 14.4px rgba( $kendo-color-black, 0.18 ) !default;
|
|
3426
|
+
|
|
3427
|
+
// Link
|
|
3428
|
+
$kendo-link-text: k-get-theme-color-var( primary-100 ) !default;
|
|
3429
|
+
$kendo-link-hover-text: k-get-theme-color-var( primary-120 ) !default;
|
|
3430
|
+
|
|
3431
|
+
// Validator
|
|
3432
|
+
$kendo-invalid-bg: initial !default;
|
|
3433
|
+
$kendo-invalid-text: k-get-theme-color-var( error-190 ) !default;
|
|
3434
|
+
$kendo-invalid-border: k-get-theme-color-var( error-190 ) !default;
|
|
3435
|
+
$kendo-invalid-shadow: null !default;
|
|
3436
|
+
|
|
3437
|
+
// Disabled Styling
|
|
3438
|
+
$kendo-disabled-bg: k-get-theme-color-var( neutral-20 ) !default;
|
|
3439
|
+
$kendo-disabled-text: k-get-theme-color-var( neutral-90 ) !default;
|
|
3440
|
+
$kendo-disabled-border: transparent !default;
|
|
3441
|
+
|
|
3442
|
+
// Loading
|
|
3443
|
+
$kendo-loading-bg: $kendo-component-bg !default;
|
|
3444
|
+
$kendo-loading-text: currentColor !default;
|
|
3445
|
+
|
|
3446
|
+
|
|
3447
|
+
// Theme colors
|
|
3448
|
+
$kendo-theme-colors: (
|
|
3449
|
+
primary: (
|
|
3450
|
+
text: k-get-theme-color-var( primary-130 ),
|
|
3451
|
+
bg: k-get-theme-color-var( primary-20 ),
|
|
3452
|
+
border: k-get-theme-color-var( primary-20 )
|
|
3453
|
+
),
|
|
3454
|
+
info: (
|
|
3455
|
+
text: k-get-theme-color-var( info-190 ),
|
|
3456
|
+
bg: k-get-theme-color-var( info-20 ),
|
|
3457
|
+
border: k-get-theme-color-var( info-20 )
|
|
3458
|
+
),
|
|
3459
|
+
success: (
|
|
3460
|
+
text: k-get-theme-color-var( success-190 ),
|
|
3461
|
+
bg: k-get-theme-color-var( success-20 ),
|
|
3462
|
+
border: k-get-theme-color-var( success-20 )
|
|
3463
|
+
),
|
|
3464
|
+
warning: (
|
|
3465
|
+
text: k-get-theme-color-var( neutral-160 ),
|
|
3466
|
+
bg: k-get-theme-color-var( warning-20 ),
|
|
3467
|
+
border: k-get-theme-color-var( warning-20 )
|
|
3468
|
+
),
|
|
3469
|
+
error: (
|
|
3470
|
+
text: k-get-theme-color-var( error-190 ),
|
|
3471
|
+
bg: k-get-theme-color-var( error-20 ),
|
|
3472
|
+
border: k-get-theme-color-var( error-20 )
|
|
3473
|
+
)
|
|
3474
|
+
) !default;
|
|
3475
|
+
|
|
3476
|
+
|
|
3477
|
+
@mixin color-system-styles() {
|
|
3478
|
+
:root {
|
|
3479
|
+
@include k-css-vars( $kendo-palettes );
|
|
3480
|
+
@include k-css-vars( $kendo-theme-colors );
|
|
3481
|
+
|
|
3482
|
+
--kendo-body-bg: #{$kendo-body-bg};
|
|
3483
|
+
--kendo-body-text: #{$kendo-body-text};
|
|
3484
|
+
|
|
3485
|
+
--kendo-component-bg: #{$kendo-component-bg};
|
|
3486
|
+
--kendo-component-text: #{$kendo-component-text};
|
|
3487
|
+
--kendo-component-border: #{$kendo-component-border};
|
|
3488
|
+
|
|
3489
|
+
--kendo-box-shadow-depth-1: #{$kendo-box-shadow-depth-1};
|
|
3490
|
+
--kendo-box-shadow-depth-2: #{$kendo-box-shadow-depth-2};
|
|
3491
|
+
--kendo-box-shadow-depth-3: #{$kendo-box-shadow-depth-3};
|
|
3492
|
+
--kendo-box-shadow-depth-4: #{$kendo-box-shadow-depth-4};
|
|
3493
|
+
|
|
3494
|
+
--kendo-link-text: #{$kendo-link-text};
|
|
3495
|
+
--kendo-link-hover-text: #{$kendo-link-hover-text};
|
|
3496
|
+
|
|
3497
|
+
--kendo-disabled-bg: #{$kendo-disabled-bg};
|
|
3498
|
+
--kendo-disabled-text: #{$kendo-disabled-text};
|
|
3499
|
+
--kendo-disabled-border: #{$kendo-disabled-border};
|
|
3500
|
+
|
|
3501
|
+
--kendo-hover-bg: #{$kendo-hover-bg};
|
|
3502
|
+
--kendo-hover-text: #{$kendo-hover-text};
|
|
3503
|
+
--kendo-hover-border: #{$kendo-hover-border};
|
|
3504
|
+
|
|
3505
|
+
--kendo-selected-bg: #{$kendo-selected-bg};
|
|
3506
|
+
--kendo-selected-text: #{$kendo-selected-text};
|
|
3507
|
+
--kendo-selected-border: #{$kendo-selected-border};
|
|
3508
|
+
|
|
3509
|
+
--kendo-selected-hover-bg: #{$kendo-selected-hover-bg};
|
|
3510
|
+
--kendo-selected-hover-text: #{$kendo-selected-hover-text};
|
|
3511
|
+
--kendo-selected-hover-border: #{$kendo-selected-hover-border};
|
|
3512
|
+
|
|
3513
|
+
--kendo-focus-outline: #{$kendo-focus-outline};
|
|
3514
|
+
|
|
3515
|
+
--kendo-subtle-text: #{$kendo-subtle-text};
|
|
3516
|
+
|
|
3517
|
+
--kendo-invalid-bg: #{$kendo-invalid-bg};
|
|
3518
|
+
--kendo-invalid-text: #{$kendo-invalid-text};
|
|
3519
|
+
--kendo-invalid-border: #{$kendo-invalid-border};
|
|
3520
|
+
--kendo-invalid-shadow: #{$kendo-invalid-shadow};
|
|
3521
|
+
|
|
3522
|
+
--kendo-border-radius-sm: #{$kendo-border-radius-sm};
|
|
3523
|
+
--kendo-border-radius-md: #{$kendo-border-radius-md};
|
|
3524
|
+
--kendo-border-radius-lg: #{$kendo-border-radius-lg};
|
|
3525
|
+
}
|
|
3526
|
+
|
|
3527
|
+
// Text colors
|
|
3528
|
+
@each $theme-color, $color-props in $kendo-theme-colors {
|
|
3529
|
+
$_color: k-map-get( $color-props, text );
|
|
3530
|
+
|
|
3531
|
+
.k-text-#{$theme-color},
|
|
3532
|
+
.k-color-#{$theme-color} {
|
|
3533
|
+
color: var( --kendo-text-#{$theme-color}, #{$_color} );
|
|
3534
|
+
}
|
|
3535
|
+
.\!k-text-#{$theme-color},
|
|
3536
|
+
.\!k-color-#{$theme-color} {
|
|
3537
|
+
color: var( --kendo-text-#{$theme-color}, #{$_color} ) !important; // stylelint-disable-line declaration-no-important
|
|
3538
|
+
}
|
|
3539
|
+
|
|
3540
|
+
.k-bg-#{$theme-color} {
|
|
3541
|
+
background-color: var( --kendo-bg-#{$theme-color}, #{$_color} );
|
|
3542
|
+
}
|
|
3543
|
+
.\!k-bg-#{$theme-color} {
|
|
3544
|
+
background-color: var( --kendo-bg-#{$theme-color}, #{$_color} ) !important; // stylelint-disable-line declaration-no-important
|
|
3545
|
+
}
|
|
3546
|
+
};
|
|
3547
|
+
}
|
|
2811
3548
|
|
|
2812
3549
|
// #endregion
|
|
3550
|
+
// @import "./_palettes.scss";
|
|
2813
3551
|
|
|
2814
|
-
//
|
|
2815
|
-
// #region @import "./mixins/index.import.scss"; ->
|
|
2816
|
-
// #region @import "@progress/kendo-theme-core/scss/mixins/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/index.import.scss
|
|
3552
|
+
// #endregion
|
|
3553
|
+
// #region @import "./mixins/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/index.import.scss
|
|
2817
3554
|
// #region @import "./_border-radius.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_border-radius.scss
|
|
2818
3555
|
// Border radius
|
|
2819
3556
|
@mixin border-radius( $radius: null ) {
|
|
@@ -2913,6 +3650,47 @@ $_kendo-data-uris: () !default;
|
|
|
2913
3650
|
box-shadow: none;
|
|
2914
3651
|
}
|
|
2915
3652
|
|
|
3653
|
+
@mixin disabled-color( $color: null, $bg: null, $border: null ) {
|
|
3654
|
+
outline: none;
|
|
3655
|
+
cursor: default;
|
|
3656
|
+
background-color: $bg;
|
|
3657
|
+
color: $color;
|
|
3658
|
+
border-color: $border;
|
|
3659
|
+
pointer-events: none;
|
|
3660
|
+
box-shadow: none;
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
// #endregion
|
|
3664
|
+
// #region @import "./_decoration.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_decoration.scss
|
|
3665
|
+
@mixin fill( $color: null, $bg: null, $border: null, $gradient: null ) {
|
|
3666
|
+
@if $border {
|
|
3667
|
+
border-color: $border;
|
|
3668
|
+
}
|
|
3669
|
+
@if $color {
|
|
3670
|
+
color: $color;
|
|
3671
|
+
}
|
|
3672
|
+
@if $bg {
|
|
3673
|
+
background-color: $bg;
|
|
3674
|
+
}
|
|
3675
|
+
@if $gradient {
|
|
3676
|
+
@include linear-gradient( $gradient );
|
|
3677
|
+
}
|
|
3678
|
+
}
|
|
3679
|
+
|
|
3680
|
+
@mixin linear-gradient( $gradient: null ) {
|
|
3681
|
+
@if $gradient and $kendo-enable-gradients {
|
|
3682
|
+
@if $gradient == none {
|
|
3683
|
+
background-image: none;
|
|
3684
|
+
} @else {
|
|
3685
|
+
background-image: linear-gradient( $gradient );
|
|
3686
|
+
}
|
|
3687
|
+
}
|
|
3688
|
+
}
|
|
3689
|
+
|
|
3690
|
+
@mixin repeating-striped-gradient( $color: rgba(255,255,255,.15), $background: #FFF, $angle: 45deg, $largeStep: 2px, $smallStep: 1px) {
|
|
3691
|
+
background-image: repeating-linear-gradient($angle, $background, $background $smallStep, $color $smallStep, $color $largeStep);
|
|
3692
|
+
}
|
|
3693
|
+
|
|
2916
3694
|
// #endregion
|
|
2917
3695
|
// #region @import "./_focus-indicator.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_focus-indicator.scss
|
|
2918
3696
|
@mixin focus-indicator( $indicator, $inset: false, $themeable: false, $type: "box-shadow" ) {
|
|
@@ -2965,7 +3743,7 @@ $_kendo-data-uris: () !default;
|
|
|
2965
3743
|
// #region @import "./_hide-scrollbar.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_hide-scrollbar.scss
|
|
2966
3744
|
$kendo-scrollbar-width: 17px !default;
|
|
2967
3745
|
|
|
2968
|
-
@mixin hide-scrollbar( $dir: "right", $max-scrollbar: 100px
|
|
3746
|
+
@mixin hide-scrollbar( $dir: "right", $max-scrollbar: 100px) {
|
|
2969
3747
|
// anything larger than the scrollbar width will do
|
|
2970
3748
|
$scrollbar-size: var( --kendo-scrollbar-width, #{$kendo-scrollbar-width} );
|
|
2971
3749
|
$margin: calc( -#{$max-scrollbar} - #{$scrollbar-size} );
|
|
@@ -2982,6 +3760,18 @@ $kendo-scrollbar-width: 17px !default;
|
|
|
2982
3760
|
}
|
|
2983
3761
|
}
|
|
2984
3762
|
|
|
3763
|
+
@mixin hide-scrollbar-dir-agnostic($max-scrollbar: 100px) {
|
|
3764
|
+
// anything larger than the scrollbar width will do
|
|
3765
|
+
$scrollbar-size: var( --kendo-scrollbar-width, #{$kendo-scrollbar-width} );
|
|
3766
|
+
$margin: calc( -#{$max-scrollbar} - #{$scrollbar-size} );
|
|
3767
|
+
|
|
3768
|
+
padding-inline-end: $max-scrollbar;
|
|
3769
|
+
padding-inline-start: $max-scrollbar;
|
|
3770
|
+
|
|
3771
|
+
margin-inline-start: -$max-scrollbar;
|
|
3772
|
+
margin-inline-end: $margin;
|
|
3773
|
+
}
|
|
3774
|
+
|
|
2985
3775
|
// #endregion
|
|
2986
3776
|
// #region @import "./_import-once.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_import-once.scss
|
|
2987
3777
|
/// A list of exported modules.
|
|
@@ -3011,13 +3801,6 @@ $_kendo-imported-modules: () !default;
|
|
|
3011
3801
|
|
|
3012
3802
|
// #endregion
|
|
3013
3803
|
|
|
3014
|
-
@mixin fill( $color: null, $bg: null, $border: null, $gradient: null ) {
|
|
3015
|
-
border-color: $border;
|
|
3016
|
-
color: $color;
|
|
3017
|
-
background-color: $bg;
|
|
3018
|
-
@include linear-gradient( $gradient );
|
|
3019
|
-
}
|
|
3020
|
-
|
|
3021
3804
|
@mixin background-image( $background-image: null ) {
|
|
3022
3805
|
@if $background-image {
|
|
3023
3806
|
background-image: url(#{$background-image});
|
|
@@ -3025,12 +3808,7 @@ $_kendo-imported-modules: () !default;
|
|
|
3025
3808
|
}
|
|
3026
3809
|
|
|
3027
3810
|
// #endregion
|
|
3028
|
-
|
|
3029
|
-
// #endregion
|
|
3030
|
-
|
|
3031
|
-
// Module system
|
|
3032
|
-
// #region @import "./module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
|
|
3033
|
-
// #region @import "@progress/kendo-theme-core/scss/module-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/module-system/index.import.scss
|
|
3811
|
+
// #region @import "./module-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/module-system/index.import.scss
|
|
3034
3812
|
// #region @import "./_components.scss"; -> node_modules/@progress/kendo-theme-core/scss/module-system/_components.scss
|
|
3035
3813
|
$kendo-components: (
|
|
3036
3814
|
// Typography and utils
|
|
@@ -3709,12 +4487,7 @@ $_imported: () !default;
|
|
|
3709
4487
|
// stylelint-enable scss/at-if-no-null
|
|
3710
4488
|
|
|
3711
4489
|
// #endregion
|
|
3712
|
-
|
|
3713
|
-
// #endregion
|
|
3714
|
-
|
|
3715
|
-
// Common styles
|
|
3716
|
-
// #region @import "./styles/index.import.scss"; -> scss/core/styles/index.import.scss
|
|
3717
|
-
// #region @import "@progress/kendo-theme-core/scss/styles/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/index.import.scss
|
|
4490
|
+
// #region @import "./styles/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/index.import.scss
|
|
3718
4491
|
// #region @import "./_accessibility.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_accessibility.scss
|
|
3719
4492
|
@mixin kendo-core--styles--accessibility() {
|
|
3720
4493
|
|
|
@@ -3745,6 +4518,20 @@ $_imported: () !default;
|
|
|
3745
4518
|
// #endregion
|
|
3746
4519
|
// #region @import "./_layout.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_layout.scss
|
|
3747
4520
|
@mixin kendo-core--styles--layout() {
|
|
4521
|
+
.k-body {
|
|
4522
|
+
@include typography(
|
|
4523
|
+
var( --kendo-font-size, inherit ),
|
|
4524
|
+
var( --kendo-font-family, inherit ),
|
|
4525
|
+
var( --kendo-line-height, normal ),
|
|
4526
|
+
var( --kendo-font-weight, normal ),
|
|
4527
|
+
var( --kendo-letter-spacing, normal ),
|
|
4528
|
+
);
|
|
4529
|
+
@include fill(
|
|
4530
|
+
var( --kendo-body-text, initial ),
|
|
4531
|
+
var( --kendo-body-bg, initial )
|
|
4532
|
+
);
|
|
4533
|
+
margin: 0;
|
|
4534
|
+
}
|
|
3748
4535
|
|
|
3749
4536
|
// Basic layout
|
|
3750
4537
|
.k-hstack {
|
|
@@ -3859,472 +4646,386 @@ $_imported: () !default;
|
|
|
3859
4646
|
}
|
|
3860
4647
|
|
|
3861
4648
|
// #endregion
|
|
4649
|
+
// #region @import "./_base.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_base.scss
|
|
4650
|
+
@mixin kendo-core--styles--base() {
|
|
4651
|
+
// Disabled state
|
|
4652
|
+
.k-disabled,
|
|
4653
|
+
.k-widget[disabled],
|
|
4654
|
+
.k-disabled {
|
|
4655
|
+
@include disabled-color(
|
|
4656
|
+
$color: var( --kendo-disabled-text, inherit ),
|
|
4657
|
+
$border: var( --kendo-disabled-border, inherit )
|
|
4658
|
+
);
|
|
3862
4659
|
|
|
4660
|
+
.k-link {
|
|
4661
|
+
cursor: default;
|
|
4662
|
+
outline: 0;
|
|
4663
|
+
}
|
|
4664
|
+
}
|
|
3863
4665
|
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
// #region @import "../_variables.scss"; -> scss/_variables.scss
|
|
3877
|
-
// #region @import "./core/functions/index.import.scss"; -> scss/core/functions/index.import.scss
|
|
3878
|
-
// File already imported_once. Skipping output.
|
|
3879
|
-
// #endregion
|
|
3880
|
-
// #region @import "./core/color-system/index.import.scss"; -> scss/core/color-system/index.import.scss
|
|
3881
|
-
// File already imported_once. Skipping output.
|
|
3882
|
-
// #endregion
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
// Options
|
|
3886
|
-
$kendo-enable-rounded: true !default;
|
|
3887
|
-
$kendo-enable-shadows: true !default;
|
|
3888
|
-
$kendo-enable-gradients: true !default;
|
|
3889
|
-
$kendo-enable-transitions: true !default;
|
|
3890
|
-
$kendo-enable-focus-contrast: false !default;
|
|
3891
|
-
$kendo-enable-typography: false !default;
|
|
4666
|
+
// Horizontal line
|
|
4667
|
+
.k-hr {
|
|
4668
|
+
margin-block: k-map-get( $kendo-spacing, 4 );
|
|
4669
|
+
padding: 0;
|
|
4670
|
+
height: 0;
|
|
4671
|
+
border-width: 1px 0 0;
|
|
4672
|
+
border-style: solid;
|
|
4673
|
+
border-color: var( --kendo-component-border, inherit );
|
|
4674
|
+
display: block;
|
|
4675
|
+
float: none;
|
|
4676
|
+
clear: both;
|
|
4677
|
+
}
|
|
3892
4678
|
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
4679
|
+
// Horizontal rule
|
|
4680
|
+
.k-d-flex-row > .k-hr {
|
|
4681
|
+
margin: 0;
|
|
4682
|
+
width: 0;
|
|
4683
|
+
height: auto;
|
|
4684
|
+
border-width: 0 0 0 1px;
|
|
4685
|
+
flex: 0 0 auto;
|
|
4686
|
+
}
|
|
3896
4687
|
|
|
3897
|
-
|
|
4688
|
+
// Vertical rule
|
|
4689
|
+
.k-d-flex-col > .k-hr {
|
|
4690
|
+
margin: 0;
|
|
4691
|
+
flex: 0 0 auto;
|
|
4692
|
+
}
|
|
3898
4693
|
|
|
4694
|
+
.k-sprite {
|
|
4695
|
+
display: inline-block;
|
|
4696
|
+
width: 1rem;
|
|
4697
|
+
height: 1rem;
|
|
4698
|
+
overflow: hidden;
|
|
4699
|
+
background-repeat: no-repeat;
|
|
4700
|
+
font-size: 0;
|
|
4701
|
+
line-height: 0;
|
|
4702
|
+
text-align: center;
|
|
4703
|
+
}
|
|
3899
4704
|
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
1px: 1px,
|
|
3904
|
-
0.5: 2px,
|
|
3905
|
-
1: 4px,
|
|
3906
|
-
1.5: 6px,
|
|
3907
|
-
2: 8px,
|
|
3908
|
-
2.5: 10px,
|
|
3909
|
-
3: 12px,
|
|
3910
|
-
3.5: 14px,
|
|
3911
|
-
4: 16px,
|
|
3912
|
-
4.5: 18px,
|
|
3913
|
-
5: 20px,
|
|
3914
|
-
5.5: 22px,
|
|
3915
|
-
6: 24px,
|
|
3916
|
-
6.5: 26px,
|
|
3917
|
-
7: 28px,
|
|
3918
|
-
7.5: 30px,
|
|
3919
|
-
8: 32px,
|
|
3920
|
-
9: 36px,
|
|
3921
|
-
10: 40px,
|
|
3922
|
-
11: 44px,
|
|
3923
|
-
12: 48px,
|
|
3924
|
-
13: 52px,
|
|
3925
|
-
14: 56px,
|
|
3926
|
-
15: 60px,
|
|
3927
|
-
16: 64px,
|
|
3928
|
-
17: 68px,
|
|
3929
|
-
18: 72px,
|
|
3930
|
-
19: 76px,
|
|
3931
|
-
20: 80px,
|
|
3932
|
-
21: 84px,
|
|
3933
|
-
22: 88px,
|
|
3934
|
-
23: 92px,
|
|
3935
|
-
24: 96px
|
|
3936
|
-
) !default;
|
|
4705
|
+
.k-image {
|
|
4706
|
+
display: inline-block;
|
|
4707
|
+
}
|
|
3937
4708
|
|
|
4709
|
+
// Layout
|
|
4710
|
+
.k-reset {
|
|
4711
|
+
margin: 0;
|
|
4712
|
+
padding: 0;
|
|
4713
|
+
border-width: 0;
|
|
4714
|
+
outline: 0;
|
|
4715
|
+
text-decoration: none;
|
|
4716
|
+
font: inherit;
|
|
4717
|
+
list-style: none;
|
|
4718
|
+
}
|
|
3938
4719
|
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
/// xtra small icon size.
|
|
3943
|
-
/// @group common
|
|
3944
|
-
$kendo-icon-size-xs: calc( #{$kendo-icon-size} * .75 ) !default;
|
|
3945
|
-
/// Small icon size.
|
|
3946
|
-
/// @group common
|
|
3947
|
-
$kendo-icon-size-sm: calc( #{$kendo-icon-size} * .875 ) !default;
|
|
3948
|
-
/// Medium icon size.
|
|
3949
|
-
/// @group common
|
|
3950
|
-
$kendo-icon-size-md: $kendo-icon-size !default;
|
|
3951
|
-
/// Large icon size.
|
|
3952
|
-
/// @group common
|
|
3953
|
-
$kendo-icon-size-lg: calc( #{$kendo-icon-size} * 1.25 ) !default;
|
|
3954
|
-
/// Extra large icon size.
|
|
3955
|
-
/// @group common
|
|
3956
|
-
$kendo-icon-size-xl: calc( #{$kendo-icon-size} * 1.5 ) !default;
|
|
3957
|
-
/// Double extra large icon size.
|
|
3958
|
-
/// @group common
|
|
3959
|
-
$kendo-icon-size-xxl: calc( #{$kendo-icon-size} * 2 ) !default;
|
|
3960
|
-
/// Triple extra large icon size.
|
|
3961
|
-
/// @group common
|
|
3962
|
-
$kendo-icon-size-xxxl: calc( #{$kendo-icon-size} * 3 ) !default;
|
|
4720
|
+
kendo-sortable {
|
|
4721
|
+
display: block;
|
|
4722
|
+
}
|
|
3963
4723
|
|
|
3964
|
-
$kendo-icon-spacing: k-map-get( $kendo-spacing, 1 ) !default;
|
|
3965
|
-
$kendo-icon-padding: k-map-get( $kendo-spacing, 1 ) !default;
|
|
3966
4724
|
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
$kendo-padding-sm-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
3976
|
-
/// Small vertical padding.
|
|
3977
|
-
/// @group common
|
|
3978
|
-
$kendo-padding-sm-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
3979
|
-
/// Medium horizontal padding.
|
|
3980
|
-
/// @group common
|
|
3981
|
-
$kendo-padding-md-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
3982
|
-
/// Medium vertical padding.
|
|
3983
|
-
/// @group common
|
|
3984
|
-
$kendo-padding-md-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
3985
|
-
/// Large horizontal padding.
|
|
3986
|
-
/// @group common
|
|
3987
|
-
$kendo-padding-lg-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
3988
|
-
/// Large vertical padding.
|
|
3989
|
-
/// @group common
|
|
3990
|
-
$kendo-padding-lg-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
3991
|
-
|
|
3992
|
-
/// Border radius for all components.
|
|
3993
|
-
/// @group common
|
|
3994
|
-
$kendo-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
|
|
3995
|
-
/// Small border radius.
|
|
3996
|
-
/// @group common
|
|
3997
|
-
$kendo-border-radius-sm: $kendo-border-radius - k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
3998
|
-
/// Medium border radius.
|
|
3999
|
-
/// @group common
|
|
4000
|
-
$kendo-border-radius-md: $kendo-border-radius !default;
|
|
4001
|
-
/// Large border radius.
|
|
4002
|
-
/// @group common
|
|
4003
|
-
$kendo-border-radius-lg: $kendo-border-radius + k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
4725
|
+
// Links
|
|
4726
|
+
.k-link,
|
|
4727
|
+
.k-link:hover {
|
|
4728
|
+
color: inherit;
|
|
4729
|
+
text-decoration: none;
|
|
4730
|
+
outline: 0;
|
|
4731
|
+
cursor: pointer;
|
|
4732
|
+
}
|
|
4004
4733
|
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
md: $kendo-border-radius-md,
|
|
4010
|
-
lg: $kendo-border-radius-lg,
|
|
4011
|
-
full: 9999px
|
|
4012
|
-
) !default;
|
|
4734
|
+
// Outline
|
|
4735
|
+
.k-content {
|
|
4736
|
+
outline: 0;
|
|
4737
|
+
}
|
|
4013
4738
|
|
|
4739
|
+
// Centering
|
|
4740
|
+
.k-centered {
|
|
4741
|
+
position: absolute;
|
|
4742
|
+
top: 50%;
|
|
4743
|
+
left: 50%;
|
|
4744
|
+
transform: translate(-50%, -50%);
|
|
4745
|
+
}
|
|
4014
4746
|
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4747
|
+
// Disable mouse events
|
|
4748
|
+
.k-no-click {
|
|
4749
|
+
pointer-events: none;
|
|
4750
|
+
}
|
|
4018
4751
|
|
|
4752
|
+
// Off-screen container used during PDF export
|
|
4753
|
+
.k-pdf-export-shadow {
|
|
4754
|
+
position: absolute;
|
|
4755
|
+
overflow: hidden;
|
|
4756
|
+
left: -15000px;
|
|
4757
|
+
width: 14400px;
|
|
4758
|
+
}
|
|
4019
4759
|
|
|
4020
|
-
//
|
|
4021
|
-
|
|
4760
|
+
// PDF export icons fix
|
|
4761
|
+
.kendo-pdf-hide-pseudo-elements::before,
|
|
4762
|
+
.kendo-pdf-hide-pseudo-elements::after {
|
|
4763
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
4764
|
+
}
|
|
4022
4765
|
|
|
4023
|
-
//
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4766
|
+
// Dirty indicator
|
|
4767
|
+
.k-dirty {
|
|
4768
|
+
margin: 0;
|
|
4769
|
+
padding: 0;
|
|
4770
|
+
width: 0;
|
|
4771
|
+
height: 0;
|
|
4772
|
+
border-width: 3px;
|
|
4773
|
+
border-style: solid;
|
|
4774
|
+
border-block-start-color: currentColor;
|
|
4775
|
+
border-block-end-color: transparent;
|
|
4776
|
+
border-inline-start-color: transparent;
|
|
4777
|
+
border-inline-end-color: currentColor;
|
|
4778
|
+
position: absolute;
|
|
4779
|
+
inset-block-start: 0;
|
|
4780
|
+
inset-inline-end: 0;
|
|
4781
|
+
}
|
|
4782
|
+
}
|
|
4783
|
+
// #endregion
|
|
4784
|
+
// #region @import "./_loading.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_loading.scss
|
|
4785
|
+
@mixin kendo-core--styles--loading() {
|
|
4786
|
+
// Loading mask
|
|
4787
|
+
.k-loading-mask,
|
|
4788
|
+
.k-loading-image,
|
|
4789
|
+
.k-loading-color {
|
|
4790
|
+
width: 100%;
|
|
4791
|
+
height: 100%;
|
|
4792
|
+
box-sizing: border-box;
|
|
4793
|
+
position: absolute;
|
|
4794
|
+
top: 0;
|
|
4795
|
+
left: 0;
|
|
4031
4796
|
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4797
|
+
*,
|
|
4798
|
+
*::before,
|
|
4799
|
+
*::after,
|
|
4800
|
+
&::before,
|
|
4801
|
+
&::after {
|
|
4802
|
+
box-sizing: border-box;
|
|
4803
|
+
}
|
|
4804
|
+
}
|
|
4037
4805
|
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
/// @type Color
|
|
4041
|
-
$kendo-color-secondary: #666666 !default;
|
|
4042
|
-
$kendo-color-secondary-lighter: k-color-tint( $kendo-color-secondary, 2 ) !default;
|
|
4043
|
-
$kendo-color-secondary-darker: k-color-shade( $kendo-color-secondary, 2 ) !default;
|
|
4806
|
+
.k-loading-mask {
|
|
4807
|
+
z-index: $kendo-zindex-loading;
|
|
4044
4808
|
|
|
4045
|
-
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4809
|
+
&.k-opaque {
|
|
4810
|
+
.k-loading-color {
|
|
4811
|
+
opacity: 1;
|
|
4812
|
+
}
|
|
4813
|
+
}
|
|
4814
|
+
}
|
|
4815
|
+
.k-loading-text {
|
|
4816
|
+
text-indent: -4000px;
|
|
4817
|
+
text-align: center;
|
|
4818
|
+
position: absolute;
|
|
4819
|
+
color: $kendo-loading-text;
|
|
4820
|
+
}
|
|
4821
|
+
.k-loading-image {
|
|
4822
|
+
z-index: 2;
|
|
4823
|
+
color: $kendo-loading-text;
|
|
4824
|
+
}
|
|
4825
|
+
.k-loading-color {
|
|
4826
|
+
background-color: $kendo-loading-bg;
|
|
4827
|
+
opacity: $kendo-loading-opacity;
|
|
4828
|
+
}
|
|
4050
4829
|
|
|
4051
|
-
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4830
|
+
// Loading indicator
|
|
4831
|
+
.k-i-loading {
|
|
4832
|
+
position: relative;
|
|
4833
|
+
background-color: transparent;
|
|
4834
|
+
box-sizing: border-box;
|
|
4835
|
+
color: $kendo-loading-text;
|
|
4057
4836
|
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4837
|
+
&::before,
|
|
4838
|
+
&::after {
|
|
4839
|
+
box-sizing: border-box;
|
|
4840
|
+
}
|
|
4841
|
+
}
|
|
4063
4842
|
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4843
|
+
.k-i-loading::before,
|
|
4844
|
+
.k-i-loading::after,
|
|
4845
|
+
.k-loading-image::before,
|
|
4846
|
+
.k-loading-image::after {
|
|
4847
|
+
position: absolute;
|
|
4848
|
+
top: 50%;
|
|
4849
|
+
left: 50%;
|
|
4850
|
+
display: inline-block;
|
|
4851
|
+
content: "";
|
|
4852
|
+
box-sizing: inherit;
|
|
4853
|
+
border-radius: 50%;
|
|
4854
|
+
border-width: .05em;
|
|
4855
|
+
border-style: solid;
|
|
4856
|
+
border-color: currentColor;
|
|
4857
|
+
border-top-color: transparent;
|
|
4858
|
+
border-bottom-color: transparent;
|
|
4859
|
+
background-color: transparent;
|
|
4860
|
+
}
|
|
4070
4861
|
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
$kendo-color-success-lighter: k-color-tint( $kendo-color-success, 2 ) !default;
|
|
4076
|
-
$kendo-color-success-darker: k-color-shade( $kendo-color-success, 2 ) !default;
|
|
4862
|
+
.k-icon.k-i-loading::before,
|
|
4863
|
+
.k-icon.k-i-loading::after {
|
|
4864
|
+
content: "";
|
|
4865
|
+
}
|
|
4077
4866
|
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4867
|
+
.k-i-loading::before,
|
|
4868
|
+
.k-loading-image::before {
|
|
4869
|
+
margin-top: -.5em;
|
|
4870
|
+
margin-left: -.5em;
|
|
4871
|
+
width: 1em;
|
|
4872
|
+
height: 1em;
|
|
4873
|
+
animation: k-loading-animation .7s linear infinite;
|
|
4874
|
+
}
|
|
4084
4875
|
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
|
|
4090
|
-
|
|
4876
|
+
.k-i-loading::after,
|
|
4877
|
+
.k-loading-image::after {
|
|
4878
|
+
margin-top: -.25em;
|
|
4879
|
+
margin-left: -.25em;
|
|
4880
|
+
width: .5em;
|
|
4881
|
+
height: .5em;
|
|
4882
|
+
animation: k-loading-animation reverse 1.4s linear infinite;
|
|
4883
|
+
}
|
|
4091
4884
|
|
|
4092
|
-
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4885
|
+
.k-loading-image::before,
|
|
4886
|
+
.k-loading-image::after {
|
|
4887
|
+
content: "";
|
|
4888
|
+
// See https://github.com/telerik/kendo-themes/issues/1925
|
|
4889
|
+
border-width: 1px; // TODO: Remove once we drop IE support
|
|
4890
|
+
border-width: clamp( .015em, 1px, 1px );
|
|
4891
|
+
font-size: 4em;
|
|
4892
|
+
}
|
|
4096
4893
|
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
|
|
4894
|
+
// Loading animation
|
|
4895
|
+
@keyframes k-loading-animation {
|
|
4896
|
+
0% {
|
|
4897
|
+
transform: rotate(0deg);
|
|
4898
|
+
}
|
|
4899
|
+
100% {
|
|
4900
|
+
transform: rotate(360deg);
|
|
4901
|
+
}
|
|
4902
|
+
}
|
|
4903
|
+
}
|
|
4904
|
+
// #endregion
|
|
4905
|
+
// #region @import "./_selection.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_selection.scss
|
|
4906
|
+
@mixin kendo-core--styles--selection() {
|
|
4907
|
+
.k-marquee {
|
|
4908
|
+
position: absolute;
|
|
4909
|
+
z-index: 100000;
|
|
4910
|
+
}
|
|
4101
4911
|
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
|
|
4912
|
+
.k-marquee-color,
|
|
4913
|
+
.k-marquee-text {
|
|
4914
|
+
position: absolute;
|
|
4915
|
+
top: 0;
|
|
4916
|
+
left: 0;
|
|
4917
|
+
width: 100%;
|
|
4918
|
+
height: 100%;
|
|
4919
|
+
}
|
|
4105
4920
|
|
|
4921
|
+
.k-marquee-color {
|
|
4922
|
+
color: $kendo-selected-text;
|
|
4923
|
+
background-color: k-get-theme-color-var( primary-60, #{$kendo-selected-bg} );
|
|
4924
|
+
border-color: k-get-theme-color-var( primary-100, #{$kendo-selected-border} );
|
|
4925
|
+
opacity: .6;
|
|
4926
|
+
}
|
|
4927
|
+
.k-marquee-text {
|
|
4928
|
+
color: $kendo-selected-text;
|
|
4929
|
+
}
|
|
4930
|
+
}
|
|
4931
|
+
// #endregion
|
|
4106
4932
|
|
|
4107
|
-
$kendo-theme-colors: (
|
|
4108
|
-
"primary": $kendo-color-primary,
|
|
4109
|
-
"secondary": $kendo-color-secondary,
|
|
4110
|
-
"tertiary": $kendo-color-tertiary,
|
|
4111
|
-
"info": $kendo-color-info,
|
|
4112
|
-
"success": $kendo-color-success,
|
|
4113
|
-
"warning": $kendo-color-warning,
|
|
4114
|
-
"error": $kendo-color-error,
|
|
4115
|
-
"dark": $kendo-color-dark,
|
|
4116
|
-
"light": $kendo-color-light,
|
|
4117
|
-
"inverse": $kendo-color-inverse
|
|
4118
|
-
) !default;
|
|
4119
4933
|
|
|
4934
|
+
@mixin kendo-core--styles() {
|
|
4935
|
+
@include kendo-core--styles--accessibility();
|
|
4936
|
+
@include kendo-core--styles--asp-fallback();
|
|
4937
|
+
@include kendo-core--styles--layout();
|
|
4938
|
+
@include kendo-core--styles--normalize();
|
|
4939
|
+
@include kendo-core--styles--base();
|
|
4940
|
+
@include kendo-core--styles--loading();
|
|
4941
|
+
@include kendo-core--styles--selection();
|
|
4942
|
+
}
|
|
4120
4943
|
|
|
4121
|
-
//
|
|
4944
|
+
// #endregion
|
|
4945
|
+
// #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
|
|
4946
|
+
// #region @import "./functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
4947
|
+
// File already imported_once. Skipping output.
|
|
4948
|
+
// #endregion
|
|
4122
4949
|
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
$kendo-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
$kendo-font-size-xs: 10px !default;
|
|
4129
|
-
/// Small font size across all components.
|
|
4130
|
-
/// @group typography
|
|
4131
|
-
$kendo-font-size-sm: 12px !default;
|
|
4132
|
-
/// Medium font size across all components.
|
|
4133
|
-
/// @group typography
|
|
4134
|
-
$kendo-font-size-md: $kendo-font-size !default;
|
|
4135
|
-
/// Large font size across all components.
|
|
4136
|
-
/// @group typography
|
|
4137
|
-
$kendo-font-size-lg: 16px !default;
|
|
4138
|
-
/// Extra large font size across all components.
|
|
4139
|
-
/// @group typography
|
|
4140
|
-
$kendo-font-size-xl: 20px !default;
|
|
4950
|
+
// Options
|
|
4951
|
+
$kendo-enable-shadows: true !default;
|
|
4952
|
+
$kendo-enable-rounded: true !default;
|
|
4953
|
+
$kendo-enable-gradients: true !default;
|
|
4954
|
+
$kendo-enable-transitions: true !default;
|
|
4141
4955
|
|
|
4142
|
-
$kendo-
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4956
|
+
$kendo-spacing: (
|
|
4957
|
+
0: 0,
|
|
4958
|
+
1px: 1px,
|
|
4959
|
+
0.5: 0.125rem,
|
|
4960
|
+
1: 0.25rem,
|
|
4961
|
+
1.5: 0.375rem,
|
|
4962
|
+
2: 0.5rem,
|
|
4963
|
+
2.5: 0.625rem,
|
|
4964
|
+
3: 0.75rem,
|
|
4965
|
+
3.5: 0.875rem,
|
|
4966
|
+
4: 1rem,
|
|
4967
|
+
4.5: 1.125rem,
|
|
4968
|
+
5: 1.25rem,
|
|
4969
|
+
5.5: 1.375rem,
|
|
4970
|
+
6: 1.5rem,
|
|
4971
|
+
6.5: 1.625rem,
|
|
4972
|
+
7: 1.75rem,
|
|
4973
|
+
7.5: 1.875rem,
|
|
4974
|
+
8: 2rem,
|
|
4975
|
+
9: 2.25rem,
|
|
4976
|
+
10: 2.5rem,
|
|
4977
|
+
11: 2.75rem,
|
|
4978
|
+
12: 3rem,
|
|
4979
|
+
13: 3.25rem,
|
|
4980
|
+
14: 3.5rem,
|
|
4981
|
+
15: 3.75rem,
|
|
4982
|
+
16: 4rem,
|
|
4983
|
+
17: 4.25rem,
|
|
4984
|
+
18: 4.5rem,
|
|
4985
|
+
19: 4.75rem,
|
|
4986
|
+
20: 5rem,
|
|
4987
|
+
21: 5.25rem,
|
|
4988
|
+
22: 5.5rem,
|
|
4989
|
+
23: 5.75rem,
|
|
4990
|
+
24: 6rem,
|
|
4148
4991
|
) !default;
|
|
4149
4992
|
|
|
4150
|
-
///
|
|
4151
|
-
|
|
4152
|
-
$kendo-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
/// @group typography
|
|
4156
|
-
$kendo-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono", "Ubuntu Mono", "Lucida Console", "Courier New", monospace !default;
|
|
4157
|
-
|
|
4158
|
-
/// Font family across all components.
|
|
4159
|
-
/// @group typography
|
|
4160
|
-
$kendo-font-family: inherit !default;
|
|
4161
|
-
|
|
4162
|
-
/// Line height used along with $kendo-font-size.
|
|
4163
|
-
/// @group typography
|
|
4164
|
-
$kendo-line-height: k-math-div( 20, 14 ) !default;
|
|
4165
|
-
/// Extra small line height used along with $kendo-font-size-xs.
|
|
4166
|
-
/// @group typography
|
|
4167
|
-
$kendo-line-height-xs: 1 !default;
|
|
4168
|
-
/// Small line height used along with $kendo-font-size-sm.
|
|
4169
|
-
/// @group typography
|
|
4170
|
-
$kendo-line-height-sm: 1.25 !default;
|
|
4171
|
-
/// Medium line height used along with $kendo-font-size-md.
|
|
4172
|
-
/// @group typography
|
|
4173
|
-
$kendo-line-height-md: $kendo-line-height !default;
|
|
4174
|
-
/// Large line height used along with $kendo-font-size-lg.
|
|
4175
|
-
/// @group typography
|
|
4176
|
-
$kendo-line-height-lg: 1.5 !default;
|
|
4177
|
-
$kendo-line-height-em: calc( #{$kendo-line-height} * 1em ) !default;
|
|
4178
|
-
|
|
4179
|
-
/// Light font weight.
|
|
4180
|
-
/// @group typography
|
|
4181
|
-
$kendo-font-weight-light: 300 !default;
|
|
4182
|
-
/// Normal font weight.
|
|
4183
|
-
/// @group typography
|
|
4184
|
-
$kendo-font-weight-normal: 400 !default;
|
|
4185
|
-
/// Medium font weight.
|
|
4186
|
-
/// @group typography
|
|
4187
|
-
$kendo-font-weight-medium: 500 !default;
|
|
4188
|
-
/// Semibold font weight.
|
|
4189
|
-
/// @group typography
|
|
4190
|
-
$kendo-font-weight-semibold: 600 !default;
|
|
4191
|
-
/// Bold font weight.
|
|
4192
|
-
/// @group typography
|
|
4193
|
-
$kendo-font-weight-bold: 700 !default;
|
|
4194
|
-
|
|
4195
|
-
/// Letter spacing.
|
|
4196
|
-
/// @group typography
|
|
4197
|
-
$kendo-letter-spacing: null !default;
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
// Generic styles
|
|
4201
|
-
|
|
4202
|
-
/// Background color of the body.
|
|
4203
|
-
/// @group common
|
|
4204
|
-
$kendo-body-bg: $kendo-color-white !default;
|
|
4205
|
-
/// Text color of the body.
|
|
4206
|
-
/// @group common
|
|
4207
|
-
$kendo-body-text: #424242 !default;
|
|
4208
|
-
|
|
4209
|
-
/// Subtle text color.
|
|
4210
|
-
/// @group common
|
|
4211
|
-
$kendo-subtle-text: #666666 !default;
|
|
4212
|
-
|
|
4213
|
-
$kendo-app-bg: k-try-shade( $kendo-body-bg, .25 ) !default;
|
|
4214
|
-
$kendo-app-text: $kendo-body-text !default;
|
|
4215
|
-
$kendo-app-border: rgba( $kendo-color-black, .08 ) !default;
|
|
4216
|
-
|
|
4217
|
-
// Link
|
|
4218
|
-
/// Text color of the links.
|
|
4219
|
-
/// @group common
|
|
4220
|
-
$kendo-link-text: $kendo-color-primary !default;
|
|
4221
|
-
/// Text color of the links on hover.
|
|
4222
|
-
/// @group common
|
|
4223
|
-
$kendo-link-hover-text: $kendo-color-primary-darker !default;
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
// Components
|
|
4227
|
-
|
|
4228
|
-
// Component
|
|
4229
|
-
/// Background color of a component.
|
|
4230
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.
|
|
4231
|
-
/// @group component
|
|
4232
|
-
$kendo-component-bg: $kendo-body-bg !default;
|
|
4233
|
-
/// Text color of a component.
|
|
4234
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.
|
|
4235
|
-
/// @group component
|
|
4236
|
-
$kendo-component-text: $kendo-body-text !default;
|
|
4237
|
-
/// Border color of a component.
|
|
4238
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.
|
|
4239
|
-
/// @group component
|
|
4240
|
-
$kendo-component-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
/// The background of the components' chrome area.
|
|
4244
|
-
$kendo-base-bg: #fafafa !default;
|
|
4245
|
-
/// The text color of the components' chrome area.
|
|
4246
|
-
$kendo-base-text: $kendo-body-text !default;
|
|
4247
|
-
/// The border color of the components' chrome area.
|
|
4248
|
-
$kendo-base-border: rgba( black, .08 ) !default;
|
|
4249
|
-
/// The gradient background of the components' chrome area.
|
|
4250
|
-
$kendo-base-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
|
|
4251
|
-
|
|
4252
|
-
/// The background of hovered items.
|
|
4253
|
-
$kendo-hover-bg: k-try-shade( $kendo-base-bg, .5 ) !default;
|
|
4254
|
-
/// The text color of hovered items.
|
|
4255
|
-
$kendo-hover-text: $kendo-base-text !default;
|
|
4256
|
-
/// The border color of hovered items.
|
|
4257
|
-
$kendo-hover-border: $kendo-base-border !default;
|
|
4258
|
-
/// The gradient background of hovered items.
|
|
4259
|
-
$kendo-hover-gradient: $kendo-base-gradient !default;
|
|
4260
|
-
|
|
4261
|
-
/// The background of selected items.
|
|
4262
|
-
$kendo-selected-bg: $kendo-color-primary !default;
|
|
4263
|
-
/// The text color of selected items.
|
|
4264
|
-
$kendo-selected-text: k-contrast-legacy( $kendo-selected-bg ) !default;
|
|
4265
|
-
/// The border color of selected items.
|
|
4266
|
-
$kendo-selected-border: $kendo-base-border !default;
|
|
4267
|
-
/// The gradient background of selected items.
|
|
4268
|
-
$kendo-selected-gradient: $kendo-base-gradient !default;
|
|
4269
|
-
|
|
4270
|
-
/// The background of selected and hovered items.
|
|
4271
|
-
$kendo-selected-hover-bg: k-try-shade( $kendo-selected-bg, .5 ) !default;
|
|
4272
|
-
/// The text color of selected and hovered items.
|
|
4273
|
-
$kendo-selected-hover-text: $kendo-selected-text !default;
|
|
4274
|
-
/// The border of selected and hovered items.
|
|
4275
|
-
$kendo-selected-hover-border: $kendo-base-border !default;
|
|
4276
|
-
/// The gradient of selected and hovered items.
|
|
4277
|
-
$kendo-selected-hover-gradient: $kendo-base-gradient !default;
|
|
4278
|
-
|
|
4279
|
-
// TODO: refactor
|
|
4280
|
-
/// Box shadow of focused items.
|
|
4281
|
-
$kendo-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
4282
|
-
|
|
4283
|
-
/// Transition used across all components.
|
|
4284
|
-
$kendo-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out !default;
|
|
4285
|
-
|
|
4286
|
-
|
|
4287
|
-
/// Text color of disabled items.
|
|
4288
|
-
$kendo-disabled-text: #8f8f8f !default;
|
|
4289
|
-
/// Filter used for disabled items.
|
|
4290
|
-
$kendo-disabled-filter: grayscale(.1) !default;
|
|
4291
|
-
/// Opacity used for disabled items.
|
|
4292
|
-
$kendo-disabled-opacity: .6 !default;
|
|
4993
|
+
/// Border radius for all components.
|
|
4994
|
+
$kendo-border-radius: k-map-get($kendo-spacing, 0.5) !default;
|
|
4995
|
+
$kendo-border-radius-sm: k-math-div($kendo-border-radius, 2) !default;
|
|
4996
|
+
$kendo-border-radius-md: $kendo-border-radius !default;
|
|
4997
|
+
$kendo-border-radius-lg: ($kendo-border-radius * 2) !default;
|
|
4293
4998
|
|
|
4294
|
-
$kendo-
|
|
4295
|
-
|
|
4296
|
-
|
|
4999
|
+
$kendo-border-radii: (
|
|
5000
|
+
DEFAULT: var(--kendo-border-radius-md, $kendo-border-radius-md),
|
|
5001
|
+
0: 0,
|
|
5002
|
+
sm: var(--kendo-border-radius-sm, $kendo-border-radius-sm),
|
|
5003
|
+
md: var(--kendo-border-radius-md, $kendo-border-radius-md),
|
|
5004
|
+
lg: var(--kendo-border-radius-lg, $kendo-border-radius-lg),
|
|
5005
|
+
none: 0,
|
|
5006
|
+
full: 9999px,
|
|
4297
5007
|
) !default;
|
|
4298
5008
|
|
|
5009
|
+
// Metrics
|
|
5010
|
+
$kendo-padding-x: k-map-get($kendo-spacing, 2) !default;
|
|
5011
|
+
$kendo-padding-y: k-map-get($kendo-spacing, 1) !default;
|
|
5012
|
+
$kendo-padding-sm-x: k-map-get($kendo-spacing, 1) !default;
|
|
5013
|
+
$kendo-padding-sm-y: k-map-get($kendo-spacing, 0.5) !default;
|
|
5014
|
+
$kendo-padding-md-x: k-map-get($kendo-spacing, 2) !default;
|
|
5015
|
+
$kendo-padding-md-y: k-map-get($kendo-spacing, 1) !default;
|
|
5016
|
+
$kendo-padding-lg-x: k-map-get($kendo-spacing, 3) !default;
|
|
5017
|
+
$kendo-padding-lg-y: k-map-get($kendo-spacing, 1.5) !default;
|
|
4299
5018
|
|
|
4300
|
-
//
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
/// Text color of the component header.
|
|
4306
|
-
/// @group component
|
|
4307
|
-
$kendo-component-header-text: $kendo-base-text !default;
|
|
4308
|
-
/// Border color of the component header.
|
|
4309
|
-
/// @group component
|
|
4310
|
-
$kendo-component-header-border: $kendo-base-border !default;
|
|
4311
|
-
/// Gradient of the component header.
|
|
4312
|
-
/// @group component
|
|
4313
|
-
$kendo-component-header-gradient: null !default;
|
|
4314
|
-
|
|
5019
|
+
// Equilateral triangle variables
|
|
5020
|
+
// stylelint-disable number-max-precision
|
|
5021
|
+
$equilateral-index: 1.7320508076 !default;
|
|
5022
|
+
$equilateral-height: 0.8660254038 !default;
|
|
5023
|
+
// stylelint-enable number-max-precision
|
|
4315
5024
|
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
$kendo-
|
|
4319
|
-
|
|
4320
|
-
/// @group component
|
|
4321
|
-
$kendo-invalid-text: $kendo-color-error !default;
|
|
4322
|
-
/// Border color of the invalid items.
|
|
4323
|
-
/// @group component
|
|
4324
|
-
$kendo-invalid-border: $kendo-color-error !default;
|
|
4325
|
-
/// Shadow of the invalid items.
|
|
4326
|
-
/// @group component
|
|
4327
|
-
$kendo-invalid-shadow: null !default;
|
|
5025
|
+
// Loading
|
|
5026
|
+
$kendo-loading-opacity: .3 !default;
|
|
5027
|
+
$kendo-zindex-loading: 100 !default;
|
|
5028
|
+
// #endregion
|
|
4328
5029
|
|
|
4329
5030
|
// #endregion
|
|
4330
5031
|
|
|
@@ -5407,36 +6108,6 @@ $kendo-invalid-shadow: null !default;
|
|
|
5407
6108
|
|
|
5408
6109
|
}
|
|
5409
6110
|
|
|
5410
|
-
// #endregion
|
|
5411
|
-
// #region @import "./_selection.scss"; -> scss/common/_selection.scss
|
|
5412
|
-
@include exports( "common/selection/marquee" ) {
|
|
5413
|
-
|
|
5414
|
-
.k-marquee {
|
|
5415
|
-
position: absolute;
|
|
5416
|
-
z-index: 100000;
|
|
5417
|
-
}
|
|
5418
|
-
|
|
5419
|
-
.k-marquee-color,
|
|
5420
|
-
.k-marquee-text {
|
|
5421
|
-
position: absolute;
|
|
5422
|
-
top: 0;
|
|
5423
|
-
left: 0;
|
|
5424
|
-
width: 100%;
|
|
5425
|
-
height: 100%;
|
|
5426
|
-
}
|
|
5427
|
-
|
|
5428
|
-
.k-marquee-color {
|
|
5429
|
-
color: $kendo-selected-text;
|
|
5430
|
-
background-color: $kendo-selected-bg;
|
|
5431
|
-
border-color: $kendo-selected-border;
|
|
5432
|
-
opacity: .6;
|
|
5433
|
-
}
|
|
5434
|
-
.k-marquee-text {
|
|
5435
|
-
color: $kendo-selected-text;
|
|
5436
|
-
}
|
|
5437
|
-
|
|
5438
|
-
}
|
|
5439
|
-
|
|
5440
6111
|
// #endregion
|
|
5441
6112
|
|
|
5442
6113
|
// #endregion
|
|
@@ -13331,7 +14002,10 @@ $kendo-utils: (
|
|
|
13331
14002
|
|
|
13332
14003
|
// Register
|
|
13333
14004
|
// #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
|
|
14005
|
+
// #region @import "@progress/kendo-theme-core/scss/module-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/module-system/index.import.scss
|
|
13334
14006
|
// File already imported_once. Skipping output.
|
|
14007
|
+
// #endregion
|
|
14008
|
+
|
|
13335
14009
|
// #endregion
|
|
13336
14010
|
@include module-register( $_kendo-module-meta... );
|
|
13337
14011
|
|
|
@@ -19579,53 +20253,129 @@ $_kendo-module-meta: (
|
|
|
19579
20253
|
// #region @import "./_variables.scss"; -> scss/loader/_variables.scss
|
|
19580
20254
|
// Loader
|
|
19581
20255
|
|
|
20256
|
+
/// The border radius of the Loader segment.
|
|
20257
|
+
/// @group loader
|
|
19582
20258
|
$kendo-loader-segment-border-radius: 50% !default;
|
|
20259
|
+
|
|
20260
|
+
/// The size of the small Loader segment.
|
|
20261
|
+
/// @group loader
|
|
19583
20262
|
$kendo-loader-sm-segment-size: k-map-get( $kendo-spacing, 1 ) !default;
|
|
20263
|
+
/// The size of the medium Loader segment.
|
|
20264
|
+
/// @group loader
|
|
19584
20265
|
$kendo-loader-md-segment-size: k-map-get( $kendo-spacing, 2 ) !default;
|
|
20266
|
+
/// The size of the large Loader segment.
|
|
20267
|
+
/// @group loader
|
|
19585
20268
|
$kendo-loader-lg-segment-size: k-map-get( $kendo-spacing, 4 ) !default;
|
|
19586
20269
|
|
|
20270
|
+
/// The padding of the small Loader.
|
|
20271
|
+
/// @group loader
|
|
19587
20272
|
$kendo-loader-sm-padding: k-math-div( $kendo-loader-sm-segment-size, 2 ) !default;
|
|
20273
|
+
/// The padding of the medium Loader.
|
|
20274
|
+
/// @group loader
|
|
19588
20275
|
$kendo-loader-md-padding: k-math-div( $kendo-loader-md-segment-size, 2 ) !default;
|
|
20276
|
+
/// The padding of the large Loader.
|
|
20277
|
+
/// @group loader
|
|
19589
20278
|
$kendo-loader-lg-padding: k-math-div( $kendo-loader-lg-segment-size, 2 ) !default;
|
|
19590
20279
|
|
|
20280
|
+
/// The width of the small spinner-3 Loader.
|
|
20281
|
+
/// @group loader
|
|
19591
20282
|
$kendo-loader-sm-spinner-3-width: ( $kendo-loader-sm-segment-size * 4 ) !default;
|
|
19592
|
-
|
|
20283
|
+
/// The width of the medium spinner-3 Loader.
|
|
20284
|
+
/// @group loader
|
|
19593
20285
|
$kendo-loader-md-spinner-3-width: ( $kendo-loader-md-segment-size * 4 ) !default;
|
|
19594
|
-
|
|
20286
|
+
/// The width of the large spinner-3 Loader.
|
|
20287
|
+
/// @group loader
|
|
19595
20288
|
$kendo-loader-lg-spinner-3-width: ( $kendo-loader-lg-segment-size * 4 ) !default;
|
|
20289
|
+
|
|
20290
|
+
/// The height of the small spinner-3 Loader.
|
|
20291
|
+
/// @group loader
|
|
20292
|
+
$kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $equilateral-height ) !default;
|
|
20293
|
+
/// The height of the medium spinner-3 Loader.
|
|
20294
|
+
/// @group loader
|
|
20295
|
+
$kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $equilateral-height ) !default;
|
|
20296
|
+
/// The height of the large spinner-3 Loader.
|
|
20297
|
+
/// @group loader
|
|
19596
20298
|
$kendo-loader-lg-spinner-3-height: ( $kendo-loader-lg-spinner-3-width * $equilateral-height ) !default;
|
|
19597
20299
|
|
|
20300
|
+
/// The width of the small spinner-4 Loader.
|
|
20301
|
+
/// @group loader
|
|
19598
20302
|
$kendo-loader-sm-spinner-4-width: $kendo-loader-sm-segment-size * 4 !default;
|
|
19599
|
-
|
|
20303
|
+
/// The width of the medium spinner-4 Loader.
|
|
20304
|
+
/// @group loader
|
|
19600
20305
|
$kendo-loader-md-spinner-4-width: $kendo-loader-md-segment-size * 4 !default;
|
|
19601
|
-
|
|
20306
|
+
/// The width of the large spinner-4 Loader.
|
|
20307
|
+
/// @group loader
|
|
19602
20308
|
$kendo-loader-lg-spinner-4-width: $kendo-loader-lg-segment-size * 4 !default;
|
|
20309
|
+
|
|
20310
|
+
/// The height of the small spinner-4 Loader.
|
|
20311
|
+
/// @group loader
|
|
20312
|
+
$kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
|
|
20313
|
+
/// The height of the medium spinner-4 Loader.
|
|
20314
|
+
/// @group loader
|
|
20315
|
+
$kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
|
|
20316
|
+
/// The height of the large spinner-4 Loader.
|
|
20317
|
+
/// @group loader
|
|
19603
20318
|
$kendo-loader-lg-spinner-4-height: $kendo-loader-lg-spinner-4-width !default;
|
|
19604
20319
|
|
|
20320
|
+
/// The color of the Loader based on the secondary theme color.
|
|
20321
|
+
/// @group loader
|
|
19605
20322
|
$kendo-loader-secondary-bg: #656565 !default;
|
|
19606
20323
|
|
|
20324
|
+
/// The border width of the container panel.
|
|
20325
|
+
/// @group loader
|
|
19607
20326
|
$kendo-loader-container-panel-border-width: 1px !default;
|
|
20327
|
+
/// The border style of the container panel.
|
|
20328
|
+
/// @group loader
|
|
19608
20329
|
$kendo-loader-container-panel-border-style: solid !default;
|
|
20330
|
+
/// The border color of the container panel.
|
|
20331
|
+
/// @group loader
|
|
19609
20332
|
$kendo-loader-container-panel-border-color: $kendo-component-border !default;
|
|
20333
|
+
/// The border radius of the container panel.
|
|
20334
|
+
/// @group loader
|
|
19610
20335
|
$kendo-loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
20336
|
+
/// The background color of the container panel.
|
|
20337
|
+
/// @group loader
|
|
19611
20338
|
$kendo-loader-container-panel-bg: $kendo-color-white !default;
|
|
19612
20339
|
|
|
20340
|
+
/// The padding of the small Loader container.
|
|
20341
|
+
/// @group loader
|
|
19613
20342
|
$kendo-loader-sm-container-padding: k-map-get( $kendo-spacing, 4 ) !default;
|
|
19614
|
-
|
|
19615
|
-
|
|
19616
|
-
|
|
20343
|
+
/// The padding of the medium Loader container.
|
|
20344
|
+
/// @group loader
|
|
19617
20345
|
$kendo-loader-md-container-padding: k-map-get( $kendo-spacing, 5 ) !default;
|
|
19618
|
-
|
|
19619
|
-
|
|
19620
|
-
|
|
20346
|
+
/// The padding of the large Loader container.
|
|
20347
|
+
/// @group loader
|
|
19621
20348
|
$kendo-loader-lg-container-padding: k-map-get( $kendo-spacing, 6 ) !default;
|
|
20349
|
+
|
|
20350
|
+
/// The gap of the small Loader container.
|
|
20351
|
+
/// @group loader
|
|
20352
|
+
$kendo-loader-sm-container-gap: k-map-get( $kendo-spacing, 1 ) !default;
|
|
20353
|
+
/// The gap of the medium Loader container.
|
|
20354
|
+
/// @group loader
|
|
20355
|
+
$kendo-loader-md-container-gap: k-map-get( $kendo-spacing, 2 ) !default;
|
|
20356
|
+
/// The gap of the large Loader container.
|
|
20357
|
+
/// @group loader
|
|
19622
20358
|
$kendo-loader-lg-container-gap: k-map-get( $kendo-spacing, 3 ) !default;
|
|
19623
|
-
$kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
|
|
19624
20359
|
|
|
20360
|
+
/// The font size of the small Loader container.
|
|
20361
|
+
/// @group loader
|
|
20362
|
+
$kendo-loader-sm-container-font-size: $kendo-font-size-sm !default;
|
|
20363
|
+
/// The font size of the medium Loader container.
|
|
20364
|
+
/// @group loader
|
|
20365
|
+
$kendo-loader-md-container-font-size: $kendo-font-size-md !default;
|
|
20366
|
+
/// The font size of the large Loader container.
|
|
20367
|
+
/// @group loader
|
|
20368
|
+
$kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
|
|
19625
20369
|
|
|
19626
|
-
// Loading
|
|
20370
|
+
// Loading indicator
|
|
20371
|
+
/// The background color of the Loading indicator.
|
|
20372
|
+
/// @group loading
|
|
19627
20373
|
$kendo-loading-bg: $kendo-component-bg !default;
|
|
20374
|
+
/// The text color of the Loading indicator.
|
|
20375
|
+
/// @group loading
|
|
19628
20376
|
$kendo-loading-text: currentColor !default;
|
|
20377
|
+
/// The opacity of the Loading indicator.
|
|
20378
|
+
/// @group loading
|
|
19629
20379
|
$kendo-loading-opacity: .3 !default;
|
|
19630
20380
|
|
|
19631
20381
|
// #endregion
|
|
@@ -21320,14 +22070,14 @@ $kendo-menu-popup-border-width: $kendo-popup-border-width !default;
|
|
|
21320
22070
|
$kendo-menu-popup-font-size: $kendo-font-size-md !default;
|
|
21321
22071
|
$kendo-menu-popup-sm-font-size: $kendo-font-size-md !default;
|
|
21322
22072
|
$kendo-menu-popup-md-font-size: $kendo-font-size-md !default;
|
|
21323
|
-
$kendo-menu-popup-lg-font-size: $kendo-font-size-
|
|
22073
|
+
$kendo-menu-popup-lg-font-size: $kendo-font-size-lg !default;
|
|
21324
22074
|
|
|
21325
22075
|
/// Line heights used along with $kendo-font-size.
|
|
21326
22076
|
/// @group menu
|
|
21327
22077
|
$kendo-menu-popup-line-height: $kendo-line-height-md !default;
|
|
21328
22078
|
$kendo-menu-popup-sm-line-height: $kendo-line-height-md !default;
|
|
21329
22079
|
$kendo-menu-popup-md-line-height: $kendo-line-height-md !default;
|
|
21330
|
-
$kendo-menu-popup-lg-line-height: $kendo-line-height-
|
|
22080
|
+
$kendo-menu-popup-lg-line-height: $kendo-line-height-lg !default;
|
|
21331
22081
|
|
|
21332
22082
|
/// The background of the menu popup.
|
|
21333
22083
|
/// @group menu
|
|
@@ -23044,54 +23794,109 @@ $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
|
|
|
23044
23794
|
// File already imported_once. Skipping output.
|
|
23045
23795
|
// #endregion
|
|
23046
23796
|
|
|
23047
|
-
|
|
23048
23797
|
// Window
|
|
23049
23798
|
|
|
23799
|
+
/// The width of the border around the Window.
|
|
23800
|
+
/// @group window
|
|
23050
23801
|
$kendo-window-border-width: 0px !default;
|
|
23802
|
+
/// The border radius of the Window.
|
|
23803
|
+
/// @group window
|
|
23051
23804
|
$kendo-window-border-radius: 0px !default;
|
|
23805
|
+
/// The font family of the Window.
|
|
23806
|
+
/// @group window
|
|
23052
23807
|
$kendo-window-font-family: $kendo-font-family !default;
|
|
23808
|
+
/// The font size of the Window.
|
|
23809
|
+
/// @group window
|
|
23053
23810
|
$kendo-window-font-size: $kendo-font-size-md !default;
|
|
23811
|
+
/// The line height of the Window.
|
|
23812
|
+
/// @group window
|
|
23054
23813
|
$kendo-window-line-height: 1.25 !default;
|
|
23055
23814
|
|
|
23815
|
+
/// The horizontal padding of the Window titlebar.
|
|
23816
|
+
/// @group window
|
|
23056
23817
|
$kendo-window-titlebar-padding-x: 16px !default;
|
|
23818
|
+
/// The vertical padding of the Window titlebar.
|
|
23819
|
+
/// @group window
|
|
23057
23820
|
$kendo-window-titlebar-padding-y: 12px !default;
|
|
23821
|
+
/// The width of the border of the Window titlebar.
|
|
23822
|
+
/// @group window
|
|
23058
23823
|
$kendo-window-titlebar-border-width: 0 0 1px !default;
|
|
23824
|
+
/// The style of the border of the Window titlebar.
|
|
23825
|
+
/// @group window
|
|
23059
23826
|
$kendo-window-titlebar-border-style: solid !default;
|
|
23060
23827
|
|
|
23828
|
+
/// The font size of the title of the Window.
|
|
23829
|
+
/// @group window
|
|
23061
23830
|
$kendo-window-title-font-size: $kendo-font-size-lg !default;
|
|
23831
|
+
/// The line height of the title of the Window.
|
|
23832
|
+
/// @group window
|
|
23062
23833
|
$kendo-window-title-line-height: 1.25 !default;
|
|
23063
23834
|
|
|
23835
|
+
/// The spacing between the buttons in the Window titlebar.
|
|
23836
|
+
/// @group window
|
|
23064
23837
|
$kendo-window-actions-gap: null !default;
|
|
23065
|
-
|
|
23838
|
+
/// The opacity of the buttons in the Window titlebar.
|
|
23839
|
+
/// @group window
|
|
23066
23840
|
$kendo-window-action-opacity: null !default;
|
|
23841
|
+
/// The opacity of the hovered buttons in the Window titlebar.
|
|
23842
|
+
/// @group window
|
|
23067
23843
|
$kendo-window-action-hover-opacity: null !default;
|
|
23068
23844
|
|
|
23845
|
+
/// The horizontal padding of the content of the Window.
|
|
23846
|
+
/// @group window
|
|
23069
23847
|
$kendo-window-inner-padding-x: 16px !default;
|
|
23848
|
+
/// The vertical padding of the content of the Window.
|
|
23849
|
+
/// @group window
|
|
23070
23850
|
$kendo-window-inner-padding-y: 16px !default;
|
|
23071
23851
|
|
|
23852
|
+
/// The horizontal padding of the Window action buttons.
|
|
23853
|
+
/// @group window
|
|
23072
23854
|
$kendo-window-buttongroup-padding-x: $kendo-actions-padding-x !default;
|
|
23855
|
+
/// The vertical padding of the Window action buttons.
|
|
23856
|
+
/// @group window
|
|
23073
23857
|
$kendo-window-buttongroup-padding-y: $kendo-actions-padding-y !default;
|
|
23858
|
+
/// The width of the top border of the Window action buttons.
|
|
23859
|
+
/// @group window
|
|
23074
23860
|
$kendo-window-buttongroup-border-width: 1px !default;
|
|
23075
23861
|
|
|
23862
|
+
/// The background color of the Window.
|
|
23863
|
+
/// @group window
|
|
23076
23864
|
$kendo-window-bg: $kendo-component-bg !default;
|
|
23865
|
+
/// The text color of the Window.
|
|
23866
|
+
/// @group window
|
|
23077
23867
|
$kendo-window-text: $kendo-component-text !default;
|
|
23868
|
+
/// The border color of the Window.
|
|
23869
|
+
/// @group window
|
|
23078
23870
|
$kendo-window-border: $kendo-component-border !default;
|
|
23871
|
+
/// The box shadow of the Window.
|
|
23872
|
+
/// @group window
|
|
23873
|
+
$kendo-window-shadow: 0 3px 3px 0 rgba(0, 0, 0, .06) !default;
|
|
23874
|
+
/// The box shadow of the focused Window.
|
|
23875
|
+
/// @group window
|
|
23876
|
+
$kendo-window-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
|
|
23079
23877
|
|
|
23878
|
+
/// The background color of the Window titlebar.
|
|
23879
|
+
/// @group window
|
|
23080
23880
|
$kendo-window-titlebar-bg: $kendo-component-header-bg !default;
|
|
23881
|
+
/// The text color of the Window titlebar.
|
|
23882
|
+
/// @group window
|
|
23081
23883
|
$kendo-window-titlebar-text: $kendo-component-header-text !default;
|
|
23884
|
+
/// The border color of the Window titlebar.
|
|
23885
|
+
/// @group window
|
|
23082
23886
|
$kendo-window-titlebar-border: inherit !default;
|
|
23887
|
+
/// The background gradient of the Window titlebar.
|
|
23888
|
+
/// @group window
|
|
23083
23889
|
$kendo-window-titlebar-gradient: null !default;
|
|
23084
23890
|
|
|
23085
|
-
|
|
23086
|
-
|
|
23087
|
-
|
|
23891
|
+
/// The map of the width for the different Window sizes.
|
|
23892
|
+
/// @group window
|
|
23088
23893
|
$kendo-window-sizes: (
|
|
23089
23894
|
sm: 300px,
|
|
23090
23895
|
md: 800px,
|
|
23091
23896
|
lg: 1200px
|
|
23092
23897
|
) !default;
|
|
23093
23898
|
|
|
23094
|
-
///
|
|
23899
|
+
/// The theme colors map for the Window.
|
|
23095
23900
|
/// @group window
|
|
23096
23901
|
$kendo-window-theme-colors: (
|
|
23097
23902
|
"primary": k-map-get($kendo-theme-colors, "primary"),
|
|
@@ -25854,56 +26659,56 @@ $_kendo-module-meta: (
|
|
|
25854
26659
|
|
|
25855
26660
|
// Component
|
|
25856
26661
|
// #region @import "./_variables.scss"; -> scss/listbox/_variables.scss
|
|
25857
|
-
//
|
|
26662
|
+
// ListBox
|
|
25858
26663
|
|
|
25859
|
-
///
|
|
26664
|
+
/// The spacing between the ListBox elements.
|
|
25860
26665
|
/// @group listbox
|
|
25861
26666
|
$kendo-listbox-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
25862
|
-
///
|
|
26667
|
+
/// The spacing between the ListBox buttons.
|
|
25863
26668
|
/// @group listbox
|
|
25864
26669
|
$kendo-listbox-button-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
25865
|
-
///
|
|
26670
|
+
/// The width of the ListBox.
|
|
25866
26671
|
/// @group listbox
|
|
25867
26672
|
$kendo-listbox-width: 10em !default;
|
|
25868
|
-
///
|
|
26673
|
+
/// The height of the ListBox.
|
|
25869
26674
|
/// @group listbox
|
|
25870
26675
|
$kendo-listbox-default-height: 200px !default;
|
|
25871
|
-
///
|
|
26676
|
+
/// The width of the border around the ListBox.
|
|
25872
26677
|
/// @group listbox
|
|
25873
26678
|
$kendo-listbox-border-width: 1px !default;
|
|
25874
|
-
///
|
|
26679
|
+
/// The font family of the ListBox.
|
|
25875
26680
|
/// @group listbox
|
|
25876
26681
|
$kendo-listbox-font-family: $kendo-font-family !default;
|
|
25877
|
-
///
|
|
26682
|
+
/// The font size of the ListBox.
|
|
25878
26683
|
/// @group listbox
|
|
25879
26684
|
$kendo-listbox-font-size: $kendo-font-size-md !default;
|
|
25880
|
-
///
|
|
26685
|
+
/// The line height of the ListBox.
|
|
25881
26686
|
/// @group listbox
|
|
25882
26687
|
$kendo-listbox-line-height: $kendo-line-height-md !default;
|
|
25883
|
-
|
|
25884
|
-
///
|
|
25885
|
-
$kendo-listbox-bg: $kendo-component-bg !default;
|
|
25886
|
-
/// Text color of the listbox.
|
|
26688
|
+
|
|
26689
|
+
/// The text color of the ListBox.
|
|
25887
26690
|
/// @group listbox
|
|
25888
26691
|
$kendo-listbox-text: $kendo-component-text !default;
|
|
25889
|
-
///
|
|
26692
|
+
/// The background color of the ListBox.
|
|
26693
|
+
/// @group listbox
|
|
26694
|
+
$kendo-listbox-bg: $kendo-component-bg !default;
|
|
26695
|
+
/// The border color of the ListBox.
|
|
25890
26696
|
/// @group listbox
|
|
25891
26697
|
$kendo-listbox-border: $kendo-component-border !default;
|
|
25892
26698
|
|
|
25893
|
-
///
|
|
26699
|
+
/// The inline padding of the ListBox item.
|
|
25894
26700
|
/// @group listbox
|
|
25895
26701
|
$kendo-listbox-item-padding-x: null !default;
|
|
25896
|
-
///
|
|
26702
|
+
/// The block padding of the ListBox item.
|
|
25897
26703
|
/// @group listbox
|
|
25898
26704
|
$kendo-listbox-item-padding-y: null !default;
|
|
25899
26705
|
|
|
25900
|
-
///
|
|
25901
|
-
/// @group listbox
|
|
25902
|
-
$kendo-listbox-drop-hint-border-width: null !default;
|
|
25903
|
-
/// Width of the drop hint.
|
|
26706
|
+
/// The width of the ListBox drop hint.
|
|
25904
26707
|
/// @group listbox
|
|
25905
26708
|
$kendo-listbox-drop-hint-width: 1px !default;
|
|
25906
|
-
|
|
26709
|
+
/// The width of the border around the ListBox drop hint.
|
|
26710
|
+
/// @group listbox
|
|
26711
|
+
$kendo-listbox-drop-hint-border-width: null !default;
|
|
25907
26712
|
// #endregion
|
|
25908
26713
|
// #region @import "./_layout.scss"; -> scss/listbox/_layout.scss
|
|
25909
26714
|
@mixin kendo-listbox--layout-base() {
|
|
@@ -26064,77 +26869,78 @@ $_kendo-module-meta: (
|
|
|
26064
26869
|
|
|
26065
26870
|
// Component
|
|
26066
26871
|
// #region @import "./_variables.scss"; -> scss/progressbar/_variables.scss
|
|
26067
|
-
//
|
|
26872
|
+
// ProgressBar
|
|
26068
26873
|
|
|
26069
|
-
///
|
|
26874
|
+
/// The height of the ProgressBar.
|
|
26070
26875
|
/// @group progressbar
|
|
26071
26876
|
$kendo-progressbar-height: 22px !default;
|
|
26072
|
-
///
|
|
26877
|
+
/// The horizontal width of the ProgressBar.
|
|
26073
26878
|
/// @group progressbar
|
|
26074
26879
|
$kendo-progressbar-horizontal-width: 100% !default;
|
|
26075
|
-
///
|
|
26880
|
+
/// The animation timing of the ProgressBar.
|
|
26076
26881
|
/// @group progressbar
|
|
26077
26882
|
$kendo-progressbar-animation-timing: 1s linear infinite !default;
|
|
26078
|
-
///
|
|
26883
|
+
/// The width of the border around the ProgressBar.
|
|
26079
26884
|
/// @group progressbar
|
|
26080
26885
|
$kendo-progressbar-border-width: 0px !default;
|
|
26081
|
-
///
|
|
26886
|
+
/// The font family of the ProgressBar.
|
|
26082
26887
|
/// @group progressbar
|
|
26083
26888
|
$kendo-progressbar-font-family: $kendo-font-family !default;
|
|
26084
|
-
///
|
|
26889
|
+
/// The font size of the ProgressBar.
|
|
26085
26890
|
/// @group progressbar
|
|
26086
26891
|
$kendo-progressbar-font-size: $kendo-font-size-sm !default;
|
|
26087
|
-
///
|
|
26892
|
+
/// The line height of the ProgressBar.
|
|
26088
26893
|
/// @group progressbar
|
|
26089
26894
|
$kendo-progressbar-line-height: 1 !default;
|
|
26090
|
-
|
|
26895
|
+
|
|
26896
|
+
/// The background color of the ProgressBar.
|
|
26091
26897
|
/// @group progressbar
|
|
26092
26898
|
$kendo-progressbar-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
|
|
26093
|
-
///
|
|
26899
|
+
/// The text color of the ProgressBar.
|
|
26094
26900
|
/// @group progressbar
|
|
26095
26901
|
$kendo-progressbar-text: $kendo-component-text !default;
|
|
26096
|
-
///
|
|
26902
|
+
/// The border color of the ProgressBar.
|
|
26097
26903
|
/// @group progressbar
|
|
26098
26904
|
$kendo-progressbar-border: $kendo-component-border !default;
|
|
26099
|
-
///
|
|
26905
|
+
/// The background gradient of the ProgressBar.
|
|
26100
26906
|
/// @group progressbar
|
|
26101
26907
|
$kendo-progressbar-gradient: null !default;
|
|
26102
26908
|
|
|
26103
|
-
///
|
|
26909
|
+
/// The progress background color of the ProgressBar.
|
|
26104
26910
|
/// @group progressbar
|
|
26105
26911
|
$kendo-progressbar-value-bg: $kendo-color-primary !default;
|
|
26106
|
-
///
|
|
26912
|
+
/// The progress text color of the ProgressBar.
|
|
26107
26913
|
/// @group progressbar
|
|
26108
26914
|
$kendo-progressbar-value-text: k-contrast-legacy( $kendo-progressbar-value-bg ) !default;
|
|
26109
|
-
///
|
|
26915
|
+
/// The progress border color of the ProgressBar.
|
|
26110
26916
|
/// @group progressbar
|
|
26111
26917
|
$kendo-progressbar-value-border: k-try-shade( $kendo-progressbar-value-bg ) !default;
|
|
26112
|
-
///
|
|
26918
|
+
/// The progress background gradient of the ProgressBar.
|
|
26113
26919
|
/// @group progressbar
|
|
26114
26920
|
$kendo-progressbar-value-gradient: null !default;
|
|
26115
26921
|
|
|
26116
|
-
///
|
|
26922
|
+
/// The background color of the indeterminate ProgressBar.
|
|
26117
26923
|
/// @group progressbar
|
|
26118
26924
|
$kendo-progressbar-indeterminate-bg: $kendo-progressbar-bg !default;
|
|
26119
|
-
///
|
|
26925
|
+
/// The text color of the indeterminate ProgressBar.
|
|
26120
26926
|
/// @group progressbar
|
|
26121
26927
|
$kendo-progressbar-indeterminate-text: $kendo-progressbar-text !default;
|
|
26122
|
-
///
|
|
26928
|
+
/// The border color of the indeterminate ProgressBar.
|
|
26123
26929
|
/// @group progressbar
|
|
26124
26930
|
$kendo-progressbar-indeterminate-border: $kendo-progressbar-border !default;
|
|
26125
|
-
///
|
|
26931
|
+
/// The background gradient of the indeterminate ProgressBar.
|
|
26126
26932
|
/// @group progressbar
|
|
26127
26933
|
$kendo-progressbar-indeterminate-gradient: null !default;
|
|
26128
26934
|
|
|
26129
|
-
///
|
|
26935
|
+
/// The border color of the chunk ProgressBar.
|
|
26130
26936
|
/// @group progressbar
|
|
26131
26937
|
$kendo-progressbar-chunk-border: $kendo-body-bg !default;
|
|
26132
26938
|
|
|
26133
26939
|
// Circular Progressbar
|
|
26134
|
-
///
|
|
26940
|
+
/// The arc stroke color of the circular ProgressBar.
|
|
26135
26941
|
/// @group progressbar
|
|
26136
26942
|
$kendo-circular-progressbar-arc-stroke: $kendo-color-primary !default;
|
|
26137
|
-
///
|
|
26943
|
+
/// The scale stroke background color of the circular ProgressBar.
|
|
26138
26944
|
/// @group progressbar
|
|
26139
26945
|
$kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
26140
26946
|
|
|
@@ -29379,15 +30185,32 @@ $_kendo-module-meta: (
|
|
|
29379
30185
|
|
|
29380
30186
|
// Component
|
|
29381
30187
|
// #region @import "./_variables.scss"; -> scss/colorpalette/_variables.scss
|
|
29382
|
-
//
|
|
30188
|
+
// ColorPalette
|
|
30189
|
+
|
|
30190
|
+
/// The font family of the ColorPalette.
|
|
30191
|
+
/// @group colorpalette
|
|
29383
30192
|
$kendo-color-palette-font-family: $kendo-font-family !default;
|
|
30193
|
+
/// The font size of the ColorPalette.
|
|
30194
|
+
/// @group colorpalette
|
|
29384
30195
|
$kendo-color-palette-font-size: $kendo-font-size-md !default;
|
|
30196
|
+
/// The line height of the ColorPalette.
|
|
30197
|
+
/// @group colorpalette
|
|
29385
30198
|
$kendo-color-palette-line-height: 0 !default;
|
|
29386
30199
|
|
|
30200
|
+
/// The width of the ColorPalette tile.
|
|
30201
|
+
/// @group colorpalette
|
|
29387
30202
|
$kendo-color-palette-tile-width: k-map-get( $kendo-spacing, 6 ) !default;
|
|
30203
|
+
/// The height of the ColorPalette tile.
|
|
30204
|
+
/// @group colorpalette
|
|
29388
30205
|
$kendo-color-palette-tile-height: $kendo-color-palette-tile-width !default;
|
|
30206
|
+
/// The shadow of the ColorPalette focused tile.
|
|
30207
|
+
/// @group colorpalette
|
|
29389
30208
|
$kendo-color-palette-tile-focus-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .5 ) !default;
|
|
30209
|
+
/// The shadow of the ColorPalette hovered tile.
|
|
30210
|
+
/// @group colorpalette
|
|
29390
30211
|
$kendo-color-palette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .8 ) !default;
|
|
30212
|
+
/// The shadow of the ColorPalette selected tile.
|
|
30213
|
+
/// @group colorpalette
|
|
29391
30214
|
$kendo-color-palette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, 1 ) !default;
|
|
29392
30215
|
|
|
29393
30216
|
// #endregion
|
|
@@ -29648,59 +30471,140 @@ $_kendo-module-meta: (
|
|
|
29648
30471
|
// File already imported_once. Skipping output.
|
|
29649
30472
|
// #endregion
|
|
29650
30473
|
|
|
29651
|
-
|
|
29652
30474
|
// ColorGradient
|
|
30475
|
+
|
|
30476
|
+
/// The spacer of the ColorGradient.
|
|
30477
|
+
/// @group cologradient
|
|
29653
30478
|
$kendo-color-gradient-spacer: k-map-get( $kendo-spacing, 3 ) !default;
|
|
29654
30479
|
|
|
30480
|
+
/// The width of the ColorGradient.
|
|
30481
|
+
/// @group cologradient
|
|
29655
30482
|
$kendo-color-gradient-width: 272px !default;
|
|
30483
|
+
/// The width of the border around the ColorGradient.
|
|
30484
|
+
/// @group cologradient
|
|
29656
30485
|
$kendo-color-gradient-border-width: 1px !default;
|
|
30486
|
+
/// The border radius of the ColorGradient.
|
|
30487
|
+
/// @group cologradient
|
|
29657
30488
|
$kendo-color-gradient-border-radius: $kendo-border-radius-md !default;
|
|
30489
|
+
/// The vertical padding of the ColorGradient.
|
|
30490
|
+
/// @group cologradient
|
|
29658
30491
|
$kendo-color-gradient-padding-y: $kendo-color-gradient-spacer !default;
|
|
30492
|
+
/// The horizontal padding of the ColorGradient.
|
|
30493
|
+
/// @group cologradient
|
|
29659
30494
|
$kendo-color-gradient-padding-x: $kendo-color-gradient-padding-y !default;
|
|
30495
|
+
/// The spacing between the sections of the ColorGradient.
|
|
30496
|
+
/// @group cologradient
|
|
29660
30497
|
$kendo-color-gradient-gap: $kendo-color-gradient-spacer !default;
|
|
30498
|
+
/// The font family of the ColorGradient.
|
|
30499
|
+
/// @group cologradient
|
|
29661
30500
|
$kendo-color-gradient-font-family: $kendo-font-family !default;
|
|
30501
|
+
/// The font size of the ColorGradient.
|
|
30502
|
+
/// @group cologradient
|
|
29662
30503
|
$kendo-color-gradient-font-size: $kendo-font-size-md !default;
|
|
30504
|
+
/// The line height of the ColorGradient.
|
|
30505
|
+
/// @group cologradient
|
|
29663
30506
|
$kendo-color-gradient-line-height: $kendo-line-height-md !default;
|
|
29664
|
-
|
|
30507
|
+
/// The text color of the ColorGradient.
|
|
30508
|
+
/// @group cologradient
|
|
29665
30509
|
$kendo-color-gradient-text: $kendo-component-text !default;
|
|
30510
|
+
/// The background color of the ColorGradient.
|
|
30511
|
+
/// @group cologradient
|
|
30512
|
+
$kendo-color-gradient-bg: $kendo-component-bg !default;
|
|
30513
|
+
/// The border color of the ColorGradient.
|
|
30514
|
+
/// @group cologradient
|
|
29666
30515
|
$kendo-color-gradient-border: $kendo-component-border !default;
|
|
29667
30516
|
|
|
30517
|
+
/// The border color of the focused ColorGradient.
|
|
30518
|
+
/// @group cologradient
|
|
29668
30519
|
$kendo-color-gradient-focus-border: null !default;
|
|
30520
|
+
/// The box shadow of the focused ColorGradient.
|
|
30521
|
+
/// @group cologradient
|
|
29669
30522
|
$kendo-color-gradient-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
|
|
29670
30523
|
|
|
30524
|
+
/// The border radius of the ColorGradient canvas.
|
|
30525
|
+
/// @group cologradient
|
|
29671
30526
|
$kendo-color-gradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
30527
|
+
/// The spacing between the items of the ColorGradient canvas.
|
|
30528
|
+
/// @group cologradient
|
|
29672
30529
|
$kendo-color-gradient-canvas-gap: $kendo-color-gradient-spacer !default;
|
|
30530
|
+
/// The height the ColorGradient canvas hsv rectangle.
|
|
30531
|
+
/// @group cologradient
|
|
29673
30532
|
$kendo-color-gradient-canvas-rectangle-height: 180px !default;
|
|
29674
30533
|
|
|
30534
|
+
/// The width of the ColorGradient slider.
|
|
30535
|
+
/// @group cologradient
|
|
29675
30536
|
$kendo-color-gradient-slider-track-size: 10px !default;
|
|
30537
|
+
/// The border radius of the ColorGradient slider.
|
|
30538
|
+
/// @group cologradient
|
|
29676
30539
|
$kendo-color-gradient-slider-border-radius: 10px !default;
|
|
30540
|
+
/// The width of the border around the ColorGradient slider drag handle.
|
|
30541
|
+
/// @group cologradient
|
|
29677
30542
|
$kendo-color-gradient-slider-draghandle-border-width: 3px !default;
|
|
29678
30543
|
|
|
30544
|
+
/// The height of the ColorGradient vertical slider.
|
|
30545
|
+
/// @group cologradient
|
|
29679
30546
|
$kendo-color-gradient-slider-vertical-size: 180px !default;
|
|
30547
|
+
/// The width of the ColorGradient horizontal slider.
|
|
30548
|
+
/// @group cologradient
|
|
29680
30549
|
$kendo-color-gradient-slider-horizontal-size: 100% !default;
|
|
29681
30550
|
|
|
30551
|
+
/// The width of the ColorGradient canvas drag handle.
|
|
30552
|
+
/// @group cologradient
|
|
29682
30553
|
$kendo-color-gradient-draghandle-width: 14px !default;
|
|
30554
|
+
/// The height of the ColorGradient canvas drag handle.
|
|
30555
|
+
/// @group cologradient
|
|
29683
30556
|
$kendo-color-gradient-draghandle-height: 14px !default;
|
|
30557
|
+
/// The width of the border around the ColorGradient canvas drag handle.
|
|
30558
|
+
/// @group cologradient
|
|
29684
30559
|
$kendo-color-gradient-draghandle-border-width: 1px !default;
|
|
30560
|
+
/// The border radius of the ColorGradient canvas drag handle.
|
|
30561
|
+
/// @group cologradient
|
|
29685
30562
|
$kendo-color-gradient-draghandle-border-radius: 50% !default;
|
|
29686
|
-
|
|
30563
|
+
/// The text color of the ColorGradient canvas drag handle.
|
|
30564
|
+
/// @group cologradient
|
|
29687
30565
|
$kendo-color-gradient-draghandle-text: null !default;
|
|
30566
|
+
/// The background color of the ColorGradient canvas drag handle.
|
|
30567
|
+
/// @group cologradient
|
|
30568
|
+
$kendo-color-gradient-draghandle-bg: transparent !default;
|
|
30569
|
+
/// The color of the border around the ColorGradient canvas drag handle.
|
|
30570
|
+
/// @group cologradient
|
|
29688
30571
|
$kendo-color-gradient-draghandle-border: rgba( $kendo-color-white, .8) !default;
|
|
30572
|
+
/// The box shadow of the ColorGradient canvas drag handle.
|
|
30573
|
+
/// @group cologradient
|
|
29689
30574
|
$kendo-color-gradient-draghandle-shadow: 0 1px 4px rgba(0, 0, 0, .5) !default;
|
|
30575
|
+
/// The box shadow of the focused ColorGradient canvas drag handle.
|
|
30576
|
+
/// @group cologradient
|
|
29690
30577
|
$kendo-color-gradient-draghandle-focus-shadow: 0 1px 4px black !default;
|
|
30578
|
+
/// The box shadow of the hovered ColorGradient canvas drag handle.
|
|
30579
|
+
/// @group cologradient
|
|
29691
30580
|
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-gradient-draghandle-focus-shadow !default;
|
|
29692
30581
|
|
|
30582
|
+
/// The vertical margin of the ColorGradient canvas drag handle.
|
|
30583
|
+
/// @group cologradient
|
|
29693
30584
|
$kendo-color-gradient-canvas-draghandle-margin-y: - k-math-div( $kendo-color-gradient-draghandle-height, 2 ) !default;
|
|
30585
|
+
/// The horizontal margin of the ColorGradient canvas drag handle.
|
|
30586
|
+
/// @group cologradient
|
|
29694
30587
|
$kendo-color-gradient-canvas-draghandle-margin-x: - k-math-div( $kendo-color-gradient-draghandle-width, 2 ) !default;
|
|
29695
30588
|
|
|
30589
|
+
/// The width of the ColorGradient input.
|
|
30590
|
+
/// @group cologradient
|
|
29696
30591
|
$kendo-color-gradient-input-width: 46px !default;
|
|
30592
|
+
/// The spacing between the ColorGradient inputs.
|
|
30593
|
+
/// @group cologradient
|
|
29697
30594
|
$kendo-color-gradient-input-gap: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
|
|
30595
|
+
/// The spacing between the ColorGradient inputs and their labels.
|
|
30596
|
+
/// @group cologradient
|
|
29698
30597
|
$kendo-color-gradient-input-label-gap: k-math-div( $kendo-color-gradient-spacer, 3 ) !default;
|
|
30598
|
+
/// The text color of the ColorGradient input labels.
|
|
30599
|
+
/// @group cologradient
|
|
29699
30600
|
$kendo-color-gradient-input-label-text: $kendo-subtle-text !default;
|
|
29700
30601
|
|
|
30602
|
+
/// The font weight of the ColorGradient contrast ratio text.
|
|
30603
|
+
/// @group cologradient
|
|
29701
30604
|
$kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !default;
|
|
30605
|
+
/// The spacing between the items in the ColorGradient contrast tool.
|
|
30606
|
+
/// @group cologradient
|
|
29702
30607
|
$kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
|
|
29703
|
-
|
|
29704
30608
|
// #endregion
|
|
29705
30609
|
// #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
|
|
29706
30610
|
@mixin kendo-color-gradient--layout-base() {
|
|
@@ -30051,38 +30955,86 @@ $_kendo-module-meta: (
|
|
|
30051
30955
|
|
|
30052
30956
|
// Component
|
|
30053
30957
|
// #region @import "./_variables.scss"; -> scss/coloreditor/_variables.scss
|
|
30054
|
-
//
|
|
30958
|
+
// ColorEditor/FlatColorPicker
|
|
30959
|
+
|
|
30960
|
+
/// The spacer of the ColorEditor.
|
|
30961
|
+
/// @group coloreditor
|
|
30055
30962
|
$kendo-color-editor-spacer: k-map-get( $kendo-spacing, 3 ) !default;
|
|
30056
30963
|
|
|
30964
|
+
/// The minimum width of the ColorEditor.
|
|
30965
|
+
/// @group coloreditor
|
|
30057
30966
|
$kendo-color-editor-min-width: 272px !default;
|
|
30967
|
+
/// The width of the border around the ColorEditor.
|
|
30968
|
+
/// @group coloreditor
|
|
30058
30969
|
$kendo-color-editor-border-width: 1px !default;
|
|
30970
|
+
/// The border radius of the ColorEditor.
|
|
30971
|
+
/// @group coloreditor
|
|
30059
30972
|
$kendo-color-editor-border-radius: $kendo-border-radius-md !default;
|
|
30973
|
+
/// The font family of the ColorEditor.
|
|
30974
|
+
/// @group coloreditor
|
|
30060
30975
|
$kendo-color-editor-font-family: $kendo-font-family !default;
|
|
30976
|
+
/// The font size of the ColorEditor.
|
|
30977
|
+
/// @group coloreditor
|
|
30061
30978
|
$kendo-color-editor-font-size: $kendo-font-size-md !default;
|
|
30979
|
+
/// The line height of the ColorEditor.
|
|
30980
|
+
/// @group coloreditor
|
|
30062
30981
|
$kendo-color-editor-line-height: $kendo-line-height-md !default;
|
|
30063
|
-
|
|
30982
|
+
/// The text color of the ColorEditor.
|
|
30983
|
+
/// @group coloreditor
|
|
30064
30984
|
$kendo-color-editor-text: $kendo-component-text !default;
|
|
30985
|
+
/// The background color of the ColorEditor.
|
|
30986
|
+
/// @group coloreditor
|
|
30987
|
+
$kendo-color-editor-bg: $kendo-component-bg !default;
|
|
30988
|
+
/// The border color of the ColorEditor.
|
|
30989
|
+
/// @group coloreditor
|
|
30065
30990
|
$kendo-color-editor-border: $kendo-component-border !default;
|
|
30066
30991
|
|
|
30992
|
+
/// The border color of the focused ColorEditor.
|
|
30993
|
+
/// @group coloreditor
|
|
30067
30994
|
$kendo-color-editor-focus-border: null !default;
|
|
30995
|
+
/// The box shadow of the focused ColorEditor.
|
|
30996
|
+
/// @group coloreditor
|
|
30068
30997
|
$kendo-color-editor-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
|
|
30069
30998
|
|
|
30999
|
+
/// The vertical padding of the ColorEditor header.
|
|
31000
|
+
/// @group coloreditor
|
|
30070
31001
|
$kendo-color-editor-header-padding-y: $kendo-color-editor-spacer !default;
|
|
31002
|
+
/// The horizontal padding of the ColorEditor header.
|
|
31003
|
+
/// @group coloreditor
|
|
30071
31004
|
$kendo-color-editor-header-padding-x: $kendo-color-editor-header-padding-y !default;
|
|
31005
|
+
/// The spacing between the ColorEditor header actions.
|
|
31006
|
+
/// @group coloreditor
|
|
30072
31007
|
$kendo-color-editor-header-actions-gap: k-math-div( $kendo-color-editor-spacer, 1.5 ) !default;
|
|
30073
31008
|
|
|
30074
|
-
|
|
31009
|
+
/// The width of the ColorEditor preview.
|
|
31010
|
+
/// @group coloreditor
|
|
30075
31011
|
$kendo-color-editor-color-preview-width: 32px !default;
|
|
31012
|
+
/// The height of the ColorEditor preview.
|
|
31013
|
+
/// @group coloreditor
|
|
30076
31014
|
$kendo-color-editor-color-preview-height: 12px !default;
|
|
31015
|
+
/// The spacing between the colors in the ColorEditor preview.
|
|
31016
|
+
/// @group coloreditor
|
|
31017
|
+
$kendo-color-editor-preview-gap: k-map-get( $kendo-spacing, 1 ) !default;
|
|
30077
31018
|
|
|
31019
|
+
/// The vertical padding of the ColorEditor views container.
|
|
31020
|
+
/// @group coloreditor
|
|
30078
31021
|
$kendo-color-editor-views-padding-y: $kendo-color-editor-spacer !default;
|
|
31022
|
+
/// The horizontal padding of the ColorEditor views container.
|
|
31023
|
+
/// @group coloreditor
|
|
30079
31024
|
$kendo-color-editor-views-padding-x: $kendo-color-editor-views-padding-y !default;
|
|
31025
|
+
/// The spacing of the ColorEditor views container.
|
|
31026
|
+
/// @group coloreditor
|
|
30080
31027
|
$kendo-color-editor-views-gap: $kendo-color-editor-spacer !default;
|
|
30081
31028
|
|
|
31029
|
+
/// The outline color of the focused ColorGradient.
|
|
31030
|
+
/// @group coloreditor
|
|
30082
31031
|
$kendo-color-editor-color-gradient-focus-outline-color: rgba(0, 0, 0, .3) !default;
|
|
31032
|
+
/// The outline width of the focused ColorGradient.
|
|
31033
|
+
/// @group coloreditor
|
|
30083
31034
|
$kendo-color-editor-color-gradient-focus-outline: 2px !default;
|
|
31035
|
+
/// The outline offset of the focused ColorGradient.
|
|
31036
|
+
/// @group coloreditor
|
|
30084
31037
|
$kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
|
|
30085
|
-
|
|
30086
31038
|
// #endregion
|
|
30087
31039
|
// #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
|
|
30088
31040
|
@mixin kendo-color-editor--layout-base() {
|
|
@@ -33265,49 +34217,102 @@ $kendo-dropzone-note-text: $kendo-subtle-text !default;
|
|
|
33265
34217
|
// #region @import "./_variables.scss"; -> scss/upload/_variables.scss
|
|
33266
34218
|
// Upload
|
|
33267
34219
|
|
|
34220
|
+
/// The width of the border around the Upload.
|
|
34221
|
+
/// @group upload
|
|
33268
34222
|
$kendo-upload-border-width: 1px !default;
|
|
34223
|
+
/// The font family of the Upload.
|
|
34224
|
+
/// @group upload
|
|
33269
34225
|
$kendo-upload-font-family: $kendo-font-family !default;
|
|
34226
|
+
/// The font size of the Upload.
|
|
34227
|
+
/// @group upload
|
|
33270
34228
|
$kendo-upload-font-size: $kendo-font-size-md !default;
|
|
34229
|
+
/// The line height of the Upload.
|
|
34230
|
+
/// @group upload
|
|
33271
34231
|
$kendo-upload-line-height: $kendo-line-height-md !default;
|
|
34232
|
+
/// The maximum height of the list with uploaded items.
|
|
34233
|
+
/// @group upload
|
|
33272
34234
|
$kendo-upload-max-height: 300px !default;
|
|
33273
34235
|
|
|
33274
|
-
|
|
34236
|
+
/// The text color of the Upload.
|
|
34237
|
+
/// @group upload
|
|
33275
34238
|
$kendo-upload-text: $kendo-component-text !default;
|
|
34239
|
+
/// The background color of the Upload.
|
|
34240
|
+
/// @group upload
|
|
34241
|
+
$kendo-upload-bg: $kendo-component-bg !default;
|
|
34242
|
+
/// The border color of the Upload.
|
|
34243
|
+
/// @group upload
|
|
33276
34244
|
$kendo-upload-border: $kendo-component-border !default;
|
|
33277
34245
|
|
|
34246
|
+
/// The horizontal padding of the Upload dropzone.
|
|
34247
|
+
/// @group upload
|
|
33278
34248
|
$kendo-upload-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34249
|
+
/// The vertical padding of the Upload dropzone.
|
|
34250
|
+
/// @group upload
|
|
33279
34251
|
$kendo-upload-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
33280
|
-
|
|
34252
|
+
/// The text color of the Upload dropzone.
|
|
34253
|
+
/// @group upload
|
|
33281
34254
|
$kendo-upload-dropzone-text: $kendo-component-header-text !default;
|
|
34255
|
+
/// The background color of the Upload dropzone.
|
|
34256
|
+
/// @group upload
|
|
34257
|
+
$kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
|
|
34258
|
+
/// The border color of the Upload dropzone.
|
|
34259
|
+
/// @group upload
|
|
33282
34260
|
$kendo-upload-dropzone-border: $kendo-upload-border !default;
|
|
34261
|
+
/// The background color of the hovered Upload dropzone.
|
|
34262
|
+
/// @group upload
|
|
33283
34263
|
$kendo-upload-dropzone-hover-bg: $kendo-hover-bg !default;
|
|
33284
34264
|
|
|
34265
|
+
/// The text color of the Upload status message.
|
|
34266
|
+
/// @group upload
|
|
33285
34267
|
$kendo-upload-status-text: $kendo-subtle-text !default;
|
|
34268
|
+
/// The opacity of the Upload status message.
|
|
34269
|
+
/// @group upload
|
|
33286
34270
|
$kendo-upload-status-text-opacity: null !default;
|
|
33287
34271
|
|
|
34272
|
+
/// The horizontal padding of an uploaded item.
|
|
34273
|
+
/// @group upload
|
|
33288
34274
|
$kendo-upload-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34275
|
+
/// The vertical padding of an uploaded item.
|
|
34276
|
+
/// @group upload
|
|
33289
34277
|
$kendo-upload-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
33290
34278
|
|
|
34279
|
+
/// The vertical spacing between uploaded batch items.
|
|
34280
|
+
/// @group upload
|
|
33291
34281
|
$kendo-upload-multiple-items-spacing: 12px !default;
|
|
33292
34282
|
|
|
34283
|
+
/// The font size of the Upload validation message.
|
|
34284
|
+
/// @group upload
|
|
33293
34285
|
$kendo-upload-validation-font-size: 11px !default;
|
|
34286
|
+
/// The horizontal spacing of the Upload status icon.
|
|
34287
|
+
/// @group upload
|
|
33294
34288
|
$kendo-upload-icon-spacing: $kendo-icon-spacing !default;
|
|
34289
|
+
/// The color of the uploaded items icon.
|
|
34290
|
+
/// @group upload
|
|
33295
34291
|
$kendo-upload-icon-color: $kendo-subtle-text !default;
|
|
33296
34292
|
|
|
33297
|
-
|
|
33298
|
-
|
|
33299
|
-
$kendo-upload-item-image-border: 0px !default; // TODO: remove
|
|
33300
|
-
|
|
34293
|
+
/// The thickness of the Upload progress bar.
|
|
34294
|
+
/// @group upload
|
|
33301
34295
|
$kendo-upload-progress-thickness: 2px !default;
|
|
34296
|
+
/// The background color of the Upload progress bar.
|
|
34297
|
+
/// @group upload
|
|
33302
34298
|
$kendo-upload-progress-bg: $kendo-color-info !default;
|
|
33303
34299
|
|
|
33304
|
-
|
|
34300
|
+
/// The success text color of the Upload.
|
|
34301
|
+
/// @group upload
|
|
33305
34302
|
$kendo-upload-success-text: $kendo-color-success !default;
|
|
34303
|
+
/// The success background color of the Upload progress bar.
|
|
34304
|
+
/// @group upload
|
|
34305
|
+
$kendo-upload-success-bg: $kendo-color-success !default;
|
|
33306
34306
|
|
|
33307
|
-
|
|
34307
|
+
/// The error text color of the Upload.
|
|
34308
|
+
/// @group upload
|
|
33308
34309
|
$kendo-upload-error-text: $kendo-color-error !default;
|
|
33309
|
-
|
|
34310
|
+
/// The error background color of the Upload progress bar.
|
|
34311
|
+
/// @group upload
|
|
34312
|
+
$kendo-upload-error-bg: $kendo-color-error !default;
|
|
33310
34313
|
|
|
34314
|
+
/// The shadow of the focused Upload button, actions and uploaded items.
|
|
34315
|
+
/// @group upload
|
|
33311
34316
|
$kendo-upload-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
33312
34317
|
|
|
33313
34318
|
// #endregion
|
|
@@ -33729,29 +34734,60 @@ $_kendo-module-meta: (
|
|
|
33729
34734
|
|
|
33730
34735
|
// Component
|
|
33731
34736
|
// #region @import "./_variables.scss"; -> scss/appbar/_variables.scss
|
|
33732
|
-
//
|
|
33733
|
-
|
|
34737
|
+
// AppBar
|
|
34738
|
+
|
|
34739
|
+
/// The horizontal margin of the AppBar.
|
|
34740
|
+
/// @group appbar
|
|
33734
34741
|
$kendo-appbar-margin-x: null !default;
|
|
33735
|
-
|
|
34742
|
+
/// The vertical margin of the AppBar.
|
|
34743
|
+
/// @group appbar
|
|
34744
|
+
$kendo-appbar-margin-y: null !default;
|
|
34745
|
+
/// The horizontal padding of the AppBar.
|
|
34746
|
+
/// @group appbar
|
|
33736
34747
|
$kendo-appbar-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34748
|
+
/// The vertical padding of the AppBar.
|
|
34749
|
+
/// @group appbar
|
|
34750
|
+
$kendo-appbar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34751
|
+
/// The width of the border around the AppBar.
|
|
34752
|
+
/// @group appbar
|
|
33737
34753
|
$kendo-appbar-border-width: 0px !default;
|
|
33738
|
-
|
|
34754
|
+
/// The z-index of the AppBar.
|
|
34755
|
+
/// @group appbar
|
|
33739
34756
|
$kendo-appbar-zindex: 1000 !default;
|
|
33740
|
-
|
|
34757
|
+
/// The font family of the AppBar.
|
|
34758
|
+
/// @group appbar
|
|
34759
|
+
$kendo-appbar-font-family: $kendo-font-family !default;
|
|
34760
|
+
/// The font size of the AppBar.
|
|
34761
|
+
/// @group appbar
|
|
33741
34762
|
$kendo-appbar-font-size: $kendo-font-size-md !default;
|
|
34763
|
+
/// The line height of the AppBar.
|
|
34764
|
+
/// @group appbar
|
|
33742
34765
|
$kendo-appbar-line-height: $kendo-line-height-md !default;
|
|
33743
|
-
|
|
34766
|
+
|
|
34767
|
+
/// The spacing between the AppBar sections.
|
|
34768
|
+
/// @group appbar
|
|
33744
34769
|
$kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
|
|
33745
34770
|
|
|
34771
|
+
/// The background color of the AppBar based on light theme color.
|
|
34772
|
+
/// @group appbar
|
|
33746
34773
|
$kendo-appbar-light-bg: $kendo-color-light !default;
|
|
34774
|
+
/// The text color of the AppBar based on light theme color.
|
|
34775
|
+
/// @group appbar
|
|
33747
34776
|
$kendo-appbar-light-text: k-contrast-legacy( $kendo-color-light ) !default;
|
|
33748
34777
|
|
|
34778
|
+
/// The background color of the AppBar based on dark theme color.
|
|
34779
|
+
/// @group appbar
|
|
33749
34780
|
$kendo-appbar-dark-bg: $kendo-color-dark !default;
|
|
34781
|
+
/// The text color of the AppBar based on dark theme color.
|
|
34782
|
+
/// @group appbar
|
|
33750
34783
|
$kendo-appbar-dark-text: k-contrast-legacy( $kendo-color-dark ) !default;
|
|
33751
34784
|
|
|
34785
|
+
/// The box shadow of the AppBar.
|
|
34786
|
+
/// @group appbar
|
|
33752
34787
|
$kendo-appbar-box-shadow: 0px 1px 1px rgba(0, 0, 0, .16) !default;
|
|
34788
|
+
/// The box shadow of the AppBar with bottom position.
|
|
34789
|
+
/// @group appbar
|
|
33753
34790
|
$kendo-appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
33754
|
-
|
|
33755
34791
|
// #endregion
|
|
33756
34792
|
// #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
|
|
33757
34793
|
@mixin kendo-appbar--layout-base() {
|
|
@@ -34564,6 +35600,7 @@ $kendo-actionsheet-item-disabled-shadow: null !default;
|
|
|
34564
35600
|
|
|
34565
35601
|
|
|
34566
35602
|
// Adaptive Actionsheet
|
|
35603
|
+
$kendo-adaptive-actionsheet-font-size: $kendo-font-size-lg !default;
|
|
34567
35604
|
$kendo-adaptive-actionsheet-titlebar-border-width: 1px !default;
|
|
34568
35605
|
$kendo-adaptive-actionsheet-titlebar-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
34569
35606
|
$kendo-adaptive-actionsheet-titlebar-padding-x: $kendo-adaptive-actionsheet-titlebar-padding-y !default;
|
|
@@ -34809,6 +35846,7 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
|
|
|
34809
35846
|
.k-adaptive-actionsheet {
|
|
34810
35847
|
max-width: 100%;
|
|
34811
35848
|
width: 100%;
|
|
35849
|
+
font-size: $kendo-adaptive-actionsheet-font-size;
|
|
34812
35850
|
|
|
34813
35851
|
// TMP: this should be moved to action sheet
|
|
34814
35852
|
display: flex;
|
|
@@ -34848,6 +35886,12 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
|
|
|
34848
35886
|
padding-inline: 0;
|
|
34849
35887
|
}
|
|
34850
35888
|
|
|
35889
|
+
.k-menu-group {
|
|
35890
|
+
height: 100%;
|
|
35891
|
+
overflow: auto;
|
|
35892
|
+
position: static;
|
|
35893
|
+
}
|
|
35894
|
+
|
|
34851
35895
|
.k-calendar {
|
|
34852
35896
|
margin-inline: auto;
|
|
34853
35897
|
border-width: 0;
|
|
@@ -35391,17 +36435,31 @@ $_kendo-module-meta: (
|
|
|
35391
36435
|
// Component
|
|
35392
36436
|
// #region @import "./_variables.scss"; -> scss/dialog/_variables.scss
|
|
35393
36437
|
// Dialog
|
|
36438
|
+
|
|
36439
|
+
/// The background color of the Dialog titlebar.
|
|
36440
|
+
/// @group dialog
|
|
35394
36441
|
$kendo-dialog-titlebar-bg: $kendo-component-header-bg !default;
|
|
36442
|
+
/// The text color of the Dialog titlebar.
|
|
36443
|
+
/// @group dialog
|
|
35395
36444
|
$kendo-dialog-titlebar-text: $kendo-component-header-text !default;
|
|
36445
|
+
/// The border color of the Dialog titlebar.
|
|
36446
|
+
/// @group dialog
|
|
35396
36447
|
$kendo-dialog-titlebar-border: inherit !default;
|
|
35397
36448
|
|
|
36449
|
+
/// The horizontal padding of the Dialog action buttons.
|
|
36450
|
+
/// @group dialog
|
|
35398
36451
|
$kendo-dialog-buttongroup-padding-x: $kendo-actions-padding-x !default;
|
|
36452
|
+
/// The vertical padding of the Dialog action buttons.
|
|
36453
|
+
/// @group dialog
|
|
35399
36454
|
$kendo-dialog-buttongroup-padding-y: $kendo-actions-padding-y !default;
|
|
36455
|
+
/// The width of the top border of the Dialog action buttons.
|
|
36456
|
+
/// @group dialog
|
|
35400
36457
|
$kendo-dialog-buttongroup-border-width: 1px !default;
|
|
35401
|
-
|
|
36458
|
+
/// The spacing between the Dialog action buttons.
|
|
36459
|
+
/// @group dialog
|
|
35402
36460
|
$kendo-dialog-button-spacing: $kendo-actions-button-spacing !default;
|
|
35403
36461
|
|
|
35404
|
-
///
|
|
36462
|
+
/// The theme colors map for the Dialog.
|
|
35405
36463
|
/// @group dialog
|
|
35406
36464
|
$kendo-dialog-theme-colors: (
|
|
35407
36465
|
"primary": k-map-get($kendo-theme-colors, "primary"),
|
|
@@ -35993,44 +37051,43 @@ $_kendo-module-meta: (
|
|
|
35993
37051
|
// #region @import "./_variables.scss"; -> scss/notification/_variables.scss
|
|
35994
37052
|
// Notification
|
|
35995
37053
|
|
|
35996
|
-
///
|
|
37054
|
+
/// The horizontal padding of the Notification.
|
|
35997
37055
|
/// @group notification
|
|
35998
37056
|
$kendo-notification-padding-x: 8px !default;
|
|
35999
|
-
///
|
|
37057
|
+
/// The vertical padding of the Notification.
|
|
36000
37058
|
/// @group notification
|
|
36001
37059
|
$kendo-notification-padding-y: 4px !default;
|
|
36002
|
-
///
|
|
37060
|
+
/// The width of the border around the Notification.
|
|
36003
37061
|
/// @group notification
|
|
36004
37062
|
$kendo-notification-border-width: 1px !default;
|
|
36005
|
-
///
|
|
37063
|
+
/// The border radius of the Notification.
|
|
36006
37064
|
/// @group notification
|
|
36007
37065
|
$kendo-notification-border-radius: $kendo-border-radius-md !default;
|
|
36008
|
-
///
|
|
36009
|
-
/// @group notification
|
|
36010
|
-
$kendo-notification-shadow: $kendo-popup-shadow !default;
|
|
36011
|
-
/// Font family of the notification.
|
|
37066
|
+
/// The font family of the Notification.
|
|
36012
37067
|
/// @group notification
|
|
36013
37068
|
$kendo-notification-font-family: $kendo-font-family !default;
|
|
36014
|
-
///
|
|
37069
|
+
/// The font size of the Notification.
|
|
36015
37070
|
/// @group notification
|
|
36016
37071
|
$kendo-notification-font-size: $kendo-font-size-sm !default;
|
|
36017
|
-
///
|
|
37072
|
+
/// The line height of the Notification.
|
|
36018
37073
|
/// @group notification
|
|
36019
37074
|
$kendo-notification-line-height: $kendo-line-height-md !default;
|
|
36020
|
-
|
|
36021
|
-
/// Horizontal spacing of the notification icon.
|
|
36022
|
-
/// @group notification
|
|
36023
|
-
$kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
36024
|
-
|
|
36025
|
-
/// Background color of the notification.
|
|
37075
|
+
/// The background color of the Notification.
|
|
36026
37076
|
/// @group notification
|
|
36027
37077
|
$kendo-notification-bg: $kendo-component-bg !default;
|
|
36028
|
-
///
|
|
37078
|
+
/// The text color of the Notification.
|
|
36029
37079
|
/// @group notification
|
|
36030
37080
|
$kendo-notification-text: $kendo-component-text !default;
|
|
36031
|
-
///
|
|
37081
|
+
/// The border color of the Notification.
|
|
36032
37082
|
/// @group notification
|
|
36033
37083
|
$kendo-notification-border: $kendo-component-border !default;
|
|
37084
|
+
/// The box shadow of the Notification.
|
|
37085
|
+
/// @group notification
|
|
37086
|
+
$kendo-notification-shadow: $kendo-popup-shadow !default;
|
|
37087
|
+
|
|
37088
|
+
/// The horizontal spacing of the Notification icon.
|
|
37089
|
+
/// @group notification
|
|
37090
|
+
$kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
36034
37091
|
|
|
36035
37092
|
@function notification-theme( $colors ) {
|
|
36036
37093
|
$_theme: ();
|
|
@@ -36046,9 +37103,11 @@ $kendo-notification-border: $kendo-component-border !default;
|
|
|
36046
37103
|
@return $_theme;
|
|
36047
37104
|
}
|
|
36048
37105
|
|
|
36049
|
-
///
|
|
37106
|
+
/// The theme colors map for the Notification.
|
|
36050
37107
|
/// @group notification
|
|
36051
37108
|
$kendo-notification-theme-colors: $kendo-theme-colors !default;
|
|
37109
|
+
/// The generated theme colors map for the Notification.
|
|
37110
|
+
/// @group notification
|
|
36052
37111
|
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
|
|
36053
37112
|
|
|
36054
37113
|
// #endregion
|
|
@@ -36840,37 +37899,90 @@ $kendo-card-callout-height: 20px !default;
|
|
|
36840
37899
|
// Component
|
|
36841
37900
|
// #region @import "./_variables.scss"; -> scss/popover/_variables.scss
|
|
36842
37901
|
// Popover
|
|
37902
|
+
|
|
37903
|
+
/// The width of the border around the Popover.
|
|
37904
|
+
/// @group popover
|
|
36843
37905
|
$kendo-popover-border-width: $kendo-card-border-width !default;
|
|
37906
|
+
/// The style of the border around the Popover.
|
|
37907
|
+
/// @group popover
|
|
36844
37908
|
$kendo-popover-border-style: solid !default;
|
|
37909
|
+
/// The radius of the border around the Popover.
|
|
37910
|
+
/// @group popover
|
|
36845
37911
|
$kendo-popover-border-radius: $kendo-card-border-radius !default;
|
|
36846
|
-
|
|
37912
|
+
/// The font family of the Popover.
|
|
37913
|
+
/// @group popover
|
|
36847
37914
|
$kendo-popover-font-family: $kendo-card-font-family !default;
|
|
37915
|
+
/// The font size of the Popover.
|
|
37916
|
+
/// @group popover
|
|
37917
|
+
$kendo-popover-font-size: $kendo-card-font-size !default;
|
|
37918
|
+
/// The line height of the Popover.
|
|
37919
|
+
/// @group popover
|
|
36848
37920
|
$kendo-popover-line-height: $kendo-card-line-height !default;
|
|
36849
|
-
|
|
37921
|
+
|
|
37922
|
+
/// The text color of the Popover.
|
|
37923
|
+
/// @group popover
|
|
36850
37924
|
$kendo-popover-text: $kendo-component-text !default;
|
|
37925
|
+
/// The background color of the Popover.
|
|
37926
|
+
/// @group popover
|
|
37927
|
+
$kendo-popover-bg: $kendo-component-bg !default;
|
|
37928
|
+
/// The border color of the Popover.
|
|
37929
|
+
/// @group popover
|
|
36851
37930
|
$kendo-popover-border: $kendo-component-border !default;
|
|
37931
|
+
/// The box shadow of the Popover.
|
|
37932
|
+
/// @group popover
|
|
36852
37933
|
$kendo-popover-shadow: $kendo-popup-shadow !default;
|
|
36853
37934
|
|
|
36854
|
-
|
|
37935
|
+
/// The horizontal padding of the Popover header.
|
|
37936
|
+
/// @group popover
|
|
36855
37937
|
$kendo-popover-header-padding-x: $kendo-card-header-padding-x !default;
|
|
37938
|
+
/// The vertical padding of the Popover header.
|
|
37939
|
+
/// @group popover
|
|
37940
|
+
$kendo-popover-header-padding-y: $kendo-card-header-padding-y !default;
|
|
37941
|
+
/// The border width of the Popover header.
|
|
37942
|
+
/// @group popover
|
|
36856
37943
|
$kendo-popover-header-border-width: $kendo-card-header-border-width !default;
|
|
37944
|
+
/// The border style of the Popover header.
|
|
37945
|
+
/// @group popover
|
|
36857
37946
|
$kendo-popover-header-border-style: $kendo-popover-border-style !default;
|
|
36858
|
-
|
|
37947
|
+
/// The text color of the Popover header.
|
|
37948
|
+
/// @group popover
|
|
36859
37949
|
$kendo-popover-header-text: $kendo-card-header-text !default;
|
|
37950
|
+
/// The background color of the Popover header.
|
|
37951
|
+
/// @group popover
|
|
37952
|
+
$kendo-popover-header-bg: $kendo-card-header-bg !default;
|
|
37953
|
+
/// The border color of the Popover header.
|
|
37954
|
+
/// @group popover
|
|
36860
37955
|
$kendo-popover-header-border: $kendo-card-header-border !default;
|
|
36861
37956
|
|
|
36862
|
-
|
|
37957
|
+
/// The horizontal padding of the Popover body.
|
|
37958
|
+
/// @group popover
|
|
36863
37959
|
$kendo-popover-body-padding-x: $kendo-card-body-padding-x !default;
|
|
37960
|
+
/// The vertical padding of the Popover body.
|
|
37961
|
+
/// @group popover
|
|
37962
|
+
$kendo-popover-body-padding-y: $kendo-card-body-padding-y !default;
|
|
36864
37963
|
|
|
37964
|
+
/// The border width of the Popover actions.
|
|
37965
|
+
/// @group popover
|
|
36865
37966
|
$kendo-popover-actions-border-width: $kendo-popover-border-width !default;
|
|
36866
37967
|
|
|
37968
|
+
/// The width of the Popover callout.
|
|
37969
|
+
/// @group popover
|
|
36867
37970
|
$kendo-popover-callout-width: $kendo-card-callout-width !default;
|
|
37971
|
+
/// The height of the Popover callout.
|
|
37972
|
+
/// @group popover
|
|
36868
37973
|
$kendo-popover-callout-height: $kendo-card-callout-height !default;
|
|
37974
|
+
/// The border width of the Popover callout.
|
|
37975
|
+
/// @group popover
|
|
36869
37976
|
$kendo-popover-callout-border-width: $kendo-popover-border-width !default;
|
|
37977
|
+
/// The border style of the Popover callout.
|
|
37978
|
+
/// @group popover
|
|
36870
37979
|
$kendo-popover-callout-border-style: $kendo-popover-border-style !default;
|
|
37980
|
+
/// The background color of the Popover callout.
|
|
37981
|
+
/// @group popover
|
|
36871
37982
|
$kendo-popover-callout-bg: $kendo-popover-bg !default;
|
|
37983
|
+
/// The border color of the Popover callout.
|
|
37984
|
+
/// @group popover
|
|
36872
37985
|
$kendo-popover-callout-border: $kendo-popover-border !default;
|
|
36873
|
-
|
|
36874
37986
|
// #endregion
|
|
36875
37987
|
// #region @import "./_layout.scss"; -> scss/popover/_layout.scss
|
|
36876
37988
|
@mixin kendo-popover--layout-base() {
|
|
@@ -37200,35 +38312,68 @@ $_kendo-module-meta: (
|
|
|
37200
38312
|
|
|
37201
38313
|
// Component
|
|
37202
38314
|
// #region @import "./_variables.scss"; -> scss/bottom-navigation/_variables.scss
|
|
37203
|
-
//
|
|
38315
|
+
// BottomNavigation
|
|
38316
|
+
|
|
38317
|
+
/// The horizontal padding of the BottomNavigation.
|
|
38318
|
+
/// @group bottom-navigation
|
|
37204
38319
|
$kendo-bottom-nav-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
38320
|
+
/// The vertical padding of the BottomNavigation.
|
|
38321
|
+
/// @group bottom-navigation
|
|
37205
38322
|
$kendo-bottom-nav-padding-y: $kendo-bottom-nav-padding-x !default;
|
|
38323
|
+
/// The spacing between the BottomNavigation items.
|
|
38324
|
+
/// @group bottom-navigation
|
|
37206
38325
|
$kendo-bottom-nav-gap: $kendo-bottom-nav-padding-x !default;
|
|
38326
|
+
/// The width of the border around the BottomNavigation.
|
|
38327
|
+
/// @group bottom-navigation
|
|
37207
38328
|
$kendo-bottom-nav-border-width: 1px 0px 0px 0px !default;
|
|
37208
|
-
|
|
38329
|
+
/// The font family of the BottomNavigation.
|
|
38330
|
+
/// @group bottom-navigation
|
|
37209
38331
|
$kendo-bottom-nav-font-family: $kendo-font-family !default;
|
|
38332
|
+
/// The font size of the BottomNavigation.
|
|
38333
|
+
/// @group bottom-navigation
|
|
37210
38334
|
$kendo-bottom-nav-font-size: $kendo-font-size-md !default;
|
|
38335
|
+
/// The line height of the BottomNavigation.
|
|
38336
|
+
/// @group bottom-navigation
|
|
37211
38337
|
$kendo-bottom-nav-line-height: normal !default;
|
|
38338
|
+
/// The letter spacing of the BottomNavigation.
|
|
38339
|
+
/// @group bottom-navigation
|
|
37212
38340
|
$kendo-bottom-nav-letter-spacing: .2px !default;
|
|
37213
38341
|
|
|
38342
|
+
/// The horizontal padding of the BottomNavigation item.
|
|
38343
|
+
/// @group bottom-navigation
|
|
37214
38344
|
$kendo-bottom-nav-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
38345
|
+
/// The vertical padding of the BottomNavigation item.
|
|
38346
|
+
/// @group bottom-navigation
|
|
37215
38347
|
$kendo-bottom-nav-item-padding-y: 0 !default;
|
|
38348
|
+
/// The minimum width of the BottomNavigation item.
|
|
38349
|
+
/// @group bottom-navigation
|
|
37216
38350
|
$kendo-bottom-nav-item-min-width: 72px !default;
|
|
38351
|
+
/// The maximum width of the BottomNavigation item.
|
|
38352
|
+
/// @group bottom-navigation
|
|
37217
38353
|
$kendo-bottom-nav-item-max-width: null !default;
|
|
38354
|
+
/// The minimum height of the BottomNavigation item.
|
|
38355
|
+
/// @group bottom-navigation
|
|
37218
38356
|
$kendo-bottom-nav-item-min-height: calc( #{$kendo-icon-size * 2.5} + #{$kendo-padding-md-x * 2} - #{$kendo-bottom-nav-padding-x * 2} ) !default;
|
|
38357
|
+
/// The border radius of the BottomNavigation item.
|
|
38358
|
+
/// @group bottom-navigation
|
|
37219
38359
|
$kendo-bottom-nav-item-border-radius: $kendo-border-radius-md !default;
|
|
38360
|
+
/// The spacing of the BottomNavigation item.
|
|
38361
|
+
/// @group bottom-navigation
|
|
37220
38362
|
$kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
|
|
37221
38363
|
|
|
37222
|
-
|
|
37223
|
-
|
|
37224
|
-
$kendo-bottom-nav-item-disabled-opacity: .5 !default;
|
|
37225
|
-
|
|
38364
|
+
/// The box shadow of the BottomNavigation.
|
|
38365
|
+
/// @group bottom-navigation
|
|
37226
38366
|
$kendo-bottom-nav-shadow: 0px 0px 5px rgba(0, 0, 0, .12) !default;
|
|
37227
38367
|
|
|
37228
|
-
|
|
38368
|
+
/// The text color of the flat BottomNavigation.
|
|
38369
|
+
/// @group bottom-navigation
|
|
37229
38370
|
$kendo-bottom-nav-flat-text: $kendo-component-text !default;
|
|
38371
|
+
/// The background color of the flat BottomNavigation.
|
|
38372
|
+
/// @group bottom-navigation
|
|
38373
|
+
$kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
|
|
38374
|
+
/// The border color of the flat BottomNavigation.
|
|
38375
|
+
/// @group bottom-navigation
|
|
37230
38376
|
$kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
37231
|
-
|
|
37232
38377
|
// #endregion
|
|
37233
38378
|
// #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
|
|
37234
38379
|
@mixin kendo-bottom-navigation--layout-base() {
|
|
@@ -37469,63 +38614,234 @@ $_kendo-module-meta: (
|
|
|
37469
38614
|
// #region @import "./_variables.scss"; -> scss/breadcrumb/_variables.scss
|
|
37470
38615
|
// Breadcrumb
|
|
37471
38616
|
|
|
38617
|
+
/// The width of the border around the Breadcrumb.
|
|
38618
|
+
/// @group breadcrumb
|
|
38619
|
+
$kendo-breadcrumb-border-width: 0px !default;
|
|
38620
|
+
|
|
38621
|
+
/// The horizontal margin of the Breadcrumb.
|
|
38622
|
+
/// @group breadcrumb
|
|
37472
38623
|
$kendo-breadcrumb-margin-x: null !default;
|
|
38624
|
+
/// The vertical margin of the Breadcrumb.
|
|
38625
|
+
/// @group breadcrumb
|
|
37473
38626
|
$kendo-breadcrumb-margin-y: null !default;
|
|
38627
|
+
/// The horizontal padding of the Breadcrumb.
|
|
38628
|
+
/// @group breadcrumb
|
|
37474
38629
|
$kendo-breadcrumb-padding-x: null !default;
|
|
38630
|
+
/// The vertical padding of the Breadcrumb.
|
|
38631
|
+
/// @group breadcrumb
|
|
37475
38632
|
$kendo-breadcrumb-padding-y: null !default;
|
|
37476
|
-
$kendo-breadcrumb-border-width: 0px !default;
|
|
37477
38633
|
|
|
38634
|
+
/// The font family of the Breadcrumb.
|
|
38635
|
+
/// @group breadcrumb
|
|
37478
38636
|
$kendo-breadcrumb-font-family: $kendo-font-family !default;
|
|
38637
|
+
|
|
38638
|
+
/// The font size of the Breadcrumb.
|
|
38639
|
+
/// @group breadcrumb
|
|
37479
38640
|
$kendo-breadcrumb-font-size: $kendo-font-size-md !default;
|
|
38641
|
+
/// The font size of the small Breadcrumb.
|
|
38642
|
+
/// @group breadcrumb
|
|
38643
|
+
$kendo-breadcrumb-sm-font-size: $kendo-font-size-md !default;
|
|
38644
|
+
/// The font size of the medium Breadcrumb.
|
|
38645
|
+
/// @group breadcrumb
|
|
38646
|
+
$kendo-breadcrumb-md-font-size: $kendo-breadcrumb-font-size !default;
|
|
38647
|
+
/// The font size of the large Breadcrumb.
|
|
38648
|
+
/// @group breadcrumb
|
|
38649
|
+
$kendo-breadcrumb-lg-font-size: $kendo-font-size-lg !default;
|
|
38650
|
+
|
|
38651
|
+
/// The line-height of the Breadcrumb.
|
|
38652
|
+
/// @group breadcrumb
|
|
37480
38653
|
$kendo-breadcrumb-line-height: $kendo-line-height-md !default;
|
|
37481
|
-
|
|
38654
|
+
/// The line-height of the small Breadcrumb.
|
|
38655
|
+
/// @group breadcrumb
|
|
38656
|
+
$kendo-breadcrumb-sm-line-height: $kendo-line-height-md !default;
|
|
38657
|
+
/// The line-height of the medium Breadcrumb.
|
|
38658
|
+
/// @group breadcrumb
|
|
38659
|
+
$kendo-breadcrumb-md-line-height: $kendo-breadcrumb-line-height !default;
|
|
38660
|
+
/// The line-height of the height Breadcrumb.
|
|
38661
|
+
/// @group breadcrumb
|
|
38662
|
+
$kendo-breadcrumb-lg-line-height: $kendo-line-height-lg !default;
|
|
38663
|
+
|
|
38664
|
+
/// The base background of the Breadcrumb.
|
|
38665
|
+
/// @group breadcrumb
|
|
37482
38666
|
$kendo-breadcrumb-bg: $kendo-component-bg !default;
|
|
38667
|
+
/// The base text color of the Breadcrumb.
|
|
38668
|
+
/// @group breadcrumb
|
|
37483
38669
|
$kendo-breadcrumb-text: $kendo-component-text !default;
|
|
38670
|
+
/// The base border color of the Breadcrumb.
|
|
38671
|
+
/// @group breadcrumb
|
|
37484
38672
|
$kendo-breadcrumb-border: $kendo-component-border !default;
|
|
37485
38673
|
|
|
38674
|
+
/// The box shadow of the focused Breadcrumb.
|
|
38675
|
+
/// @group breadcrumb
|
|
38676
|
+
$kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
38677
|
+
|
|
38678
|
+
/// The horizontal padding of the Breadcrumb link.
|
|
38679
|
+
/// @group breadcrumb
|
|
37486
38680
|
$kendo-breadcrumb-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
38681
|
+
/// The horizontal padding of the small Breadcrumb link.
|
|
38682
|
+
/// @group breadcrumb
|
|
38683
|
+
$kendo-breadcrumb-sm-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
38684
|
+
/// The horizontal padding of the medium Breadcrumb link.
|
|
38685
|
+
/// @group breadcrumb
|
|
38686
|
+
$kendo-breadcrumb-md-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
|
|
38687
|
+
/// The horizontal padding of the large Breadcrumb link.
|
|
38688
|
+
/// @group breadcrumb
|
|
38689
|
+
$kendo-breadcrumb-lg-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
38690
|
+
|
|
38691
|
+
/// The vertical padding of the Breadcrumb link.
|
|
38692
|
+
/// @group breadcrumb
|
|
37487
38693
|
$kendo-breadcrumb-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
38694
|
+
/// The vertical padding of the small Breadcrumb link.
|
|
38695
|
+
/// @group breadcrumb
|
|
38696
|
+
$kendo-breadcrumb-sm-link-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
38697
|
+
/// The vertical padding of the medium Breadcrumb link.
|
|
38698
|
+
/// @group breadcrumb
|
|
38699
|
+
$kendo-breadcrumb-md-link-padding-y: $kendo-breadcrumb-link-padding-y !default;
|
|
38700
|
+
/// The vertical padding of the large Breadcrumb link.
|
|
38701
|
+
/// @group breadcrumb
|
|
38702
|
+
$kendo-breadcrumb-lg-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
38703
|
+
|
|
38704
|
+
/// The border-radius of the Breadcrumb link.
|
|
38705
|
+
/// @group breadcrumb
|
|
37488
38706
|
$kendo-breadcrumb-link-border-radius: $kendo-border-radius-md !default;
|
|
37489
38707
|
|
|
37490
|
-
|
|
37491
|
-
|
|
37492
|
-
|
|
37493
|
-
|
|
37494
|
-
|
|
37495
|
-
|
|
38708
|
+
/// The vertical padding of the Breadcrumb link icon.
|
|
38709
|
+
/// @group breadcrumb
|
|
38710
|
+
$kendo-breadcrumb-icon-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
38711
|
+
/// The vertical padding of the small Breadcrumb link icon.
|
|
38712
|
+
/// @group breadcrumb
|
|
38713
|
+
$kendo-breadcrumb-sm-icon-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
38714
|
+
/// The vertical padding of the medium Breadcrumb link icon.
|
|
38715
|
+
/// @group breadcrumb
|
|
38716
|
+
$kendo-breadcrumb-md-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-y !default;
|
|
38717
|
+
/// The vertical padding of the large Breadcrumb link icon.
|
|
38718
|
+
/// @group breadcrumb
|
|
38719
|
+
$kendo-breadcrumb-lg-icon-link-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
38720
|
+
|
|
38721
|
+
/// The horizontal padding of the Breadcrumb link icon.
|
|
38722
|
+
/// @group breadcrumb
|
|
38723
|
+
$kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-y !default;
|
|
38724
|
+
/// The horizontal padding of the small Breadcrumb link icon.
|
|
38725
|
+
/// @group breadcrumb
|
|
38726
|
+
$kendo-breadcrumb-sm-icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-y !default;
|
|
38727
|
+
/// The horizontal padding of the medium Breadcrumb link icon.
|
|
38728
|
+
/// @group breadcrumb
|
|
38729
|
+
$kendo-breadcrumb-md-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-x !default;
|
|
38730
|
+
/// The horizontal padding of the large Breadcrumb link icon.
|
|
38731
|
+
/// @group breadcrumb
|
|
38732
|
+
$kendo-breadcrumb-lg-icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-y !default;
|
|
38733
|
+
|
|
38734
|
+
/// The text color of the Breadcrumb link.
|
|
38735
|
+
/// @group breadcrumb
|
|
37496
38736
|
$kendo-breadcrumb-link-initial-text: inherit !default;
|
|
38737
|
+
/// The spacing of the Breadcrumb link icon.
|
|
38738
|
+
/// @group breadcrumb
|
|
38739
|
+
$kendo-breadcrumb-link-icon-spacing: $kendo-icon-spacing !default;
|
|
37497
38740
|
|
|
38741
|
+
/// The background color of the Breadcrumb link.
|
|
38742
|
+
/// @group breadcrumb
|
|
37498
38743
|
$kendo-breadcrumb-link-bg: null !default;
|
|
38744
|
+
/// The text color of the Breadcrumb link.
|
|
38745
|
+
/// @group breadcrumb
|
|
37499
38746
|
$kendo-breadcrumb-link-text: $kendo-link-text !default;
|
|
38747
|
+
/// The border color of the Breadcrumb link.
|
|
38748
|
+
/// @group breadcrumb
|
|
37500
38749
|
$kendo-breadcrumb-link-border: null !default;
|
|
37501
38750
|
|
|
38751
|
+
/// The background color of the hovered Breadcrumb link.
|
|
38752
|
+
/// @group breadcrumb
|
|
37502
38753
|
$kendo-breadcrumb-link-hover-bg: $kendo-base-bg !default;
|
|
38754
|
+
/// The text color of the hovered Breadcrumb link.
|
|
38755
|
+
/// @group breadcrumb
|
|
37503
38756
|
$kendo-breadcrumb-link-hover-text: $kendo-link-hover-text !default;
|
|
38757
|
+
/// The border color of the hovered Breadcrumb link.
|
|
38758
|
+
/// @group breadcrumb
|
|
37504
38759
|
$kendo-breadcrumb-link-hover-border: null !default;
|
|
37505
38760
|
|
|
38761
|
+
/// The background color of the focused Breadcrumb link.
|
|
38762
|
+
/// @group breadcrumb
|
|
37506
38763
|
$kendo-breadcrumb-link-focus-bg: null !default;
|
|
38764
|
+
/// The text color of the focused Breadcrumb link.
|
|
38765
|
+
/// @group breadcrumb
|
|
37507
38766
|
$kendo-breadcrumb-link-focus-text: $kendo-link-text !default;
|
|
38767
|
+
/// The border color of the focused Breadcrumb link.
|
|
38768
|
+
/// @group breadcrumb
|
|
37508
38769
|
$kendo-breadcrumb-link-focus-border: null !default;
|
|
38770
|
+
/// The box shadow of the focused Breadcrumb link.
|
|
38771
|
+
/// @group breadcrumb
|
|
37509
38772
|
$kendo-breadcrumb-link-focus-shadow: $kendo-focus-shadow !default;
|
|
37510
38773
|
|
|
38774
|
+
/// The background color of the Breadcrumb root link.
|
|
38775
|
+
/// @group breadcrumb
|
|
37511
38776
|
$kendo-breadcrumb-root-link-bg: null !default;
|
|
38777
|
+
/// The text color of the Breadcrumb root link.
|
|
38778
|
+
/// @group breadcrumb
|
|
37512
38779
|
$kendo-breadcrumb-root-link-text: null !default;
|
|
38780
|
+
/// The border color of the Breadcrumb root link.
|
|
38781
|
+
/// @group breadcrumb
|
|
37513
38782
|
$kendo-breadcrumb-root-link-border: null !default;
|
|
37514
38783
|
|
|
38784
|
+
/// The background color of the hovered Breadcrumb root link.
|
|
38785
|
+
/// @group breadcrumb
|
|
37515
38786
|
$kendo-breadcrumb-root-link-hover-bg: $kendo-base-bg !default;
|
|
38787
|
+
/// The text color of the hovered Breadcrumb root link.
|
|
38788
|
+
/// @group breadcrumb
|
|
37516
38789
|
$kendo-breadcrumb-root-link-hover-text: null !default;
|
|
38790
|
+
/// The border color of the hovered Breadcrumb root link.
|
|
38791
|
+
/// @group breadcrumb
|
|
37517
38792
|
$kendo-breadcrumb-root-link-hover-border: null !default;
|
|
37518
38793
|
|
|
38794
|
+
/// The background color of the focused Breadcrumb root link.
|
|
38795
|
+
/// @group breadcrumb
|
|
37519
38796
|
$kendo-breadcrumb-root-link-focus-bg: null !default;
|
|
38797
|
+
/// The text color of the focused Breadcrumb root link.
|
|
38798
|
+
/// @group breadcrumb
|
|
37520
38799
|
$kendo-breadcrumb-root-link-focus-text: null !default;
|
|
38800
|
+
/// The border color of the focused Breadcrumb root link.
|
|
38801
|
+
/// @group breadcrumb
|
|
37521
38802
|
$kendo-breadcrumb-root-link-focus-border: null !default;
|
|
38803
|
+
/// The box shadow of the focused Breadcrumb root link.
|
|
38804
|
+
/// @group breadcrumb
|
|
37522
38805
|
$kendo-breadcrumb-root-link-focus-shadow: $kendo-breadcrumb-link-focus-shadow !default;
|
|
37523
38806
|
|
|
38807
|
+
/// The background color of the current Breadcrumb root link.
|
|
38808
|
+
/// @group breadcrumb
|
|
37524
38809
|
$kendo-breadcrumb-current-item-bg: null !default;
|
|
38810
|
+
/// The text color of the current Breadcrumb root link.
|
|
38811
|
+
/// @group breadcrumb
|
|
37525
38812
|
$kendo-breadcrumb-current-item-text: null !default;
|
|
38813
|
+
/// The border color of the current Breadcrumb root link.
|
|
38814
|
+
/// @group breadcrumb
|
|
37526
38815
|
$kendo-breadcrumb-current-item-border: null !default;
|
|
37527
38816
|
|
|
37528
|
-
|
|
38817
|
+
/// The sizes map for the Breadcrumb.
|
|
38818
|
+
/// @group breadcrumb
|
|
38819
|
+
$kendo-breadcrumb-sizes: (
|
|
38820
|
+
sm: (
|
|
38821
|
+
link-padding-x: $kendo-breadcrumb-sm-link-padding-x,
|
|
38822
|
+
link-padding-y: $kendo-breadcrumb-sm-link-padding-y,
|
|
38823
|
+
icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-x,
|
|
38824
|
+
icon-link-padding-y: $kendo-breadcrumb-sm-icon-link-padding-y,
|
|
38825
|
+
font-size: $kendo-breadcrumb-sm-font-size,
|
|
38826
|
+
line-height: $kendo-breadcrumb-sm-line-height
|
|
38827
|
+
),
|
|
38828
|
+
md: (
|
|
38829
|
+
link-padding-x: $kendo-breadcrumb-md-link-padding-x,
|
|
38830
|
+
link-padding-y: $kendo-breadcrumb-md-link-padding-y,
|
|
38831
|
+
icon-link-padding-x: $kendo-breadcrumb-md-icon-link-padding-x,
|
|
38832
|
+
icon-link-padding-y: $kendo-breadcrumb-md-icon-link-padding-y,
|
|
38833
|
+
font-size: $kendo-breadcrumb-md-font-size,
|
|
38834
|
+
line-height: $kendo-breadcrumb-md-line-height
|
|
38835
|
+
),
|
|
38836
|
+
lg: (
|
|
38837
|
+
link-padding-x: $kendo-breadcrumb-lg-link-padding-x,
|
|
38838
|
+
link-padding-y: $kendo-breadcrumb-lg-link-padding-y,
|
|
38839
|
+
icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-x,
|
|
38840
|
+
icon-link-padding-y: $kendo-breadcrumb-lg-icon-link-padding-y,
|
|
38841
|
+
font-size: $kendo-breadcrumb-lg-font-size,
|
|
38842
|
+
line-height: $kendo-breadcrumb-lg-line-height
|
|
38843
|
+
)
|
|
38844
|
+
) !default;
|
|
37529
38845
|
|
|
37530
38846
|
// #endregion
|
|
37531
38847
|
// #region @import "./_layout.scss"; -> scss/breadcrumb/_layout.scss
|
|
@@ -37542,8 +38858,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
37542
38858
|
box-sizing: border-box;
|
|
37543
38859
|
outline: 0;
|
|
37544
38860
|
font-family: $kendo-breadcrumb-font-family;
|
|
37545
|
-
font-size: $kendo-breadcrumb-font-size;
|
|
37546
|
-
line-height: $kendo-breadcrumb-line-height;
|
|
37547
38861
|
display: flex;
|
|
37548
38862
|
flex-direction: row;
|
|
37549
38863
|
-webkit-touch-callout: none;
|
|
@@ -37595,8 +38909,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
37595
38909
|
.k-breadcrumb-link,
|
|
37596
38910
|
.k-breadcrumb-root-link {
|
|
37597
38911
|
@include border-radius( $kendo-breadcrumb-link-border-radius );
|
|
37598
|
-
padding-block: $kendo-breadcrumb-link-padding-y;
|
|
37599
|
-
padding-inline: $kendo-breadcrumb-link-padding-x;
|
|
37600
38912
|
color: $kendo-breadcrumb-link-initial-text;
|
|
37601
38913
|
text-decoration: none;
|
|
37602
38914
|
white-space: nowrap;
|
|
@@ -37610,21 +38922,12 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
37610
38922
|
transition: $kendo-transition;
|
|
37611
38923
|
}
|
|
37612
38924
|
|
|
37613
|
-
.k-breadcrumb-root-link {
|
|
37614
|
-
margin-inline-end: $kendo-breadcrumb-root-link-spacing;
|
|
37615
|
-
}
|
|
37616
|
-
|
|
37617
38925
|
.k-breadcrumb-link > .k-image,
|
|
37618
38926
|
.k-breadcrumb-icontext-link .k-icon,
|
|
37619
38927
|
.k-breadcrumb-icontext-link .k-svg-icon {
|
|
37620
38928
|
margin-inline-end: $kendo-breadcrumb-link-icon-spacing;
|
|
37621
38929
|
}
|
|
37622
38930
|
|
|
37623
|
-
.k-breadcrumb-icon-link {
|
|
37624
|
-
padding-block: $kendo-breadcrumb-icon-link-padding-y;
|
|
37625
|
-
padding-inline: $kendo-breadcrumb-icon-link-padding-x;
|
|
37626
|
-
}
|
|
37627
|
-
|
|
37628
38931
|
|
|
37629
38932
|
// Breadcrumb delimiter
|
|
37630
38933
|
.k-breadcrumb-delimiter,
|
|
@@ -37643,6 +38946,34 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
37643
38946
|
}
|
|
37644
38947
|
}
|
|
37645
38948
|
|
|
38949
|
+
|
|
38950
|
+
// Sizes
|
|
38951
|
+
@each $size, $size-props in $kendo-breadcrumb-sizes {
|
|
38952
|
+
$_link-padding-x: k-map-get( $size-props, link-padding-x );
|
|
38953
|
+
$_link-padding-y: k-map-get( $size-props, link-padding-y );
|
|
38954
|
+
$_icon-link-padding-x: k-map-get( $size-props, icon-link-padding-x );
|
|
38955
|
+
$_icon-link-padding-y: k-map-get( $size-props, icon-link-padding-y );
|
|
38956
|
+
$_font-size: k-map-get( $size-props, font-size );
|
|
38957
|
+
$_line-height: k-map-get( $size-props, line-height );
|
|
38958
|
+
|
|
38959
|
+
.k-breadcrumb-#{$size} {
|
|
38960
|
+
font-size: $_font-size;
|
|
38961
|
+
line-height: $_line-height;
|
|
38962
|
+
|
|
38963
|
+
|
|
38964
|
+
.k-breadcrumb-link,
|
|
38965
|
+
.k-breadcrumb-root-link {
|
|
38966
|
+
padding-block: $_link-padding-y;
|
|
38967
|
+
padding-inline: $_link-padding-x;
|
|
38968
|
+
}
|
|
38969
|
+
|
|
38970
|
+
.k-breadcrumb-icon-link {
|
|
38971
|
+
padding-block: $_icon-link-padding-y;
|
|
38972
|
+
padding-inline: $_icon-link-padding-x;
|
|
38973
|
+
}
|
|
38974
|
+
}
|
|
38975
|
+
}
|
|
38976
|
+
|
|
37646
38977
|
}
|
|
37647
38978
|
|
|
37648
38979
|
|
|
@@ -39844,40 +41175,83 @@ $_kendo-module-meta: (
|
|
|
39844
41175
|
|
|
39845
41176
|
// Component
|
|
39846
41177
|
// #region @import "./_variables.scss"; -> scss/expansion-panel/_variables.scss
|
|
39847
|
-
//
|
|
41178
|
+
// ExpansionPanel
|
|
41179
|
+
|
|
41180
|
+
/// The vertical spacing of the ExpansionPanel.
|
|
41181
|
+
/// @group expander
|
|
39848
41182
|
$kendo-expander-spacing-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
41183
|
+
/// The width of the border around the ExpansionPanel.
|
|
41184
|
+
/// @group expander
|
|
41185
|
+
$kendo-expander-border-width: 1px !default;
|
|
41186
|
+
/// The font family of the ExpansionPanel.
|
|
41187
|
+
/// @group expander
|
|
39849
41188
|
$kendo-expander-font-family: $kendo-font-family !default;
|
|
41189
|
+
/// The font size of the ExpansionPanel.
|
|
41190
|
+
/// @group expander
|
|
39850
41191
|
$kendo-expander-font-size: $kendo-font-size-md !default;
|
|
41192
|
+
/// The hine height of the ExpansionPanel.
|
|
41193
|
+
/// @group expander
|
|
39851
41194
|
$kendo-expander-line-height: $kendo-line-height-md !default;
|
|
39852
|
-
$kendo-expander-border-width: 1px !default;
|
|
39853
41195
|
|
|
39854
|
-
|
|
39855
|
-
|
|
39856
|
-
|
|
39857
|
-
$kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
39858
|
-
|
|
39859
|
-
$kendo-expander-bg: $kendo-component-bg !default;
|
|
41196
|
+
/// The text color of the ExpansionPanel.
|
|
41197
|
+
/// @group expander
|
|
39860
41198
|
$kendo-expander-text: $kendo-component-text !default;
|
|
41199
|
+
/// The background color of the ExpansionPanel.
|
|
41200
|
+
/// @group expander
|
|
41201
|
+
$kendo-expander-bg: $kendo-component-bg !default;
|
|
41202
|
+
/// The border color of the ExpansionPanel.
|
|
41203
|
+
/// @group expander
|
|
39861
41204
|
$kendo-expander-border: $kendo-component-border !default;
|
|
39862
41205
|
|
|
41206
|
+
/// The box shadow of the focused ExpansionPanel.
|
|
41207
|
+
/// @group expander
|
|
39863
41208
|
$kendo-expander-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
39864
41209
|
|
|
39865
|
-
|
|
41210
|
+
/// The horizontal padding of the ExpansionPanel header.
|
|
41211
|
+
/// @group expander
|
|
41212
|
+
$kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
41213
|
+
/// The vertical padding of the ExpansionPanel header.
|
|
41214
|
+
/// @group expander
|
|
41215
|
+
$kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
41216
|
+
|
|
41217
|
+
/// The text color of the ExpansionPanel header.
|
|
41218
|
+
/// @group expander
|
|
39866
41219
|
$kendo-expander-header-text: $kendo-expander-text !default;
|
|
41220
|
+
/// The background color of the ExpansionPanel header.
|
|
41221
|
+
/// @group expander
|
|
41222
|
+
$kendo-expander-header-bg: transparent !default;
|
|
41223
|
+
/// The border color of the ExpansionPanel header.
|
|
41224
|
+
/// @group expander
|
|
39867
41225
|
$kendo-expander-header-border: null !default;
|
|
39868
41226
|
|
|
41227
|
+
/// The background color of the hovered ExpansionPanel header.
|
|
41228
|
+
/// @group expander
|
|
39869
41229
|
$kendo-expander-header-hover-bg: rgba(0, 0, 0, .04) !default;
|
|
39870
|
-
|
|
41230
|
+
/// The background color of the focused ExpansionPanel header.
|
|
41231
|
+
/// @group expander
|
|
39871
41232
|
$kendo-expander-header-focus-bg: null !default;
|
|
41233
|
+
/// The box shadow of the focused ExpansionPanel header.
|
|
41234
|
+
/// @group expander
|
|
39872
41235
|
$kendo-expander-header-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
39873
41236
|
|
|
41237
|
+
/// The text color of the ExpansionPanel title.
|
|
41238
|
+
/// @group expander
|
|
39874
41239
|
$kendo-expander-title-text: $kendo-color-primary !default;
|
|
39875
41240
|
|
|
41241
|
+
/// The text color of the ExpansionPanel sub-title.
|
|
41242
|
+
/// @group expander
|
|
39876
41243
|
$kendo-expander-header-sub-title-text: $kendo-subtle-text !default;
|
|
39877
41244
|
|
|
41245
|
+
/// The horizontal margin of the ExpansionPanel indicator.
|
|
41246
|
+
/// @group expander
|
|
41247
|
+
$kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
41248
|
+
|
|
41249
|
+
/// The horizontal padding of the ExpansionPanel content.
|
|
41250
|
+
/// @group expander
|
|
39878
41251
|
$kendo-expander-content-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
41252
|
+
/// The vertical padding of the ExpansionPanel content.
|
|
41253
|
+
/// @group expander
|
|
39879
41254
|
$kendo-expander-content-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
39880
|
-
|
|
39881
41255
|
// #endregion
|
|
39882
41256
|
// #region @import "./_layout.scss"; -> scss/expansion-panel/_layout.scss
|
|
39883
41257
|
@mixin kendo-expander--layout-base() {
|
|
@@ -40931,17 +42305,36 @@ $_kendo-module-meta: (
|
|
|
40931
42305
|
// Component
|
|
40932
42306
|
// #region @import "./_variables.scss"; -> scss/tilelayout/_variables.scss
|
|
40933
42307
|
// TileLayout
|
|
42308
|
+
|
|
42309
|
+
/// The width of the border around the TileLayout.
|
|
42310
|
+
/// @group tilelayout
|
|
40934
42311
|
$kendo-tile-layout-border-width: 0px !default;
|
|
42312
|
+
/// The background color of the TileLayout.
|
|
42313
|
+
/// @group tilelayout
|
|
42314
|
+
$kendo-tile-layout-bg: $kendo-base-bg !default;
|
|
42315
|
+
|
|
42316
|
+
/// The width of the border around the TileLayout card.
|
|
42317
|
+
/// @group tilelayout
|
|
40935
42318
|
$kendo-tile-layout-card-border-width: $kendo-card-border-width !default;
|
|
42319
|
+
/// The focus box shadow of the TileLayout card.
|
|
42320
|
+
/// @group tilelayout
|
|
40936
42321
|
$kendo-tile-layout-card-focus-shadow: $kendo-card-focus-shadow !default;
|
|
40937
42322
|
|
|
42323
|
+
/// The width of the border around the TileLayout hint.
|
|
42324
|
+
/// @group tilelayout
|
|
40938
42325
|
$kendo-tile-layout-hint-border-width: 1px !default;
|
|
42326
|
+
/// The radius of the border around the TileLayout hint.
|
|
42327
|
+
/// @group tilelayout
|
|
40939
42328
|
$kendo-tile-layout-hint-border-radius: $kendo-border-radius-lg !default;
|
|
42329
|
+
/// The color of the border around the TileLayout hint.
|
|
42330
|
+
/// @group tilelayout
|
|
42331
|
+
$kendo-tile-layout-hint-border: $kendo-component-border !default;
|
|
42332
|
+
/// The background color of the TileLayout hint.
|
|
42333
|
+
/// @group tilelayout
|
|
42334
|
+
$kendo-tile-layout-hint-bg: rgba(255, 255, 255, .2) !default;
|
|
42335
|
+
|
|
40940
42336
|
|
|
40941
|
-
$kendo-tile-layout-bg: $kendo-base-bg !default;
|
|
40942
42337
|
|
|
40943
|
-
$kendo-tile-layout-hint-bg: rgba(255, 255, 255, .2) !default;
|
|
40944
|
-
$kendo-tile-layout-hint-border: $kendo-component-border !default;
|
|
40945
42338
|
|
|
40946
42339
|
// #endregion
|
|
40947
42340
|
// #region @import "./_layout.scss"; -> scss/tilelayout/_layout.scss
|
|
@@ -44115,32 +45508,66 @@ $_kendo-module-meta: (
|
|
|
44115
45508
|
|
|
44116
45509
|
// Component
|
|
44117
45510
|
// #region @import "./_variables.scss"; -> scss/listview/_variables.scss
|
|
44118
|
-
//
|
|
45511
|
+
// ListView
|
|
45512
|
+
|
|
45513
|
+
/// The horizontal padding of the ListView.
|
|
45514
|
+
/// @group listview
|
|
44119
45515
|
$kendo-listview-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
45516
|
+
/// The vertical padding of the ListView.
|
|
45517
|
+
/// @group listview
|
|
44120
45518
|
$kendo-listview-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
45519
|
+
/// The width of the border around bordered ListView.
|
|
45520
|
+
/// @group listview
|
|
44121
45521
|
$kendo-listview-border-width: 1px !default;
|
|
45522
|
+
/// The font family of the ListView.
|
|
45523
|
+
/// @group listview
|
|
44122
45524
|
$kendo-listview-font-family: $kendo-font-family !default;
|
|
45525
|
+
/// The font size of the ListView.
|
|
45526
|
+
/// @group listview
|
|
44123
45527
|
$kendo-listview-font-size: $kendo-font-size-md !default;
|
|
45528
|
+
/// The line height of the ListView.
|
|
45529
|
+
/// @group listview
|
|
44124
45530
|
$kendo-listview-line-height: $kendo-line-height-md !default;
|
|
44125
45531
|
|
|
44126
|
-
|
|
45532
|
+
/// The text color of the ListView.
|
|
45533
|
+
/// @group listview
|
|
44127
45534
|
$kendo-listview-text: $kendo-component-text !default;
|
|
45535
|
+
/// The background color of the ListView.
|
|
45536
|
+
/// @group listview
|
|
45537
|
+
$kendo-listview-bg: $kendo-component-bg !default;
|
|
45538
|
+
/// The border color of the ListView.
|
|
45539
|
+
/// @group listview
|
|
44128
45540
|
$kendo-listview-border: $kendo-component-border !default;
|
|
44129
45541
|
|
|
44130
|
-
|
|
44131
|
-
|
|
45542
|
+
/// The horizontal padding of the ListView items.
|
|
45543
|
+
/// @group listview
|
|
44132
45544
|
$kendo-listview-item-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
45545
|
+
/// The vertical padding of the ListView items.
|
|
45546
|
+
/// @group listview
|
|
44133
45547
|
$kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
44134
45548
|
|
|
44135
|
-
|
|
45549
|
+
/// The text color of the selected ListView items.
|
|
45550
|
+
/// @group listview
|
|
44136
45551
|
$kendo-listview-item-selected-text: null !default;
|
|
45552
|
+
/// The background color of the selected ListView items.
|
|
45553
|
+
/// @group listview
|
|
45554
|
+
$kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
45555
|
+
/// The border color of the selected ListView items.
|
|
45556
|
+
/// @group listview
|
|
44137
45557
|
$kendo-listview-item-selected-border: null !default;
|
|
44138
45558
|
|
|
44139
|
-
|
|
45559
|
+
/// The text color of the focused ListView items.
|
|
45560
|
+
/// @group listview
|
|
44140
45561
|
$kendo-listview-item-focus-text: null !default;
|
|
45562
|
+
/// The background color of the focused ListView items.
|
|
45563
|
+
/// @group listview
|
|
45564
|
+
$kendo-listview-item-focus-bg: null !default;
|
|
45565
|
+
/// The border color of the focused ListView items.
|
|
45566
|
+
/// @group listview
|
|
44141
45567
|
$kendo-listview-item-focus-border: null !default;
|
|
45568
|
+
/// The box shadow of the focused ListView items.
|
|
45569
|
+
/// @group listview
|
|
44142
45570
|
$kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
44143
|
-
|
|
44144
45571
|
// #endregion
|
|
44145
45572
|
// #region @import "./_layout.scss"; -> scss/listview/_layout.scss
|
|
44146
45573
|
@mixin kendo-listview--layout-base() {
|
|
@@ -47019,19 +48446,35 @@ $_kendo-module-meta: (
|
|
|
47019
48446
|
// Component
|
|
47020
48447
|
// #region @import "./_variables.scss"; -> scss/filter/_variables.scss
|
|
47021
48448
|
// Filter expression builder
|
|
48449
|
+
|
|
48450
|
+
/// The horizontal padding of the Filter.
|
|
48451
|
+
/// @group filter
|
|
47022
48452
|
$kendo-filter-padding-x: $kendo-padding-md-x !default;
|
|
48453
|
+
/// The vertical padding of the Filter.
|
|
48454
|
+
/// @group filter
|
|
47023
48455
|
$kendo-filter-padding-y: $kendo-padding-md-y !default;
|
|
47024
48456
|
|
|
48457
|
+
/// The bottom margin of the Filter.
|
|
48458
|
+
/// @group filter
|
|
47025
48459
|
$kendo-filter-bottom-margin: 30px !default;
|
|
48460
|
+
/// The width of the line that connects the Filter items.
|
|
48461
|
+
/// @group filter
|
|
47026
48462
|
$kendo-filter-line-size: 1px !default;
|
|
47027
48463
|
|
|
48464
|
+
/// The width of the dropdown elements in the Filter items.
|
|
48465
|
+
/// @group filter
|
|
47028
48466
|
$kendo-filter-operator-dropdown-width: 15em !default;
|
|
47029
48467
|
|
|
48468
|
+
/// The text color of the Filter preview field.
|
|
48469
|
+
/// @group filter
|
|
47030
48470
|
$kendo-filter-preview-field-text: $kendo-color-primary !default;
|
|
48471
|
+
/// The text color of the Filter preview operator.
|
|
48472
|
+
/// @group filter
|
|
47031
48473
|
$kendo-filter-preview-operator-text: $kendo-subtle-text !default;
|
|
47032
48474
|
|
|
48475
|
+
/// The box shadow of the focused Filter toolbar.
|
|
48476
|
+
/// @group filter
|
|
47033
48477
|
$kendo-filter-toolbar-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .08) !default;
|
|
47034
|
-
|
|
47035
48478
|
// #endregion
|
|
47036
48479
|
// #region @import "./_layout.scss"; -> scss/filter/_layout.scss
|
|
47037
48480
|
@mixin kendo-filter--layout-base() {
|
|
@@ -48312,27 +49755,60 @@ $_kendo-module-meta: (
|
|
|
48312
49755
|
// Component
|
|
48313
49756
|
// #region @import "./_variables.scss"; -> scss/editor/_variables.scss
|
|
48314
49757
|
// Editor
|
|
49758
|
+
|
|
49759
|
+
/// The width of the border around the Еditor.
|
|
49760
|
+
/// @group editor
|
|
48315
49761
|
$kendo-editor-border-width: 1px !default;
|
|
49762
|
+
/// The font family of the Еditor.
|
|
49763
|
+
/// @group editor
|
|
48316
49764
|
$kendo-editor-font-family: $kendo-font-family !default;
|
|
49765
|
+
/// The font size of the Еditor.
|
|
49766
|
+
/// @group editor
|
|
48317
49767
|
$kendo-editor-font-size: $kendo-font-size-md !default;
|
|
49768
|
+
/// The line height of the Еditor.
|
|
49769
|
+
/// @group editor
|
|
48318
49770
|
$kendo-editor-line-height: $kendo-line-height-md !default;
|
|
48319
49771
|
|
|
49772
|
+
/// The text color of the Еditor placeholder.
|
|
49773
|
+
/// @group editor
|
|
48320
49774
|
$kendo-editor-placeholder-text: $kendo-input-placeholder-text !default;
|
|
49775
|
+
/// The opacity of the Editor placeholder.
|
|
49776
|
+
/// @group editor
|
|
48321
49777
|
$kendo-editor-placeholder-opacity: $kendo-input-placeholder-opacity !default;
|
|
48322
49778
|
|
|
49779
|
+
/// The selected text color of the Editor.
|
|
49780
|
+
/// @group editor
|
|
48323
49781
|
$kendo-editor-selected-text: $kendo-color-primary-contrast !default;
|
|
49782
|
+
/// The selected background color of the Editor.
|
|
49783
|
+
/// @group editor
|
|
48324
49784
|
$kendo-editor-selected-bg: $kendo-color-primary !default;
|
|
48325
49785
|
|
|
49786
|
+
/// The highlighted background color of the Editor.
|
|
49787
|
+
/// @group editor
|
|
48326
49788
|
$kendo-editor-highlighted-bg: k-color-mix($kendo-color-primary, #ffffff, 20%) !default;
|
|
48327
49789
|
|
|
49790
|
+
/// The horizontal margin of the Editor's export tool icon.
|
|
49791
|
+
/// @group editor
|
|
48328
49792
|
$kendo-editor-export-tool-icon-margin-x: .25em !default;
|
|
48329
49793
|
|
|
49794
|
+
/// The size of the Editor's resize handle.
|
|
49795
|
+
/// @group editor
|
|
48330
49796
|
$kendo-editor-resize-handle-size: 8px !default;
|
|
49797
|
+
/// The border width of the Editor's resize handle.
|
|
49798
|
+
/// @group editor
|
|
48331
49799
|
$kendo-editor-resize-handle-border-width: 1px !default;
|
|
49800
|
+
/// The border color of the Editor's resize handle.
|
|
49801
|
+
/// @group editor
|
|
48332
49802
|
$kendo-editor-resize-handle-border: #000000 !default;
|
|
49803
|
+
/// The background color of the Editor's resize handle.
|
|
49804
|
+
/// @group editor
|
|
48333
49805
|
$kendo-editor-resize-handle-bg: #ffffff !default;
|
|
48334
49806
|
|
|
49807
|
+
/// The outline width of the Editor's selected node.
|
|
49808
|
+
/// @group editor
|
|
48335
49809
|
$kendo-editor-selectednode-outline-width: 2px !default;
|
|
49810
|
+
/// The outline color of the Editor's selected node.
|
|
49811
|
+
/// @group editor
|
|
48336
49812
|
$kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
48337
49813
|
|
|
48338
49814
|
// #endregion
|
|
@@ -54522,44 +55998,97 @@ $_kendo-module-meta: (
|
|
|
54522
55998
|
|
|
54523
55999
|
// Component
|
|
54524
56000
|
// #region @import "./_variables.scss"; -> scss/scrollview/_variables.scss
|
|
54525
|
-
//
|
|
56001
|
+
// ScrollView
|
|
56002
|
+
|
|
56003
|
+
/// The width of the border around the ScrollView.
|
|
56004
|
+
/// @group scrollview
|
|
54526
56005
|
$kendo-scrollview-border-width: 1px !default;
|
|
56006
|
+
/// The font family of the ScrollView.
|
|
56007
|
+
/// @group scrollview
|
|
54527
56008
|
$kendo-scrollview-font-family: $kendo-font-family !default;
|
|
56009
|
+
/// The font size of the ScrollView.
|
|
56010
|
+
/// @group scrollview
|
|
54528
56011
|
$kendo-scrollview-font-size: $kendo-font-size-md !default;
|
|
56012
|
+
/// The line height of the ScrollView.
|
|
56013
|
+
/// @group scrollview
|
|
54529
56014
|
$kendo-scrollview-line-height: $kendo-line-height-md !default;
|
|
54530
56015
|
|
|
54531
|
-
|
|
56016
|
+
/// The text color of the ScrollView.
|
|
56017
|
+
/// @group scrollview
|
|
54532
56018
|
$kendo-scrollview-text: $kendo-component-text !default;
|
|
56019
|
+
/// The background color of the ScrollView.
|
|
56020
|
+
/// @group scrollview
|
|
56021
|
+
$kendo-scrollview-bg: $kendo-component-bg !default;
|
|
56022
|
+
/// The border color of the ScrollView.
|
|
56023
|
+
/// @group scrollview
|
|
54533
56024
|
$kendo-scrollview-border: $kendo-component-border !default;
|
|
54534
56025
|
|
|
56026
|
+
/// The size of the ScrollView page button.
|
|
56027
|
+
/// @group scrollview
|
|
54535
56028
|
$kendo-scrollview-pagebutton-size: 10px !default;
|
|
56029
|
+
/// The background color of the ScrollView page button.
|
|
56030
|
+
/// @group scrollview
|
|
54536
56031
|
$kendo-scrollview-pagebutton-bg: $kendo-button-bg !default;
|
|
56032
|
+
/// The border color of the ScrollView page button.
|
|
56033
|
+
/// @group scrollview
|
|
54537
56034
|
$kendo-scrollview-pagebutton-border: $kendo-button-border !default;
|
|
56035
|
+
/// The primary background color of the ScrollView page button.
|
|
56036
|
+
/// @group scrollview
|
|
54538
56037
|
$kendo-scrollview-pagebutton-primary-bg: $kendo-color-primary !default;
|
|
56038
|
+
/// The primary border color of the ScrollView page button.
|
|
56039
|
+
/// @group scrollview
|
|
54539
56040
|
$kendo-scrollview-pagebutton-primary-border: $kendo-color-primary !default;
|
|
56041
|
+
/// The box shadow of the ScrollView page button.
|
|
56042
|
+
/// @group scrollview
|
|
54540
56043
|
$kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
54541
56044
|
|
|
56045
|
+
/// The offset of the ScrollView pager.
|
|
56046
|
+
/// @group scrollview
|
|
54542
56047
|
$kendo-scrollview-pager-offset: 0 !default;
|
|
56048
|
+
/// The spacing between the ScrollView pager items.
|
|
56049
|
+
/// @group scrollview
|
|
54543
56050
|
$kendo-scrollview-pager-item-spacing: 20px !default;
|
|
56051
|
+
/// The border width of the ScrollView pager items.
|
|
56052
|
+
/// @group scrollview
|
|
54544
56053
|
$kendo-scrollview-pager-item-border-width: 0px !default;
|
|
56054
|
+
/// The height of the ScrollView pager.
|
|
56055
|
+
/// @group scrollview
|
|
54545
56056
|
$kendo-scrollview-pager-height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-border-width * 2} + #{$kendo-scrollview-pager-item-spacing * 2} ) !default;
|
|
54546
56057
|
|
|
54547
|
-
|
|
54548
|
-
|
|
54549
|
-
$kendo-scrollview-pager-multidot-step: 1px !default;
|
|
54550
|
-
|
|
56058
|
+
/// The text color of the highlight over the tapped ScrollView navigation arrows.
|
|
56059
|
+
/// @group scrollview
|
|
54551
56060
|
$kendo-scrollview-arrow-tap-highlight-color: $kendo-color-rgba-transparent !default;
|
|
56061
|
+
/// The color of the ScrollView navigation arrows.
|
|
56062
|
+
/// @group scrollview
|
|
54552
56063
|
$kendo-scrollview-navigation-color: white !default;
|
|
56064
|
+
/// The box shadow of the ScrollView navigation arrows.
|
|
56065
|
+
/// @group scrollview
|
|
54553
56066
|
$kendo-scrollview-navigation-icon-shadow: rgba(0, 0, 0, .3) 0 0 15px !default;
|
|
56067
|
+
/// The background color of the ScrollView navigation.
|
|
56068
|
+
/// @group scrollview
|
|
54554
56069
|
$kendo-scrollview-navigation-bg: rgba(0, 0, 0, 0) !default;
|
|
56070
|
+
/// The opacity of the ScrollView navigation.
|
|
56071
|
+
/// @group scrollview
|
|
54555
56072
|
$kendo-scrollview-navigation-default-opacity: .7 !default;
|
|
56073
|
+
/// The hover opacity of the ScrollView navigation.
|
|
56074
|
+
/// @group scrollview
|
|
54556
56075
|
$kendo-scrollview-navigation-hover-opacity: 1 !default;
|
|
56076
|
+
/// The hover background color of the ScrollView navigation arrows.
|
|
56077
|
+
/// @group scrollview
|
|
54557
56078
|
$kendo-scrollview-navigation-hover-span-bg: null !default;
|
|
54558
56079
|
|
|
56080
|
+
/// The background color of the ScrollView pager in light mode.
|
|
56081
|
+
/// @group scrollview
|
|
54559
56082
|
$kendo-scrollview-light-bg: rgba(255, 255, 255, .4) !default;
|
|
56083
|
+
/// The background color of the ScrollView pager in dark mode.
|
|
56084
|
+
/// @group scrollview
|
|
54560
56085
|
$kendo-scrollview-dark-bg: rgba(0, 0, 0, .4) !default;
|
|
54561
56086
|
|
|
56087
|
+
/// The duration of the ScrollView transition.
|
|
56088
|
+
/// @group scrollview
|
|
54562
56089
|
$kendo-scrollview-transition-duration: .3s !default;
|
|
56090
|
+
/// The timing function of the ScrollView transition.
|
|
56091
|
+
/// @group scrollview
|
|
54563
56092
|
$kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
54564
56093
|
|
|
54565
56094
|
// #endregion
|