@progress/kendo-theme-default 6.5.0-dev.1 → 6.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/all.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
- // Functions
9
- // #region @import "./functions/index.import.scss"; -> scss/core/functions/index.import.scss
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`.
@@ -1547,6 +1569,15 @@ $_kendo-escape-class-name: (
1547
1569
 
1548
1570
  // #endregion
1549
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
+
1550
1581
  /// Returns the first index of `$substring` in `$string`, or `null` if `$string` doesn’t contain `$substring`.
1551
1582
  /// @param {String} $string - The string to process.
1552
1583
  /// @param {String} $substring - The substring to look for.
@@ -1666,163 +1697,498 @@ $_kendo-escape-class-name: (
1666
1697
  @return unquote( $string );
1667
1698
  }
1668
1699
 
1669
- // #endregion
1670
1700
 
1671
- // #endregion
1701
+ // See https://www.sassmeister.com/gist/1b4f2da5527830088e4d
1702
+ @function str-replace($string, $search, $replace: "") {
1703
+ $index: k-string-index($string, $search);
1672
1704
 
1673
- // #endregion
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
+ }
1674
1708
 
1675
- // Color system
1676
- // #region @import "./color-system/index.import.scss"; -> scss/core/color-system/index.import.scss
1677
- // #region @import "@progress/kendo-theme-core/scss/color-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/index.import.scss
1678
- // #region @import "./_functions.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_functions.import.scss
1679
- @function k-generate-theme-variant( $variant, $matrix, $src-palette-name ) {
1680
- $result: ();
1709
+ @return $string;
1710
+ }
1681
1711
 
1682
- @each $ui-state, $indices in $matrix {
1683
- $prefix: if( $ui-state == DEFAULT, "", "#{$ui-state}-" );
1684
- $indices-count: k-list-length( $indices );
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
+ }
1685
1724
 
1686
- $bg-prop: k-list-nth( $indices, 1 );
1687
- $text-prop: k-list-nth( $indices, 2 );
1688
- $border-prop: k-list-nth( $indices, 3 );
1689
- $gradient-prop: if( $indices-count > 3, k-list-nth( $indices, 4 ), null );
1690
- $shadow-prop: if( $indices-count > 4, k-list-nth( $indices, 5 ), null );
1691
- $outline-prop: if( $indices-count > 5, k-list-nth( $indices, 6 ), null );
1725
+ @return $string;
1726
+ }
1692
1727
 
1693
- // Take value from the palette only if it is a number
1694
- $bg: if( k-meta-type-of( $bg-prop ) == number, k-get-theme-color( $src-palette-name, $bg-prop ), $bg-prop );
1695
- $text: if( k-meta-type-of( $text-prop ) == number, k-get-theme-color( $src-palette-name, $text-prop ), $text-prop );
1696
- $border: if( k-meta-type-of( $border-prop ) == number, k-get-theme-color( $src-palette-name, $border-prop ), $border-prop );
1697
- $gradient: $gradient-prop;
1698
- $shadow: $shadow-prop;
1699
- $outline: $outline-prop;
1728
+ // #endregion
1700
1729
 
1701
- $result: k-map-merge($result, (
1702
- #{$prefix}bg: $bg,
1703
- #{$prefix}text: $text,
1704
- #{$prefix}border: $border,
1705
- #{$prefix}gradient: $gradient,
1706
- #{$prefix}shadow: $shadow,
1707
- #{$prefix}outline: $outline
1708
- ));
1709
- }
1730
+ // #endregion
1710
1731
 
1711
- $result: (
1712
- #{$variant}: $result
1713
- );
1732
+ // #endregion
1714
1733
 
1715
- @return $result;
1734
+ $kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
1735
+ $kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
1716
1736
 
1717
- };
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;
1718
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;
1719
1748
 
1720
- @function k-process-variant-matrices( $theme-matrix, $palette-matrix: () ) {
1721
- $result: ();
1749
+ $kendo-auto-bootstrap: true !default;
1722
1750
 
1723
- // @debug $theme-matrix;
1724
- // @debug $palette-matrix;
1725
1751
 
1726
- @each $variant, $definition in $theme-matrix {
1727
- $tc-index: k-string-index( $variant, "THEME_COLOR" );
1728
- $src-palette-name: k-map-get( $definition, PALETTE );
1729
- $matrix: k-map-remove( $definition, PALETTE );
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;
1730
1789
 
1731
- @if ($tc-index == null ) { // stylelint-disable-line
1732
- $tmp-result: k-generate-theme-variant( $variant, $matrix, $src-palette-name );
1733
- $result: k-map-merge( $result, $tmp-result);
1734
- } @else {
1735
- @each $color, $palette in $palette-matrix {
1736
- $variant-name: k-string-replace( $variant, THEME_COLOR, $color);
1737
- $palette-name: k-string-unquote($src-palette-name + "");
1738
1790
 
1739
- @if ($palette-name == THEME_COLOR) {
1740
- $palette-name: k-string-replace( $palette-name, THEME_COLOR, $color );
1741
- $palette-name: k-map-get( $palette-matrix, $palette-name );
1742
- }
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;
1743
1815
 
1744
- $tmp-result: k-generate-theme-variant( $variant-name, $matrix, $palette-name );
1745
- $result: k-map-merge( $result, $tmp-result );
1746
- }
1747
- }
1748
- }
1816
+ $kendo-icon-spacing: k-map-get( $kendo-spacing, 1 ) !default;
1817
+ $kendo-icon-padding: k-map-get( $kendo-spacing, 1 ) !default;
1749
1818
 
1750
- @return $result;
1751
- }
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;
1752
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;
1753
1856
 
1754
- @function k-get-theme-palette( $name ) {
1755
- @return k-map-get( $kendo-palettes, $name );
1756
- }
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;
1757
1865
 
1758
- @function k-get-theme-color( $palette, $hue ) {
1759
- @if ( k-meta-type-of( $palette ) == "map" ) {
1760
- @return k-map-get( $palette, $hue );
1761
- }
1762
1866
 
1763
- @return k-map-get( k-get-theme-palette( $palette ), $hue );
1764
- }
1867
+ $kendo-zindex-popup: 1 !default;
1868
+ $kendo-zindex-window: 2 !default;
1869
+ $kendo-zindex-loading: 100 !default;
1765
1870
 
1766
- @function k-get-theme-color-var( $name, $fallback: "inherit", $prefix: "kendo-" ) {
1767
- @return var( --#{$prefix}#{$name}, #{$fallback} );
1768
- }
1769
1871
 
1770
- // #endregion
1771
- // #region @import "./_mixins.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_mixins.import.scss
1872
+ // Color settings
1873
+ $kendo-is-dark-theme: false !default;
1772
1874
 
1773
- // #endregion
1774
- // #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_variables.scss
1775
- // Color constants
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;
1776
1883
 
1777
- /// The color white.
1778
- /// Note: you cannot change this value.
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
1779
1887
  /// @type Color
1888
+ $kendo-color-primary-contrast: k-contrast-legacy( $kendo-color-primary ) !default;
1889
+
1890
+ /// The secondary color of the theme.
1780
1891
  /// @group color-system
1781
- $kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
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;
1782
1896
 
1783
- /// The color black.
1784
- /// Note: you cannot change this value.
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
1785
1900
  /// @type Color
1901
+ $kendo-color-secondary-contrast: k-contrast-legacy( $kendo-color-secondary ) !default;
1902
+
1903
+ /// The tertiary color of the theme.
1786
1904
  /// @group color-system
1787
- $kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
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;
1788
1909
 
1789
- /// The color transparent.
1790
- /// Note: you cannot change this value.
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
1791
1913
  /// @type Color
1914
+ $kendo-color-tertiary-contrast: k-contrast-legacy( $kendo-color-tertiary ) !default;
1915
+
1916
+ /// The color for informational messages and states.
1792
1917
  /// @group color-system
1793
- $kendo-color-rgba-transparent: rgba( 0, 0, 0, 0 ); // stylelint-disable-line scss/dollar-variable-default
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;
1794
1922
 
1795
- /// A gradient that goes from transparent to black.
1796
- /// Note: you cannot change this value.
1797
- /// @type Gradient
1923
+ /// The color for success messages and states.
1798
1924
  /// @group color-system
1799
- $kendo-gradient-transparent-to-black: rgba( black, 0 ), black; // stylelint-disable-line scss/dollar-variable-default
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;
1800
1929
 
1801
- /// A gradient that goes from transparent to white.
1802
- /// Note: you cannot change this value.
1803
- /// @type Gradient
1930
+ /// The color for warning messages and states.
1804
1931
  /// @group color-system
1805
- $kendo-gradient-transparent-to-white: rgba( white, 0 ), white; // stylelint-disable-line scss/dollar-variable-default
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;
1806
1936
 
1807
- /// A gradient that goes from black to transparent.
1808
- /// Note: you cannot change this value.
1809
- /// @type Gradient
1937
+ /// The color for error messages and states.
1810
1938
  /// @group color-system
1811
- $kendo-gradient-black-to-transparent: black, rgba( black, 0 ); // stylelint-disable-line scss/dollar-variable-default
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;
1812
1943
 
1813
- /// A gradient that goes from white to transparent.
1814
- /// Note: you cannot change this value.
1815
- /// @type Gradient
1944
+ /// The dark color of the theme.
1816
1945
  /// @group color-system
1817
- $kendo-gradient-white-to-transparent: white, rgba( white, 0 ); // stylelint-disable-line scss/dollar-variable-default
1946
+ /// @type Color
1947
+ $kendo-color-dark: #424242 !default;
1818
1948
 
1819
- /// A gradient that cycles through the colors of the rainbow.
1820
- /// Note: you cannot change this value.
1821
- /// @type Gradient
1949
+ /// The light color of the theme.
1822
1950
  /// @group color-system
1823
- $kendo-gradient-rainbow: #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000; // stylelint-disable-line scss/dollar-variable-default
1951
+ /// @type Color
1952
+ $kendo-color-light: #ebebeb !default;
1953
+
1954
+ /// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
1955
+ /// @group color-system
1956
+ $kendo-color-inverse: if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark ) !default;
1957
+
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;
1971
+
1972
+
1973
+ // Typography
1824
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;
1825
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
1826
2192
  // #region @import "./_palettes.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_palettes.scss
1827
2193
  /// Color palettes to be used in the Kendo UI themes.
1828
2194
  /// @access private
@@ -2811,13 +3177,380 @@ $kendo-palettes: (
2811
3177
 
2812
3178
  // #endregion
2813
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
+
2814
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
+ }
2815
3332
 
2816
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
2817
3342
 
2818
- // Mixins
2819
- // #region @import "./mixins/index.import.scss"; -> scss/core/mixins/index.import.scss
2820
- // #region @import "@progress/kendo-theme-core/scss/mixins/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/index.import.scss
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
+ }
3548
+
3549
+ // #endregion
3550
+ // @import "./_palettes.scss";
3551
+
3552
+ // #endregion
3553
+ // #region @import "./mixins/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/index.import.scss
2821
3554
  // #region @import "./_border-radius.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_border-radius.scss
2822
3555
  // Border radius
2823
3556
  @mixin border-radius( $radius: null ) {
@@ -2917,6 +3650,47 @@ $_kendo-data-uris: () !default;
2917
3650
  box-shadow: none;
2918
3651
  }
2919
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
+
2920
3694
  // #endregion
2921
3695
  // #region @import "./_focus-indicator.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_focus-indicator.scss
2922
3696
  @mixin focus-indicator( $indicator, $inset: false, $themeable: false, $type: "box-shadow" ) {
@@ -2969,7 +3743,7 @@ $_kendo-data-uris: () !default;
2969
3743
  // #region @import "./_hide-scrollbar.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_hide-scrollbar.scss
2970
3744
  $kendo-scrollbar-width: 17px !default;
2971
3745
 
2972
- @mixin hide-scrollbar( $dir: "right", $max-scrollbar: 100px ) {
3746
+ @mixin hide-scrollbar( $dir: "right", $max-scrollbar: 100px) {
2973
3747
  // anything larger than the scrollbar width will do
2974
3748
  $scrollbar-size: var( --kendo-scrollbar-width, #{$kendo-scrollbar-width} );
2975
3749
  $margin: calc( -#{$max-scrollbar} - #{$scrollbar-size} );
@@ -2986,6 +3760,18 @@ $kendo-scrollbar-width: 17px !default;
2986
3760
  }
2987
3761
  }
2988
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
+
2989
3775
  // #endregion
2990
3776
  // #region @import "./_import-once.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_import-once.scss
2991
3777
  /// A list of exported modules.
@@ -3015,13 +3801,6 @@ $_kendo-imported-modules: () !default;
3015
3801
 
3016
3802
  // #endregion
3017
3803
 
3018
- @mixin fill( $color: null, $bg: null, $border: null, $gradient: null ) {
3019
- border-color: $border;
3020
- color: $color;
3021
- background-color: $bg;
3022
- @include linear-gradient( $gradient );
3023
- }
3024
-
3025
3804
  @mixin background-image( $background-image: null ) {
3026
3805
  @if $background-image {
3027
3806
  background-image: url(#{$background-image});
@@ -3029,12 +3808,7 @@ $_kendo-imported-modules: () !default;
3029
3808
  }
3030
3809
 
3031
3810
  // #endregion
3032
-
3033
- // #endregion
3034
-
3035
- // Module system
3036
- // #region @import "./module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
3037
- // #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
3038
3812
  // #region @import "./_components.scss"; -> node_modules/@progress/kendo-theme-core/scss/module-system/_components.scss
3039
3813
  $kendo-components: (
3040
3814
  // Typography and utils
@@ -3713,12 +4487,7 @@ $_imported: () !default;
3713
4487
  // stylelint-enable scss/at-if-no-null
3714
4488
 
3715
4489
  // #endregion
3716
-
3717
- // #endregion
3718
-
3719
- // Common styles
3720
- // #region @import "./styles/index.import.scss"; -> scss/core/styles/index.import.scss
3721
- // #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
3722
4491
  // #region @import "./_accessibility.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_accessibility.scss
3723
4492
  @mixin kendo-core--styles--accessibility() {
3724
4493
 
@@ -3749,6 +4518,20 @@ $_imported: () !default;
3749
4518
  // #endregion
3750
4519
  // #region @import "./_layout.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_layout.scss
3751
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
+ }
3752
4535
 
3753
4536
  // Basic layout
3754
4537
  .k-hstack {
@@ -3863,472 +4646,386 @@ $_imported: () !default;
3863
4646
  }
3864
4647
 
3865
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
+ );
3866
4659
 
4660
+ .k-link {
4661
+ cursor: default;
4662
+ outline: 0;
4663
+ }
4664
+ }
3867
4665
 
3868
- @mixin kendo-core--styles() {
3869
- @include kendo-core--styles--accessibility();
3870
- @include kendo-core--styles--asp-fallback();
3871
- @include kendo-core--styles--layout();
3872
- @include kendo-core--styles--normalize();
3873
- }
3874
-
3875
- // #endregion
3876
-
3877
- // #endregion
3878
-
3879
- // Variables
3880
- // #region @import "../_variables.scss"; -> scss/_variables.scss
3881
- // #region @import "./core/functions/index.import.scss"; -> scss/core/functions/index.import.scss
3882
- // File already imported_once. Skipping output.
3883
- // #endregion
3884
- // #region @import "./core/color-system/index.import.scss"; -> scss/core/color-system/index.import.scss
3885
- // File already imported_once. Skipping output.
3886
- // #endregion
3887
-
3888
-
3889
- // Options
3890
- $kendo-enable-rounded: true !default;
3891
- $kendo-enable-shadows: true !default;
3892
- $kendo-enable-gradients: true !default;
3893
- $kendo-enable-transitions: true !default;
3894
- $kendo-enable-focus-contrast: false !default;
3895
- $kendo-enable-typography: false !default;
3896
-
3897
- $kendo-use-input-button-width: true !default;
3898
- $kendo-use-input-spinner-width: true !default;
3899
- $kendo-use-input-spinner-icon-offset: false !default;
3900
-
3901
- $kendo-auto-bootstrap: true !default;
3902
-
3903
-
3904
- // Spacing
3905
- $kendo-spacing: (
3906
- 0: 0,
3907
- 1px: 1px,
3908
- 0.5: 2px,
3909
- 1: 4px,
3910
- 1.5: 6px,
3911
- 2: 8px,
3912
- 2.5: 10px,
3913
- 3: 12px,
3914
- 3.5: 14px,
3915
- 4: 16px,
3916
- 4.5: 18px,
3917
- 5: 20px,
3918
- 5.5: 22px,
3919
- 6: 24px,
3920
- 6.5: 26px,
3921
- 7: 28px,
3922
- 7.5: 30px,
3923
- 8: 32px,
3924
- 9: 36px,
3925
- 10: 40px,
3926
- 11: 44px,
3927
- 12: 48px,
3928
- 13: 52px,
3929
- 14: 56px,
3930
- 15: 60px,
3931
- 16: 64px,
3932
- 17: 68px,
3933
- 18: 72px,
3934
- 19: 76px,
3935
- 20: 80px,
3936
- 21: 84px,
3937
- 22: 88px,
3938
- 23: 92px,
3939
- 24: 96px
3940
- ) !default;
3941
-
3942
-
3943
- /// Icon size.
3944
- /// @group common
3945
- $kendo-icon-size: 16px !default;
3946
- /// xtra small icon size.
3947
- /// @group common
3948
- $kendo-icon-size-xs: calc( #{$kendo-icon-size} * .75 ) !default;
3949
- /// Small icon size.
3950
- /// @group common
3951
- $kendo-icon-size-sm: calc( #{$kendo-icon-size} * .875 ) !default;
3952
- /// Medium icon size.
3953
- /// @group common
3954
- $kendo-icon-size-md: $kendo-icon-size !default;
3955
- /// Large icon size.
3956
- /// @group common
3957
- $kendo-icon-size-lg: calc( #{$kendo-icon-size} * 1.25 ) !default;
3958
- /// Extra large icon size.
3959
- /// @group common
3960
- $kendo-icon-size-xl: calc( #{$kendo-icon-size} * 1.5 ) !default;
3961
- /// Double extra large icon size.
3962
- /// @group common
3963
- $kendo-icon-size-xxl: calc( #{$kendo-icon-size} * 2 ) !default;
3964
- /// Triple extra large icon size.
3965
- /// @group common
3966
- $kendo-icon-size-xxxl: calc( #{$kendo-icon-size} * 3 ) !default;
3967
-
3968
- $kendo-icon-spacing: k-map-get( $kendo-spacing, 1 ) !default;
3969
- $kendo-icon-padding: k-map-get( $kendo-spacing, 1 ) !default;
3970
-
3971
- /// Horizontal padding.
3972
- /// @group common
3973
- $kendo-padding-x: 8px !default;
3974
- /// Vertical padding.
3975
- /// @group common
3976
- $kendo-padding-y: 4px !default;
3977
- /// Small horizontal padding.
3978
- /// @group common
3979
- $kendo-padding-sm-x: k-map-get( $kendo-spacing, 1 ) !default;
3980
- /// Small vertical padding.
3981
- /// @group common
3982
- $kendo-padding-sm-y: k-map-get( $kendo-spacing, 0.5 ) !default;
3983
- /// Medium horizontal padding.
3984
- /// @group common
3985
- $kendo-padding-md-x: k-map-get( $kendo-spacing, 2 ) !default;
3986
- /// Medium vertical padding.
3987
- /// @group common
3988
- $kendo-padding-md-y: k-map-get( $kendo-spacing, 1 ) !default;
3989
- /// Large horizontal padding.
3990
- /// @group common
3991
- $kendo-padding-lg-x: k-map-get( $kendo-spacing, 3 ) !default;
3992
- /// Large vertical padding.
3993
- /// @group common
3994
- $kendo-padding-lg-y: k-map-get( $kendo-spacing, 1.5 ) !default;
3995
-
3996
- /// Border radius for all components.
3997
- /// @group common
3998
- $kendo-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
3999
- /// Small border radius.
4000
- /// @group common
4001
- $kendo-border-radius-sm: $kendo-border-radius - k-map-get( $kendo-spacing, 0.5 ) !default;
4002
- /// Medium border radius.
4003
- /// @group common
4004
- $kendo-border-radius-md: $kendo-border-radius !default;
4005
- /// Large border radius.
4006
- /// @group common
4007
- $kendo-border-radius-lg: $kendo-border-radius + k-map-get( $kendo-spacing, 0.5 ) !default;
4008
-
4009
- $kendo-border-radii: (
4010
- DEFAULT: $kendo-border-radius-md,
4011
- 0: 0,
4012
- sm: $kendo-border-radius-sm,
4013
- md: $kendo-border-radius-md,
4014
- lg: $kendo-border-radius-lg,
4015
- full: 9999px
4016
- ) !default;
4017
-
4018
-
4019
- $kendo-zindex-popup: 1 !default;
4020
- $kendo-zindex-window: 2 !default;
4021
- $kendo-zindex-loading: 100 !default;
4022
-
4023
-
4024
- // Color settings
4025
- $kendo-is-dark-theme: false !default;
4026
-
4027
- // Theme colors
4028
- /// The color that focuses the user attention.
4029
- /// Used for primary buttons and for elements of primary importance across the theme.
4030
- /// @group color-system
4031
- /// @type Color
4032
- $kendo-color-primary: #ff6358 !default;
4033
- $kendo-color-primary-lighter: k-color-tint( $kendo-color-primary, 2 ) !default;
4034
- $kendo-color-primary-darker: k-color-shade( $kendo-color-primary, 2 ) !default;
4035
-
4036
- /// The color used along with the primary color denoted by $kendo-color-primary.
4037
- /// Used to provide contrast between the background and foreground colors.
4038
- /// @group color-system
4039
- /// @type Color
4040
- $kendo-color-primary-contrast: k-contrast-legacy( $kendo-color-primary ) !default;
4041
-
4042
- /// The secondary color of the theme.
4043
- /// @group color-system
4044
- /// @type Color
4045
- $kendo-color-secondary: #666666 !default;
4046
- $kendo-color-secondary-lighter: k-color-tint( $kendo-color-secondary, 2 ) !default;
4047
- $kendo-color-secondary-darker: k-color-shade( $kendo-color-secondary, 2 ) !default;
4048
-
4049
- /// The color used along with the secondary color denoted by $kendo-color-secondary.
4050
- /// Used to provide contrast between the background and foreground colors.
4051
- /// @group color-system
4052
- /// @type Color
4053
- $kendo-color-secondary-contrast: k-contrast-legacy( $kendo-color-secondary ) !default;
4054
-
4055
- /// The tertiary color of the theme.
4056
- /// @group color-system
4057
- /// @type Color
4058
- $kendo-color-tertiary: #03a9f4 !default;
4059
- $kendo-color-tertiary-lighter: k-color-tint( $kendo-color-tertiary, 2 ) !default;
4060
- $kendo-color-tertiary-darker: k-color-shade( $kendo-color-tertiary, 2 ) !default;
4061
-
4062
- /// The color used along with the tertiary color denoted by $kendo-color-tertiary.
4063
- /// Used to provide contrast between the background and foreground colors.
4064
- /// @group color-system
4065
- /// @type Color
4066
- $kendo-color-tertiary-contrast: k-contrast-legacy( $kendo-color-tertiary ) !default;
4067
-
4068
- /// The color for informational messages and states.
4069
- /// @group color-system
4070
- /// @type Color
4071
- $kendo-color-info: #0058e9 !default;
4072
- $kendo-color-info-lighter: k-color-tint( $kendo-color-info, 2 ) !default;
4073
- $kendo-color-info-darker: k-color-shade( $kendo-color-info, 2 ) !default;
4074
-
4075
- /// The color for success messages and states.
4076
- /// @group color-system
4077
- /// @type Color
4078
- $kendo-color-success: #37b400 !default;
4079
- $kendo-color-success-lighter: k-color-tint( $kendo-color-success, 2 ) !default;
4080
- $kendo-color-success-darker: k-color-shade( $kendo-color-success, 2 ) !default;
4081
-
4082
- /// The color for warning messages and states.
4083
- /// @group color-system
4084
- /// @type Color
4085
- $kendo-color-warning: #ffc000 !default;
4086
- $kendo-color-warning-lighter: k-color-tint( $kendo-color-warning, 2 ) !default;
4087
- $kendo-color-warning-darker: k-color-shade( $kendo-color-warning, 2 ) !default;
4088
-
4089
- /// The color for error messages and states.
4090
- /// @group color-system
4091
- /// @type Color
4092
- $kendo-color-error: #f31700 !default;
4093
- $kendo-color-error-lighter: k-color-tint( $kendo-color-error, 2 ) !default;
4094
- $kendo-color-error-darker: k-color-shade( $kendo-color-error, 2 ) !default;
4095
-
4096
- /// The dark color of the theme.
4097
- /// @group color-system
4098
- /// @type Color
4099
- $kendo-color-dark: #424242 !default;
4100
-
4101
- /// The light color of the theme.
4102
- /// @group color-system
4103
- /// @type Color
4104
- $kendo-color-light: #ebebeb !default;
4105
-
4106
- /// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
4107
- /// @group color-system
4108
- $kendo-color-inverse: if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark ) !default;
4109
-
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
+ }
4110
4678
 
4111
- $kendo-theme-colors: (
4112
- "primary": $kendo-color-primary,
4113
- "secondary": $kendo-color-secondary,
4114
- "tertiary": $kendo-color-tertiary,
4115
- "info": $kendo-color-info,
4116
- "success": $kendo-color-success,
4117
- "warning": $kendo-color-warning,
4118
- "error": $kendo-color-error,
4119
- "dark": $kendo-color-dark,
4120
- "light": $kendo-color-light,
4121
- "inverse": $kendo-color-inverse
4122
- ) !default;
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
+ }
4123
4687
 
4688
+ // Vertical rule
4689
+ .k-d-flex-col > .k-hr {
4690
+ margin: 0;
4691
+ flex: 0 0 auto;
4692
+ }
4124
4693
 
4125
- // Typography
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
+ }
4126
4704
 
4127
- /// Base font size across all components.
4128
- /// @group typography
4129
- $kendo-font-size: 14px !default;
4130
- /// Extra small font size across all components.
4131
- /// @group typography
4132
- $kendo-font-size-xs: 10px !default;
4133
- /// Small font size across all components.
4134
- /// @group typography
4135
- $kendo-font-size-sm: 12px !default;
4136
- /// Medium font size across all components.
4137
- /// @group typography
4138
- $kendo-font-size-md: $kendo-font-size !default;
4139
- /// Large font size across all components.
4140
- /// @group typography
4141
- $kendo-font-size-lg: 16px !default;
4142
- /// Extra large font size across all components.
4143
- /// @group typography
4144
- $kendo-font-size-xl: 20px !default;
4705
+ .k-image {
4706
+ display: inline-block;
4707
+ }
4145
4708
 
4146
- $kendo-font-sizes: (
4147
- xs: $kendo-font-size-xs,
4148
- sm: $kendo-font-size-sm,
4149
- md: $kendo-font-size-md,
4150
- lg: $kendo-font-size-lg,
4151
- xl: $kendo-font-size-xl
4152
- ) !default;
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
+ }
4153
4719
 
4154
- /// Font family for text.
4155
- /// @group typography
4156
- $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;
4720
+ kendo-sortable {
4721
+ display: block;
4722
+ }
4157
4723
 
4158
- /// Font family for monospaced text. Used for styling the code.
4159
- /// @group typography
4160
- $kendo-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono", "Ubuntu Mono", "Lucida Console", "Courier New", monospace !default;
4161
4724
 
4162
- /// Font family across all components.
4163
- /// @group typography
4164
- $kendo-font-family: inherit !default;
4725
+ // Links
4726
+ .k-link,
4727
+ .k-link:hover {
4728
+ color: inherit;
4729
+ text-decoration: none;
4730
+ outline: 0;
4731
+ cursor: pointer;
4732
+ }
4165
4733
 
4166
- /// Line height used along with $kendo-font-size.
4167
- /// @group typography
4168
- $kendo-line-height: k-math-div( 20, 14 ) !default;
4169
- /// Extra small line height used along with $kendo-font-size-xs.
4170
- /// @group typography
4171
- $kendo-line-height-xs: 1 !default;
4172
- /// Small line height used along with $kendo-font-size-sm.
4173
- /// @group typography
4174
- $kendo-line-height-sm: 1.25 !default;
4175
- /// Medium line height used along with $kendo-font-size-md.
4176
- /// @group typography
4177
- $kendo-line-height-md: $kendo-line-height !default;
4178
- /// Large line height used along with $kendo-font-size-lg.
4179
- /// @group typography
4180
- $kendo-line-height-lg: 1.5 !default;
4181
- $kendo-line-height-em: calc( #{$kendo-line-height} * 1em ) !default;
4734
+ // Outline
4735
+ .k-content {
4736
+ outline: 0;
4737
+ }
4182
4738
 
4183
- /// Light font weight.
4184
- /// @group typography
4185
- $kendo-font-weight-light: 300 !default;
4186
- /// Normal font weight.
4187
- /// @group typography
4188
- $kendo-font-weight-normal: 400 !default;
4189
- /// Medium font weight.
4190
- /// @group typography
4191
- $kendo-font-weight-medium: 500 !default;
4192
- /// Semibold font weight.
4193
- /// @group typography
4194
- $kendo-font-weight-semibold: 600 !default;
4195
- /// Bold font weight.
4196
- /// @group typography
4197
- $kendo-font-weight-bold: 700 !default;
4739
+ // Centering
4740
+ .k-centered {
4741
+ position: absolute;
4742
+ top: 50%;
4743
+ left: 50%;
4744
+ transform: translate(-50%, -50%);
4745
+ }
4198
4746
 
4199
- /// Letter spacing.
4200
- /// @group typography
4201
- $kendo-letter-spacing: null !default;
4747
+ // Disable mouse events
4748
+ .k-no-click {
4749
+ pointer-events: none;
4750
+ }
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
+ }
4202
4759
 
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
+ }
4203
4765
 
4204
- // Generic styles
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;
4205
4796
 
4206
- /// Background color of the body.
4207
- /// @group common
4208
- $kendo-body-bg: $kendo-color-white !default;
4209
- /// Text color of the body.
4210
- /// @group common
4211
- $kendo-body-text: #424242 !default;
4797
+ *,
4798
+ *::before,
4799
+ *::after,
4800
+ &::before,
4801
+ &::after {
4802
+ box-sizing: border-box;
4803
+ }
4804
+ }
4212
4805
 
4213
- /// Subtle text color.
4214
- /// @group common
4215
- $kendo-subtle-text: #666666 !default;
4806
+ .k-loading-mask {
4807
+ z-index: $kendo-zindex-loading;
4216
4808
 
4217
- $kendo-app-bg: k-try-shade( $kendo-body-bg, .25 ) !default;
4218
- $kendo-app-text: $kendo-body-text !default;
4219
- $kendo-app-border: rgba( $kendo-color-black, .08 ) !default;
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
+ }
4220
4829
 
4221
- // Link
4222
- /// Text color of the links.
4223
- /// @group common
4224
- $kendo-link-text: $kendo-color-primary !default;
4225
- /// Text color of the links on hover.
4226
- /// @group common
4227
- $kendo-link-hover-text: $kendo-color-primary-darker !default;
4830
+ // Loading indicator
4831
+ .k-i-loading {
4832
+ position: relative;
4833
+ background-color: transparent;
4834
+ box-sizing: border-box;
4835
+ color: $kendo-loading-text;
4228
4836
 
4837
+ &::before,
4838
+ &::after {
4839
+ box-sizing: border-box;
4840
+ }
4841
+ }
4229
4842
 
4230
- // Components
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
+ }
4231
4861
 
4232
- // Component
4233
- /// Background color of a component.
4234
- /// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.
4235
- /// @group component
4236
- $kendo-component-bg: $kendo-body-bg !default;
4237
- /// Text color of a component.
4238
- /// Note: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.
4239
- /// @group component
4240
- $kendo-component-text: $kendo-body-text !default;
4241
- /// Border color of a component.
4242
- /// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.
4243
- /// @group component
4244
- $kendo-component-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
4862
+ .k-icon.k-i-loading::before,
4863
+ .k-icon.k-i-loading::after {
4864
+ content: "";
4865
+ }
4245
4866
 
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
+ }
4246
4875
 
4247
- /// The background of the components' chrome area.
4248
- $kendo-base-bg: #fafafa !default;
4249
- /// The text color of the components' chrome area.
4250
- $kendo-base-text: $kendo-body-text !default;
4251
- /// The border color of the components' chrome area.
4252
- $kendo-base-border: rgba( black, .08 ) !default;
4253
- /// The gradient background of the components' chrome area.
4254
- $kendo-base-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
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
+ }
4255
4884
 
4256
- /// The background of hovered items.
4257
- $kendo-hover-bg: k-try-shade( $kendo-base-bg, .5 ) !default;
4258
- /// The text color of hovered items.
4259
- $kendo-hover-text: $kendo-base-text !default;
4260
- /// The border color of hovered items.
4261
- $kendo-hover-border: $kendo-base-border !default;
4262
- /// The gradient background of hovered items.
4263
- $kendo-hover-gradient: $kendo-base-gradient !default;
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
+ }
4264
4893
 
4265
- /// The background of selected items.
4266
- $kendo-selected-bg: $kendo-color-primary !default;
4267
- /// The text color of selected items.
4268
- $kendo-selected-text: k-contrast-legacy( $kendo-selected-bg ) !default;
4269
- /// The border color of selected items.
4270
- $kendo-selected-border: $kendo-base-border !default;
4271
- /// The gradient background of selected items.
4272
- $kendo-selected-gradient: $kendo-base-gradient !default;
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
+ }
4273
4911
 
4274
- /// The background of selected and hovered items.
4275
- $kendo-selected-hover-bg: k-try-shade( $kendo-selected-bg, .5 ) !default;
4276
- /// The text color of selected and hovered items.
4277
- $kendo-selected-hover-text: $kendo-selected-text !default;
4278
- /// The border of selected and hovered items.
4279
- $kendo-selected-hover-border: $kendo-base-border !default;
4280
- /// The gradient of selected and hovered items.
4281
- $kendo-selected-hover-gradient: $kendo-base-gradient !default;
4912
+ .k-marquee-color,
4913
+ .k-marquee-text {
4914
+ position: absolute;
4915
+ top: 0;
4916
+ left: 0;
4917
+ width: 100%;
4918
+ height: 100%;
4919
+ }
4282
4920
 
4283
- // TODO: refactor
4284
- /// Box shadow of focused items.
4285
- $kendo-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
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
4286
4932
 
4287
- /// Transition used across all components.
4288
- $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;
4289
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
+ }
4943
+
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
4290
4949
 
4291
- /// Text color of disabled items.
4292
- $kendo-disabled-text: #8f8f8f !default;
4293
- /// Filter used for disabled items.
4294
- $kendo-disabled-filter: grayscale(.1) !default;
4295
- /// Opacity used for disabled items.
4296
- $kendo-disabled-opacity: .6 !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;
4297
4955
 
4298
- $kendo-disabled-styling: (
4299
- opacity: $kendo-disabled-opacity,
4300
- filter: $kendo-disabled-filter
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,
4301
4991
  ) !default;
4302
4992
 
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;
4303
4998
 
4304
- // Generic styles
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,
5007
+ ) !default;
4305
5008
 
4306
- /// Background color of the component header.
4307
- /// @group component
4308
- $kendo-component-header-bg: $kendo-base-bg !default;
4309
- /// Text color of the component header.
4310
- /// @group component
4311
- $kendo-component-header-text: $kendo-base-text !default;
4312
- /// Border color of the component header.
4313
- /// @group component
4314
- $kendo-component-header-border: $kendo-base-border !default;
4315
- /// Gradient of the component header.
4316
- /// @group component
4317
- $kendo-component-header-gradient: null !default;
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;
4318
5018
 
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
4319
5024
 
4320
- /// Background color of the invalid items.
4321
- /// @group component
4322
- $kendo-invalid-bg: null !default;
4323
- /// Text color of the invalid items.
4324
- /// @group component
4325
- $kendo-invalid-text: $kendo-color-error !default;
4326
- /// Border color of the invalid items.
4327
- /// @group component
4328
- $kendo-invalid-border: $kendo-color-error !default;
4329
- /// Shadow of the invalid items.
4330
- /// @group component
4331
- $kendo-invalid-shadow: null !default;
5025
+ // Loading
5026
+ $kendo-loading-opacity: .3 !default;
5027
+ $kendo-zindex-loading: 100 !default;
5028
+ // #endregion
4332
5029
 
4333
5030
  // #endregion
4334
5031
 
@@ -5411,36 +6108,6 @@ $kendo-invalid-shadow: null !default;
5411
6108
 
5412
6109
  }
5413
6110
 
5414
- // #endregion
5415
- // #region @import "./_selection.scss"; -> scss/common/_selection.scss
5416
- @include exports( "common/selection/marquee" ) {
5417
-
5418
- .k-marquee {
5419
- position: absolute;
5420
- z-index: 100000;
5421
- }
5422
-
5423
- .k-marquee-color,
5424
- .k-marquee-text {
5425
- position: absolute;
5426
- top: 0;
5427
- left: 0;
5428
- width: 100%;
5429
- height: 100%;
5430
- }
5431
-
5432
- .k-marquee-color {
5433
- color: $kendo-selected-text;
5434
- background-color: $kendo-selected-bg;
5435
- border-color: $kendo-selected-border;
5436
- opacity: .6;
5437
- }
5438
- .k-marquee-text {
5439
- color: $kendo-selected-text;
5440
- }
5441
-
5442
- }
5443
-
5444
6111
  // #endregion
5445
6112
 
5446
6113
  // #endregion
@@ -13335,7 +14002,10 @@ $kendo-utils: (
13335
14002
 
13336
14003
  // Register
13337
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
13338
14006
  // File already imported_once. Skipping output.
14007
+ // #endregion
14008
+
13339
14009
  // #endregion
13340
14010
  @include module-register( $_kendo-module-meta... );
13341
14011
 
@@ -21400,14 +22070,14 @@ $kendo-menu-popup-border-width: $kendo-popup-border-width !default;
21400
22070
  $kendo-menu-popup-font-size: $kendo-font-size-md !default;
21401
22071
  $kendo-menu-popup-sm-font-size: $kendo-font-size-md !default;
21402
22072
  $kendo-menu-popup-md-font-size: $kendo-font-size-md !default;
21403
- $kendo-menu-popup-lg-font-size: $kendo-font-size-md !default;
22073
+ $kendo-menu-popup-lg-font-size: $kendo-font-size-lg !default;
21404
22074
 
21405
22075
  /// Line heights used along with $kendo-font-size.
21406
22076
  /// @group menu
21407
22077
  $kendo-menu-popup-line-height: $kendo-line-height-md !default;
21408
22078
  $kendo-menu-popup-sm-line-height: $kendo-line-height-md !default;
21409
22079
  $kendo-menu-popup-md-line-height: $kendo-line-height-md !default;
21410
- $kendo-menu-popup-lg-line-height: $kendo-line-height-md !default;
22080
+ $kendo-menu-popup-lg-line-height: $kendo-line-height-lg !default;
21411
22081
 
21412
22082
  /// The background of the menu popup.
21413
22083
  /// @group menu
@@ -34930,6 +35600,7 @@ $kendo-actionsheet-item-disabled-shadow: null !default;
34930
35600
 
34931
35601
 
34932
35602
  // Adaptive Actionsheet
35603
+ $kendo-adaptive-actionsheet-font-size: $kendo-font-size-lg !default;
34933
35604
  $kendo-adaptive-actionsheet-titlebar-border-width: 1px !default;
34934
35605
  $kendo-adaptive-actionsheet-titlebar-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
34935
35606
  $kendo-adaptive-actionsheet-titlebar-padding-x: $kendo-adaptive-actionsheet-titlebar-padding-y !default;
@@ -35175,6 +35846,7 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
35175
35846
  .k-adaptive-actionsheet {
35176
35847
  max-width: 100%;
35177
35848
  width: 100%;
35849
+ font-size: $kendo-adaptive-actionsheet-font-size;
35178
35850
 
35179
35851
  // TMP: this should be moved to action sheet
35180
35852
  display: flex;
@@ -35214,6 +35886,12 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
35214
35886
  padding-inline: 0;
35215
35887
  }
35216
35888
 
35889
+ .k-menu-group {
35890
+ height: 100%;
35891
+ overflow: auto;
35892
+ position: static;
35893
+ }
35894
+
35217
35895
  .k-calendar {
35218
35896
  margin-inline: auto;
35219
35897
  border-width: 0;
@@ -37936,234 +38614,63 @@ $_kendo-module-meta: (
37936
38614
  // #region @import "./_variables.scss"; -> scss/breadcrumb/_variables.scss
37937
38615
  // Breadcrumb
37938
38616
 
37939
- /// The width of the border around the Breadcrumb.
37940
- /// @group breadcrumb
37941
- $kendo-breadcrumb-border-width: 0px !default;
37942
-
37943
- /// The horizontal margin of the Breadcrumb.
37944
- /// @group breadcrumb
37945
38617
  $kendo-breadcrumb-margin-x: null !default;
37946
- /// The vertical margin of the Breadcrumb.
37947
- /// @group breadcrumb
37948
38618
  $kendo-breadcrumb-margin-y: null !default;
37949
- /// The horizontal padding of the Breadcrumb.
37950
- /// @group breadcrumb
37951
38619
  $kendo-breadcrumb-padding-x: null !default;
37952
- /// The vertical padding of the Breadcrumb.
37953
- /// @group breadcrumb
37954
38620
  $kendo-breadcrumb-padding-y: null !default;
38621
+ $kendo-breadcrumb-border-width: 0px !default;
37955
38622
 
37956
- /// The font family of the Breadcrumb.
37957
- /// @group breadcrumb
37958
38623
  $kendo-breadcrumb-font-family: $kendo-font-family !default;
37959
-
37960
- /// The font size of the Breadcrumb.
37961
- /// @group breadcrumb
37962
38624
  $kendo-breadcrumb-font-size: $kendo-font-size-md !default;
37963
- /// The font size of the small Breadcrumb.
37964
- /// @group breadcrumb
37965
- $kendo-breadcrumb-sm-font-size: $kendo-font-size-md !default;
37966
- /// The font size of the medium Breadcrumb.
37967
- /// @group breadcrumb
37968
- $kendo-breadcrumb-md-font-size: $kendo-breadcrumb-font-size !default;
37969
- /// The font size of the large Breadcrumb.
37970
- /// @group breadcrumb
37971
- $kendo-breadcrumb-lg-font-size: $kendo-font-size-lg !default;
37972
-
37973
- /// The line-height of the Breadcrumb.
37974
- /// @group breadcrumb
37975
38625
  $kendo-breadcrumb-line-height: $kendo-line-height-md !default;
37976
- /// The line-height of the small Breadcrumb.
37977
- /// @group breadcrumb
37978
- $kendo-breadcrumb-sm-line-height: $kendo-line-height-md !default;
37979
- /// The line-height of the medium Breadcrumb.
37980
- /// @group breadcrumb
37981
- $kendo-breadcrumb-md-line-height: $kendo-breadcrumb-line-height !default;
37982
- /// The line-height of the height Breadcrumb.
37983
- /// @group breadcrumb
37984
- $kendo-breadcrumb-lg-line-height: $kendo-line-height-lg !default;
37985
-
37986
- /// The base background of the Breadcrumb.
37987
- /// @group breadcrumb
38626
+
37988
38627
  $kendo-breadcrumb-bg: $kendo-component-bg !default;
37989
- /// The base text color of the Breadcrumb.
37990
- /// @group breadcrumb
37991
38628
  $kendo-breadcrumb-text: $kendo-component-text !default;
37992
- /// The base border color of the Breadcrumb.
37993
- /// @group breadcrumb
37994
38629
  $kendo-breadcrumb-border: $kendo-component-border !default;
37995
38630
 
37996
- /// The box shadow of the focused Breadcrumb.
37997
- /// @group breadcrumb
37998
- $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
37999
-
38000
- /// The horizontal padding of the Breadcrumb link.
38001
- /// @group breadcrumb
38002
38631
  $kendo-breadcrumb-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
38003
- /// The horizontal padding of the small Breadcrumb link.
38004
- /// @group breadcrumb
38005
- $kendo-breadcrumb-sm-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
38006
- /// The horizontal padding of the medium Breadcrumb link.
38007
- /// @group breadcrumb
38008
- $kendo-breadcrumb-md-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
38009
- /// The horizontal padding of the large Breadcrumb link.
38010
- /// @group breadcrumb
38011
- $kendo-breadcrumb-lg-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
38012
-
38013
- /// The vertical padding of the Breadcrumb link.
38014
- /// @group breadcrumb
38015
38632
  $kendo-breadcrumb-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
38016
- /// The vertical padding of the small Breadcrumb link.
38017
- /// @group breadcrumb
38018
- $kendo-breadcrumb-sm-link-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
38019
- /// The vertical padding of the medium Breadcrumb link.
38020
- /// @group breadcrumb
38021
- $kendo-breadcrumb-md-link-padding-y: $kendo-breadcrumb-link-padding-y !default;
38022
- /// The vertical padding of the large Breadcrumb link.
38023
- /// @group breadcrumb
38024
- $kendo-breadcrumb-lg-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
38025
-
38026
- /// The border-radius of the Breadcrumb link.
38027
- /// @group breadcrumb
38028
38633
  $kendo-breadcrumb-link-border-radius: $kendo-border-radius-md !default;
38029
38634
 
38030
- /// The vertical padding of the Breadcrumb link icon.
38031
- /// @group breadcrumb
38032
- $kendo-breadcrumb-icon-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
38033
- /// The vertical padding of the small Breadcrumb link icon.
38034
- /// @group breadcrumb
38035
- $kendo-breadcrumb-sm-icon-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
38036
- /// The vertical padding of the medium Breadcrumb link icon.
38037
- /// @group breadcrumb
38038
- $kendo-breadcrumb-md-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-y !default;
38039
- /// The vertical padding of the large Breadcrumb link icon.
38040
- /// @group breadcrumb
38041
- $kendo-breadcrumb-lg-icon-link-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
38042
-
38043
- /// The horizontal padding of the Breadcrumb link icon.
38044
- /// @group breadcrumb
38045
- $kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-y !default;
38046
- /// The horizontal padding of the small Breadcrumb link icon.
38047
- /// @group breadcrumb
38048
- $kendo-breadcrumb-sm-icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-y !default;
38049
- /// The horizontal padding of the medium Breadcrumb link icon.
38050
- /// @group breadcrumb
38051
- $kendo-breadcrumb-md-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-x !default;
38052
- /// The horizontal padding of the large Breadcrumb link icon.
38053
- /// @group breadcrumb
38054
- $kendo-breadcrumb-lg-icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-y !default;
38055
-
38056
- /// The text color of the Breadcrumb link.
38057
- /// @group breadcrumb
38058
- $kendo-breadcrumb-link-initial-text: inherit !default;
38059
- /// The spacing of the Breadcrumb link icon.
38060
- /// @group breadcrumb
38635
+ $kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
38636
+ $kendo-breadcrumb-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-x !default;
38637
+
38638
+ $kendo-breadcrumb-root-link-spacing: $kendo-breadcrumb-link-padding-x !default;
38061
38639
  $kendo-breadcrumb-link-icon-spacing: $kendo-icon-spacing !default;
38062
38640
 
38063
- /// The background color of the Breadcrumb link.
38064
- /// @group breadcrumb
38641
+ $kendo-breadcrumb-link-initial-text: inherit !default;
38642
+
38065
38643
  $kendo-breadcrumb-link-bg: null !default;
38066
- /// The text color of the Breadcrumb link.
38067
- /// @group breadcrumb
38068
38644
  $kendo-breadcrumb-link-text: $kendo-link-text !default;
38069
- /// The border color of the Breadcrumb link.
38070
- /// @group breadcrumb
38071
38645
  $kendo-breadcrumb-link-border: null !default;
38072
38646
 
38073
- /// The background color of the hovered Breadcrumb link.
38074
- /// @group breadcrumb
38075
38647
  $kendo-breadcrumb-link-hover-bg: $kendo-base-bg !default;
38076
- /// The text color of the hovered Breadcrumb link.
38077
- /// @group breadcrumb
38078
38648
  $kendo-breadcrumb-link-hover-text: $kendo-link-hover-text !default;
38079
- /// The border color of the hovered Breadcrumb link.
38080
- /// @group breadcrumb
38081
38649
  $kendo-breadcrumb-link-hover-border: null !default;
38082
38650
 
38083
- /// The background color of the focused Breadcrumb link.
38084
- /// @group breadcrumb
38085
38651
  $kendo-breadcrumb-link-focus-bg: null !default;
38086
- /// The text color of the focused Breadcrumb link.
38087
- /// @group breadcrumb
38088
38652
  $kendo-breadcrumb-link-focus-text: $kendo-link-text !default;
38089
- /// The border color of the focused Breadcrumb link.
38090
- /// @group breadcrumb
38091
38653
  $kendo-breadcrumb-link-focus-border: null !default;
38092
- /// The box shadow of the focused Breadcrumb link.
38093
- /// @group breadcrumb
38094
38654
  $kendo-breadcrumb-link-focus-shadow: $kendo-focus-shadow !default;
38095
38655
 
38096
- /// The background color of the Breadcrumb root link.
38097
- /// @group breadcrumb
38098
38656
  $kendo-breadcrumb-root-link-bg: null !default;
38099
- /// The text color of the Breadcrumb root link.
38100
- /// @group breadcrumb
38101
38657
  $kendo-breadcrumb-root-link-text: null !default;
38102
- /// The border color of the Breadcrumb root link.
38103
- /// @group breadcrumb
38104
38658
  $kendo-breadcrumb-root-link-border: null !default;
38105
38659
 
38106
- /// The background color of the hovered Breadcrumb root link.
38107
- /// @group breadcrumb
38108
38660
  $kendo-breadcrumb-root-link-hover-bg: $kendo-base-bg !default;
38109
- /// The text color of the hovered Breadcrumb root link.
38110
- /// @group breadcrumb
38111
38661
  $kendo-breadcrumb-root-link-hover-text: null !default;
38112
- /// The border color of the hovered Breadcrumb root link.
38113
- /// @group breadcrumb
38114
38662
  $kendo-breadcrumb-root-link-hover-border: null !default;
38115
38663
 
38116
- /// The background color of the focused Breadcrumb root link.
38117
- /// @group breadcrumb
38118
38664
  $kendo-breadcrumb-root-link-focus-bg: null !default;
38119
- /// The text color of the focused Breadcrumb root link.
38120
- /// @group breadcrumb
38121
38665
  $kendo-breadcrumb-root-link-focus-text: null !default;
38122
- /// The border color of the focused Breadcrumb root link.
38123
- /// @group breadcrumb
38124
38666
  $kendo-breadcrumb-root-link-focus-border: null !default;
38125
- /// The box shadow of the focused Breadcrumb root link.
38126
- /// @group breadcrumb
38127
38667
  $kendo-breadcrumb-root-link-focus-shadow: $kendo-breadcrumb-link-focus-shadow !default;
38128
38668
 
38129
- /// The background color of the current Breadcrumb root link.
38130
- /// @group breadcrumb
38131
38669
  $kendo-breadcrumb-current-item-bg: null !default;
38132
- /// The text color of the current Breadcrumb root link.
38133
- /// @group breadcrumb
38134
38670
  $kendo-breadcrumb-current-item-text: null !default;
38135
- /// The border color of the current Breadcrumb root link.
38136
- /// @group breadcrumb
38137
38671
  $kendo-breadcrumb-current-item-border: null !default;
38138
38672
 
38139
- /// The sizes map for the Breadcrumb.
38140
- /// @group breadcrumb
38141
- $kendo-breadcrumb-sizes: (
38142
- sm: (
38143
- link-padding-x: $kendo-breadcrumb-sm-link-padding-x,
38144
- link-padding-y: $kendo-breadcrumb-sm-link-padding-y,
38145
- icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-x,
38146
- icon-link-padding-y: $kendo-breadcrumb-sm-icon-link-padding-y,
38147
- font-size: $kendo-breadcrumb-sm-font-size,
38148
- line-height: $kendo-breadcrumb-sm-line-height
38149
- ),
38150
- md: (
38151
- link-padding-x: $kendo-breadcrumb-md-link-padding-x,
38152
- link-padding-y: $kendo-breadcrumb-md-link-padding-y,
38153
- icon-link-padding-x: $kendo-breadcrumb-md-icon-link-padding-x,
38154
- icon-link-padding-y: $kendo-breadcrumb-md-icon-link-padding-y,
38155
- font-size: $kendo-breadcrumb-md-font-size,
38156
- line-height: $kendo-breadcrumb-md-line-height
38157
- ),
38158
- lg: (
38159
- link-padding-x: $kendo-breadcrumb-lg-link-padding-x,
38160
- link-padding-y: $kendo-breadcrumb-lg-link-padding-y,
38161
- icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-x,
38162
- icon-link-padding-y: $kendo-breadcrumb-lg-icon-link-padding-y,
38163
- font-size: $kendo-breadcrumb-lg-font-size,
38164
- line-height: $kendo-breadcrumb-lg-line-height
38165
- )
38166
- ) !default;
38673
+ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
38167
38674
 
38168
38675
  // #endregion
38169
38676
  // #region @import "./_layout.scss"; -> scss/breadcrumb/_layout.scss
@@ -38180,6 +38687,8 @@ $kendo-breadcrumb-sizes: (
38180
38687
  box-sizing: border-box;
38181
38688
  outline: 0;
38182
38689
  font-family: $kendo-breadcrumb-font-family;
38690
+ font-size: $kendo-breadcrumb-font-size;
38691
+ line-height: $kendo-breadcrumb-line-height;
38183
38692
  display: flex;
38184
38693
  flex-direction: row;
38185
38694
  -webkit-touch-callout: none;
@@ -38231,6 +38740,8 @@ $kendo-breadcrumb-sizes: (
38231
38740
  .k-breadcrumb-link,
38232
38741
  .k-breadcrumb-root-link {
38233
38742
  @include border-radius( $kendo-breadcrumb-link-border-radius );
38743
+ padding-block: $kendo-breadcrumb-link-padding-y;
38744
+ padding-inline: $kendo-breadcrumb-link-padding-x;
38234
38745
  color: $kendo-breadcrumb-link-initial-text;
38235
38746
  text-decoration: none;
38236
38747
  white-space: nowrap;
@@ -38244,12 +38755,21 @@ $kendo-breadcrumb-sizes: (
38244
38755
  transition: $kendo-transition;
38245
38756
  }
38246
38757
 
38758
+ .k-breadcrumb-root-link {
38759
+ margin-inline-end: $kendo-breadcrumb-root-link-spacing;
38760
+ }
38761
+
38247
38762
  .k-breadcrumb-link > .k-image,
38248
38763
  .k-breadcrumb-icontext-link .k-icon,
38249
38764
  .k-breadcrumb-icontext-link .k-svg-icon {
38250
38765
  margin-inline-end: $kendo-breadcrumb-link-icon-spacing;
38251
38766
  }
38252
38767
 
38768
+ .k-breadcrumb-icon-link {
38769
+ padding-block: $kendo-breadcrumb-icon-link-padding-y;
38770
+ padding-inline: $kendo-breadcrumb-icon-link-padding-x;
38771
+ }
38772
+
38253
38773
 
38254
38774
  // Breadcrumb delimiter
38255
38775
  .k-breadcrumb-delimiter,
@@ -38268,34 +38788,6 @@ $kendo-breadcrumb-sizes: (
38268
38788
  }
38269
38789
  }
38270
38790
 
38271
-
38272
- // Sizes
38273
- @each $size, $size-props in $kendo-breadcrumb-sizes {
38274
- $_link-padding-x: k-map-get( $size-props, link-padding-x );
38275
- $_link-padding-y: k-map-get( $size-props, link-padding-y );
38276
- $_icon-link-padding-x: k-map-get( $size-props, icon-link-padding-x );
38277
- $_icon-link-padding-y: k-map-get( $size-props, icon-link-padding-y );
38278
- $_font-size: k-map-get( $size-props, font-size );
38279
- $_line-height: k-map-get( $size-props, line-height );
38280
-
38281
- .k-breadcrumb-#{$size} {
38282
- font-size: $_font-size;
38283
- line-height: $_line-height;
38284
-
38285
-
38286
- .k-breadcrumb-link,
38287
- .k-breadcrumb-root-link {
38288
- padding-block: $_link-padding-y;
38289
- padding-inline: $_link-padding-x;
38290
- }
38291
-
38292
- .k-breadcrumb-icon-link {
38293
- padding-block: $_icon-link-padding-y;
38294
- padding-inline: $_icon-link-padding-x;
38295
- }
38296
- }
38297
- }
38298
-
38299
38791
  }
38300
38792
 
38301
38793
 
@@ -47662,6 +48154,7 @@ $kendo-treelist-footer-row-border-width: 1px !default;
47662
48154
  .k-treelist-toggle {
47663
48155
  margin-block: -$kendo-icon-padding;
47664
48156
  padding: $kendo-icon-padding;
48157
+ box-sizing: content-box;
47665
48158
  cursor: pointer;
47666
48159
  }
47667
48160