@progress/kendo-theme-classic 7.1.0-dev.7 → 7.1.0-dev.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +62 -30
- package/dist/all.scss +1568 -650
- package/dist/meta/sassdoc-data.json +1792 -662
- package/dist/meta/sassdoc-raw-data.json +850 -327
- package/dist/meta/variables.json +398 -338
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/_variables.scss +0 -197
- package/scss/adaptive/_variables.scss +1 -1
- package/scss/appbar/_variables.scss +2 -2
- package/scss/button/_variables.scss +7 -7
- package/scss/chat/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +2 -2
- package/scss/chip/_variables.scss +3 -3
- package/scss/core/_index.scss +6 -0
- package/scss/core/color-system/_palettes.scss +277 -0
- package/scss/core/color-system/_swatch-legacy.scss +62 -0
- package/scss/core/color-system/_swatch.scss +397 -0
- package/scss/dataviz/_variables.scss +42 -42
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/dropzone/_variables.scss +1 -1
- package/scss/editor/_variables.scss +1 -1
- package/scss/expansion-panel/_variables.scss +1 -2
- package/scss/filemanager/_variables.scss +2 -2
- package/scss/forms/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +10 -10
- package/scss/grid/_variables.scss +11 -8
- package/scss/input/_variables.scss +6 -6
- package/scss/listview/_variables.scss +1 -1
- package/scss/map/_variables.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/menu/_variables.scss +1 -1
- package/scss/notification/_variables.scss +1 -1
- package/scss/panelbar/_variables.scss +3 -4
- package/scss/pivotgrid/_variables.scss +5 -5
- package/scss/progressbar/_variables.scss +3 -3
- package/scss/scheduler/_variables.scss +3 -3
- package/scss/scrollview/_variables.scss +1 -1
- package/scss/signature/_variables.scss +1 -1
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_variables.scss +8 -8
- package/scss/splitter/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +4 -4
- package/scss/stepper/_variables.scss +7 -7
- package/scss/switch/_variables.scss +7 -7
- package/scss/table/_variables.scss +3 -3
- package/scss/taskboard/_variables.scss +4 -3
- package/scss/timeline/_variables.scss +4 -4
- package/scss/tooltip/_variables.scss +4 -4
- package/scss/core/color-system/index.import.scss +0 -1
package/dist/all.scss
CHANGED
|
@@ -5,9 +5,8 @@
|
|
|
5
5
|
// #region @import "./core/_index.scss"; -> scss/core/_index.scss
|
|
6
6
|
$wcag-min-contrast-ratio: 4.5 !default;
|
|
7
7
|
|
|
8
|
-
//
|
|
9
|
-
// #region @import "
|
|
10
|
-
// #region @import "./core/functions/index.import.scss"; -> scss/core/functions/index.import.scss
|
|
8
|
+
// Color System
|
|
9
|
+
// #region @import "./color-system/_swatch.scss"; -> scss/core/color-system/_swatch.scss
|
|
11
10
|
// #region @import "@progress/kendo-theme-core/scss/functions/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
12
11
|
// #region @import "./_color.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_color.import.scss
|
|
13
12
|
/// Returns the alpha channel of a color.
|
|
@@ -712,6 +711,28 @@ $kendo-color-level-step: 8% !default;
|
|
|
712
711
|
@return k-color-mix( rgba( $color1, 1 ), rgba( $color2, 1 ), $weight );
|
|
713
712
|
}
|
|
714
713
|
|
|
714
|
+
/// Generates all color variations of a given main color
|
|
715
|
+
/// @param {String} $name - The name of the main color
|
|
716
|
+
/// @param {Color} $level - The color value to be assigned to the main color
|
|
717
|
+
/// @return {Map} - A map with the generated keys and values
|
|
718
|
+
///
|
|
719
|
+
/// @group color-system
|
|
720
|
+
@function k-generate-colors( $name, $color ) {
|
|
721
|
+
$_variations: (
|
|
722
|
+
#{$name}-subtle: k-try-tint( $color, 80% ),
|
|
723
|
+
#{$name}-subtle-hover: k-try-tint( $color, 65% ),
|
|
724
|
+
#{$name}-subtle-active: k-try-tint( $color, 50% ),
|
|
725
|
+
#{$name}: $color,
|
|
726
|
+
#{$name}-hover: k-try-shade( $color, 0.5 ),
|
|
727
|
+
#{$name}-active: k-try-shade( $color, 1.5 ),
|
|
728
|
+
#{$name}-emphasis: k-try-tint( $color, 4.5 ),
|
|
729
|
+
#{$name}-on-subtle: k-try-shade( $color, 8 ),
|
|
730
|
+
on-#{$name}: k-contrast-legacy( $color ),
|
|
731
|
+
#{$name}-on-surface: $color,
|
|
732
|
+
);
|
|
733
|
+
|
|
734
|
+
@return $_variations;
|
|
735
|
+
}
|
|
715
736
|
// #endregion
|
|
716
737
|
// #region @import "./_custom-properties.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_custom-properties.import.scss
|
|
717
738
|
@function k-var( $prefix: kendo-, $var: null, $fallback: null ) {
|
|
@@ -1728,8 +1749,8 @@ $svg-escaped-characters: (
|
|
|
1728
1749
|
// #endregion
|
|
1729
1750
|
|
|
1730
1751
|
// #endregion
|
|
1731
|
-
|
|
1732
|
-
//
|
|
1752
|
+
// #region @import "@progress/kendo-theme-core/scss/color-system/_constants.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_constants.scss
|
|
1753
|
+
// Color constants
|
|
1733
1754
|
|
|
1734
1755
|
/// The color white.
|
|
1735
1756
|
/// Note: you cannot change this value.
|
|
@@ -1743,6 +1764,728 @@ $kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-defa
|
|
|
1743
1764
|
/// @group color-system
|
|
1744
1765
|
$kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
|
|
1745
1766
|
|
|
1767
|
+
/// The color transparent.
|
|
1768
|
+
/// Note: you cannot change this value.
|
|
1769
|
+
/// @type Color
|
|
1770
|
+
/// @group color-system
|
|
1771
|
+
$kendo-color-rgba-transparent: rgba(0, 0, 0, 0); // stylelint-disable-line scss/dollar-variable-default
|
|
1772
|
+
|
|
1773
|
+
/// A gradient that goes from transparent to black.
|
|
1774
|
+
/// Note: you cannot change this value.
|
|
1775
|
+
/// @type Gradient
|
|
1776
|
+
/// @group color-system
|
|
1777
|
+
$kendo-gradient-transparent-to-black: rgba(black, 0), black; // stylelint-disable-line scss/dollar-variable-default
|
|
1778
|
+
|
|
1779
|
+
/// A gradient that goes from transparent to white.
|
|
1780
|
+
/// Note: you cannot change this value.
|
|
1781
|
+
/// @type Gradient
|
|
1782
|
+
/// @group color-system
|
|
1783
|
+
$kendo-gradient-transparent-to-white: rgba(white, 0), white; // stylelint-disable-line scss/dollar-variable-default
|
|
1784
|
+
|
|
1785
|
+
/// A gradient that goes from black to transparent.
|
|
1786
|
+
/// Note: you cannot change this value.
|
|
1787
|
+
/// @type Gradient
|
|
1788
|
+
/// @group color-system
|
|
1789
|
+
$kendo-gradient-black-to-transparent: black, rgba(black, 0); // stylelint-disable-line scss/dollar-variable-default
|
|
1790
|
+
|
|
1791
|
+
/// A gradient that goes from white to transparent.
|
|
1792
|
+
/// Note: you cannot change this value.
|
|
1793
|
+
/// @type Gradient
|
|
1794
|
+
/// @group color-system
|
|
1795
|
+
$kendo-gradient-white-to-transparent: white, rgba(white, 0); // stylelint-disable-line scss/dollar-variable-default
|
|
1796
|
+
|
|
1797
|
+
/// A gradient that cycles through the colors of the rainbow.
|
|
1798
|
+
/// Note: you cannot change this value.
|
|
1799
|
+
/// @type Gradient
|
|
1800
|
+
/// @group color-system
|
|
1801
|
+
$kendo-gradient-rainbow: #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000; // stylelint-disable-line scss/dollar-variable-default
|
|
1802
|
+
|
|
1803
|
+
// #endregion
|
|
1804
|
+
// #region @import "./_palettes.scss"; -> scss/core/color-system/_palettes.scss
|
|
1805
|
+
$_default-palette-ash-gray: (
|
|
1806
|
+
white: #ffffff,
|
|
1807
|
+
1: #fafafa,
|
|
1808
|
+
2: #f0f0f0,
|
|
1809
|
+
3: #ebebeb,
|
|
1810
|
+
4: #dddddd,
|
|
1811
|
+
5: #d6d6d6,
|
|
1812
|
+
6: #cacaca,
|
|
1813
|
+
7: #b6b6b6,
|
|
1814
|
+
8: #a3a3a3,
|
|
1815
|
+
9: #8f8f8f,
|
|
1816
|
+
10: #7a7a7a,
|
|
1817
|
+
11: #666666,
|
|
1818
|
+
12: #525252,
|
|
1819
|
+
13: #404040,
|
|
1820
|
+
14: #333333,
|
|
1821
|
+
15: #272727,
|
|
1822
|
+
black: #000000,
|
|
1823
|
+
);
|
|
1824
|
+
|
|
1825
|
+
$_default-palette-tangerine-orange: (
|
|
1826
|
+
1: #fff2eb,
|
|
1827
|
+
2: #ffe5d6,
|
|
1828
|
+
3: #ffd8c2,
|
|
1829
|
+
4: #ffcbad,
|
|
1830
|
+
5: #ffbe99,
|
|
1831
|
+
6: #ffa570,
|
|
1832
|
+
7: #ff8b47,
|
|
1833
|
+
8: #ff711f,
|
|
1834
|
+
9: #f35800,
|
|
1835
|
+
10: #e05100,
|
|
1836
|
+
11: #cc4a00,
|
|
1837
|
+
12: #b94300,
|
|
1838
|
+
13: #a53c00,
|
|
1839
|
+
14: #7a2d00,
|
|
1840
|
+
15: #3d1600,
|
|
1841
|
+
);
|
|
1842
|
+
|
|
1843
|
+
$_default-palette-dodger-blue: (
|
|
1844
|
+
1: #ebf8ff,
|
|
1845
|
+
2: #d7f2ff,
|
|
1846
|
+
3: #b8e8fe,
|
|
1847
|
+
4: #9cdffe,
|
|
1848
|
+
5: #72d1fe,
|
|
1849
|
+
6: #49c4fd,
|
|
1850
|
+
7: #2cbbfd,
|
|
1851
|
+
8: #0db1fd,
|
|
1852
|
+
9: #03a9f4,
|
|
1853
|
+
10: #039be0,
|
|
1854
|
+
11: #038ecd,
|
|
1855
|
+
12: #0280b9,
|
|
1856
|
+
13: #0273a6,
|
|
1857
|
+
14: #014c6f,
|
|
1858
|
+
15: #01364e,
|
|
1859
|
+
);
|
|
1860
|
+
|
|
1861
|
+
$_default-palette-grass-green: (
|
|
1862
|
+
1: #f1f8f2,
|
|
1863
|
+
2: #e3f2e6,
|
|
1864
|
+
3: #d8eddc,
|
|
1865
|
+
4: #bbdfc1,
|
|
1866
|
+
5: #9ed1a6,
|
|
1867
|
+
6: #82c48c,
|
|
1868
|
+
7: #6ebb7a,
|
|
1869
|
+
8: #4db25c,
|
|
1870
|
+
9: #3ea44e,
|
|
1871
|
+
10: #399748,
|
|
1872
|
+
11: #348a42,
|
|
1873
|
+
12: #2f7d3b,
|
|
1874
|
+
13: #2a7035,
|
|
1875
|
+
14: #1f5126,
|
|
1876
|
+
15: #16391b,
|
|
1877
|
+
);
|
|
1878
|
+
|
|
1879
|
+
$_default-palette-lake-blue: (
|
|
1880
|
+
1: #eef6fb,
|
|
1881
|
+
2: #deeef7,
|
|
1882
|
+
3: #cce5f3,
|
|
1883
|
+
4: #a6d1ea,
|
|
1884
|
+
5: #8bc3e4,
|
|
1885
|
+
6: #6ab2dc,
|
|
1886
|
+
7: #409cd2,
|
|
1887
|
+
8: #208ccb,
|
|
1888
|
+
9: #007bc3,
|
|
1889
|
+
10: #0071b3,
|
|
1890
|
+
11: #0067a4,
|
|
1891
|
+
12: #005d94,
|
|
1892
|
+
13: #005485,
|
|
1893
|
+
14: #004166,
|
|
1894
|
+
15: #002b44,
|
|
1895
|
+
);
|
|
1896
|
+
|
|
1897
|
+
$_default-palette-honey-yellow: (
|
|
1898
|
+
1: #fff7eb,
|
|
1899
|
+
2: #ffefd6,
|
|
1900
|
+
3: #ffe7c2,
|
|
1901
|
+
4: #ffdead,
|
|
1902
|
+
5: #ffd699,
|
|
1903
|
+
6: #ffc670,
|
|
1904
|
+
7: #ffb240,
|
|
1905
|
+
8: #ffa41f,
|
|
1906
|
+
9: #ff9800,
|
|
1907
|
+
10: #eb8c00,
|
|
1908
|
+
11: #d68000,
|
|
1909
|
+
12: #c27400,
|
|
1910
|
+
13: #ad6700,
|
|
1911
|
+
14: #854f00,
|
|
1912
|
+
15: #593500,
|
|
1913
|
+
);
|
|
1914
|
+
|
|
1915
|
+
$_default-palette-brick-red: (
|
|
1916
|
+
1: #fcf0ed,
|
|
1917
|
+
2: #f9e1dc,
|
|
1918
|
+
3: #f7d4cc,
|
|
1919
|
+
4: #f4c3b8,
|
|
1920
|
+
5: #f2b4a6,
|
|
1921
|
+
6: #ec8e79,
|
|
1922
|
+
7: #e35e40,
|
|
1923
|
+
8: #de4320,
|
|
1924
|
+
9: #d92800,
|
|
1925
|
+
10: #c82500,
|
|
1926
|
+
11: #b62200,
|
|
1927
|
+
12: #a51e00,
|
|
1928
|
+
13: #941b00,
|
|
1929
|
+
14: #701500,
|
|
1930
|
+
15: #4c0e00,
|
|
1931
|
+
);
|
|
1932
|
+
|
|
1933
|
+
$_default-palette-coral: (
|
|
1934
|
+
1: #fff6f5,
|
|
1935
|
+
2: #ffeceb,
|
|
1936
|
+
3: #ffdedb,
|
|
1937
|
+
4: #ffc8c4,
|
|
1938
|
+
5: #ffb1ac,
|
|
1939
|
+
6: #ff9d97,
|
|
1940
|
+
7: #ff8a82,
|
|
1941
|
+
8: #ff766d,
|
|
1942
|
+
9: #ff6358,
|
|
1943
|
+
10: #ea5a51,
|
|
1944
|
+
11: #d45349,
|
|
1945
|
+
12: #bf4a42,
|
|
1946
|
+
13: #a33f38,
|
|
1947
|
+
14: #80322c,
|
|
1948
|
+
15: #5c201c,
|
|
1949
|
+
);
|
|
1950
|
+
|
|
1951
|
+
$_default-palette-pineapple-yellow: (
|
|
1952
|
+
1: #fffaeb,
|
|
1953
|
+
2: #fff7db,
|
|
1954
|
+
3: #fff3cc,
|
|
1955
|
+
4: #ffeeb8,
|
|
1956
|
+
5: #ffe9a2,
|
|
1957
|
+
6: #ffe38b,
|
|
1958
|
+
7: #ffdd74,
|
|
1959
|
+
8: #ffd85d,
|
|
1960
|
+
9: #ffd246,
|
|
1961
|
+
10: #eac040,
|
|
1962
|
+
11: #d4af3b,
|
|
1963
|
+
12: #bf9d35,
|
|
1964
|
+
13: #a0832c,
|
|
1965
|
+
14: #806923,
|
|
1966
|
+
15: #403412,
|
|
1967
|
+
);
|
|
1968
|
+
|
|
1969
|
+
$_default-palette-apple-green: (
|
|
1970
|
+
1: #f3fbee,
|
|
1971
|
+
2: #e9f8de,
|
|
1972
|
+
3: #def4ce,
|
|
1973
|
+
4: #d2f0bd,
|
|
1974
|
+
5: #bbe99b,
|
|
1975
|
+
6: #aae382,
|
|
1976
|
+
7: #9add69,
|
|
1977
|
+
8: #89d750,
|
|
1978
|
+
9: #78d237,
|
|
1979
|
+
10: #6ec032,
|
|
1980
|
+
11: #64AF2E,
|
|
1981
|
+
12: #5a9d29,
|
|
1982
|
+
13: #4a8221,
|
|
1983
|
+
14: #3c691c,
|
|
1984
|
+
15: #1c300d,
|
|
1985
|
+
);
|
|
1986
|
+
|
|
1987
|
+
$_default-palette-pacific-blue: (
|
|
1988
|
+
1: #ebf8fa,
|
|
1989
|
+
2: #d6f1f5,
|
|
1990
|
+
3: #c2e9ef,
|
|
1991
|
+
4: #aee2ea,
|
|
1992
|
+
5: #93d9e3,
|
|
1993
|
+
6: #75d0db,
|
|
1994
|
+
7: #5ec7d6,
|
|
1995
|
+
8: #43becf,
|
|
1996
|
+
9: #28b4c8,
|
|
1997
|
+
10: #24a6b7,
|
|
1998
|
+
11: #2197a6,
|
|
1999
|
+
12: #1e8796,
|
|
2000
|
+
13: #197480,
|
|
2001
|
+
14: #145a64,
|
|
2002
|
+
15: #0a2e33,
|
|
2003
|
+
);
|
|
2004
|
+
|
|
2005
|
+
$_default-palette-bright-blue: (
|
|
2006
|
+
1: #ecf2fe,
|
|
2007
|
+
2: #d8e5fd,
|
|
2008
|
+
3: #c5d8fc,
|
|
2009
|
+
4: #b1cbfb,
|
|
2010
|
+
5: #96b9fa,
|
|
2011
|
+
6: #7ba7f9,
|
|
2012
|
+
7: #6296f7,
|
|
2013
|
+
8: #4684f6,
|
|
2014
|
+
9: #2d73f5,
|
|
2015
|
+
10: #2969e1,
|
|
2016
|
+
11: #2660cc,
|
|
2017
|
+
12: #2256b8,
|
|
2018
|
+
13: #1d499a,
|
|
2019
|
+
14: #173a7b,
|
|
2020
|
+
15: #0c1e40,
|
|
2021
|
+
);
|
|
2022
|
+
|
|
2023
|
+
$_default-palette-orchid-purple: (
|
|
2024
|
+
1: #f8f0fa,
|
|
2025
|
+
2: #f1e1f5,
|
|
2026
|
+
3: #e7caed,
|
|
2027
|
+
4: #ddb3e5,
|
|
2028
|
+
5: #d5a2df,
|
|
2029
|
+
6: #c98ad6,
|
|
2030
|
+
7: #bf74ce,
|
|
2031
|
+
8: #b45dc6,
|
|
2032
|
+
9: #9d40b0,
|
|
2033
|
+
10: #9c40ae,
|
|
2034
|
+
11: #8e3b9e,
|
|
2035
|
+
12: #80358e,
|
|
2036
|
+
13: #672b73,
|
|
2037
|
+
14: #55235f,
|
|
2038
|
+
15: #28112d,
|
|
2039
|
+
);
|
|
2040
|
+
|
|
2041
|
+
|
|
2042
|
+
// stylelint-disable scss/no-global-function-names
|
|
2043
|
+
$kendo-palette-ash-gray: $_default-palette-ash-gray !default;
|
|
2044
|
+
$kendo-palette-ash-gray: map-merge($_default-palette-ash-gray, $kendo-palette-ash-gray);
|
|
2045
|
+
|
|
2046
|
+
$kendo-palette-tangerine-orange: $_default-palette-tangerine-orange !default;
|
|
2047
|
+
$kendo-palette-tangerine-orange: map-merge($_default-palette-tangerine-orange, $kendo-palette-tangerine-orange);
|
|
2048
|
+
|
|
2049
|
+
$kendo-palette-dodger-blue: $_default-palette-dodger-blue !default;
|
|
2050
|
+
$kendo-palette-dodger-blue: map-merge($_default-palette-dodger-blue, $kendo-palette-dodger-blue);
|
|
2051
|
+
|
|
2052
|
+
$kendo-palette-grass-green: $_default-palette-grass-green !default;
|
|
2053
|
+
$kendo-palette-grass-green: map-merge($_default-palette-grass-green, $kendo-palette-grass-green);
|
|
2054
|
+
|
|
2055
|
+
$kendo-palette-lake-blue: $_default-palette-lake-blue !default;
|
|
2056
|
+
$kendo-palette-lake-blue: map-merge($_default-palette-lake-blue, $kendo-palette-lake-blue);
|
|
2057
|
+
|
|
2058
|
+
$kendo-palette-honey-yellow: $_default-palette-honey-yellow !default;
|
|
2059
|
+
$kendo-palette-honey-yellow: map-merge($_default-palette-honey-yellow, $kendo-palette-honey-yellow);
|
|
2060
|
+
|
|
2061
|
+
$kendo-palette-brick-red: $_default-palette-brick-red !default;
|
|
2062
|
+
$kendo-palette-brick-red: map-merge($_default-palette-brick-red, $kendo-palette-brick-red);
|
|
2063
|
+
|
|
2064
|
+
$kendo-palette-coral: $_default-palette-coral !default;
|
|
2065
|
+
$kendo-palette-coral: map-merge($_default-palette-coral, $kendo-palette-coral);
|
|
2066
|
+
|
|
2067
|
+
$kendo-palette-pineapple-yellow: $_default-palette-pineapple-yellow !default;
|
|
2068
|
+
$kendo-palette-pineapple-yellow: map-merge($_default-palette-pineapple-yellow, $kendo-palette-pineapple-yellow);
|
|
2069
|
+
|
|
2070
|
+
$kendo-palette-apple-green: $_default-palette-apple-green !default;
|
|
2071
|
+
$kendo-palette-apple-green: map-merge($_default-palette-apple-green, $kendo-palette-apple-green);
|
|
2072
|
+
|
|
2073
|
+
$kendo-palette-pacific-blue: $_default-palette-pacific-blue !default;
|
|
2074
|
+
$kendo-palette-pacific-blue: map-merge($_default-palette-pacific-blue, $kendo-palette-pacific-blue);
|
|
2075
|
+
|
|
2076
|
+
$kendo-palette-bright-blue: $_default-palette-bright-blue !default;
|
|
2077
|
+
$kendo-palette-bright-blue: map-merge($_default-palette-bright-blue, $kendo-palette-bright-blue);
|
|
2078
|
+
|
|
2079
|
+
$kendo-palette-orchid-purple: $_default-palette-orchid-purple !default;
|
|
2080
|
+
$kendo-palette-orchid-purple: map-merge($_default-palette-orchid-purple, $kendo-palette-orchid-purple);
|
|
2081
|
+
// stylelint-enable scss/no-global-function-names
|
|
2082
|
+
// #endregion
|
|
2083
|
+
|
|
2084
|
+
// Config
|
|
2085
|
+
$kendo-enable-color-system: false !default;
|
|
2086
|
+
|
|
2087
|
+
// Colors
|
|
2088
|
+
$_default-colors: (
|
|
2089
|
+
// Misc
|
|
2090
|
+
app-surface: k-map-get( $kendo-palette-ash-gray, white ),
|
|
2091
|
+
on-app-surface: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
2092
|
+
subtle: k-map-get( $kendo-palette-ash-gray, 11 ),
|
|
2093
|
+
surface: k-map-get( $kendo-palette-ash-gray, 2 ),
|
|
2094
|
+
surface-alt: k-map-get( $kendo-palette-ash-gray, white ),
|
|
2095
|
+
border: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
2096
|
+
border-alt: k-map-get( $kendo-palette-ash-gray, 7 ),
|
|
2097
|
+
// Base
|
|
2098
|
+
base-subtle: k-map-get( $kendo-palette-ash-gray, 2 ),
|
|
2099
|
+
base-subtle-hover: k-map-get( $kendo-palette-ash-gray, 3 ),
|
|
2100
|
+
base-subtle-active: k-map-get( $kendo-palette-ash-gray, 4 ),
|
|
2101
|
+
base: k-map-get( $kendo-palette-ash-gray, 3 ),
|
|
2102
|
+
base-hover: k-map-get( $kendo-palette-ash-gray, 4 ),
|
|
2103
|
+
base-active: k-map-get( $kendo-palette-ash-gray, 5 ),
|
|
2104
|
+
base-emphasis: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
2105
|
+
base-on-subtle: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
2106
|
+
on-base: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
2107
|
+
base-on-surface: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
2108
|
+
// Primary
|
|
2109
|
+
primary-subtle: k-map-get( $kendo-palette-tangerine-orange, 1 ),
|
|
2110
|
+
primary-subtle-hover: k-map-get( $kendo-palette-tangerine-orange, 2 ),
|
|
2111
|
+
primary-subtle-active: k-map-get( $kendo-palette-tangerine-orange, 3 ),
|
|
2112
|
+
primary: k-map-get( $kendo-palette-tangerine-orange, 9 ),
|
|
2113
|
+
primary-hover: k-map-get( $kendo-palette-tangerine-orange, 10 ),
|
|
2114
|
+
primary-active: k-map-get( $kendo-palette-tangerine-orange, 11 ),
|
|
2115
|
+
primary-emphasis: k-map-get( $kendo-palette-tangerine-orange, 7 ),
|
|
2116
|
+
primary-on-subtle: k-map-get( $kendo-palette-tangerine-orange, 15 ),
|
|
2117
|
+
on-primary: k-map-get( $kendo-palette-ash-gray, white ),
|
|
2118
|
+
primary-on-surface: k-map-get( $kendo-palette-tangerine-orange, 9 ),
|
|
2119
|
+
// Secondary
|
|
2120
|
+
secondary-subtle: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
2121
|
+
secondary-subtle-hover: k-map-get( $kendo-palette-ash-gray, 7 ),
|
|
2122
|
+
secondary-subtle-active: k-map-get( $kendo-palette-ash-gray, 8 ),
|
|
2123
|
+
secondary: k-map-get( $kendo-palette-ash-gray, 7 ),
|
|
2124
|
+
secondary-hover: k-map-get( $kendo-palette-ash-gray, 8 ),
|
|
2125
|
+
secondary-active: k-map-get( $kendo-palette-ash-gray, 9 ),
|
|
2126
|
+
secondary-emphasis: k-map-get( $kendo-palette-ash-gray, 10 ),
|
|
2127
|
+
secondary-on-subtle: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
2128
|
+
on-secondary: k-map-get( $kendo-palette-ash-gray, black ),
|
|
2129
|
+
secondary-on-surface: k-map-get( $kendo-palette-ash-gray, 9 ),
|
|
2130
|
+
// Tertiary
|
|
2131
|
+
tertiary-subtle: k-map-get( $kendo-palette-dodger-blue, 4 ),
|
|
2132
|
+
tertiary-subtle-hover: k-map-get( $kendo-palette-dodger-blue, 5 ),
|
|
2133
|
+
tertiary-subtle-active: k-map-get( $kendo-palette-dodger-blue, 6 ),
|
|
2134
|
+
tertiary: k-map-get( $kendo-palette-dodger-blue, 9 ),
|
|
2135
|
+
tertiary-hover: k-map-get( $kendo-palette-dodger-blue, 10 ),
|
|
2136
|
+
tertiary-active: k-map-get( $kendo-palette-dodger-blue, 11 ),
|
|
2137
|
+
tertiary-emphasis: k-map-get( $kendo-palette-dodger-blue, 7 ),
|
|
2138
|
+
tertiary-on-subtle: k-map-get( $kendo-palette-dodger-blue, 15 ),
|
|
2139
|
+
on-tertiary: k-map-get( $kendo-palette-ash-gray, white ),
|
|
2140
|
+
tertiary-on-surface: k-map-get( $kendo-palette-dodger-blue, 13 ),
|
|
2141
|
+
// Info
|
|
2142
|
+
info-subtle: k-map-get( $kendo-palette-lake-blue, 3 ),
|
|
2143
|
+
info-subtle-hover: k-map-get( $kendo-palette-lake-blue, 4 ),
|
|
2144
|
+
info-subtle-active: k-map-get( $kendo-palette-lake-blue, 6 ),
|
|
2145
|
+
info: k-map-get( $kendo-palette-lake-blue, 9 ),
|
|
2146
|
+
info-hover: k-map-get( $kendo-palette-lake-blue, 10 ),
|
|
2147
|
+
info-active: k-map-get( $kendo-palette-lake-blue, 11 ),
|
|
2148
|
+
info-emphasis: k-map-get( $kendo-palette-lake-blue, 7 ),
|
|
2149
|
+
info-on-subtle: k-map-get( $kendo-palette-lake-blue, 15 ),
|
|
2150
|
+
on-info: k-map-get( $kendo-palette-ash-gray, white ),
|
|
2151
|
+
info-on-surface: k-map-get( $kendo-palette-lake-blue, 13 ),
|
|
2152
|
+
// Success
|
|
2153
|
+
success-subtle: k-map-get( $kendo-palette-grass-green, 4 ),
|
|
2154
|
+
success-subtle-hover: k-map-get( $kendo-palette-grass-green, 5 ),
|
|
2155
|
+
success-subtle-active: k-map-get( $kendo-palette-grass-green, 6 ),
|
|
2156
|
+
success: k-map-get( $kendo-palette-grass-green, 9 ),
|
|
2157
|
+
success-hover: k-map-get( $kendo-palette-grass-green, 10 ),
|
|
2158
|
+
success-active: k-map-get( $kendo-palette-grass-green, 11 ),
|
|
2159
|
+
success-emphasis: k-map-get( $kendo-palette-grass-green, 7 ),
|
|
2160
|
+
success-on-subtle: k-map-get( $kendo-palette-grass-green, 15 ),
|
|
2161
|
+
on-success: k-map-get( $kendo-palette-ash-gray, white ),
|
|
2162
|
+
success-on-surface: k-map-get( $kendo-palette-grass-green, 13 ),
|
|
2163
|
+
// Warning
|
|
2164
|
+
warning-subtle: k-map-get( $kendo-palette-honey-yellow, 4 ),
|
|
2165
|
+
warning-subtle-hover: k-map-get( $kendo-palette-honey-yellow, 5 ),
|
|
2166
|
+
warning-subtle-active: k-map-get( $kendo-palette-honey-yellow, 6 ),
|
|
2167
|
+
warning: k-map-get( $kendo-palette-honey-yellow, 8 ),
|
|
2168
|
+
warning-hover: k-map-get( $kendo-palette-honey-yellow, 9 ),
|
|
2169
|
+
warning-active: k-map-get( $kendo-palette-honey-yellow, 10 ),
|
|
2170
|
+
warning-emphasis: k-map-get( $kendo-palette-honey-yellow, 7 ),
|
|
2171
|
+
warning-on-subtle: k-map-get( $kendo-palette-honey-yellow, 15 ),
|
|
2172
|
+
on-warning: k-map-get( $kendo-palette-ash-gray, black ),
|
|
2173
|
+
warning-on-surface: k-map-get( $kendo-palette-honey-yellow, 8 ),
|
|
2174
|
+
// Error
|
|
2175
|
+
error-subtle: k-map-get( $kendo-palette-brick-red, 4 ),
|
|
2176
|
+
error-subtle-hover: k-map-get( $kendo-palette-brick-red, 5 ),
|
|
2177
|
+
error-subtle-active: k-map-get( $kendo-palette-brick-red, 6 ),
|
|
2178
|
+
error: k-map-get( $kendo-palette-brick-red, 9 ),
|
|
2179
|
+
error-hover: k-map-get( $kendo-palette-brick-red, 10 ),
|
|
2180
|
+
error-active: k-map-get( $kendo-palette-brick-red, 11 ),
|
|
2181
|
+
error-emphasis: k-map-get( $kendo-palette-brick-red, 7 ),
|
|
2182
|
+
error-on-subtle: k-map-get( $kendo-palette-brick-red, 15 ),
|
|
2183
|
+
on-error: k-map-get( $kendo-palette-ash-gray, white ),
|
|
2184
|
+
error-on-surface: k-map-get( $kendo-palette-brick-red, 13 ),
|
|
2185
|
+
// Light
|
|
2186
|
+
light-subtle: k-map-get( $kendo-palette-ash-gray, 2 ),
|
|
2187
|
+
light-subtle-hover: k-map-get( $kendo-palette-ash-gray, 3 ),
|
|
2188
|
+
light-subtle-active: k-map-get( $kendo-palette-ash-gray, 4 ),
|
|
2189
|
+
light: k-map-get( $kendo-palette-ash-gray, 3 ),
|
|
2190
|
+
light-hover: k-map-get( $kendo-palette-ash-gray, 4 ),
|
|
2191
|
+
light-active: k-map-get( $kendo-palette-ash-gray, 5 ),
|
|
2192
|
+
light-emphasis: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
2193
|
+
light-on-subtle: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
2194
|
+
on-light: k-map-get( $kendo-palette-ash-gray, black ),
|
|
2195
|
+
light-on-surface: k-map-get( $kendo-palette-ash-gray, 3 ),
|
|
2196
|
+
// Dark
|
|
2197
|
+
dark-subtle: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
2198
|
+
dark-subtle-hover: k-map-get( $kendo-palette-ash-gray, 7 ),
|
|
2199
|
+
dark-subtle-active: k-map-get( $kendo-palette-ash-gray, 8 ),
|
|
2200
|
+
dark: k-map-get( $kendo-palette-ash-gray, 13 ),
|
|
2201
|
+
dark-hover: k-map-get( $kendo-palette-ash-gray, 14 ),
|
|
2202
|
+
dark-active: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
2203
|
+
dark-emphasis: k-map-get( $kendo-palette-ash-gray, 10 ),
|
|
2204
|
+
dark-on-subtle: k-map-get( $kendo-palette-ash-gray, black ),
|
|
2205
|
+
on-dark: k-map-get( $kendo-palette-ash-gray, white ),
|
|
2206
|
+
dark-on-surface: k-map-get( $kendo-palette-ash-gray, 14 ),
|
|
2207
|
+
// Inverse
|
|
2208
|
+
inverse-subtle: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
2209
|
+
inverse-subtle-hover: k-map-get( $kendo-palette-ash-gray, 7 ),
|
|
2210
|
+
inverse-subtle-active: k-map-get( $kendo-palette-ash-gray, 8 ),
|
|
2211
|
+
inverse: k-map-get( $kendo-palette-ash-gray, 13 ),
|
|
2212
|
+
inverse-hover: k-map-get( $kendo-palette-ash-gray, 14 ),
|
|
2213
|
+
inverse-active: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
2214
|
+
inverse-emphasis: k-map-get( $kendo-palette-ash-gray, 10 ),
|
|
2215
|
+
inverse-on-subtle: k-map-get( $kendo-palette-ash-gray, black ),
|
|
2216
|
+
on-inverse: k-map-get( $kendo-palette-ash-gray, white ),
|
|
2217
|
+
inverse-on-surface: k-map-get( $kendo-palette-ash-gray, 14 ),
|
|
2218
|
+
// Series A
|
|
2219
|
+
series-a: k-map-get( $kendo-palette-coral, 9 ),
|
|
2220
|
+
series-a-bold: k-map-get( $kendo-palette-coral, 12 ),
|
|
2221
|
+
series-a-bolder: k-map-get( $kendo-palette-coral, 14 ),
|
|
2222
|
+
series-a-subtle: k-map-get( $kendo-palette-coral, 5 ),
|
|
2223
|
+
series-a-subtler: k-map-get( $kendo-palette-coral, 7 ),
|
|
2224
|
+
// Series B
|
|
2225
|
+
series-b: k-map-get( $kendo-palette-pineapple-yellow, 9 ),
|
|
2226
|
+
series-b-bold: k-map-get( $kendo-palette-pineapple-yellow, 12 ),
|
|
2227
|
+
series-b-bolder: k-map-get( $kendo-palette-pineapple-yellow, 14 ),
|
|
2228
|
+
series-b-subtle: k-map-get( $kendo-palette-pineapple-yellow, 5 ),
|
|
2229
|
+
series-b-subtler: k-map-get( $kendo-palette-pineapple-yellow, 7 ),
|
|
2230
|
+
// Series C
|
|
2231
|
+
series-c: k-map-get( $kendo-palette-apple-green, 9 ),
|
|
2232
|
+
series-c-bold: k-map-get( $kendo-palette-apple-green, 12 ),
|
|
2233
|
+
series-c-bolder: k-map-get( $kendo-palette-apple-green, 14 ),
|
|
2234
|
+
series-c-subtle: k-map-get( $kendo-palette-apple-green, 5 ),
|
|
2235
|
+
series-c-subtler: k-map-get( $kendo-palette-apple-green, 7 ),
|
|
2236
|
+
// Series D
|
|
2237
|
+
series-d: k-map-get( $kendo-palette-pacific-blue, 9 ),
|
|
2238
|
+
series-d-bold: k-map-get( $kendo-palette-pacific-blue, 12 ),
|
|
2239
|
+
series-d-bolder: k-map-get( $kendo-palette-pacific-blue, 14 ),
|
|
2240
|
+
series-d-subtle: k-map-get( $kendo-palette-pacific-blue, 5 ),
|
|
2241
|
+
series-d-subtler: k-map-get( $kendo-palette-pacific-blue, 7 ),
|
|
2242
|
+
// Series Е
|
|
2243
|
+
series-e: k-map-get( $kendo-palette-bright-blue, 9 ),
|
|
2244
|
+
series-e-bold: k-map-get( $kendo-palette-bright-blue, 12 ),
|
|
2245
|
+
series-e-bolder: k-map-get( $kendo-palette-bright-blue, 14 ),
|
|
2246
|
+
series-e-subtle: k-map-get( $kendo-palette-bright-blue, 5 ),
|
|
2247
|
+
series-e-subtler: k-map-get( $kendo-palette-bright-blue, 7 ),
|
|
2248
|
+
// Series F
|
|
2249
|
+
series-f: k-map-get( $kendo-palette-orchid-purple, 9 ),
|
|
2250
|
+
series-f-bold: k-map-get( $kendo-palette-orchid-purple, 12 ),
|
|
2251
|
+
series-f-bolder: k-map-get( $kendo-palette-orchid-purple, 14 ),
|
|
2252
|
+
series-f-subtle: k-map-get( $kendo-palette-orchid-purple, 5 ),
|
|
2253
|
+
series-f-subtler: k-map-get( $kendo-palette-orchid-purple, 7 ),
|
|
2254
|
+
) !default;
|
|
2255
|
+
|
|
2256
|
+
/// The global default Colors map.
|
|
2257
|
+
/// @group color-system
|
|
2258
|
+
$kendo-colors: $_default-colors !default;
|
|
2259
|
+
|
|
2260
|
+
$kendo-is-dark-theme: false !default;
|
|
2261
|
+
|
|
2262
|
+
// Theme colors
|
|
2263
|
+
/// The color that focuses the user attention.
|
|
2264
|
+
/// Used for primary buttons and for elements of primary importance across the theme.
|
|
2265
|
+
/// @group color-system
|
|
2266
|
+
/// @type Color
|
|
2267
|
+
$kendo-color-primary: #f35800 !default;
|
|
2268
|
+
$kendo-color-primary-lighter: k-color-tint( $kendo-color-primary, 2 ) !default;
|
|
2269
|
+
$kendo-color-primary-darker: k-color-shade( $kendo-color-primary, 2 ) !default;
|
|
2270
|
+
|
|
2271
|
+
/// The color used along with the primary color denoted by $kendo-color-primary.
|
|
2272
|
+
/// Used to provide contrast between the background and foreground colors.
|
|
2273
|
+
/// @group color-system
|
|
2274
|
+
/// @type Color
|
|
2275
|
+
$kendo-color-primary-contrast: k-contrast-legacy( $kendo-color-primary ) !default;
|
|
2276
|
+
|
|
2277
|
+
/// The secondary color of the theme.
|
|
2278
|
+
/// @group color-system
|
|
2279
|
+
/// @type Color
|
|
2280
|
+
$kendo-color-secondary: #e9e9e9 !default;
|
|
2281
|
+
$kendo-color-secondary-lighter: k-color-tint( $kendo-color-secondary, 2 ) !default;
|
|
2282
|
+
$kendo-color-secondary-darker: k-color-shade( $kendo-color-secondary, 2 ) !default;
|
|
2283
|
+
|
|
2284
|
+
/// The color used along with the secondary color denoted by $kendo-color-secondary.
|
|
2285
|
+
/// Used to provide contrast between the background and foreground colors.
|
|
2286
|
+
/// @group color-system
|
|
2287
|
+
/// @type Color
|
|
2288
|
+
$kendo-color-secondary-contrast: k-contrast-color( $kendo-color-secondary ) !default;
|
|
2289
|
+
|
|
2290
|
+
/// The tertiary color of the theme.
|
|
2291
|
+
/// @group color-system
|
|
2292
|
+
/// @type Color
|
|
2293
|
+
$kendo-color-tertiary: #03a9f4 !default;
|
|
2294
|
+
$kendo-color-tertiary-lighter: k-color-tint( $kendo-color-tertiary, 2 ) !default;
|
|
2295
|
+
$kendo-color-tertiary-darker: k-color-shade( $kendo-color-tertiary, 2 ) !default;
|
|
2296
|
+
|
|
2297
|
+
/// The color used along with the tertiary color denoted by $kendo-color-tertiary.
|
|
2298
|
+
/// Used to provide contrast between the background and foreground colors.
|
|
2299
|
+
/// @group color-system
|
|
2300
|
+
/// @type Color
|
|
2301
|
+
$kendo-color-tertiary-contrast: k-contrast-color( $kendo-color-tertiary ) !default;
|
|
2302
|
+
|
|
2303
|
+
/// The color for informational messages and states.
|
|
2304
|
+
/// @group color-system
|
|
2305
|
+
/// @type Color
|
|
2306
|
+
$kendo-color-info: #2498bc !default;
|
|
2307
|
+
$kendo-color-info-lighter: k-color-tint( $kendo-color-info, 2 ) !default;
|
|
2308
|
+
$kendo-color-info-darker: k-color-shade( $kendo-color-info, 2 ) !default;
|
|
2309
|
+
|
|
2310
|
+
/// The color for success messages and states.
|
|
2311
|
+
/// @group color-system
|
|
2312
|
+
/// @type Color
|
|
2313
|
+
$kendo-color-success: #3ea44e !default;
|
|
2314
|
+
$kendo-color-success-lighter: k-color-tint( $kendo-color-success, 2 ) !default;
|
|
2315
|
+
$kendo-color-success-darker: k-color-shade( $kendo-color-success, 2 ) !default;
|
|
2316
|
+
|
|
2317
|
+
/// The color for warning messages and states.
|
|
2318
|
+
/// @group color-system
|
|
2319
|
+
/// @type Color
|
|
2320
|
+
$kendo-color-warning: #ff9800 !default;
|
|
2321
|
+
$kendo-color-warning-lighter: k-color-tint( $kendo-color-warning, 2 ) !default;
|
|
2322
|
+
$kendo-color-warning-darker: k-color-shade( $kendo-color-warning, 2 ) !default;
|
|
2323
|
+
|
|
2324
|
+
/// The color for error messages and states.
|
|
2325
|
+
/// @group color-system
|
|
2326
|
+
/// @type Color
|
|
2327
|
+
$kendo-color-error: #d92800 !default;
|
|
2328
|
+
$kendo-color-error-lighter: k-color-tint( $kendo-color-error, 2 ) !default;
|
|
2329
|
+
$kendo-color-error-darker: k-color-shade( $kendo-color-error, 2 ) !default;
|
|
2330
|
+
|
|
2331
|
+
/// The dark color of the theme.
|
|
2332
|
+
/// @group color-system
|
|
2333
|
+
/// @type Color
|
|
2334
|
+
$kendo-color-dark: #404040 !default;
|
|
2335
|
+
|
|
2336
|
+
/// The light color of the theme.
|
|
2337
|
+
/// @group color-system
|
|
2338
|
+
/// @type Color
|
|
2339
|
+
$kendo-color-light: #ebebeb !default;
|
|
2340
|
+
|
|
2341
|
+
/// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
|
|
2342
|
+
/// @group color-system
|
|
2343
|
+
$kendo-color-inverse: if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark ) !default;
|
|
2344
|
+
|
|
2345
|
+
$kendo-theme-colors: (
|
|
2346
|
+
"primary": $kendo-color-primary,
|
|
2347
|
+
"secondary": $kendo-color-secondary,
|
|
2348
|
+
"tertiary": $kendo-color-tertiary,
|
|
2349
|
+
"info": $kendo-color-info,
|
|
2350
|
+
"success": $kendo-color-success,
|
|
2351
|
+
"warning": $kendo-color-warning,
|
|
2352
|
+
"error": $kendo-color-error,
|
|
2353
|
+
"dark": $kendo-color-dark,
|
|
2354
|
+
"light": $kendo-color-light,
|
|
2355
|
+
"inverse": $kendo-color-inverse
|
|
2356
|
+
) !default;
|
|
2357
|
+
|
|
2358
|
+
// Generic styles
|
|
2359
|
+
|
|
2360
|
+
/// Background color of the body.
|
|
2361
|
+
/// @group common
|
|
2362
|
+
$kendo-body-bg: $kendo-color-white !default;
|
|
2363
|
+
/// Text color of the body.
|
|
2364
|
+
/// @group common
|
|
2365
|
+
$kendo-body-text: #272727 !default;
|
|
2366
|
+
|
|
2367
|
+
/// Subtle text color.
|
|
2368
|
+
/// @group common
|
|
2369
|
+
$kendo-subtle-text: #646464 !default;
|
|
2370
|
+
|
|
2371
|
+
$kendo-app-bg: $kendo-body-bg !default;
|
|
2372
|
+
$kendo-app-text: $kendo-body-text !default;
|
|
2373
|
+
$kendo-app-border: k-try-shade( $kendo-app-bg, 2 ) !default;
|
|
2374
|
+
|
|
2375
|
+
// Link
|
|
2376
|
+
/// Text color of the links.
|
|
2377
|
+
/// @group common
|
|
2378
|
+
$kendo-link-text: $kendo-color-primary !default;
|
|
2379
|
+
/// Text color of the links on hover.
|
|
2380
|
+
/// @group common
|
|
2381
|
+
$kendo-link-hover-text: $kendo-color-primary-darker !default;
|
|
2382
|
+
|
|
2383
|
+
// Components
|
|
2384
|
+
|
|
2385
|
+
/// The background of the components' chrome area.
|
|
2386
|
+
$kendo-base-bg: #f0f0f0 !default;
|
|
2387
|
+
/// The text color of the components' chrome area.
|
|
2388
|
+
$kendo-base-text: $kendo-body-text !default;
|
|
2389
|
+
/// The border color of the components' chrome area.
|
|
2390
|
+
$kendo-base-border: k-try-shade( $kendo-base-bg, 2 ) !default;
|
|
2391
|
+
/// The gradient background of the components' chrome area.
|
|
2392
|
+
$kendo-base-gradient: rgba( white, .1 ), rgba( white, 0 ) !default;
|
|
2393
|
+
|
|
2394
|
+
/// Background color of a component.
|
|
2395
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.
|
|
2396
|
+
/// @group component
|
|
2397
|
+
$kendo-component-bg: $kendo-body-bg !default;
|
|
2398
|
+
/// Text color of a component.
|
|
2399
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.
|
|
2400
|
+
/// @group component
|
|
2401
|
+
$kendo-component-text: $kendo-body-text !default;
|
|
2402
|
+
/// Border color of a component.
|
|
2403
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.
|
|
2404
|
+
/// @group component
|
|
2405
|
+
$kendo-component-border: $kendo-base-border !default;
|
|
2406
|
+
|
|
2407
|
+
/// The background of hovered items.
|
|
2408
|
+
$kendo-hover-bg: k-try-shade( $kendo-base-bg, 1 ) !default;
|
|
2409
|
+
/// The text color of hovered items.
|
|
2410
|
+
$kendo-hover-text: $kendo-base-text !default;
|
|
2411
|
+
/// The border color of hovered items.
|
|
2412
|
+
$kendo-hover-border: k-try-shade( $kendo-hover-bg, 2 ) !default;
|
|
2413
|
+
/// The gradient background of hovered items.
|
|
2414
|
+
$kendo-hover-gradient: $kendo-base-gradient !default;
|
|
2415
|
+
|
|
2416
|
+
/// The background of selected items.
|
|
2417
|
+
$kendo-selected-bg: $kendo-color-primary !default;
|
|
2418
|
+
/// The text color of selected items.
|
|
2419
|
+
$kendo-selected-text: k-contrast-legacy( $kendo-selected-bg ) !default;
|
|
2420
|
+
/// The border color of selected items.
|
|
2421
|
+
$kendo-selected-border: k-try-shade( $kendo-selected-bg, 2 ) !default;
|
|
2422
|
+
/// The gradient background of selected items.
|
|
2423
|
+
$kendo-selected-gradient: $kendo-base-gradient !default;
|
|
2424
|
+
|
|
2425
|
+
/// The background of selected and hovered items.
|
|
2426
|
+
$kendo-selected-hover-bg: k-try-shade( $kendo-selected-bg, 1 ) !default;
|
|
2427
|
+
/// The text color of selected and hovered items.
|
|
2428
|
+
$kendo-selected-hover-text: k-contrast-legacy( $kendo-selected-hover-bg ) !default;
|
|
2429
|
+
/// The border of selected and hovered items.
|
|
2430
|
+
$kendo-selected-hover-border: $kendo-selected-border !default;
|
|
2431
|
+
/// The gradient of selected and hovered items.
|
|
2432
|
+
$kendo-selected-hover-gradient: $kendo-selected-gradient !default;
|
|
2433
|
+
|
|
2434
|
+
/// Text color of disabled items.
|
|
2435
|
+
$kendo-disabled-text: #8d8d8d !default;
|
|
2436
|
+
|
|
2437
|
+
// Generic styles
|
|
2438
|
+
|
|
2439
|
+
/// Background color of the component header.
|
|
2440
|
+
/// @group component
|
|
2441
|
+
$kendo-component-header-bg: $kendo-base-bg !default;
|
|
2442
|
+
/// Text color of the component header.
|
|
2443
|
+
/// @group component
|
|
2444
|
+
$kendo-component-header-text: $kendo-base-text !default;
|
|
2445
|
+
/// Border color of the component header.
|
|
2446
|
+
/// @group component
|
|
2447
|
+
$kendo-component-header-border: $kendo-base-border !default;
|
|
2448
|
+
/// Gradient of the component header.
|
|
2449
|
+
/// @group component
|
|
2450
|
+
$kendo-component-header-gradient: $kendo-base-gradient !default;
|
|
2451
|
+
|
|
2452
|
+
/// Background color of the invalid items.
|
|
2453
|
+
/// @group component
|
|
2454
|
+
$kendo-invalid-bg: null !default;
|
|
2455
|
+
/// Text color of the invalid items.
|
|
2456
|
+
/// @group component
|
|
2457
|
+
$kendo-invalid-text: $kendo-color-error !default;
|
|
2458
|
+
/// Border color of the invalid items.
|
|
2459
|
+
/// @group component
|
|
2460
|
+
$kendo-invalid-border: $kendo-color-error !default;
|
|
2461
|
+
/// Shadow of the invalid items.
|
|
2462
|
+
/// @group component
|
|
2463
|
+
$kendo-invalid-shadow: null !default;
|
|
2464
|
+
|
|
2465
|
+
/// Background color of the valid items.
|
|
2466
|
+
/// @group component
|
|
2467
|
+
$kendo-valid-bg: null !default;
|
|
2468
|
+
/// Text color of the valid items.
|
|
2469
|
+
/// @group component
|
|
2470
|
+
$kendo-valid-text: $kendo-color-success !default;
|
|
2471
|
+
/// Border color of the valid items.
|
|
2472
|
+
/// @group component
|
|
2473
|
+
$kendo-valid-border: $kendo-color-success !default;
|
|
2474
|
+
/// Shadow of the valid items.
|
|
2475
|
+
/// @group component
|
|
2476
|
+
$kendo-valid-shadow: null !default;
|
|
2477
|
+
|
|
2478
|
+
// #endregion
|
|
2479
|
+
|
|
2480
|
+
// Variables
|
|
2481
|
+
// #region @import "../_variables.scss"; -> scss/_variables.scss
|
|
2482
|
+
// #region @import "./core/functions/index.import.scss"; -> scss/core/functions/index.import.scss
|
|
2483
|
+
// #region @import "@progress/kendo-theme-core/scss/functions/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
2484
|
+
// File already imported_once. Skipping output.
|
|
2485
|
+
// #endregion
|
|
2486
|
+
|
|
2487
|
+
// #endregion
|
|
2488
|
+
|
|
1746
2489
|
// Options
|
|
1747
2490
|
$kendo-enable-rounded: true !default;
|
|
1748
2491
|
$kendo-enable-shadows: true !default;
|
|
@@ -1846,103 +2589,6 @@ $kendo-zindex-loading: 100 !default;
|
|
|
1846
2589
|
// Color settings
|
|
1847
2590
|
$kendo-is-dark-theme: false !default;
|
|
1848
2591
|
|
|
1849
|
-
// Theme colors
|
|
1850
|
-
/// The color that focuses the user attention.
|
|
1851
|
-
/// Used for primary buttons and for elements of primary importance across the theme.
|
|
1852
|
-
/// @group color-system
|
|
1853
|
-
/// @type Color
|
|
1854
|
-
$kendo-color-primary: #f35800 !default;
|
|
1855
|
-
$kendo-color-primary-lighter: k-color-tint( $kendo-color-primary, 2 ) !default;
|
|
1856
|
-
$kendo-color-primary-darker: k-color-shade( $kendo-color-primary, 2 ) !default;
|
|
1857
|
-
|
|
1858
|
-
/// The color used along with the primary color denoted by $kendo-color-primary.
|
|
1859
|
-
/// Used to provide contrast between the background and foreground colors.
|
|
1860
|
-
/// @group color-system
|
|
1861
|
-
/// @type Color
|
|
1862
|
-
$kendo-color-primary-contrast: k-contrast-legacy( $kendo-color-primary ) !default;
|
|
1863
|
-
|
|
1864
|
-
/// The secondary color of the theme.
|
|
1865
|
-
/// @group color-system
|
|
1866
|
-
/// @type Color
|
|
1867
|
-
$kendo-color-secondary: #e9e9e9 !default;
|
|
1868
|
-
$kendo-color-secondary-lighter: k-color-tint( $kendo-color-secondary, 2 ) !default;
|
|
1869
|
-
$kendo-color-secondary-darker: k-color-shade( $kendo-color-secondary, 2 ) !default;
|
|
1870
|
-
|
|
1871
|
-
/// The color used along with the secondary color denoted by $kendo-color-secondary.
|
|
1872
|
-
/// Used to provide contrast between the background and foreground colors.
|
|
1873
|
-
/// @group color-system
|
|
1874
|
-
/// @type Color
|
|
1875
|
-
$kendo-color-secondary-contrast: k-contrast-color( $kendo-color-secondary ) !default;
|
|
1876
|
-
|
|
1877
|
-
/// The tertiary color of the theme.
|
|
1878
|
-
/// @group color-system
|
|
1879
|
-
/// @type Color
|
|
1880
|
-
$kendo-color-tertiary: #03a9f4 !default;
|
|
1881
|
-
$kendo-color-tertiary-lighter: k-color-tint( $kendo-color-tertiary, 2 ) !default;
|
|
1882
|
-
$kendo-color-tertiary-darker: k-color-shade( $kendo-color-tertiary, 2 ) !default;
|
|
1883
|
-
|
|
1884
|
-
/// The color used along with the tertiary color denoted by $kendo-color-tertiary.
|
|
1885
|
-
/// Used to provide contrast between the background and foreground colors.
|
|
1886
|
-
/// @group color-system
|
|
1887
|
-
/// @type Color
|
|
1888
|
-
$kendo-color-tertiary-contrast: k-contrast-color( $kendo-color-tertiary ) !default;
|
|
1889
|
-
|
|
1890
|
-
/// The color for informational messages and states.
|
|
1891
|
-
/// @group color-system
|
|
1892
|
-
/// @type Color
|
|
1893
|
-
$kendo-color-info: #2498bc !default;
|
|
1894
|
-
$kendo-color-info-lighter: k-color-tint( $kendo-color-info, 2 ) !default;
|
|
1895
|
-
$kendo-color-info-darker: k-color-shade( $kendo-color-info, 2 ) !default;
|
|
1896
|
-
|
|
1897
|
-
/// The color for success messages and states.
|
|
1898
|
-
/// @group color-system
|
|
1899
|
-
/// @type Color
|
|
1900
|
-
$kendo-color-success: #3ea44e !default;
|
|
1901
|
-
$kendo-color-success-lighter: k-color-tint( $kendo-color-success, 2 ) !default;
|
|
1902
|
-
$kendo-color-success-darker: k-color-shade( $kendo-color-success, 2 ) !default;
|
|
1903
|
-
|
|
1904
|
-
/// The color for warning messages and states.
|
|
1905
|
-
/// @group color-system
|
|
1906
|
-
/// @type Color
|
|
1907
|
-
$kendo-color-warning: #ff9800 !default;
|
|
1908
|
-
$kendo-color-warning-lighter: k-color-tint( $kendo-color-warning, 2 ) !default;
|
|
1909
|
-
$kendo-color-warning-darker: k-color-shade( $kendo-color-warning, 2 ) !default;
|
|
1910
|
-
|
|
1911
|
-
/// The color for error messages and states.
|
|
1912
|
-
/// @group color-system
|
|
1913
|
-
/// @type Color
|
|
1914
|
-
$kendo-color-error: #d92800 !default;
|
|
1915
|
-
$kendo-color-error-lighter: k-color-tint( $kendo-color-error, 2 ) !default;
|
|
1916
|
-
$kendo-color-error-darker: k-color-shade( $kendo-color-error, 2 ) !default;
|
|
1917
|
-
|
|
1918
|
-
/// The dark color of the theme.
|
|
1919
|
-
/// @group color-system
|
|
1920
|
-
/// @type Color
|
|
1921
|
-
$kendo-color-dark: #404040 !default;
|
|
1922
|
-
|
|
1923
|
-
/// The light color of the theme.
|
|
1924
|
-
/// @group color-system
|
|
1925
|
-
/// @type Color
|
|
1926
|
-
$kendo-color-light: #ebebeb !default;
|
|
1927
|
-
|
|
1928
|
-
/// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
|
|
1929
|
-
/// @group color-system
|
|
1930
|
-
$kendo-color-inverse: if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark ) !default;
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
$kendo-theme-colors: (
|
|
1934
|
-
"primary": $kendo-color-primary,
|
|
1935
|
-
"secondary": $kendo-color-secondary,
|
|
1936
|
-
"tertiary": $kendo-color-tertiary,
|
|
1937
|
-
"info": $kendo-color-info,
|
|
1938
|
-
"success": $kendo-color-success,
|
|
1939
|
-
"warning": $kendo-color-warning,
|
|
1940
|
-
"error": $kendo-color-error,
|
|
1941
|
-
"dark": $kendo-color-dark,
|
|
1942
|
-
"light": $kendo-color-light,
|
|
1943
|
-
"inverse": $kendo-color-inverse
|
|
1944
|
-
) !default;
|
|
1945
|
-
|
|
1946
2592
|
|
|
1947
2593
|
// Typography
|
|
1948
2594
|
|
|
@@ -1995,77 +2641,12 @@ $kendo-font-weight-bold: 700 !default;
|
|
|
1995
2641
|
$kendo-letter-spacing: null !default;
|
|
1996
2642
|
|
|
1997
2643
|
|
|
1998
|
-
// Generic styles
|
|
1999
|
-
|
|
2000
|
-
// Root styles
|
|
2001
|
-
$kendo-body-bg: $kendo-color-white !default;
|
|
2002
|
-
$kendo-body-text: #272727 !default;
|
|
2003
|
-
|
|
2004
|
-
$kendo-subtle-text: #646464 !default;
|
|
2005
|
-
|
|
2006
|
-
$kendo-app-bg: $kendo-body-bg !default;
|
|
2007
|
-
$kendo-app-text: $kendo-body-text !default;
|
|
2008
|
-
$kendo-app-border: k-try-shade( $kendo-app-bg, 2 ) !default;
|
|
2009
|
-
|
|
2010
|
-
// Link
|
|
2011
|
-
$kendo-link-text: $kendo-color-primary !default;
|
|
2012
|
-
$kendo-link-hover-text: $kendo-color-primary-darker !default;
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
// Components
|
|
2016
|
-
|
|
2017
|
-
/// The background of the components' chrome area.
|
|
2018
|
-
$kendo-base-bg: #f0f0f0 !default;
|
|
2019
|
-
/// The text color of the components' chrome area.
|
|
2020
|
-
$kendo-base-text: $kendo-body-text !default;
|
|
2021
|
-
/// The border color of the components' chrome area.
|
|
2022
|
-
$kendo-base-border: k-try-shade( $kendo-base-bg, 2 ) !default;
|
|
2023
|
-
/// The gradient background of the components' chrome area.
|
|
2024
|
-
$kendo-base-gradient: rgba( white, .1 ), rgba( white, 0 ) !default;
|
|
2025
|
-
|
|
2026
|
-
/// Background color of a component.
|
|
2027
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.
|
|
2028
|
-
/// @group component
|
|
2029
|
-
$kendo-component-bg: $kendo-body-bg !default;
|
|
2030
|
-
/// Text color of a component.
|
|
2031
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.
|
|
2032
|
-
/// @group component
|
|
2033
|
-
$kendo-component-text: $kendo-body-text !default;
|
|
2034
|
-
/// Border color of a component.
|
|
2035
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.
|
|
2036
|
-
/// @group component
|
|
2037
|
-
$kendo-component-border: $kendo-base-border !default;
|
|
2038
|
-
|
|
2039
|
-
/// The background of hovered items.
|
|
2040
|
-
$kendo-hover-bg: k-try-shade( $kendo-base-bg, 1 ) !default;
|
|
2041
|
-
/// The text color of hovered items.
|
|
2042
|
-
$kendo-hover-text: $kendo-base-text !default;
|
|
2043
|
-
/// The border color of hovered items.
|
|
2044
|
-
$kendo-hover-border: k-try-shade( $kendo-hover-bg, 2 ) !default;
|
|
2045
|
-
/// The gradient background of hovered items.
|
|
2046
|
-
$kendo-hover-gradient: $kendo-base-gradient !default;
|
|
2047
|
-
|
|
2048
|
-
/// The background of selected items.
|
|
2049
|
-
$kendo-selected-bg: $kendo-color-primary !default;
|
|
2050
|
-
/// The text color of selected items.
|
|
2051
|
-
$kendo-selected-text: k-contrast-legacy( $kendo-selected-bg ) !default;
|
|
2052
|
-
/// The border color of selected items.
|
|
2053
|
-
$kendo-selected-border: k-try-shade( $kendo-selected-bg, 2 ) !default;
|
|
2054
|
-
/// The gradient background of selected items.
|
|
2055
|
-
$kendo-selected-gradient: $kendo-base-gradient !default;
|
|
2056
|
-
|
|
2057
|
-
$kendo-selected-hover-bg: k-try-shade( $kendo-selected-bg, 1 ) !default;
|
|
2058
|
-
$kendo-selected-hover-text: k-contrast-legacy( $kendo-selected-hover-bg ) !default;
|
|
2059
|
-
$kendo-selected-hover-border: $kendo-selected-border !default;
|
|
2060
|
-
$kendo-selected-hover-gradient: $kendo-selected-gradient !default;
|
|
2061
|
-
|
|
2062
2644
|
$kendo-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
2063
2645
|
|
|
2064
2646
|
$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;
|
|
2065
2647
|
|
|
2066
2648
|
|
|
2067
2649
|
// Disabled mixin variables
|
|
2068
|
-
$kendo-disabled-text: #8d8d8d !default;
|
|
2069
2650
|
$kendo-disabled-filter: grayscale(.1) !default;
|
|
2070
2651
|
$kendo-disabled-opacity: .6 !default;
|
|
2071
2652
|
|
|
@@ -2075,29 +2656,6 @@ $kendo-disabled-styling: (
|
|
|
2075
2656
|
) !default;
|
|
2076
2657
|
|
|
2077
2658
|
|
|
2078
|
-
// Generic styles
|
|
2079
|
-
|
|
2080
|
-
// TODO: refactor once we extract drag drop as separate module
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
// Header
|
|
2084
|
-
$kendo-component-header-bg: $kendo-base-bg !default;
|
|
2085
|
-
$kendo-component-header-text: $kendo-base-text !default;
|
|
2086
|
-
$kendo-component-header-border: $kendo-base-border !default;
|
|
2087
|
-
$kendo-component-header-gradient: $kendo-base-gradient !default;
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
// Validator
|
|
2091
|
-
$kendo-invalid-bg: null !default;
|
|
2092
|
-
$kendo-invalid-text: $kendo-color-error !default;
|
|
2093
|
-
$kendo-invalid-border: $kendo-color-error !default;
|
|
2094
|
-
$kendo-invalid-shadow: null !default;
|
|
2095
|
-
|
|
2096
|
-
$kendo-valid-bg: null !default;
|
|
2097
|
-
$kendo-valid-text: $kendo-color-success !default;
|
|
2098
|
-
$kendo-valid-border: $kendo-color-success !default;
|
|
2099
|
-
$kendo-valid-shadow: null !default;
|
|
2100
|
-
|
|
2101
2659
|
// Loading
|
|
2102
2660
|
$kendo-loading-opacity: .3 !default;
|
|
2103
2661
|
$kendo-zindex-loading: 100 !default;
|
|
@@ -3189,6 +3747,31 @@ $kendo-palettes: (
|
|
|
3189
3747
|
@return var( --#{$prefix}#{$name}, #{$fallback} );
|
|
3190
3748
|
}
|
|
3191
3749
|
|
|
3750
|
+
@function k-get-swatch-color( $name, $color ) {
|
|
3751
|
+
$map: (
|
|
3752
|
+
app-surface: k-color( app-surface ),
|
|
3753
|
+
on-app-surface: k-color( on-app-surface ),
|
|
3754
|
+
subtle: k-color( subtle ),
|
|
3755
|
+
surface: k-color( surface ),
|
|
3756
|
+
surface-alt: k-color( surface-alt ),
|
|
3757
|
+
border: k-color( border ),
|
|
3758
|
+
border-alt: k-color( border-alt ),
|
|
3759
|
+
color-subtle: k-color( #{$color}-subtle ),
|
|
3760
|
+
color-subtle-hover: k-color( #{$color}-subtle-hover ),
|
|
3761
|
+
color-subtle-active: k-color( #{$color}-subtle-active ),
|
|
3762
|
+
color: k-color( #{$color} ),
|
|
3763
|
+
color-hover: k-color( #{$color}-hover ),
|
|
3764
|
+
color-active: k-color( #{$color}-active ),
|
|
3765
|
+
color-emphasis: k-color( #{$color}-emphasis ),
|
|
3766
|
+
color-on-subtle: k-color( #{$color}-on-subtle ),
|
|
3767
|
+
on-color: k-color( on-#{$color} ),
|
|
3768
|
+
color-on-surface: k-color( #{$color}-on-surface ),
|
|
3769
|
+
on-color-disabled: rgba( k-color( on-#{$color}, true ), .46)
|
|
3770
|
+
);
|
|
3771
|
+
|
|
3772
|
+
@return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
|
|
3773
|
+
};
|
|
3774
|
+
|
|
3192
3775
|
@function k-generate-theme-variation( $theme-color, $source-palette-name, $mapping ) {
|
|
3193
3776
|
$temp: ( );
|
|
3194
3777
|
|
|
@@ -3200,9 +3783,9 @@ $kendo-palettes: (
|
|
|
3200
3783
|
$border-prop: k-list-nth($indices, 3);
|
|
3201
3784
|
|
|
3202
3785
|
// Take value from the palette only if it is a number
|
|
3203
|
-
$bg: if( k-meta-type-of($bg-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$bg-prop} ), $bg-prop );
|
|
3204
|
-
$text: if( k-meta-type-of($text-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$text-prop} ), $text-prop );
|
|
3205
|
-
$border: if( k-meta-type-of($border-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$border-prop} ), $border-prop );
|
|
3786
|
+
$bg: if($kendo-enable-color-system, k-get-swatch-color( $bg-prop, $source-palette-name ), if( k-meta-type-of($bg-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$bg-prop} ), $bg-prop ));
|
|
3787
|
+
$text: if($kendo-enable-color-system, k-get-swatch-color( $text-prop, $source-palette-name ), if( k-meta-type-of($text-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$text-prop} ), $text-prop ));
|
|
3788
|
+
$border: if($kendo-enable-color-system, k-get-swatch-color( $border-prop, $source-palette-name ), if( k-meta-type-of($border-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$border-prop} ), $border-prop ));
|
|
3206
3789
|
|
|
3207
3790
|
|
|
3208
3791
|
$temp: k-map-deep-merge( $temp, (
|
|
@@ -3214,7 +3797,7 @@ $kendo-palettes: (
|
|
|
3214
3797
|
// Add outline if provided in the map
|
|
3215
3798
|
@if ( k-list-length($indices) > 3 ) {
|
|
3216
3799
|
$outline-prop: k-list-nth($indices, 4);
|
|
3217
|
-
$outline: if( k-meta-type-of($outline-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$outline-prop} ), $outline-prop );
|
|
3800
|
+
$outline: if($kendo-enable-color-system, k-get-swatch-color( $outline-prop, $source-palette-name ), if( k-meta-type-of($outline-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$outline-prop} ), $outline-prop ));
|
|
3218
3801
|
|
|
3219
3802
|
$temp: k-map-deep-merge( $temp, (
|
|
3220
3803
|
#{$prefix}outline: $outline
|
|
@@ -3241,6 +3824,18 @@ $kendo-palettes: (
|
|
|
3241
3824
|
@return $result;
|
|
3242
3825
|
}
|
|
3243
3826
|
|
|
3827
|
+
@function k-hex-to-rgb( $color ) {
|
|
3828
|
+
@if($color) {
|
|
3829
|
+
$r: k-color-red($color);
|
|
3830
|
+
$g: k-color-green($color);
|
|
3831
|
+
$b: k-color-blue($color);
|
|
3832
|
+
|
|
3833
|
+
@return $r, $g, $b;
|
|
3834
|
+
} @else {
|
|
3835
|
+
@return null;
|
|
3836
|
+
}
|
|
3837
|
+
}
|
|
3838
|
+
|
|
3244
3839
|
// #endregion
|
|
3245
3840
|
// #region @import "./_mixins.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_mixins.import.scss
|
|
3246
3841
|
@mixin k-css-vars($map) {
|
|
@@ -3252,204 +3847,294 @@ $kendo-palettes: (
|
|
|
3252
3847
|
}
|
|
3253
3848
|
|
|
3254
3849
|
// #endregion
|
|
3255
|
-
// #region @import "./
|
|
3256
|
-
//
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
/// Note: you cannot change this value.
|
|
3260
|
-
/// @type Color
|
|
3261
|
-
/// @group color-system
|
|
3262
|
-
$kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
|
|
3263
|
-
|
|
3264
|
-
/// The color black.
|
|
3265
|
-
/// Note: you cannot change this value.
|
|
3266
|
-
/// @type Color
|
|
3267
|
-
/// @group color-system
|
|
3268
|
-
$kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
|
|
3850
|
+
// #region @import "./_swatch.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_swatch.scss
|
|
3851
|
+
// #region @import "./_functions.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_functions.import.scss
|
|
3852
|
+
// File already imported_once. Skipping output.
|
|
3853
|
+
// #endregion
|
|
3269
3854
|
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
/// @type Color
|
|
3273
|
-
/// @group color-system
|
|
3274
|
-
$kendo-color-rgba-transparent: rgba( 0, 0, 0, 0 ); // stylelint-disable-line scss/dollar-variable-default
|
|
3855
|
+
// Config
|
|
3856
|
+
$kendo-enable-color-system: false !default;
|
|
3275
3857
|
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3858
|
+
// Colors
|
|
3859
|
+
$_default-colors: (
|
|
3860
|
+
// Misc
|
|
3861
|
+
app-surface: null,
|
|
3862
|
+
on-app-surface: null,
|
|
3863
|
+
subtle: null,
|
|
3864
|
+
surface: null,
|
|
3865
|
+
surface-alt: null,
|
|
3866
|
+
border: null,
|
|
3867
|
+
border-alt: null,
|
|
3868
|
+
// Base
|
|
3869
|
+
base-subtle: null,
|
|
3870
|
+
base-subtle-hover: null,
|
|
3871
|
+
base-subtle-active: null,
|
|
3872
|
+
base: null,
|
|
3873
|
+
base-hover: null,
|
|
3874
|
+
base-active: null,
|
|
3875
|
+
base-emphasis: null,
|
|
3876
|
+
base-on-subtle: null,
|
|
3877
|
+
on-base: null,
|
|
3878
|
+
base-on-surface: null,
|
|
3879
|
+
// Primary
|
|
3880
|
+
primary-subtle: null,
|
|
3881
|
+
primary-subtle-hover: null,
|
|
3882
|
+
primary-subtle-active: null,
|
|
3883
|
+
primary: null,
|
|
3884
|
+
primary-hover: null,
|
|
3885
|
+
primary-active: null,
|
|
3886
|
+
primary-emphasis: null,
|
|
3887
|
+
primary-on-subtle: null,
|
|
3888
|
+
on-primary: null,
|
|
3889
|
+
primary-on-surface: null,
|
|
3890
|
+
// Secondary
|
|
3891
|
+
secondary-subtle: null,
|
|
3892
|
+
secondary-subtle-hover: null,
|
|
3893
|
+
secondary-subtle-active: null,
|
|
3894
|
+
secondary: null,
|
|
3895
|
+
secondary-hover: null,
|
|
3896
|
+
secondary-active: null,
|
|
3897
|
+
secondary-emphasis: null,
|
|
3898
|
+
secondary-on-subtle: null,
|
|
3899
|
+
on-secondary: null,
|
|
3900
|
+
secondary-on-surface: null,
|
|
3901
|
+
// Tertiary
|
|
3902
|
+
tertiary-subtle: null,
|
|
3903
|
+
tertiary-subtle-hover: null,
|
|
3904
|
+
tertiary-subtle-active: null,
|
|
3905
|
+
tertiary: null,
|
|
3906
|
+
tertiary-hover: null,
|
|
3907
|
+
tertiary-active: null,
|
|
3908
|
+
tertiary-emphasis: null,
|
|
3909
|
+
tertiary-on-subtle: null,
|
|
3910
|
+
on-tertiary: null,
|
|
3911
|
+
tertiary-on-surface: null,
|
|
3912
|
+
// Info
|
|
3913
|
+
info-subtle: null,
|
|
3914
|
+
info-subtle-hover: null,
|
|
3915
|
+
info-subtle-active: null,
|
|
3916
|
+
info: null,
|
|
3917
|
+
info-hover: null,
|
|
3918
|
+
info-active: null,
|
|
3919
|
+
info-emphasis: null,
|
|
3920
|
+
info-on-subtle: null,
|
|
3921
|
+
on-info: null,
|
|
3922
|
+
info-on-surface: null,
|
|
3923
|
+
// Success
|
|
3924
|
+
success-subtle: null,
|
|
3925
|
+
success-subtle-hover: null,
|
|
3926
|
+
success-subtle-active: null,
|
|
3927
|
+
success: null,
|
|
3928
|
+
success-hover: null,
|
|
3929
|
+
success-active: null,
|
|
3930
|
+
success-emphasis: null,
|
|
3931
|
+
success-on-subtle: null,
|
|
3932
|
+
on-success: null,
|
|
3933
|
+
success-on-surface: null,
|
|
3934
|
+
// Warning
|
|
3935
|
+
warning-subtle: null,
|
|
3936
|
+
warning-subtle-hover: null,
|
|
3937
|
+
warning-subtle-active: null,
|
|
3938
|
+
warning: null,
|
|
3939
|
+
warning-hover: null,
|
|
3940
|
+
warning-active: null,
|
|
3941
|
+
warning-emphasis: null,
|
|
3942
|
+
warning-on-subtle: null,
|
|
3943
|
+
on-warning: null,
|
|
3944
|
+
warning-on-surface: null,
|
|
3945
|
+
// Error
|
|
3946
|
+
error-subtle: null,
|
|
3947
|
+
error-subtle-hover: null,
|
|
3948
|
+
error-subtle-active: null,
|
|
3949
|
+
error: null,
|
|
3950
|
+
error-hover: null,
|
|
3951
|
+
error-active: null,
|
|
3952
|
+
error-emphasis: null,
|
|
3953
|
+
error-on-subtle: null,
|
|
3954
|
+
on-error: null,
|
|
3955
|
+
error-on-surface: null,
|
|
3956
|
+
// Light
|
|
3957
|
+
light-subtle: null,
|
|
3958
|
+
light-subtle-hover: null,
|
|
3959
|
+
light-subtle-active: null,
|
|
3960
|
+
light: null,
|
|
3961
|
+
light-hover: null,
|
|
3962
|
+
light-active: null,
|
|
3963
|
+
light-emphasis: null,
|
|
3964
|
+
light-on-subtle: null,
|
|
3965
|
+
on-light: null,
|
|
3966
|
+
light-on-surface: null,
|
|
3967
|
+
// Dark
|
|
3968
|
+
dark-subtle: null,
|
|
3969
|
+
dark-subtle-hover: null,
|
|
3970
|
+
dark-subtle-active: null,
|
|
3971
|
+
dark: null,
|
|
3972
|
+
dark-hover: null,
|
|
3973
|
+
dark-active: null,
|
|
3974
|
+
dark-emphasis: null,
|
|
3975
|
+
dark-on-subtle: null,
|
|
3976
|
+
on-dark: null,
|
|
3977
|
+
dark-on-surface: null,
|
|
3978
|
+
// Inverse
|
|
3979
|
+
inverse-subtle: null,
|
|
3980
|
+
inverse-subtle-hover: null,
|
|
3981
|
+
inverse-subtle-active: null,
|
|
3982
|
+
inverse: null,
|
|
3983
|
+
inverse-hover: null,
|
|
3984
|
+
inverse-active: null,
|
|
3985
|
+
inverse-emphasis: null,
|
|
3986
|
+
inverse-on-subtle: null,
|
|
3987
|
+
on-inverse: null,
|
|
3988
|
+
inverse-on-surface: null,
|
|
3989
|
+
// Series A
|
|
3990
|
+
series-a: null,
|
|
3991
|
+
series-a-bold: null,
|
|
3992
|
+
series-a-bolder: null,
|
|
3993
|
+
series-a-subtle: null,
|
|
3994
|
+
series-a-subtler: null,
|
|
3995
|
+
// Series B
|
|
3996
|
+
series-b: null,
|
|
3997
|
+
series-b-bold: null,
|
|
3998
|
+
series-b-bolder: null,
|
|
3999
|
+
series-b-subtle: null,
|
|
4000
|
+
series-b-subtler: null,
|
|
4001
|
+
// Series C
|
|
4002
|
+
series-c: null,
|
|
4003
|
+
series-c-bold: null,
|
|
4004
|
+
series-c-bolder: null,
|
|
4005
|
+
series-c-subtle: null,
|
|
4006
|
+
series-c-subtler: null,
|
|
4007
|
+
// Series D
|
|
4008
|
+
series-d: null,
|
|
4009
|
+
series-d-bold: null,
|
|
4010
|
+
series-d-bolder: null,
|
|
4011
|
+
series-d-subtle: null,
|
|
4012
|
+
series-d-subtler: null,
|
|
4013
|
+
// Series Е
|
|
4014
|
+
series-e: null,
|
|
4015
|
+
series-e-bold: null,
|
|
4016
|
+
series-e-bolder: null,
|
|
4017
|
+
series-e-subtle: null,
|
|
4018
|
+
series-e-subtler: null,
|
|
4019
|
+
// Series F
|
|
4020
|
+
series-f: null,
|
|
4021
|
+
series-f-bold: null,
|
|
4022
|
+
series-f-bolder: null,
|
|
4023
|
+
series-f-subtle: null,
|
|
4024
|
+
series-f-subtler: null,
|
|
4025
|
+
) !default;
|
|
3281
4026
|
|
|
3282
|
-
///
|
|
3283
|
-
/// Note: you cannot change this value.
|
|
3284
|
-
/// @type Gradient
|
|
4027
|
+
/// The global default Colors map.
|
|
3285
4028
|
/// @group color-system
|
|
3286
|
-
$kendo-
|
|
4029
|
+
$kendo-colors: $_default-colors !default;
|
|
4030
|
+
$kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
3287
4031
|
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
/// @type Gradient
|
|
3291
|
-
/// @group color-system
|
|
3292
|
-
$kendo-gradient-black-to-transparent: black, rgba( black, 0 ); // stylelint-disable-line scss/dollar-variable-default
|
|
4032
|
+
@function k-color($key, $rgb: false) {
|
|
4033
|
+
$_color: k-map-get($kendo-colors, $key);
|
|
3293
4034
|
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
4035
|
+
@if ($_color) {
|
|
4036
|
+
@if ($rgb) {
|
|
4037
|
+
@return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
|
|
4038
|
+
} @else {
|
|
4039
|
+
@return var(--kendo-color-#{$key}, $_color);
|
|
4040
|
+
}
|
|
4041
|
+
} @else {
|
|
4042
|
+
@error "Color Variable \`#{$key}\` does not exists in the color collection.";
|
|
4043
|
+
}
|
|
4044
|
+
}
|
|
3299
4045
|
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
4046
|
+
@mixin color-system--styles() {
|
|
4047
|
+
:root {
|
|
4048
|
+
@each $key, $value in $kendo-colors {
|
|
4049
|
+
@if($value) {
|
|
4050
|
+
--kendo-color-#{$key}: #{$value};
|
|
4051
|
+
--kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
|
|
4052
|
+
}
|
|
4053
|
+
}
|
|
4054
|
+
}
|
|
4055
|
+
}
|
|
3305
4056
|
|
|
4057
|
+
// #endregion
|
|
4058
|
+
// #region @import "./_constants.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_constants.scss
|
|
4059
|
+
// File already imported_once. Skipping output.
|
|
4060
|
+
// #endregion
|
|
4061
|
+
// #region @import "./_swatch-legacy.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_swatch-legacy.scss
|
|
4062
|
+
$kendo-is-dark-theme: false !default;
|
|
3306
4063
|
|
|
3307
4064
|
// Root styles
|
|
3308
|
-
$kendo-body-bg:
|
|
3309
|
-
$kendo-body-text:
|
|
4065
|
+
$kendo-body-bg: null !default;
|
|
4066
|
+
$kendo-body-text: null !default;
|
|
3310
4067
|
|
|
3311
4068
|
// Component styles
|
|
3312
|
-
$kendo-component-bg:
|
|
3313
|
-
$kendo-component-text:
|
|
3314
|
-
$kendo-component-border:
|
|
4069
|
+
$kendo-component-bg: null !default;
|
|
4070
|
+
$kendo-component-text: null !default;
|
|
4071
|
+
$kendo-component-border: null !default;
|
|
3315
4072
|
|
|
3316
4073
|
// States styles
|
|
3317
|
-
$kendo-hover-bg:
|
|
3318
|
-
$kendo-hover-text:
|
|
3319
|
-
$kendo-hover-border:
|
|
4074
|
+
$kendo-hover-bg: null !default;
|
|
4075
|
+
$kendo-hover-text: null !default;
|
|
4076
|
+
$kendo-hover-border: null !default;
|
|
3320
4077
|
|
|
3321
|
-
$kendo-selected-bg:
|
|
3322
|
-
$kendo-selected-text:
|
|
3323
|
-
$kendo-selected-border:
|
|
4078
|
+
$kendo-selected-bg: null !default;
|
|
4079
|
+
$kendo-selected-text: null !default;
|
|
4080
|
+
$kendo-selected-border: null !default;
|
|
3324
4081
|
|
|
3325
|
-
$kendo-selected-hover-bg:
|
|
3326
|
-
$kendo-selected-hover-text:
|
|
3327
|
-
$kendo-selected-hover-border:
|
|
4082
|
+
$kendo-selected-hover-bg: null !default;
|
|
4083
|
+
$kendo-selected-hover-text: null !default;
|
|
4084
|
+
$kendo-selected-hover-border: null !default;
|
|
3328
4085
|
|
|
3329
|
-
$kendo-focus-outline:
|
|
4086
|
+
$kendo-focus-outline: null !default;
|
|
3330
4087
|
|
|
3331
|
-
$kendo-subtle-text:
|
|
4088
|
+
$kendo-subtle-text: null !default;
|
|
3332
4089
|
|
|
3333
4090
|
// Link
|
|
3334
|
-
$kendo-link-text:
|
|
3335
|
-
$kendo-link-hover-text:
|
|
4091
|
+
$kendo-link-text: null !default;
|
|
4092
|
+
$kendo-link-hover-text: null !default;
|
|
3336
4093
|
|
|
3337
4094
|
// Validator
|
|
3338
|
-
$kendo-invalid-bg:
|
|
3339
|
-
$kendo-invalid-text:
|
|
3340
|
-
$kendo-invalid-border:
|
|
4095
|
+
$kendo-invalid-bg: null !default;
|
|
4096
|
+
$kendo-invalid-text: null !default;
|
|
4097
|
+
$kendo-invalid-border: null !default;
|
|
3341
4098
|
$kendo-invalid-shadow: null !default;
|
|
3342
4099
|
|
|
3343
|
-
$kendo-valid-bg: initial !default;
|
|
3344
|
-
$kendo-valid-text: k-get-theme-color-var( success-190 ) !default;
|
|
3345
|
-
$kendo-valid-border: k-get-theme-color-var( success-190 ) !default;
|
|
3346
|
-
$kendo-valid-shadow: null !default;
|
|
3347
|
-
|
|
3348
4100
|
// Disabled Styling
|
|
3349
|
-
$kendo-disabled-bg:
|
|
3350
|
-
$kendo-disabled-text:
|
|
3351
|
-
$kendo-disabled-border:
|
|
4101
|
+
$kendo-disabled-bg: null !default;
|
|
4102
|
+
$kendo-disabled-text: null !default;
|
|
4103
|
+
$kendo-disabled-border: null !default;
|
|
3352
4104
|
|
|
3353
4105
|
// Loading
|
|
3354
|
-
$kendo-loading-bg:
|
|
3355
|
-
$kendo-loading-text:
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
// Theme colors
|
|
3359
|
-
$kendo-theme-colors: (
|
|
3360
|
-
primary: (
|
|
3361
|
-
text: k-get-theme-color-var( primary-130 ),
|
|
3362
|
-
bg: k-get-theme-color-var( primary-20 ),
|
|
3363
|
-
border: k-get-theme-color-var( primary-20 )
|
|
3364
|
-
),
|
|
3365
|
-
info: (
|
|
3366
|
-
text: k-get-theme-color-var( info-190 ),
|
|
3367
|
-
bg: k-get-theme-color-var( info-20 ),
|
|
3368
|
-
border: k-get-theme-color-var( info-20 )
|
|
3369
|
-
),
|
|
3370
|
-
success: (
|
|
3371
|
-
text: k-get-theme-color-var( success-190 ),
|
|
3372
|
-
bg: k-get-theme-color-var( success-20 ),
|
|
3373
|
-
border: k-get-theme-color-var( success-20 )
|
|
3374
|
-
),
|
|
3375
|
-
warning: (
|
|
3376
|
-
text: k-get-theme-color-var( neutral-160 ),
|
|
3377
|
-
bg: k-get-theme-color-var( warning-20 ),
|
|
3378
|
-
border: k-get-theme-color-var( warning-20 )
|
|
3379
|
-
),
|
|
3380
|
-
error: (
|
|
3381
|
-
text: k-get-theme-color-var( error-190 ),
|
|
3382
|
-
bg: k-get-theme-color-var( error-20 ),
|
|
3383
|
-
border: k-get-theme-color-var( error-20 )
|
|
3384
|
-
)
|
|
3385
|
-
) !default;
|
|
4106
|
+
$kendo-loading-bg: null !default;
|
|
4107
|
+
$kendo-loading-text: null !default;
|
|
3386
4108
|
|
|
4109
|
+
$kendo-palettes: () !default;
|
|
4110
|
+
$kendo-theme-colors: () !default;
|
|
3387
4111
|
|
|
3388
4112
|
@mixin color-system-styles() {
|
|
3389
4113
|
:root {
|
|
3390
|
-
@include k-css-vars(
|
|
3391
|
-
@include k-css-vars(
|
|
3392
|
-
|
|
3393
|
-
--kendo-body-bg: #{$kendo-body-bg};
|
|
3394
|
-
--kendo-body-text: #{$kendo-body-text};
|
|
3395
|
-
|
|
3396
|
-
--kendo-component-bg: #{$kendo-component-bg};
|
|
3397
|
-
--kendo-component-text: #{$kendo-component-text};
|
|
3398
|
-
--kendo-component-border: #{$kendo-component-border};
|
|
3399
|
-
|
|
3400
|
-
--kendo-link-text: #{$kendo-link-text};
|
|
3401
|
-
--kendo-link-hover-text: #{$kendo-link-hover-text};
|
|
3402
|
-
|
|
3403
|
-
--kendo-disabled-bg: #{$kendo-disabled-bg};
|
|
3404
|
-
--kendo-disabled-text: #{$kendo-disabled-text};
|
|
3405
|
-
--kendo-disabled-border: #{$kendo-disabled-border};
|
|
3406
|
-
|
|
3407
|
-
--kendo-hover-bg: #{$kendo-hover-bg};
|
|
3408
|
-
--kendo-hover-text: #{$kendo-hover-text};
|
|
3409
|
-
--kendo-hover-border: #{$kendo-hover-border};
|
|
3410
|
-
|
|
3411
|
-
--kendo-selected-bg: #{$kendo-selected-bg};
|
|
3412
|
-
--kendo-selected-text: #{$kendo-selected-text};
|
|
3413
|
-
--kendo-selected-border: #{$kendo-selected-border};
|
|
3414
|
-
|
|
3415
|
-
--kendo-selected-hover-bg: #{$kendo-selected-hover-bg};
|
|
3416
|
-
--kendo-selected-hover-text: #{$kendo-selected-hover-text};
|
|
3417
|
-
--kendo-selected-hover-border: #{$kendo-selected-hover-border};
|
|
3418
|
-
|
|
3419
|
-
--kendo-focus-outline: #{$kendo-focus-outline};
|
|
3420
|
-
|
|
3421
|
-
--kendo-subtle-text: #{$kendo-subtle-text};
|
|
4114
|
+
@include k-css-vars($kendo-palettes);
|
|
4115
|
+
@include k-css-vars($kendo-theme-colors);
|
|
3422
4116
|
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
--kendo-invalid-shadow: #{$kendo-invalid-shadow};
|
|
4117
|
+
// Text colors
|
|
4118
|
+
@each $theme-color, $color-props in $kendo-theme-colors {
|
|
4119
|
+
$_color: k-map-get($color-props, text);
|
|
3427
4120
|
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
.k-text-#{$theme-color},
|
|
3438
|
-
.k-color-#{$theme-color} {
|
|
3439
|
-
color: var( --kendo-text-#{$theme-color}, #{$_color} );
|
|
3440
|
-
}
|
|
3441
|
-
.\!k-text-#{$theme-color},
|
|
3442
|
-
.\!k-color-#{$theme-color} {
|
|
3443
|
-
color: var( --kendo-text-#{$theme-color}, #{$_color} ) !important; // stylelint-disable-line declaration-no-important
|
|
3444
|
-
}
|
|
4121
|
+
.k-text-#{$theme-color},
|
|
4122
|
+
.k-color-#{$theme-color} {
|
|
4123
|
+
color: var(--kendo-text-#{$theme-color}, #{$_color});
|
|
4124
|
+
}
|
|
4125
|
+
.\!k-text-#{$theme-color},
|
|
4126
|
+
.\!k-color-#{$theme-color} {
|
|
4127
|
+
color: var(--kendo-text-#{$theme-color}, #{$_color}) !important; // stylelint-disable-line declaration-no-important
|
|
4128
|
+
}
|
|
3445
4129
|
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
4130
|
+
.k-bg-#{$theme-color} {
|
|
4131
|
+
background-color: var(--kendo-bg-#{$theme-color}, #{$_color});
|
|
4132
|
+
}
|
|
4133
|
+
.\!k-bg-#{$theme-color} {
|
|
4134
|
+
background-color: var(--kendo-bg-#{$theme-color}, #{$_color}) !important; // stylelint-disable-line declaration-no-important
|
|
4135
|
+
}
|
|
3451
4136
|
}
|
|
3452
|
-
}
|
|
4137
|
+
}
|
|
3453
4138
|
}
|
|
3454
4139
|
|
|
3455
4140
|
// #endregion
|
|
@@ -4852,9 +5537,17 @@ $_imported: () !default;
|
|
|
4852
5537
|
}
|
|
4853
5538
|
}
|
|
4854
5539
|
// #endregion
|
|
5540
|
+
// #region @import "./_colors.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/styles/_colors.scss
|
|
5541
|
+
@mixin kendo-core--styles--colors() {
|
|
5542
|
+
@if ($kendo-enable-color-system) {
|
|
5543
|
+
@include color-system--styles();
|
|
5544
|
+
}
|
|
5545
|
+
}
|
|
4855
5546
|
|
|
5547
|
+
// #endregion
|
|
4856
5548
|
|
|
4857
5549
|
@mixin kendo-core--styles() {
|
|
5550
|
+
@include kendo-core--styles--colors();
|
|
4858
5551
|
@include kendo-core--styles--accessibility();
|
|
4859
5552
|
@include kendo-core--styles--asp-fallback();
|
|
4860
5553
|
@include kendo-core--styles--layout();
|
|
@@ -5024,6 +5717,73 @@ $kendo-zindex-loading: 100 !default;
|
|
|
5024
5717
|
|
|
5025
5718
|
// #endregion
|
|
5026
5719
|
|
|
5720
|
+
// Backward compatibility
|
|
5721
|
+
// #region @import "./color-system/_swatch-legacy.scss"; -> scss/core/color-system/_swatch-legacy.scss
|
|
5722
|
+
@if ($kendo-enable-color-system) {
|
|
5723
|
+
$kendo-color-primary: k-color( primary );
|
|
5724
|
+
$kendo-color-primary-contrast: k-color( on-primary );
|
|
5725
|
+
$kendo-color-secondary: k-color( secondary );
|
|
5726
|
+
$kendo-color-tertiary: k-color( tertiary );
|
|
5727
|
+
$kendo-color-info: k-color( info );
|
|
5728
|
+
$kendo-color-success: k-color( success );
|
|
5729
|
+
$kendo-color-warning: k-color( warning );
|
|
5730
|
+
$kendo-color-error: k-color( error );
|
|
5731
|
+
$kendo-color-dark: k-color( dark );
|
|
5732
|
+
$kendo-color-light: k-color( light );
|
|
5733
|
+
$kendo-color-inverse: $kendo-color-dark;
|
|
5734
|
+
$kendo-body-bg: k-color( app-surface );
|
|
5735
|
+
$kendo-body-text: k-color( on-app-surface );
|
|
5736
|
+
$kendo-subtle-text: k-color( subtle );
|
|
5737
|
+
$kendo-app-bg: $kendo-body-bg;
|
|
5738
|
+
$kendo-app-text: $kendo-body-text;
|
|
5739
|
+
$kendo-app-border: k-color( border );
|
|
5740
|
+
$kendo-link-text: $kendo-color-primary;
|
|
5741
|
+
$kendo-link-hover-text: k-color( primary-hover );
|
|
5742
|
+
$kendo-component-bg: $kendo-body-bg;
|
|
5743
|
+
$kendo-component-text: $kendo-body-text;
|
|
5744
|
+
$kendo-component-border: $kendo-app-border;
|
|
5745
|
+
$kendo-base-bg: k-color( surface );
|
|
5746
|
+
$kendo-base-text: $kendo-body-text;
|
|
5747
|
+
$kendo-base-border: $kendo-app-border;
|
|
5748
|
+
$kendo-base-gradient: null;
|
|
5749
|
+
$kendo-hover-bg: k-color( base-hover );
|
|
5750
|
+
$kendo-hover-text: $kendo-base-text;
|
|
5751
|
+
$kendo-hover-border: $kendo-base-border;
|
|
5752
|
+
$kendo-hover-gradient: null;
|
|
5753
|
+
$kendo-selected-bg: $kendo-color-primary;
|
|
5754
|
+
$kendo-selected-text: $kendo-color-primary-contrast;
|
|
5755
|
+
$kendo-selected-border: k-color( primary );
|
|
5756
|
+
$kendo-selected-gradient: $kendo-base-gradient;
|
|
5757
|
+
$kendo-selected-hover-bg: k-color( primary-hover );
|
|
5758
|
+
$kendo-selected-hover-text: $kendo-selected-text;
|
|
5759
|
+
$kendo-selected-hover-border: k-color( primary-hover );
|
|
5760
|
+
$kendo-selected-hover-gradient: $kendo-base-gradient;
|
|
5761
|
+
$kendo-disabled-text: k-color( on-app-surface );
|
|
5762
|
+
$kendo-component-header-bg: $kendo-base-bg;
|
|
5763
|
+
$kendo-component-header-text: $kendo-base-text;
|
|
5764
|
+
$kendo-component-header-border: $kendo-base-border;
|
|
5765
|
+
$kendo-component-header-gradient: $kendo-base-gradient;
|
|
5766
|
+
$kendo-invalid-bg: null;
|
|
5767
|
+
$kendo-invalid-text: $kendo-color-error;
|
|
5768
|
+
$kendo-invalid-border: $kendo-color-error;
|
|
5769
|
+
$kendo-invalid-shadow: null;
|
|
5770
|
+
|
|
5771
|
+
$kendo-theme-colors: (
|
|
5772
|
+
"primary": $kendo-color-primary,
|
|
5773
|
+
"secondary": $kendo-color-secondary,
|
|
5774
|
+
"tertiary": $kendo-color-tertiary,
|
|
5775
|
+
"info": $kendo-color-info,
|
|
5776
|
+
"success": $kendo-color-success,
|
|
5777
|
+
"warning": $kendo-color-warning,
|
|
5778
|
+
"error": $kendo-color-error,
|
|
5779
|
+
"dark": $kendo-color-dark,
|
|
5780
|
+
"light": $kendo-color-light,
|
|
5781
|
+
"inverse": $kendo-color-inverse,
|
|
5782
|
+
);
|
|
5783
|
+
}
|
|
5784
|
+
|
|
5785
|
+
// #endregion
|
|
5786
|
+
|
|
5027
5787
|
// Expose
|
|
5028
5788
|
@include exports("kendo-core-styles") {
|
|
5029
5789
|
@include kendo-core--styles();
|
|
@@ -14829,11 +15589,19 @@ $kendo-message-box-link-text-decoration: underline !default;
|
|
|
14829
15589
|
|
|
14830
15590
|
@each $color-name, $color in $kendo-theme-colors {
|
|
14831
15591
|
.k-messagebox-#{$color-name} {
|
|
14832
|
-
@
|
|
14833
|
-
|
|
14834
|
-
|
|
14835
|
-
|
|
14836
|
-
|
|
15592
|
+
@if $color-name == "inverse" {
|
|
15593
|
+
@include fill(
|
|
15594
|
+
if($kendo-enable-color-system, k-color( dark-on-subtle ), k-color-level( $color, $kendo-message-box-text-level )),
|
|
15595
|
+
if($kendo-enable-color-system, k-color( dark-subtle ), k-color-level( $color, $kendo-message-box-bg-level )),
|
|
15596
|
+
if($kendo-enable-color-system, k-color( dark-hover ), k-color-level( $color, $kendo-message-box-border-level ))
|
|
15597
|
+
);
|
|
15598
|
+
} @else {
|
|
15599
|
+
@include fill(
|
|
15600
|
+
if($kendo-enable-color-system, k-color( #{$color-name}-on-subtle ), k-color-level( $color, $kendo-message-box-text-level )),
|
|
15601
|
+
if($kendo-enable-color-system, k-color( #{$color-name}-subtle ), k-color-level( $color, $kendo-message-box-bg-level )),
|
|
15602
|
+
if($kendo-enable-color-system, k-color( #{$color-name}-emphasis ), k-color-level( $color, $kendo-message-box-border-level ))
|
|
15603
|
+
);
|
|
15604
|
+
}
|
|
14837
15605
|
}
|
|
14838
15606
|
}
|
|
14839
15607
|
|
|
@@ -15498,7 +16266,7 @@ $kendo-checkbox-hover-border: null !default;
|
|
|
15498
16266
|
$kendo-checkbox-checked-bg: $kendo-color-primary !default;
|
|
15499
16267
|
/// The text color of the checked CheckBox.
|
|
15500
16268
|
/// @group checkbox
|
|
15501
|
-
$kendo-checkbox-checked-text: k-contrast-legacy( $kendo-checkbox-checked-bg ) !default;
|
|
16269
|
+
$kendo-checkbox-checked-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-checkbox-checked-bg )) !default;
|
|
15502
16270
|
/// The border color of the checked CheckBox.
|
|
15503
16271
|
/// @group checkbox
|
|
15504
16272
|
$kendo-checkbox-checked-border: $kendo-checkbox-checked-bg !default;
|
|
@@ -15524,7 +16292,7 @@ $kendo-checkbox-focus-shadow: 0 0 0 2px rgba( black, .06 ) !default;
|
|
|
15524
16292
|
$kendo-checkbox-focus-checked-border: null !default;
|
|
15525
16293
|
/// The box shadow of the focused and checked CheckBox.
|
|
15526
16294
|
/// @group checkbox
|
|
15527
|
-
$kendo-checkbox-focus-checked-shadow: 0 0 0 2px rgba( $kendo-color-primary, .3 ) !default;
|
|
16295
|
+
$kendo-checkbox-focus-checked-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( primary, true ), .3 ), rgba( $kendo-color-primary, .3 )) !default;
|
|
15528
16296
|
|
|
15529
16297
|
/// The background color of the disabled CheckBox.
|
|
15530
16298
|
/// @group checkbox
|
|
@@ -16324,7 +17092,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
16324
17092
|
&.k-selected:hover,
|
|
16325
17093
|
&.k-selected.k-hover {
|
|
16326
17094
|
color: $kendo-list-item-selected-text;
|
|
16327
|
-
background-color: k-color-shade( $kendo-list-item-selected-bg );
|
|
17095
|
+
background-color: if($kendo-enable-color-system, k-color( primary-hover ), k-color-shade( $kendo-list-item-selected-bg ));
|
|
16328
17096
|
}
|
|
16329
17097
|
}
|
|
16330
17098
|
|
|
@@ -17275,7 +18043,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
|
|
|
17275
18043
|
|
|
17276
18044
|
/// Background color of alternating rows in table.
|
|
17277
18045
|
/// @group table
|
|
17278
|
-
$kendo-table-alt-row-bg: k-try-shade( $kendo-table-bg, .5 ) !default;
|
|
18046
|
+
$kendo-table-alt-row-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), k-try-shade( $kendo-table-bg, .5 )) !default;
|
|
17279
18047
|
/// Text color of alternating rows in table.
|
|
17280
18048
|
/// @group table
|
|
17281
18049
|
$kendo-table-alt-row-text: null !default;
|
|
@@ -17286,7 +18054,7 @@ $kendo-table-alt-row-border: null !default;
|
|
|
17286
18054
|
|
|
17287
18055
|
/// Background color of hovered rows in table.
|
|
17288
18056
|
/// @group table
|
|
17289
|
-
$kendo-table-hover-bg: k-try-shade( $kendo-table-bg, 1 ) !default;
|
|
18057
|
+
$kendo-table-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .11 ), k-try-shade( $kendo-table-bg, 1 )) !default;
|
|
17290
18058
|
/// Text color of hovered rows in table.
|
|
17291
18059
|
/// @group table
|
|
17292
18060
|
$kendo-table-hover-text: null !default;
|
|
@@ -17311,7 +18079,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
|
17311
18079
|
|
|
17312
18080
|
/// Background color of selected rows in table.
|
|
17313
18081
|
/// @group table
|
|
17314
|
-
$kendo-table-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
18082
|
+
$kendo-table-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
17315
18083
|
/// Text color of selected rows in table.
|
|
17316
18084
|
/// @group table
|
|
17317
18085
|
$kendo-table-selected-text: null !default;
|
|
@@ -18015,7 +18783,7 @@ $kendo-avatar-theme-colors: $kendo-theme-colors !default;
|
|
|
18015
18783
|
@each $name, $color in $kendo-avatar-theme-colors {
|
|
18016
18784
|
.k-avatar-solid-#{$name} {
|
|
18017
18785
|
border-color: $color;
|
|
18018
|
-
color: k-contrast-legacy( $color );
|
|
18786
|
+
color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
|
|
18019
18787
|
background-color: $color;
|
|
18020
18788
|
}
|
|
18021
18789
|
}
|
|
@@ -18368,7 +19136,7 @@ $kendo-badge-sizes: (
|
|
|
18368
19136
|
@each $name, $color in $kendo-theme-colors {
|
|
18369
19137
|
.k-badge-solid-#{$name} {
|
|
18370
19138
|
border-color: $color;
|
|
18371
|
-
color: k-contrast-legacy( $color );
|
|
19139
|
+
color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
|
|
18372
19140
|
background-color: $color;
|
|
18373
19141
|
}
|
|
18374
19142
|
}
|
|
@@ -18568,7 +19336,7 @@ $kendo-button-bg: $kendo-base-bg !default;
|
|
|
18568
19336
|
$kendo-button-text: $kendo-base-text !default;
|
|
18569
19337
|
/// The base border color of the Button.
|
|
18570
19338
|
/// @group button
|
|
18571
|
-
$kendo-button-border: k-try-shade( $kendo-button-bg, 2 ) !default;
|
|
19339
|
+
$kendo-button-border: if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-button-bg, 2 )) !default;
|
|
18572
19340
|
/// The base background gradient of the Button.
|
|
18573
19341
|
/// @group button
|
|
18574
19342
|
$kendo-button-gradient: $kendo-base-gradient !default;
|
|
@@ -18578,13 +19346,13 @@ $kendo-button-shadow: null !default;
|
|
|
18578
19346
|
|
|
18579
19347
|
/// The base background of the hovered Button.
|
|
18580
19348
|
/// @group button
|
|
18581
|
-
$kendo-button-hover-bg: k-try-shade( $kendo-button-bg, 1 ) !default;
|
|
19349
|
+
$kendo-button-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-button-bg, 1 )) !default;
|
|
18582
19350
|
/// The base text color of the hovered Button.
|
|
18583
19351
|
/// @group button
|
|
18584
19352
|
$kendo-button-hover-text: null !default;
|
|
18585
19353
|
/// The base border color of the hovered Button.
|
|
18586
19354
|
/// @group button
|
|
18587
|
-
$kendo-button-hover-border: k-try-shade( $kendo-button-bg, 3 ) !default;
|
|
19355
|
+
$kendo-button-hover-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 3 )) !default;
|
|
18588
19356
|
/// The base background gradient of the hovered Button.
|
|
18589
19357
|
/// @group button
|
|
18590
19358
|
$kendo-button-hover-gradient: null !default;
|
|
@@ -18594,13 +19362,13 @@ $kendo-button-hover-shadow: null !default;
|
|
|
18594
19362
|
|
|
18595
19363
|
/// The base background color of the active Button.
|
|
18596
19364
|
/// @group button
|
|
18597
|
-
$kendo-button-active-bg: k-try-shade( $kendo-button-bg, 2 ) !default;
|
|
19365
|
+
$kendo-button-active-bg: if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-button-bg, 2 )) !default;
|
|
18598
19366
|
/// The base text color of the active Button.
|
|
18599
19367
|
/// @group button
|
|
18600
19368
|
$kendo-button-active-text: null !default;
|
|
18601
19369
|
/// The base border color of the active Button.
|
|
18602
19370
|
/// @group button
|
|
18603
|
-
$kendo-button-active-border: k-try-shade( $kendo-button-bg, 4 ) !default;
|
|
19371
|
+
$kendo-button-active-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 4 )) !default;
|
|
18604
19372
|
/// The base background gradient of the active Button.
|
|
18605
19373
|
/// @group button
|
|
18606
19374
|
$kendo-button-active-gradient: null !default;
|
|
@@ -18613,7 +19381,7 @@ $kendo-button-active-shadow: null !default;
|
|
|
18613
19381
|
$kendo-button-selected-bg: $kendo-color-primary !default;
|
|
18614
19382
|
/// The text color of the selected Button.
|
|
18615
19383
|
/// @group button
|
|
18616
|
-
$kendo-button-selected-text: k-contrast-legacy( $kendo-button-selected-bg ) !default;
|
|
19384
|
+
$kendo-button-selected-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-button-selected-bg )) !default;
|
|
18617
19385
|
/// The border color of the selected Button.
|
|
18618
19386
|
/// @group button
|
|
18619
19387
|
$kendo-button-selected-border: $kendo-button-selected-bg !default;
|
|
@@ -18638,7 +19406,7 @@ $kendo-button-focus-border: null !default;
|
|
|
18638
19406
|
$kendo-button-focus-gradient: null !default;
|
|
18639
19407
|
/// The base shadow of the focused Button.
|
|
18640
19408
|
/// @group button
|
|
18641
|
-
$kendo-button-focus-shadow: 0 0 4px 0 rgba( $kendo-button-border, .75 ) !default;
|
|
19409
|
+
$kendo-button-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system, rgba( k-color( border, true ), .75), rgba( $kendo-button-border, .75 )) !default;
|
|
18642
19410
|
|
|
18643
19411
|
/// The base background of the disabled Button.
|
|
18644
19412
|
/// @group button
|
|
@@ -18825,7 +19593,7 @@ $kendo-chip-solid-text: $kendo-button-text !default;
|
|
|
18825
19593
|
$kendo-chip-solid-border: $kendo-button-border !default;
|
|
18826
19594
|
/// The base shadow of the solid Chip.
|
|
18827
19595
|
/// @group chip
|
|
18828
|
-
$kendo-chip-solid-shadow: 0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) ) !default;
|
|
19596
|
+
$kendo-chip-solid-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .16 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )) !default;
|
|
18829
19597
|
/// The base gradient of the solid Chip.
|
|
18830
19598
|
/// @group chip
|
|
18831
19599
|
$kendo-chip-solid-gradient: $kendo-button-gradient !default;
|
|
@@ -18862,14 +19630,14 @@ $kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
|
18862
19630
|
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
18863
19631
|
/// The base shadow of the outline Chip.
|
|
18864
19632
|
/// @group chip
|
|
18865
|
-
$kendo-chip-outline-shadow: 0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) ) !default;
|
|
19633
|
+
$kendo-chip-outline-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .16 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )) !default;
|
|
18866
19634
|
|
|
18867
19635
|
/// The base background color of the hovered outline Chip.
|
|
18868
19636
|
/// @group chip
|
|
18869
19637
|
$kendo-chip-outline-hover-bg: $kendo-chip-outline-text !default;
|
|
18870
19638
|
/// The base text color of the hovered outline Chip.
|
|
18871
19639
|
/// @group chip
|
|
18872
|
-
$kendo-chip-outline-hover-text: k-contrast-legacy( $kendo-chip-outline-hover-bg ) !default;
|
|
19640
|
+
$kendo-chip-outline-hover-text: if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-legacy( $kendo-chip-outline-hover-bg )) !default;
|
|
18873
19641
|
|
|
18874
19642
|
/// The base background color of the selected outline Chip.
|
|
18875
19643
|
/// @group chip
|
|
@@ -19098,24 +19866,24 @@ $kendo-chip-list-sizes: (
|
|
|
19098
19866
|
}
|
|
19099
19867
|
} @else {
|
|
19100
19868
|
@include fill(
|
|
19101
|
-
k-try-shade( $color, 65% ),
|
|
19102
|
-
k-try-tint( $color, 80% ),
|
|
19103
|
-
k-try-tint( $color, 25% ),
|
|
19869
|
+
if($kendo-enable-color-system, k-color( #{$name}-on-subtle ), k-try-shade( $color, 65% )),
|
|
19870
|
+
if($kendo-enable-color-system, k-color( #{$name}-subtle ), k-try-tint( $color, 80% )),
|
|
19871
|
+
if($kendo-enable-color-system, k-color( #{$name}-emphasis ), k-try-tint( $color, 25% )),
|
|
19104
19872
|
$kendo-chip-solid-gradient
|
|
19105
19873
|
);
|
|
19106
19874
|
|
|
19107
19875
|
&:focus,
|
|
19108
19876
|
&.k-focus {
|
|
19109
|
-
@include focus-indicator( 0 0 0 2px rgba( $color, .16 ) );
|
|
19877
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( $name, true ), .16 ), rgba( $color, .16 )) );
|
|
19110
19878
|
}
|
|
19111
19879
|
|
|
19112
19880
|
&:hover,
|
|
19113
19881
|
&.k-hover {
|
|
19114
|
-
@include fill( $bg: k-try-tint($color, 65% ) );
|
|
19882
|
+
@include fill( $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-hover ), k-try-tint($color, 65% )) );
|
|
19115
19883
|
}
|
|
19116
19884
|
|
|
19117
19885
|
&.k-selected {
|
|
19118
|
-
@include fill( $bg: k-try-tint( $color, 50% ) );
|
|
19886
|
+
@include fill( $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-active ), k-try-tint( $color, 50% )) );
|
|
19119
19887
|
}
|
|
19120
19888
|
}
|
|
19121
19889
|
}
|
|
@@ -19153,54 +19921,56 @@ $kendo-chip-list-sizes: (
|
|
|
19153
19921
|
}
|
|
19154
19922
|
} @else if ($name == "warning") {
|
|
19155
19923
|
@include fill(
|
|
19156
|
-
if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text),
|
|
19157
|
-
if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white ),
|
|
19158
|
-
if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color)
|
|
19924
|
+
if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
|
|
19925
|
+
if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
|
|
19926
|
+
if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
|
|
19159
19927
|
);
|
|
19160
19928
|
|
|
19161
19929
|
&:focus,
|
|
19162
19930
|
&.k-focus {
|
|
19163
|
-
@include focus-indicator( 0 0 0 2px if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 )) );
|
|
19931
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( $name, true ), .16 ), if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 ))) );
|
|
19164
19932
|
}
|
|
19165
19933
|
|
|
19166
19934
|
&:hover,
|
|
19167
19935
|
&.k-hover {
|
|
19168
19936
|
@include fill(
|
|
19169
|
-
$color: if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) )
|
|
19170
|
-
$bg: if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color)
|
|
19937
|
+
$color: if($kendo-enable-color-system, k-color( on-#{$name} ), if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) )),
|
|
19938
|
+
$bg: if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
|
|
19171
19939
|
);
|
|
19172
19940
|
}
|
|
19173
19941
|
|
|
19174
19942
|
&.k-selected {
|
|
19175
19943
|
@include fill(
|
|
19176
|
-
$color: if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) )
|
|
19177
|
-
$bg: if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color)
|
|
19944
|
+
$color: if($kendo-enable-color-system, k-color( on-#{$name} ), if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) )),
|
|
19945
|
+
$bg: if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
|
|
19178
19946
|
);
|
|
19179
19947
|
}
|
|
19180
19948
|
} @else {
|
|
19181
19949
|
@include fill(
|
|
19182
|
-
k-try-shade( $color, 25% ),
|
|
19183
|
-
if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white ),
|
|
19184
|
-
k-try-shade( $color, 25% )
|
|
19950
|
+
if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% )),
|
|
19951
|
+
if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
|
|
19952
|
+
if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% ))
|
|
19185
19953
|
);
|
|
19186
19954
|
|
|
19187
19955
|
&:focus,
|
|
19188
19956
|
&.k-focus {
|
|
19189
|
-
@include focus-indicator( 0 0 0 2px if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 )) );
|
|
19957
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( $name, true ), .16 ), if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 ))) );
|
|
19190
19958
|
}
|
|
19191
19959
|
|
|
19192
19960
|
&:hover,
|
|
19193
19961
|
&.k-hover {
|
|
19194
19962
|
@include fill(
|
|
19195
|
-
$color
|
|
19196
|
-
$
|
|
19963
|
+
if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( k-try-shade( $color, 25% ) )),
|
|
19964
|
+
if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, 25% )),
|
|
19965
|
+
if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, 25% ))
|
|
19197
19966
|
);
|
|
19198
19967
|
}
|
|
19199
19968
|
|
|
19200
19969
|
&.k-selected {
|
|
19201
19970
|
@include fill(
|
|
19202
|
-
$color
|
|
19203
|
-
$
|
|
19971
|
+
if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( k-try-shade( $color, 25% ) )),
|
|
19972
|
+
if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 25% )),
|
|
19973
|
+
if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 25% ))
|
|
19204
19974
|
);
|
|
19205
19975
|
}
|
|
19206
19976
|
}
|
|
@@ -20205,7 +20975,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
|
|
|
20205
20975
|
|
|
20206
20976
|
/// The background color of the Skeleton item.
|
|
20207
20977
|
/// @group skeleton
|
|
20208
|
-
$kendo-skeleton-item-bg: rgba( $kendo-color-inverse, .2 ) !default;
|
|
20978
|
+
$kendo-skeleton-item-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 )) !default;
|
|
20209
20979
|
/// The background color of the Skeleton wave animation.
|
|
20210
20980
|
/// @group skeleton
|
|
20211
20981
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
@@ -20896,17 +21666,17 @@ $_kendo-module-meta: (
|
|
|
20896
21666
|
|
|
20897
21667
|
@each $name, $color in $kendo-button-theme-colors {
|
|
20898
21668
|
@if ($name != "base") {
|
|
20899
|
-
$_button-text: k-contrast-legacy( $color );
|
|
20900
|
-
$_button-bg: if( $kendo-solid-button-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-bg-amount ), null );
|
|
20901
|
-
$_button-border: if( $kendo-solid-button-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-border-amount ), null );
|
|
21669
|
+
$_button-text: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
|
|
21670
|
+
$_button-bg: if($kendo-enable-color-system, k-color( $name ), if( $kendo-solid-button-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-bg-amount ), null ));
|
|
21671
|
+
$_button-border: if($kendo-enable-color-system, k-color( $name ), if( $kendo-solid-button-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-border-amount ), null ));
|
|
20902
21672
|
|
|
20903
21673
|
$_button-hover-text: null;
|
|
20904
|
-
$_button-hover-bg: if( $kendo-solid-button-hover-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-hover-shade-bg-amount ), null );
|
|
20905
|
-
$_button-hover-border: if( $kendo-solid-button-hover-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-hover-shade-border-amount ), null );
|
|
21674
|
+
$_button-hover-bg: if($kendo-enable-color-system, k-color( #{$name}-hover ), if( $kendo-solid-button-hover-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-hover-shade-bg-amount ), null ));
|
|
21675
|
+
$_button-hover-border: if($kendo-enable-color-system, k-color( #{$name}-hover ), if( $kendo-solid-button-hover-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-hover-shade-border-amount ), null ));
|
|
20906
21676
|
|
|
20907
21677
|
$_button-active-text: null;
|
|
20908
|
-
$_button-active-bg: if( $kendo-solid-button-active-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-active-shade-bg-amount ), null );
|
|
20909
|
-
$_button-active-border: if( $kendo-solid-button-active-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-active-shade-border-amount ), null );
|
|
21678
|
+
$_button-active-bg: if($kendo-enable-color-system, k-color( #{$name}-active ), if( $kendo-solid-button-active-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-active-shade-bg-amount ), null ));
|
|
21679
|
+
$_button-active-border: if($kendo-enable-color-system, k-color( #{$name}-active ), if( $kendo-solid-button-active-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-active-shade-border-amount ), null ));
|
|
20910
21680
|
|
|
20911
21681
|
.k-button-solid-#{$name} {
|
|
20912
21682
|
@include fill(
|
|
@@ -20930,7 +21700,7 @@ $_kendo-module-meta: (
|
|
|
20930
21700
|
&:focus,
|
|
20931
21701
|
&.k-focus {
|
|
20932
21702
|
@if ( $kendo-solid-button-shadow ) {
|
|
20933
|
-
@include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread rgba( $_button-border, $kendo-solid-button-shadow-opacity ), true, true );
|
|
21703
|
+
@include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread if($kendo-enable-color-system, rgba( k-color( $name, true ), $kendo-solid-button-shadow-opacity ), rgba( $_button-border, $kendo-solid-button-shadow-opacity )), true, true );
|
|
20934
21704
|
}
|
|
20935
21705
|
}
|
|
20936
21706
|
|
|
@@ -20974,44 +21744,72 @@ $_kendo-module-meta: (
|
|
|
20974
21744
|
.k-button-outline-#{$name} {
|
|
20975
21745
|
@include box-shadow( none );
|
|
20976
21746
|
border-color: currentColor;
|
|
20977
|
-
color: $color;
|
|
21747
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
|
|
20978
21748
|
background-color: transparent;
|
|
20979
21749
|
|
|
20980
21750
|
// Hover state
|
|
20981
21751
|
&:hover,
|
|
20982
21752
|
&.k-hover {
|
|
20983
|
-
@
|
|
20984
|
-
|
|
20985
|
-
|
|
20986
|
-
|
|
20987
|
-
|
|
21753
|
+
@if $name == "base" {
|
|
21754
|
+
@include fill(
|
|
21755
|
+
if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
|
|
21756
|
+
$color,
|
|
21757
|
+
$color
|
|
21758
|
+
);
|
|
21759
|
+
} @else {
|
|
21760
|
+
@include fill(
|
|
21761
|
+
if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
|
|
21762
|
+
$color,
|
|
21763
|
+
$color
|
|
21764
|
+
);
|
|
21765
|
+
}
|
|
20988
21766
|
}
|
|
20989
21767
|
|
|
20990
21768
|
// Focus state
|
|
20991
21769
|
&:focus,
|
|
20992
21770
|
&.k-focus {
|
|
20993
21771
|
@if $kendo-outline-button-shadow {
|
|
20994
|
-
@
|
|
21772
|
+
@if $name == "base" {
|
|
21773
|
+
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), $kendo-outline-button-shadow-opacity ), rgba( $color, $kendo-outline-button-shadow-opacity )), true, true );
|
|
21774
|
+
} @else {
|
|
21775
|
+
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system, rgba( k-color( $name, true ), $kendo-outline-button-shadow-opacity ), rgba( $color, $kendo-outline-button-shadow-opacity )), true, true );
|
|
21776
|
+
}
|
|
20995
21777
|
}
|
|
20996
21778
|
}
|
|
20997
21779
|
|
|
20998
21780
|
// Active state
|
|
20999
21781
|
&:active,
|
|
21000
21782
|
&.k-active {
|
|
21001
|
-
@
|
|
21002
|
-
|
|
21003
|
-
|
|
21004
|
-
|
|
21005
|
-
|
|
21783
|
+
@if $name == "base" {
|
|
21784
|
+
@include fill(
|
|
21785
|
+
if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
|
|
21786
|
+
$color,
|
|
21787
|
+
$color
|
|
21788
|
+
);
|
|
21789
|
+
} @else {
|
|
21790
|
+
@include fill(
|
|
21791
|
+
if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
|
|
21792
|
+
$color,
|
|
21793
|
+
$color
|
|
21794
|
+
);
|
|
21795
|
+
}
|
|
21006
21796
|
}
|
|
21007
21797
|
|
|
21008
21798
|
// Selected
|
|
21009
21799
|
&.k-selected {
|
|
21010
|
-
@
|
|
21011
|
-
|
|
21012
|
-
|
|
21013
|
-
|
|
21014
|
-
|
|
21800
|
+
@if $name == "base" {
|
|
21801
|
+
@include fill(
|
|
21802
|
+
if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
|
|
21803
|
+
$color,
|
|
21804
|
+
$color
|
|
21805
|
+
);
|
|
21806
|
+
} @else {
|
|
21807
|
+
@include fill(
|
|
21808
|
+
if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
|
|
21809
|
+
$color,
|
|
21810
|
+
$color
|
|
21811
|
+
);
|
|
21812
|
+
}
|
|
21015
21813
|
}
|
|
21016
21814
|
|
|
21017
21815
|
// Disabled state
|
|
@@ -21045,26 +21843,42 @@ $_kendo-module-meta: (
|
|
|
21045
21843
|
// Hover
|
|
21046
21844
|
&:hover,
|
|
21047
21845
|
&.k-hover {
|
|
21048
|
-
|
|
21846
|
+
@if $name == "base" {
|
|
21847
|
+
color: if($kendo-enable-color-system, $kendo-base-text, k-try-shade( $color, 2 ));
|
|
21848
|
+
} @else {
|
|
21849
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, 2 ));
|
|
21850
|
+
}
|
|
21049
21851
|
}
|
|
21050
21852
|
|
|
21051
21853
|
// Focus
|
|
21052
21854
|
&:focus,
|
|
21053
21855
|
&.k-focus {
|
|
21054
21856
|
@if ( $kendo-link-button-shadow ) {
|
|
21055
|
-
@
|
|
21857
|
+
@if $name == "base" {
|
|
21858
|
+
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), $kendo-link-button-shadow-opacity ), rgba( $color, $kendo-link-button-shadow-opacity )), true, true );
|
|
21859
|
+
} @else {
|
|
21860
|
+
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system, rgba( k-color( $name, true ), $kendo-link-button-shadow-opacity ), rgba( $color, $kendo-link-button-shadow-opacity )), true, true );
|
|
21861
|
+
}
|
|
21056
21862
|
}
|
|
21057
21863
|
}
|
|
21058
21864
|
|
|
21059
21865
|
// Active
|
|
21060
21866
|
&:active,
|
|
21061
21867
|
&.k-active {
|
|
21062
|
-
|
|
21868
|
+
@if $name == "base" {
|
|
21869
|
+
color: if($kendo-enable-color-system, $kendo-base-text, k-try-shade( $color, 2 ));
|
|
21870
|
+
} @else {
|
|
21871
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 2 ));
|
|
21872
|
+
}
|
|
21063
21873
|
}
|
|
21064
21874
|
|
|
21065
21875
|
// Selected
|
|
21066
21876
|
&.k-selected {
|
|
21067
|
-
|
|
21877
|
+
@if $name == "base" {
|
|
21878
|
+
color: if($kendo-enable-color-system, $kendo-base-text, k-try-shade( $color, 2 ));
|
|
21879
|
+
} @else {
|
|
21880
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 2 ));
|
|
21881
|
+
}
|
|
21068
21882
|
}
|
|
21069
21883
|
|
|
21070
21884
|
// Disabled state
|
|
@@ -21110,7 +21924,6 @@ $_kendo-module-meta: (
|
|
|
21110
21924
|
@mixin kendo-button--theme() {
|
|
21111
21925
|
@include kendo-button--theme-base();
|
|
21112
21926
|
}
|
|
21113
|
-
|
|
21114
21927
|
// #endregion
|
|
21115
21928
|
|
|
21116
21929
|
|
|
@@ -21219,7 +22032,7 @@ $kendo-menu-item-expanded-text: $kendo-component-text !default;
|
|
|
21219
22032
|
$kendo-menu-item-expanded-border: null !default;
|
|
21220
22033
|
$kendo-menu-item-expanded-gradient: null !default;
|
|
21221
22034
|
|
|
21222
|
-
$kendo-menu-item-focus-shadow: inset 0 0 3px 1px rgba( $kendo-menu-text, .25 ) !default;
|
|
22035
|
+
$kendo-menu-item-focus-shadow: inset 0 0 3px 1px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .25 ), rgba( $kendo-menu-text, .25 )) !default;
|
|
21223
22036
|
|
|
21224
22037
|
$kendo-menu-separator-spacing: k-map-get( $kendo-spacing, 1 ) !default;
|
|
21225
22038
|
|
|
@@ -22731,7 +23544,7 @@ $kendo-input-outline-bg: null !default;
|
|
|
22731
23544
|
$kendo-input-outline-text: null !default;
|
|
22732
23545
|
/// The border color of the outline Input components.
|
|
22733
23546
|
/// @group input
|
|
22734
|
-
$kendo-input-outline-border: rgba( $kendo-button-text, .5) !default;
|
|
23547
|
+
$kendo-input-outline-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-button-text, .5)) !default;
|
|
22735
23548
|
|
|
22736
23549
|
/// The background color of the outline hovered Input components.
|
|
22737
23550
|
/// @group input
|
|
@@ -22741,7 +23554,7 @@ $kendo-input-outline-hover-bg: null !default;
|
|
|
22741
23554
|
$kendo-input-outline-hover-text: null !default;
|
|
22742
23555
|
/// The border color of the outline hovered Input components.
|
|
22743
23556
|
/// @group input
|
|
22744
|
-
$kendo-input-outline-hover-border: rgba( $kendo-button-text, .8) !default;
|
|
23557
|
+
$kendo-input-outline-hover-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .8 ), rgba( $kendo-button-text, .8)) !default;
|
|
22745
23558
|
|
|
22746
23559
|
/// The background color of the outline focused Input components.
|
|
22747
23560
|
/// @group input
|
|
@@ -22932,14 +23745,14 @@ $kendo-picker-outline-bg: null !default;
|
|
|
22932
23745
|
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
22933
23746
|
/// The border color of the outline Picker components.
|
|
22934
23747
|
/// @group picker
|
|
22935
|
-
$kendo-picker-outline-border: rgba( $kendo-picker-outline-text, .5) !default;
|
|
23748
|
+
$kendo-picker-outline-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-picker-outline-text, .5)) !default;
|
|
22936
23749
|
|
|
22937
23750
|
/// The background color of the outline hovered Picker components.
|
|
22938
23751
|
/// @group picker
|
|
22939
23752
|
$kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
|
|
22940
23753
|
/// The text color of the outline hovered Picker components.
|
|
22941
23754
|
/// @group picker
|
|
22942
|
-
$kendo-picker-outline-hover-text: k-contrast-color( $kendo-picker-outline-hover-bg ) !default;
|
|
23755
|
+
$kendo-picker-outline-hover-text: if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-color( $kendo-picker-outline-hover-bg )) !default;
|
|
22943
23756
|
/// The border color of the outline hovered Picker components.
|
|
22944
23757
|
/// @group picker
|
|
22945
23758
|
$kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
|
|
@@ -22979,13 +23792,13 @@ $kendo-picker-flat-border: $kendo-button-border !default;
|
|
|
22979
23792
|
|
|
22980
23793
|
/// The background color of the flat hovered Picker components.
|
|
22981
23794
|
/// @group picker
|
|
22982
|
-
$kendo-picker-flat-hover-bg: rgba( $kendo-button-text, .04 ) !default;
|
|
23795
|
+
$kendo-picker-flat-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .04 ), rgba( $kendo-button-text, .04 )) !default;
|
|
22983
23796
|
/// The text color of the flat hovered Picker components.
|
|
22984
23797
|
/// @group picker
|
|
22985
23798
|
$kendo-picker-flat-hover-text: null !default;
|
|
22986
23799
|
/// The border color of the flat hovered Picker components.
|
|
22987
23800
|
/// @group picker
|
|
22988
|
-
$kendo-picker-flat-hover-border: rgba( $kendo-button-border, .16 ) !default;
|
|
23801
|
+
$kendo-picker-flat-hover-border: if($kendo-enable-color-system, rgba( k-color( border, true ), .16 ), rgba( $kendo-button-border, .16 )) !default;
|
|
22989
23802
|
|
|
22990
23803
|
/// The background color of the flat focused Picker components.
|
|
22991
23804
|
/// @group picker
|
|
@@ -23052,10 +23865,10 @@ $kendo-tooltip-callout-size: 6px !default;
|
|
|
23052
23865
|
|
|
23053
23866
|
/// The default background of the Tooltip.
|
|
23054
23867
|
/// @group tooltip
|
|
23055
|
-
$kendo-tooltip-bg: rgba( k-contrast-color( $kendo-body-bg ), .75 ) !default;
|
|
23868
|
+
$kendo-tooltip-bg: if($kendo-enable-color-system, k-color( on-app-surface ), rgba( k-contrast-color( $kendo-body-bg ), .75 )) !default;
|
|
23056
23869
|
/// The default text color of the Tooltip.
|
|
23057
23870
|
/// @group tooltip
|
|
23058
|
-
$kendo-tooltip-text: k-contrast-color( $kendo-tooltip-bg ) !default;
|
|
23871
|
+
$kendo-tooltip-text: if($kendo-enable-color-system, k-color( app-surface ), k-contrast-color( $kendo-tooltip-bg )) !default;
|
|
23059
23872
|
/// The default border color of the Tooltip.
|
|
23060
23873
|
/// @group tooltip
|
|
23061
23874
|
$kendo-tooltip-border: $kendo-tooltip-bg !default;
|
|
@@ -23069,7 +23882,7 @@ $kendo-tooltip-shadow: k-elevation(2) !default;
|
|
|
23069
23882
|
|
|
23070
23883
|
@each $name, $color in $colors {
|
|
23071
23884
|
$_theme: k-map-merge(( $name: (
|
|
23072
|
-
color: k-contrast-legacy( $color ),
|
|
23885
|
+
color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
|
|
23073
23886
|
background-color: $color,
|
|
23074
23887
|
border: $color,
|
|
23075
23888
|
)), $_theme );
|
|
@@ -23084,6 +23897,7 @@ $kendo-tooltip-theme-colors: $kendo-theme-colors !default;
|
|
|
23084
23897
|
/// The generated theme colors map for the Tooltip.
|
|
23085
23898
|
/// @group tooltip
|
|
23086
23899
|
$kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
|
|
23900
|
+
|
|
23087
23901
|
// #endregion
|
|
23088
23902
|
// #region @import "../typography/_variables.scss"; -> scss/typography/_variables.scss
|
|
23089
23903
|
// File already imported_once. Skipping output.
|
|
@@ -23353,7 +24167,7 @@ $kendo-fieldset-border: null !default;
|
|
|
23353
24167
|
$kendo-fieldset-legend-bg: null !default;
|
|
23354
24168
|
/// The text color of the Form legend.
|
|
23355
24169
|
/// @group form
|
|
23356
|
-
$kendo-fieldset-legend-text: k-try-shade( $kendo-body-text, 2 ) !default;
|
|
24170
|
+
$kendo-fieldset-legend-text: if($kendo-enable-color-system, k-color( on-app-surface ), k-try-shade( $kendo-body-text, 2 )) !default;
|
|
23357
24171
|
/// The border color of the Form legend.
|
|
23358
24172
|
/// @group form
|
|
23359
24173
|
$kendo-fieldset-legend-border: null !default;
|
|
@@ -24872,9 +25686,7 @@ $_kendo-module-meta: (
|
|
|
24872
25686
|
}
|
|
24873
25687
|
|
|
24874
25688
|
// Valid
|
|
24875
|
-
&.k-valid
|
|
24876
|
-
&.ng-valid.ng-touched,
|
|
24877
|
-
&.ng-valid.ng-dirty {
|
|
25689
|
+
&.k-valid {
|
|
24878
25690
|
@include fill( $border: $kendo-input-valid-border );
|
|
24879
25691
|
|
|
24880
25692
|
.k-input-validation-icon {
|
|
@@ -24980,9 +25792,7 @@ $_kendo-module-meta: (
|
|
|
24980
25792
|
}
|
|
24981
25793
|
|
|
24982
25794
|
// Valid
|
|
24983
|
-
&.k-valid
|
|
24984
|
-
&.ng-valid.ng-touched,
|
|
24985
|
-
&.ng-valid.ng-dirty {
|
|
25795
|
+
&.k-valid {
|
|
24986
25796
|
@include fill( $border: $kendo-input-valid-border );
|
|
24987
25797
|
|
|
24988
25798
|
.k-input-validation-icon {
|
|
@@ -25083,9 +25893,7 @@ $_kendo-module-meta: (
|
|
|
25083
25893
|
}
|
|
25084
25894
|
|
|
25085
25895
|
// Valid
|
|
25086
|
-
&.k-valid
|
|
25087
|
-
&.ng-valid.ng-touched,
|
|
25088
|
-
&.ng-valid.ng-dirty {
|
|
25896
|
+
&.k-valid {
|
|
25089
25897
|
@include fill( $border: $kendo-input-valid-border );
|
|
25090
25898
|
|
|
25091
25899
|
.k-input-validation-icon {
|
|
@@ -25197,9 +26005,7 @@ $_kendo-module-meta: (
|
|
|
25197
26005
|
}
|
|
25198
26006
|
|
|
25199
26007
|
// Valid
|
|
25200
|
-
&.k-valid
|
|
25201
|
-
&.ng-valid.ng-touched,
|
|
25202
|
-
&.ng-valid.ng-dirty {
|
|
26008
|
+
&.k-valid {
|
|
25203
26009
|
@include fill( $border: $kendo-input-valid-border );
|
|
25204
26010
|
|
|
25205
26011
|
.k-input-validation-icon {
|
|
@@ -25287,9 +26093,7 @@ $_kendo-module-meta: (
|
|
|
25287
26093
|
}
|
|
25288
26094
|
|
|
25289
26095
|
// Valid
|
|
25290
|
-
&.k-valid
|
|
25291
|
-
&.ng-valid.ng-touched,
|
|
25292
|
-
&.ng-valid.ng-dirty {
|
|
26096
|
+
&.k-valid {
|
|
25293
26097
|
@include fill( $border: $kendo-input-valid-border );
|
|
25294
26098
|
|
|
25295
26099
|
.k-input-validation-icon {
|
|
@@ -25401,9 +26205,7 @@ $_kendo-module-meta: (
|
|
|
25401
26205
|
}
|
|
25402
26206
|
|
|
25403
26207
|
// Valid
|
|
25404
|
-
&.k-valid
|
|
25405
|
-
&.ng-valid.ng-touched,
|
|
25406
|
-
&.ng-valid.ng-dirty {
|
|
26208
|
+
&.k-valid {
|
|
25407
26209
|
@include fill( $border: $kendo-input-valid-border );
|
|
25408
26210
|
|
|
25409
26211
|
.k-input-validation-icon {
|
|
@@ -26489,7 +27291,7 @@ $kendo-progressbar-line-height: 1 !default;
|
|
|
26489
27291
|
|
|
26490
27292
|
/// The background color of the ProgressBar.
|
|
26491
27293
|
/// @group progressbar
|
|
26492
|
-
$kendo-progressbar-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
|
|
27294
|
+
$kendo-progressbar-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 1 )) !default;
|
|
26493
27295
|
/// The text color of the ProgressBar.
|
|
26494
27296
|
/// @group progressbar
|
|
26495
27297
|
$kendo-progressbar-text: $kendo-component-text !default;
|
|
@@ -26505,10 +27307,10 @@ $kendo-progressbar-gradient: null !default;
|
|
|
26505
27307
|
$kendo-progressbar-value-bg: $kendo-color-primary !default;
|
|
26506
27308
|
/// The progress text color of the ProgressBar.
|
|
26507
27309
|
/// @group progressbar
|
|
26508
|
-
$kendo-progressbar-value-text: k-contrast-legacy( $kendo-progressbar-value-bg ) !default;
|
|
27310
|
+
$kendo-progressbar-value-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-progressbar-value-bg )) !default;
|
|
26509
27311
|
/// The progress border color of the ProgressBar.
|
|
26510
27312
|
/// @group progressbar
|
|
26511
|
-
$kendo-progressbar-value-border: k-try-shade( $kendo-progressbar-value-bg ) !default;
|
|
27313
|
+
$kendo-progressbar-value-border: if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-progressbar-value-bg )) !default;
|
|
26512
27314
|
/// The progress background gradient of the ProgressBar.
|
|
26513
27315
|
/// @group progressbar
|
|
26514
27316
|
$kendo-progressbar-value-gradient: null !default;
|
|
@@ -26829,7 +27631,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
26829
27631
|
|
|
26830
27632
|
.k-progressbar-indeterminate {
|
|
26831
27633
|
@include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
|
|
26832
|
-
@include striped-gradient( k-color-shade($kendo-progressbar-indeterminate-bg) );
|
|
27634
|
+
@include striped-gradient( if($kendo-enable-color-system, rgba( k-color( base-emphasis, true ), .55 ), k-color-shade($kendo-progressbar-indeterminate-bg)) );
|
|
26833
27635
|
background-size: $kendo-progressbar-height $kendo-progressbar-height;
|
|
26834
27636
|
animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
|
|
26835
27637
|
}
|
|
@@ -27521,28 +28323,28 @@ $kendo-slider-draghandle-active-scale: 1 !default;
|
|
|
27521
28323
|
$kendo-slider-draghandle-active-size: null !default;
|
|
27522
28324
|
|
|
27523
28325
|
$kendo-slider-draghandle-bg: $kendo-color-primary !default;
|
|
27524
|
-
$kendo-slider-draghandle-text: k-contrast-legacy( $kendo-color-primary ) !default;
|
|
27525
|
-
$kendo-slider-draghandle-border: k-try-shade( $kendo-color-primary, 2 ) !default;
|
|
28326
|
+
$kendo-slider-draghandle-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-color-primary )) !default;
|
|
28327
|
+
$kendo-slider-draghandle-border: if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-color-primary, 2 )) !default;
|
|
27526
28328
|
$kendo-slider-draghandle-gradient: null !default;
|
|
27527
28329
|
|
|
27528
|
-
$kendo-slider-draghandle-hover-bg: k-try-shade( $kendo-color-primary, 1 ) !default;
|
|
28330
|
+
$kendo-slider-draghandle-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-color-primary, 1 )) !default;
|
|
27529
28331
|
$kendo-slider-draghandle-hover-text: null !default;
|
|
27530
|
-
$kendo-slider-draghandle-hover-border: k-try-shade( $kendo-slider-draghandle-hover-bg, 2 ) !default;
|
|
28332
|
+
$kendo-slider-draghandle-hover-border: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-slider-draghandle-hover-bg, 2 )) !default;
|
|
27531
28333
|
$kendo-slider-draghandle-hover-gradient: null !default;
|
|
27532
28334
|
|
|
27533
|
-
$kendo-slider-draghandle-pressed-bg: k-try-shade( $kendo-color-primary, 2 ) !default;
|
|
28335
|
+
$kendo-slider-draghandle-pressed-bg: if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-color-primary, 2 )) !default;
|
|
27534
28336
|
$kendo-slider-draghandle-pressed-text: null !default;
|
|
27535
|
-
$kendo-slider-draghandle-pressed-border: k-try-shade( $kendo-slider-draghandle-pressed-bg, 2 ) !default;
|
|
28337
|
+
$kendo-slider-draghandle-pressed-border: if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-slider-draghandle-pressed-bg, 2 )) !default;
|
|
27536
28338
|
$kendo-slider-draghandle-pressed-gradient: null !default;
|
|
27537
28339
|
|
|
27538
|
-
$kendo-slider-draghandle-focus-shadow: 0 0 4px 0 rgba( $kendo-slider-draghandle-border, .75 ) !default;
|
|
28340
|
+
$kendo-slider-draghandle-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system, rgba( k-color( primary, true ), .75 ), rgba( $kendo-slider-draghandle-border, .75 )) !default;
|
|
27539
28341
|
|
|
27540
28342
|
$kendo-slider-transition-speed: .3s !default;
|
|
27541
28343
|
$kendo-slider-transition-function: ease-out !default;
|
|
27542
28344
|
$kendo-slider-draghandle-transition-speed: .4s !default;
|
|
27543
28345
|
$kendo-slider-draghandle-transition-function: cubic-bezier(.25, .8, .25, 1) !default;
|
|
27544
28346
|
|
|
27545
|
-
$kendo-slider-track-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
|
|
28347
|
+
$kendo-slider-track-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 1 )) !default;
|
|
27546
28348
|
$kendo-slider-selection-bg: $kendo-color-primary !default;
|
|
27547
28349
|
$kendo-slider-disabled-opacity: null !default;
|
|
27548
28350
|
|
|
@@ -28950,7 +29752,7 @@ $kendo-calendar-sizes: (
|
|
|
28950
29752
|
.k-calendar { // stylelint-disable-line
|
|
28951
29753
|
|
|
28952
29754
|
$kendo-calendar-range-gap: 1px !default;
|
|
28953
|
-
$kendo-calendar-range-bg: rgba( $kendo-calendar-cell-selected-bg, .25 );
|
|
29755
|
+
$kendo-calendar-range-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-calendar-cell-selected-bg, .25 ));
|
|
28954
29756
|
$kendo-calendar-range-split-size: 5px !default;
|
|
28955
29757
|
|
|
28956
29758
|
.k-range-start,
|
|
@@ -33607,7 +34409,7 @@ $kendo-switch-off-track-focus-border: null !default;
|
|
|
33607
34409
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
33608
34410
|
/// The ring around the track when the focused Switch is not checked.
|
|
33609
34411
|
/// @group switch
|
|
33610
|
-
$kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 ) !default;
|
|
34412
|
+
$kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .25 ) !default;
|
|
33611
34413
|
|
|
33612
34414
|
/// The background of the track when the disabled Switch is not checked.
|
|
33613
34415
|
/// @group switch
|
|
@@ -33624,7 +34426,7 @@ $kendo-switch-off-track-disabled-gradient: null !default;
|
|
|
33624
34426
|
|
|
33625
34427
|
/// The background of the thumb when the Switch is not checked.
|
|
33626
34428
|
/// @group switch
|
|
33627
|
-
$kendo-switch-off-thumb-bg: k-try-shade( $kendo-switch-off-track-bg ) !default;
|
|
34429
|
+
$kendo-switch-off-thumb-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-switch-off-track-bg )) !default;
|
|
33628
34430
|
/// The text color of the thumb when the Switch is not checked.
|
|
33629
34431
|
/// @group switch
|
|
33630
34432
|
$kendo-switch-off-thumb-text: null !default;
|
|
@@ -33637,7 +34439,7 @@ $kendo-switch-off-thumb-gradient: $kendo-base-gradient !default;
|
|
|
33637
34439
|
|
|
33638
34440
|
/// The background of the thumb when the hovered Switch is not checked.
|
|
33639
34441
|
/// @group switch
|
|
33640
|
-
$kendo-switch-off-thumb-hover-bg: k-try-shade( $kendo-switch-off-thumb-bg ) !default;
|
|
34442
|
+
$kendo-switch-off-thumb-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-switch-off-thumb-bg )) !default;
|
|
33641
34443
|
/// The text color of the thumb when the hovered Switch is not checked.
|
|
33642
34444
|
/// @group switch
|
|
33643
34445
|
$kendo-switch-off-thumb-hover-text: null !default;
|
|
@@ -33689,7 +34491,7 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
33689
34491
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
33690
34492
|
/// The ring around the track wen the focused Switch is checked.
|
|
33691
34493
|
/// @group switch
|
|
33692
|
-
$kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 ) !default;
|
|
34494
|
+
$kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .25 ) !default;
|
|
33693
34495
|
|
|
33694
34496
|
/// The background of the track when the disabled Switch is checked.
|
|
33695
34497
|
/// @group switch
|
|
@@ -33712,20 +34514,20 @@ $kendo-switch-on-thumb-bg: $kendo-color-primary !default;
|
|
|
33712
34514
|
$kendo-switch-on-thumb-text: null !default;
|
|
33713
34515
|
/// The border color of the thumb when the Switch is checked.
|
|
33714
34516
|
/// @group switch
|
|
33715
|
-
$kendo-switch-on-thumb-border: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
34517
|
+
$kendo-switch-on-thumb-border: if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-switch-on-thumb-bg )) !default;
|
|
33716
34518
|
/// The background gradient of the thumb when the Switch is checked.
|
|
33717
34519
|
/// @group switch
|
|
33718
34520
|
$kendo-switch-on-thumb-gradient: $kendo-base-gradient !default;
|
|
33719
34521
|
|
|
33720
34522
|
/// The background of the thumb when the hovered Switch is checked.
|
|
33721
34523
|
/// @group switch
|
|
33722
|
-
$kendo-switch-on-thumb-hover-bg: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
34524
|
+
$kendo-switch-on-thumb-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-bg )) !default;
|
|
33723
34525
|
/// The text color of the thumb when the hovered Switch is checked.
|
|
33724
34526
|
/// @group switch
|
|
33725
34527
|
$kendo-switch-on-thumb-hover-text: null !default;
|
|
33726
34528
|
/// The border color of the thumb when the hovered Switch is checked.
|
|
33727
34529
|
/// @group switch
|
|
33728
|
-
$kendo-switch-on-thumb-hover-border: k-try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
|
|
34530
|
+
$kendo-switch-on-thumb-hover-border: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-hover-bg )) !default;
|
|
33729
34531
|
/// The background gradient of the thumb when the hovered Switch is checked.
|
|
33730
34532
|
/// @group switch
|
|
33731
34533
|
$kendo-switch-on-thumb-hover-gradient: null !default;
|
|
@@ -33963,7 +34765,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
33963
34765
|
$kendo-switch-off-track-focus-gradient
|
|
33964
34766
|
);
|
|
33965
34767
|
@if $kendo-enable-focus-contrast {
|
|
33966
|
-
@include box-shadow( 0 0 0 2px if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) );
|
|
34768
|
+
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
|
|
33967
34769
|
} @else {
|
|
33968
34770
|
outline: $kendo-switch-off-track-focus-ring;
|
|
33969
34771
|
}
|
|
@@ -34043,7 +34845,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
34043
34845
|
$kendo-switch-on-track-focus-gradient
|
|
34044
34846
|
);
|
|
34045
34847
|
@if $kendo-enable-focus-contrast {
|
|
34046
|
-
@include box-shadow( 0 0 0 2px if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) );
|
|
34848
|
+
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
|
|
34047
34849
|
} @else {
|
|
34048
34850
|
outline: $kendo-switch-on-track-focus-ring;
|
|
34049
34851
|
}
|
|
@@ -34203,7 +35005,7 @@ $kendo-dropzone-border: $kendo-base-border !default;
|
|
|
34203
35005
|
$kendo-dropzone-icon-spacing: k-map-get( $kendo-spacing, 6 ) !default;
|
|
34204
35006
|
/// The text color of the DropZone icon.
|
|
34205
35007
|
/// @group dropzone
|
|
34206
|
-
$kendo-dropzone-icon-text: k-try-tint( $kendo-dropzone-text, 4 ) !default;
|
|
35008
|
+
$kendo-dropzone-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-dropzone-text, 4 )) !default;
|
|
34207
35009
|
/// The text color of the hovered DropZone icon.
|
|
34208
35010
|
/// @group dropzone
|
|
34209
35011
|
$kendo-dropzone-icon-hover-text: $kendo-color-primary !default;
|
|
@@ -34935,14 +35737,14 @@ $kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
34935
35737
|
$kendo-appbar-light-bg: $kendo-color-light !default;
|
|
34936
35738
|
/// The text color of the AppBar based on light theme color.
|
|
34937
35739
|
/// @group appbar
|
|
34938
|
-
$kendo-appbar-light-text: k-contrast-color( $kendo-color-light ) !default;
|
|
35740
|
+
$kendo-appbar-light-text: if($kendo-enable-color-system, k-color( on-light ), k-contrast-color( $kendo-color-light )) !default;
|
|
34939
35741
|
|
|
34940
35742
|
/// The background color of the AppBar based on dark theme color.
|
|
34941
35743
|
/// @group appbar
|
|
34942
35744
|
$kendo-appbar-dark-bg: $kendo-color-dark !default;
|
|
34943
35745
|
/// The text color of the AppBar based on dark theme colorr.
|
|
34944
35746
|
/// @group appbar
|
|
34945
|
-
$kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
|
|
35747
|
+
$kendo-appbar-dark-text: if($kendo-enable-color-system, k-color( on-dark ), k-contrast-color( $kendo-color-dark )) !default;
|
|
34946
35748
|
|
|
34947
35749
|
/// The box shadow of the AppBar.
|
|
34948
35750
|
/// @group appbar
|
|
@@ -35102,7 +35904,7 @@ $kendo-appbar-bottom-box-shadow: k-elevation(4) !default;
|
|
|
35102
35904
|
color: $kendo-appbar-dark-text;
|
|
35103
35905
|
background-color: $kendo-appbar-dark-bg;
|
|
35104
35906
|
} @else {
|
|
35105
|
-
color: k-contrast-legacy( $color );
|
|
35907
|
+
color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
|
|
35106
35908
|
background-color: $color;
|
|
35107
35909
|
}
|
|
35108
35910
|
}
|
|
@@ -35525,7 +36327,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35525
36327
|
outline: $kendo-fab-border-width $kendo-fab-outline-style $color;
|
|
35526
36328
|
outline-offset: -$kendo-fab-border-width;
|
|
35527
36329
|
border-color: $color;
|
|
35528
|
-
color: k-contrast-legacy( $color );
|
|
36330
|
+
color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
|
|
35529
36331
|
background-color: $color;
|
|
35530
36332
|
}
|
|
35531
36333
|
}
|
|
@@ -35534,8 +36336,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35534
36336
|
@each $name, $color in $kendo-fab-theme-colors {
|
|
35535
36337
|
.k-hover.k-fab-solid-#{$name},
|
|
35536
36338
|
.k-fab-solid-#{$name}:hover {
|
|
35537
|
-
border-color: k-try-shade( $color, .5 );
|
|
35538
|
-
background-color: k-try-shade( $color, .5 );
|
|
36339
|
+
border-color: if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, .5 ));
|
|
36340
|
+
background-color: if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, .5 ));
|
|
35539
36341
|
}
|
|
35540
36342
|
}
|
|
35541
36343
|
|
|
@@ -35546,7 +36348,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35546
36348
|
@if $kendo-enable-focus-contrast {
|
|
35547
36349
|
@include box-shadow( inset 0 0 0 2px currentColor );
|
|
35548
36350
|
} @else {
|
|
35549
|
-
outline: $kendo-fab-outline-style $kendo-fab-outline-width rgba( $color, .3 );
|
|
36351
|
+
outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system, rgba( k-color( $name, true ), .3 ), rgba( $color, .3 ));
|
|
35550
36352
|
}
|
|
35551
36353
|
}
|
|
35552
36354
|
}
|
|
@@ -35557,8 +36359,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35557
36359
|
.k-selected.k-fab-solid-#{$name},
|
|
35558
36360
|
.k-fab-solid-#{$name}:active {
|
|
35559
36361
|
@include box-shadow($kendo-fab-active-shadow);
|
|
35560
|
-
border-color: k-try-shade( $color, 1.5);
|
|
35561
|
-
background-color: k-try-shade( $color, 1.5);
|
|
36362
|
+
border-color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 1.5));
|
|
36363
|
+
background-color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 1.5));
|
|
35562
36364
|
}
|
|
35563
36365
|
}
|
|
35564
36366
|
|
|
@@ -35567,8 +36369,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35567
36369
|
.k-disabled.k-fab-solid-#{$name},
|
|
35568
36370
|
.k-fab-solid-#{$name}:disabled {
|
|
35569
36371
|
@include box-shadow($kendo-fab-disabled-shadow);
|
|
35570
|
-
background-color: k-try-tint( $color, 5 );
|
|
35571
|
-
color: k-try-tint( k-contrast-legacy( $color ), 5 );
|
|
36372
|
+
background-color: if($kendo-enable-color-system, rgba( k-color( $name, true ), .6 ), k-try-tint( $color, 5 ));
|
|
36373
|
+
color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .6 ), k-try-tint( k-contrast-legacy( $color ), 5 ));
|
|
35572
36374
|
opacity: 1;
|
|
35573
36375
|
}
|
|
35574
36376
|
}
|
|
@@ -35597,8 +36399,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35597
36399
|
// Hover state
|
|
35598
36400
|
.k-fab-item.k-hover .k-fab-item-icon,
|
|
35599
36401
|
.k-fab-item:hover .k-fab-item-icon {
|
|
35600
|
-
border-color: k-try-shade( $kendo-fab-item-icon-border, .5 );
|
|
35601
|
-
background-color: k-try-shade( $kendo-fab-item-icon-bg, .5 );
|
|
36402
|
+
border-color: if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-fab-item-icon-border, .5 ));
|
|
36403
|
+
background-color: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-fab-item-icon-bg, .5 ));
|
|
35602
36404
|
}
|
|
35603
36405
|
|
|
35604
36406
|
// Focus state
|
|
@@ -35607,7 +36409,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35607
36409
|
.k-fab-item.k-focus .k-fab-item-text,
|
|
35608
36410
|
.k-fab-item.k-focus .k-fab-item-icon {
|
|
35609
36411
|
@if $kendo-enable-focus-contrast {
|
|
35610
|
-
@include box-shadow( inset 0 0 0 2px if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) );
|
|
36412
|
+
@include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
|
|
35611
36413
|
} @else {
|
|
35612
36414
|
outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
|
|
35613
36415
|
}
|
|
@@ -35617,8 +36419,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35617
36419
|
.k-fab-item.k-active .k-fab-item-icon,
|
|
35618
36420
|
.k-fab-item:active .k-fab-item-icon {
|
|
35619
36421
|
@include box-shadow($kendo-fab-item-active-shadow);
|
|
35620
|
-
border-color: k-try-shade( $kendo-fab-item-icon-border, 1);
|
|
35621
|
-
background-color: k-try-shade( $kendo-fab-item-icon-bg, 1);
|
|
36422
|
+
border-color: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-fab-item-icon-border, 1 ));
|
|
36423
|
+
background-color: if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-fab-item-icon-bg, 1 ));
|
|
35622
36424
|
}
|
|
35623
36425
|
|
|
35624
36426
|
// Disabled state
|
|
@@ -35629,8 +36431,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35629
36431
|
.k-fab-item-text,
|
|
35630
36432
|
.k-fab-item-icon {
|
|
35631
36433
|
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
35632
|
-
background-color: k-try-tint( $kendo-fab-item-bg, 5 );
|
|
35633
|
-
color: k-try-tint( $kendo-fab-item-text, 5 );
|
|
36434
|
+
background-color: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-try-tint( $kendo-fab-item-bg, 5 ));
|
|
36435
|
+
color: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-try-tint( $kendo-fab-item-text, 5 ));
|
|
35634
36436
|
}
|
|
35635
36437
|
}
|
|
35636
36438
|
|
|
@@ -36616,7 +37418,7 @@ $_kendo-module-meta: (
|
|
|
36616
37418
|
// Window theme colors
|
|
36617
37419
|
@each $name, $color in $kendo-window-theme-colors {
|
|
36618
37420
|
.k-window-#{$name} .k-window-titlebar {
|
|
36619
|
-
color: k-contrast-legacy( $color );
|
|
37421
|
+
color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
|
|
36620
37422
|
background-color: $color;
|
|
36621
37423
|
}
|
|
36622
37424
|
}
|
|
@@ -36797,7 +37599,7 @@ $kendo-dialog-theme-colors: (
|
|
|
36797
37599
|
// Dialog theme colors
|
|
36798
37600
|
@each $name, $color in $kendo-dialog-theme-colors {
|
|
36799
37601
|
.k-dialog-#{$name} .k-dialog-titlebar {
|
|
36800
|
-
color: k-contrast-legacy( $color );
|
|
37602
|
+
color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
|
|
36801
37603
|
background-color: $color;
|
|
36802
37604
|
}
|
|
36803
37605
|
}
|
|
@@ -37359,7 +38161,7 @@ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
|
37359
38161
|
|
|
37360
38162
|
@each $name, $color in $colors {
|
|
37361
38163
|
$_theme: k-map-merge(( $name: (
|
|
37362
|
-
color: k-contrast-legacy( $color ),
|
|
38164
|
+
color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
|
|
37363
38165
|
background-color: $color,
|
|
37364
38166
|
border: $color,
|
|
37365
38167
|
)), $_theme );
|
|
@@ -37965,6 +38767,10 @@ $kendo-card-callout-height: 20px !default;
|
|
|
37965
38767
|
gap: $kendo-card-actions-gap;
|
|
37966
38768
|
}
|
|
37967
38769
|
|
|
38770
|
+
.k-card-horizontal .k-actions-horizontal {
|
|
38771
|
+
width: auto;
|
|
38772
|
+
}
|
|
38773
|
+
|
|
37968
38774
|
// List
|
|
37969
38775
|
.k-card-list {
|
|
37970
38776
|
display: flex;
|
|
@@ -38189,9 +38995,9 @@ $kendo-card-callout-height: 20px !default;
|
|
|
38189
38995
|
// Card theme colors
|
|
38190
38996
|
@each $name, $color in $kendo-theme-colors {
|
|
38191
38997
|
.k-card-#{$name} {
|
|
38192
|
-
background-color: k-color-tint($color, 10);
|
|
38193
|
-
color: k-color-shade($color, 6);
|
|
38194
|
-
border-color: k-color-tint($color, 9);
|
|
38998
|
+
background-color: if($kendo-enable-color-system, k-color( #{$name}-subtle ), k-color-tint($color, 10));
|
|
38999
|
+
color: if($kendo-enable-color-system, k-color( #{$name}-on-subtle ), k-color-shade($color, 6));
|
|
39000
|
+
border-color: if($kendo-enable-color-system, k-color( #{$name}-emphasis ), k-color-tint($color, 9));
|
|
38195
39001
|
|
|
38196
39002
|
.k-card-subtitle {
|
|
38197
39003
|
color: inherit;
|
|
@@ -38913,17 +39719,17 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
38913
39719
|
@each $name, $color in $kendo-theme-colors {
|
|
38914
39720
|
.k-bottom-nav-solid-#{$name} {
|
|
38915
39721
|
@include fill(
|
|
38916
|
-
$color: k-true-mix( $color, k-contrast-legacy( $color ), 35%),
|
|
39722
|
+
$color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .65 ), k-true-mix( $color, k-contrast-legacy( $color ), 35%)),
|
|
38917
39723
|
$bg: $color
|
|
38918
39724
|
);
|
|
38919
39725
|
|
|
38920
39726
|
.k-bottom-nav-item.k-focus,
|
|
38921
39727
|
.k-bottom-nav-item:focus {
|
|
38922
|
-
@include fill( $bg: rgba(k-true-mix( $color, k-contrast-legacy( $color ), 35%), .2));
|
|
39728
|
+
@include fill( $bg: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .125 ), rgba(k-true-mix( $color, k-contrast-legacy( $color ), 35%), .2)));
|
|
38923
39729
|
}
|
|
38924
39730
|
|
|
38925
39731
|
.k-bottom-nav-item.k-selected {
|
|
38926
|
-
@include fill( $color: k-contrast-legacy( $color ) );
|
|
39732
|
+
@include fill( $color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )) );
|
|
38927
39733
|
}
|
|
38928
39734
|
}
|
|
38929
39735
|
// TODO: remove when suites update class names
|
|
@@ -38943,12 +39749,12 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
38943
39749
|
|
|
38944
39750
|
.k-bottom-nav-item.k-focus,
|
|
38945
39751
|
.k-bottom-nav-item:focus {
|
|
38946
|
-
@include fill( $bg: rgba($kendo-bottom-nav-flat-text, .05) );
|
|
39752
|
+
@include fill( $bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05), rgba($kendo-bottom-nav-flat-text, .05)) );
|
|
38947
39753
|
}
|
|
38948
39754
|
|
|
38949
39755
|
.k-bottom-nav-item.k-selected {
|
|
38950
39756
|
@if $name == "secondary" or $name == "light" {
|
|
38951
|
-
@include fill( $color: k-try-shade($color, 3) );
|
|
39757
|
+
@include fill( $color: if($kendo-enable-color-system, k-color( #{$name} ), k-try-shade($color, 3)) );
|
|
38952
39758
|
} @else {
|
|
38953
39759
|
@include fill( $color: $color );
|
|
38954
39760
|
}
|
|
@@ -40073,24 +40879,24 @@ $kendo-stepper-indicator-bg: $kendo-component-bg !default;
|
|
|
40073
40879
|
$kendo-stepper-indicator-text: $kendo-component-text !default;
|
|
40074
40880
|
$kendo-stepper-indicator-border: $kendo-component-border !default;
|
|
40075
40881
|
|
|
40076
|
-
$kendo-stepper-indicator-hover-bg: k-try-shade( $kendo-stepper-indicator-bg ) !default;
|
|
40882
|
+
$kendo-stepper-indicator-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-stepper-indicator-bg )) !default;
|
|
40077
40883
|
$kendo-stepper-indicator-hover-text: null !default;
|
|
40078
40884
|
$kendo-stepper-indicator-hover-border: null !default;
|
|
40079
40885
|
|
|
40080
40886
|
$kendo-stepper-indicator-disabled-bg: null !default;
|
|
40081
|
-
$kendo-stepper-indicator-disabled-text: $kendo-disabled-text !default;
|
|
40887
|
+
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .6 ), $kendo-disabled-text) !default;
|
|
40082
40888
|
$kendo-stepper-indicator-disabled-border: null !default;
|
|
40083
40889
|
|
|
40084
40890
|
$kendo-stepper-indicator-done-bg: $kendo-color-primary !default;
|
|
40085
|
-
$kendo-stepper-indicator-done-text: k-contrast-legacy( $kendo-stepper-indicator-done-bg ) !default;
|
|
40891
|
+
$kendo-stepper-indicator-done-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-stepper-indicator-done-bg )) !default;
|
|
40086
40892
|
$kendo-stepper-indicator-done-border: $kendo-stepper-indicator-done-bg !default;
|
|
40087
40893
|
|
|
40088
|
-
$kendo-stepper-indicator-done-hover-bg: k-try-shade( $kendo-stepper-indicator-done-bg ) !default;
|
|
40894
|
+
$kendo-stepper-indicator-done-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-stepper-indicator-done-bg )) !default;
|
|
40089
40895
|
$kendo-stepper-indicator-done-hover-text: null !default;
|
|
40090
40896
|
$kendo-stepper-indicator-done-hover-border: null !default;
|
|
40091
40897
|
|
|
40092
|
-
$kendo-stepper-indicator-done-disabled-bg: k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60% ) !default;
|
|
40093
|
-
$kendo-stepper-indicator-done-disabled-text: k-contrast-legacy( $kendo-stepper-indicator-done-bg ) !default;
|
|
40898
|
+
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .6 ), k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60% )) !default;
|
|
40899
|
+
$kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-stepper-indicator-done-bg )) !default;
|
|
40094
40900
|
$kendo-stepper-indicator-done-disabled-border: $kendo-stepper-indicator-done-disabled-bg !default;
|
|
40095
40901
|
|
|
40096
40902
|
$kendo-stepper-indicator-current-bg: $kendo-stepper-indicator-done-bg !default;
|
|
@@ -40109,7 +40915,7 @@ $kendo-stepper-label-text: null !default;
|
|
|
40109
40915
|
$kendo-stepper-label-success-text: $kendo-color-success !default;
|
|
40110
40916
|
$kendo-stepper-label-error-text: $kendo-color-error !default;
|
|
40111
40917
|
$kendo-stepper-label-hover-text: null !default;
|
|
40112
|
-
$kendo-stepper-label-disabled-text: $kendo-disabled-text !default;
|
|
40918
|
+
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .6 ), $kendo-disabled-text) !default;
|
|
40113
40919
|
|
|
40114
40920
|
$kendo-stepper-optional-label-text: $kendo-subtle-text !default;
|
|
40115
40921
|
$kendo-stepper-optional-label-opacity: null !default;
|
|
@@ -40204,6 +41010,17 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
40204
41010
|
transition-duration: .4s;
|
|
40205
41011
|
transition-timing-function: ease-in-out;
|
|
40206
41012
|
|
|
41013
|
+
&::before {
|
|
41014
|
+
@include border-radius( $kendo-stepper-indicator-border-radius );
|
|
41015
|
+
content: "";
|
|
41016
|
+
width: 100%;
|
|
41017
|
+
height: 100%;
|
|
41018
|
+
position: absolute;
|
|
41019
|
+
top: 0;
|
|
41020
|
+
left: 0;
|
|
41021
|
+
z-index: -1;
|
|
41022
|
+
}
|
|
41023
|
+
|
|
40207
41024
|
&::after {
|
|
40208
41025
|
@include border-radius( 100% );
|
|
40209
41026
|
content: "";
|
|
@@ -40464,11 +41281,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
40464
41281
|
&.k-disabled,
|
|
40465
41282
|
&:disabled {
|
|
40466
41283
|
.k-step-indicator {
|
|
40467
|
-
@
|
|
40468
|
-
|
|
40469
|
-
|
|
40470
|
-
|
|
40471
|
-
|
|
41284
|
+
@if($kendo-enable-color-system) {
|
|
41285
|
+
@include fill(
|
|
41286
|
+
$kendo-stepper-indicator-disabled-text,
|
|
41287
|
+
k-color( app-surface ),
|
|
41288
|
+
$kendo-stepper-indicator-disabled-border
|
|
41289
|
+
);
|
|
41290
|
+
|
|
41291
|
+
&::before {
|
|
41292
|
+
background-color: $kendo-stepper-indicator-disabled-bg;
|
|
41293
|
+
}
|
|
41294
|
+
} @else {
|
|
41295
|
+
@include fill(
|
|
41296
|
+
$kendo-stepper-indicator-disabled-text,
|
|
41297
|
+
$kendo-stepper-indicator-disabled-bg,
|
|
41298
|
+
$kendo-stepper-indicator-disabled-border
|
|
41299
|
+
);
|
|
41300
|
+
}
|
|
40472
41301
|
}
|
|
40473
41302
|
|
|
40474
41303
|
.k-step-label {
|
|
@@ -40526,11 +41355,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
40526
41355
|
&.k-disabled,
|
|
40527
41356
|
&:disabled {
|
|
40528
41357
|
.k-step-indicator {
|
|
40529
|
-
@
|
|
40530
|
-
|
|
40531
|
-
|
|
40532
|
-
|
|
40533
|
-
|
|
41358
|
+
@if($kendo-enable-color-system) {
|
|
41359
|
+
@include fill(
|
|
41360
|
+
$kendo-stepper-indicator-done-disabled-text,
|
|
41361
|
+
k-color( app-surface ),
|
|
41362
|
+
$kendo-stepper-indicator-done-disabled-border
|
|
41363
|
+
);
|
|
41364
|
+
|
|
41365
|
+
&::before {
|
|
41366
|
+
background-color: $kendo-stepper-indicator-done-disabled-bg;
|
|
41367
|
+
}
|
|
41368
|
+
} @else {
|
|
41369
|
+
@include fill(
|
|
41370
|
+
$kendo-stepper-indicator-done-disabled-text,
|
|
41371
|
+
$kendo-stepper-indicator-done-disabled-bg,
|
|
41372
|
+
$kendo-stepper-indicator-done-disabled-border
|
|
41373
|
+
);
|
|
41374
|
+
}
|
|
40534
41375
|
}
|
|
40535
41376
|
}
|
|
40536
41377
|
}
|
|
@@ -40567,11 +41408,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
|
|
|
40567
41408
|
&.k-disabled,
|
|
40568
41409
|
&:disabled {
|
|
40569
41410
|
.k-step-indicator {
|
|
40570
|
-
@
|
|
40571
|
-
|
|
40572
|
-
|
|
40573
|
-
|
|
40574
|
-
|
|
41411
|
+
@if($kendo-enable-color-system) {
|
|
41412
|
+
@include fill(
|
|
41413
|
+
$kendo-stepper-indicator-current-disabled-text,
|
|
41414
|
+
k-color( app-surface ),
|
|
41415
|
+
$kendo-stepper-indicator-current-disabled-border
|
|
41416
|
+
);
|
|
41417
|
+
|
|
41418
|
+
&::before {
|
|
41419
|
+
background-color: $kendo-stepper-indicator-current-disabled-bg;
|
|
41420
|
+
}
|
|
41421
|
+
} @else {
|
|
41422
|
+
@include fill(
|
|
41423
|
+
$kendo-stepper-indicator-current-disabled-text,
|
|
41424
|
+
$kendo-stepper-indicator-current-disabled-bg,
|
|
41425
|
+
$kendo-stepper-indicator-current-disabled-border
|
|
41426
|
+
);
|
|
41427
|
+
}
|
|
40575
41428
|
}
|
|
40576
41429
|
}
|
|
40577
41430
|
}
|
|
@@ -41678,10 +42531,9 @@ $kendo-expander-header-bg: transparent !default;
|
|
|
41678
42531
|
/// The border color of the ExpansionPanel header.
|
|
41679
42532
|
/// @group expander
|
|
41680
42533
|
$kendo-expander-header-border: null !default;
|
|
41681
|
-
|
|
41682
42534
|
/// The background color of the hovered ExpansionPanel header.
|
|
41683
42535
|
/// @group expander
|
|
41684
|
-
$kendo-expander-header-hover-bg: k-color-shade( $kendo-expander-bg, 1 ) !default;
|
|
42536
|
+
$kendo-expander-header-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-color-shade( $kendo-expander-bg, 1 )) !default;
|
|
41685
42537
|
/// The background color of the focused ExpansionPanel header.
|
|
41686
42538
|
/// @group expander
|
|
41687
42539
|
$kendo-expander-header-focus-bg: null !default;
|
|
@@ -41964,7 +42816,7 @@ $kendo-panelbar-header-selected-text: $kendo-selected-text !default;
|
|
|
41964
42816
|
$kendo-panelbar-header-selected-border: $kendo-selected-border !default;
|
|
41965
42817
|
$kendo-panelbar-header-selected-gradient: null !default;
|
|
41966
42818
|
|
|
41967
|
-
$kendo-panelbar-header-selected-hover-bg: k-try-shade( $kendo-panelbar-header-selected-bg ) !default;
|
|
42819
|
+
$kendo-panelbar-header-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-header-selected-bg )) !default;
|
|
41968
42820
|
$kendo-panelbar-header-selected-hover-text: null !default;
|
|
41969
42821
|
$kendo-panelbar-header-selected-hover-border: null !default;
|
|
41970
42822
|
$kendo-panelbar-header-selected-hover-gradient: null !default;
|
|
@@ -41979,8 +42831,7 @@ $kendo-panelbar-header-selected-hover-focus-text: null !default;
|
|
|
41979
42831
|
$kendo-panelbar-header-selected-hover-focus-border: null !default;
|
|
41980
42832
|
$kendo-panelbar-header-selected-hover-focus-gradient: null !default;
|
|
41981
42833
|
|
|
41982
|
-
|
|
41983
|
-
$kendo-panelbar-item-hover-bg: k-try-shade( $kendo-panelbar-bg, .5 ) !default;
|
|
42834
|
+
$kendo-panelbar-item-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-panelbar-bg, .5 )) !default;
|
|
41984
42835
|
$kendo-panelbar-item-hover-text: null !default;
|
|
41985
42836
|
$kendo-panelbar-item-hover-border: null !default;
|
|
41986
42837
|
$kendo-panelbar-item-hover-gradient: null !default;
|
|
@@ -42001,7 +42852,7 @@ $kendo-panelbar-item-selected-text: $kendo-selected-text !default;
|
|
|
42001
42852
|
$kendo-panelbar-item-selected-border: null !default;
|
|
42002
42853
|
$kendo-panelbar-item-selected-gradient: null !default;
|
|
42003
42854
|
|
|
42004
|
-
$kendo-panelbar-item-selected-hover-bg: k-try-shade( $kendo-panelbar-item-selected-bg ) !default;
|
|
42855
|
+
$kendo-panelbar-item-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-item-selected-bg )) !default;
|
|
42005
42856
|
$kendo-panelbar-item-selected-hover-text: null !default;
|
|
42006
42857
|
$kendo-panelbar-item-selected-hover-border: null !default;
|
|
42007
42858
|
$kendo-panelbar-item-selected-hover-gradient: null !default;
|
|
@@ -42492,7 +43343,7 @@ $kendo-splitter-collapse-icon-padding-y: k-map-get( $kendo-spacing, .5 ) !defaul
|
|
|
42492
43343
|
$kendo-splitbar-bg: $kendo-base-bg !default;
|
|
42493
43344
|
$kendo-splitbar-text: $kendo-base-text !default;
|
|
42494
43345
|
|
|
42495
|
-
$kendo-splitbar-hover-bg: k-try-shade( $kendo-splitbar-bg, .5 ) !default;
|
|
43346
|
+
$kendo-splitbar-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-splitbar-bg, .5 )) !default;
|
|
42496
43347
|
$kendo-splitbar-hover-text: $kendo-splitbar-text !default;
|
|
42497
43348
|
|
|
42498
43349
|
$kendo-splitbar-selected-bg: $kendo-selected-bg !default;
|
|
@@ -43105,7 +43956,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
|
|
|
43105
43956
|
$kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
|
|
43106
43957
|
/// The background color of the dropping area in the DockManager component.
|
|
43107
43958
|
/// @group dock-manager
|
|
43108
|
-
$kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
|
|
43959
|
+
$kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 )) !default;
|
|
43109
43960
|
/// The border color of the dropping area in the DockManager component.
|
|
43110
43961
|
/// @group dock-manager
|
|
43111
43962
|
$kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
|
@@ -43517,7 +44368,7 @@ $kendo-adaptive-content-bg: $kendo-app-bg !default;
|
|
|
43517
44368
|
$kendo-adaptive-content-text: $kendo-app-text !default;
|
|
43518
44369
|
|
|
43519
44370
|
$kendo-adaptive-menu-bg: $kendo-color-primary !default;
|
|
43520
|
-
$kendo-adaptive-menu-text: k-contrast-legacy( $kendo-adaptive-menu-bg ) !default;
|
|
44371
|
+
$kendo-adaptive-menu-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-adaptive-menu-bg )) !default;
|
|
43521
44372
|
|
|
43522
44373
|
$kendo-adaptive-menu-clear-text: $kendo-color-primary !default;
|
|
43523
44374
|
|
|
@@ -44467,14 +45318,14 @@ $kendo-grid-selection-aggregates-line-height: $kendo-grid-line-height !default;
|
|
|
44467
45318
|
$kendo-grid-selection-aggregates-font-weight: $kendo-font-weight-bold !default;
|
|
44468
45319
|
|
|
44469
45320
|
$kendo-grid-sorted-icon-spacing: calc( #{$kendo-padding-md-x} - 1px ) !default;
|
|
44470
|
-
$kendo-grid-sorted-bg: rgba( k-contrast-color( $kendo-grid-bg ), .02 ) !default;
|
|
45321
|
+
$kendo-grid-sorted-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .03 ), rgba( k-contrast-color( $kendo-grid-bg ), .02 )) !default;
|
|
44471
45322
|
$kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
|
|
44472
45323
|
$kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
|
|
44473
45324
|
$kendo-grid-sorting-index-height: $kendo-icon-size !default;
|
|
44474
45325
|
$kendo-grid-sorting-index-spacing-y: k-math-div( $kendo-icon-spacing, 2 ) !default;
|
|
44475
45326
|
$kendo-grid-sorting-index-spacing-x: -$kendo-grid-sorting-index-spacing-y !default;
|
|
44476
45327
|
|
|
44477
|
-
$kendo-grid-grouping-row-bg: k-try-shade( $kendo-grid-bg, 1 ) !default;
|
|
45328
|
+
$kendo-grid-grouping-row-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-grid-bg, 1 )) !default;
|
|
44478
45329
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
44479
45330
|
|
|
44480
45331
|
$kendo-grid-focus-shadow: $kendo-table-focus-shadow !default;
|
|
@@ -44483,11 +45334,13 @@ $kendo-grid-command-cell-button-spacing: k-map-get( $kendo-spacing, 2 ) !default
|
|
|
44483
45334
|
// be cautious when changing the next line; see https://github.com/MoOx/reduce-css-calc/issues/38
|
|
44484
45335
|
$kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$kendo-button-calc-size} - #{$kendo-line-height-em}) / 2 ) !default;
|
|
44485
45336
|
|
|
45337
|
+
// Must be a solid color
|
|
44486
45338
|
$kendo-grid-sticky-bg: $kendo-grid-bg !default;
|
|
44487
45339
|
$kendo-grid-sticky-text: $kendo-grid-text !default;
|
|
44488
45340
|
$kendo-grid-sticky-border: $kendo-grid-border !default;
|
|
44489
45341
|
|
|
44490
|
-
|
|
45342
|
+
// Must be a solid color
|
|
45343
|
+
$kendo-grid-sticky-alt-bg: if($kendo-enable-color-system, k-color( base-subtle ), $kendo-grid-alt-bg) !default;
|
|
44491
45344
|
|
|
44492
45345
|
$kendo-grid-sticky-header-bg: $kendo-grid-header-bg !default;
|
|
44493
45346
|
$kendo-grid-sticky-header-text: $kendo-grid-header-text !default;
|
|
@@ -44496,11 +45349,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
44496
45349
|
$kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
44497
45350
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
|
|
44498
45351
|
|
|
44499
|
-
$kendo-grid-sticky-selected-bg: k-color-mix($kendo-selected-bg, #ffffff, 25%) !default;
|
|
44500
|
-
$kendo-grid-sticky-selected-alt-bg: k-try-shade( $kendo-grid-sticky-selected-bg, .5 ) !default;
|
|
45352
|
+
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-color-mix($kendo-selected-bg, #ffffff, 25%)) !default;
|
|
45353
|
+
$kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-try-shade( $kendo-grid-sticky-selected-bg, .5 )) !default;
|
|
44501
45354
|
|
|
44502
|
-
|
|
44503
|
-
$kendo-grid-sticky-
|
|
45355
|
+
// Must be a solid color
|
|
45356
|
+
$kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), $kendo-grid-hover-bg) !default;
|
|
45357
|
+
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-try-shade( $kendo-grid-sticky-selected-bg, 1 )) !default;
|
|
44504
45358
|
|
|
44505
45359
|
$kendo-grid-column-menu-width: 230px !default;
|
|
44506
45360
|
$kendo-grid-column-menu-max-width: 320px !default;
|
|
@@ -44551,7 +45405,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
|
|
|
44551
45405
|
|
|
44552
45406
|
/// Background color of the grid row resize indicator
|
|
44553
45407
|
/// @group grid
|
|
44554
|
-
$kendo-grid-row-resizer-hover-bg: rgba( k-contrast-color( $kendo-grid-bg ), .12 ) !default;
|
|
45408
|
+
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .2 ), rgba( k-contrast-color( $kendo-grid-bg ), .12 )) !default;
|
|
44555
45409
|
/// Active background color of the grid row resize indicator
|
|
44556
45410
|
/// @group grid
|
|
44557
45411
|
$kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
|
|
@@ -45342,6 +46196,16 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
45342
46196
|
}
|
|
45343
46197
|
}
|
|
45344
46198
|
|
|
46199
|
+
.k-master-row .k-grid-content-sticky::before {
|
|
46200
|
+
content: "";
|
|
46201
|
+
width: 100%;
|
|
46202
|
+
height: 100%;
|
|
46203
|
+
position: absolute;
|
|
46204
|
+
top: 0;
|
|
46205
|
+
left: 0;
|
|
46206
|
+
z-index: -1;
|
|
46207
|
+
}
|
|
46208
|
+
|
|
45345
46209
|
kendo-grid {
|
|
45346
46210
|
.k-table-row.k-grid-row-sticky {
|
|
45347
46211
|
border: 0;
|
|
@@ -46199,14 +47063,30 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46199
47063
|
&.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
|
|
46200
47064
|
&.k-table-row td.k-grid-content-sticky.k-selected,
|
|
46201
47065
|
&.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
46202
|
-
@
|
|
47066
|
+
@if($kendo-enable-color-system) {
|
|
47067
|
+
@include fill( $bg: $kendo-grid-sticky-bg );
|
|
47068
|
+
|
|
47069
|
+
&::before {
|
|
47070
|
+
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
47071
|
+
}
|
|
47072
|
+
} @else {
|
|
47073
|
+
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
47074
|
+
}
|
|
46203
47075
|
}
|
|
46204
47076
|
|
|
46205
47077
|
&.k-selected.k-table-alt-row td.k-grid-content-sticky,
|
|
46206
47078
|
&.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
|
|
46207
47079
|
&.k-table-alt-row td.k-grid-content-sticky.k-selected,
|
|
46208
47080
|
&.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
46209
|
-
@
|
|
47081
|
+
@if($kendo-enable-color-system) {
|
|
47082
|
+
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
47083
|
+
|
|
47084
|
+
&::before {
|
|
47085
|
+
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
47086
|
+
}
|
|
47087
|
+
} @else {
|
|
47088
|
+
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
47089
|
+
}
|
|
46210
47090
|
}
|
|
46211
47091
|
|
|
46212
47092
|
|
|
@@ -46228,7 +47108,15 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46228
47108
|
&.k-hover td.k-grid-content-sticky.k-selected,
|
|
46229
47109
|
&:hover .k-table-td.k-grid-content-sticky.k-selected,
|
|
46230
47110
|
&.k-hover .k-table-td.k-grid-content-sticky.k-selected {
|
|
46231
|
-
|
|
47111
|
+
@if($kendo-enable-color-system) {
|
|
47112
|
+
background-color: $kendo-grid-sticky-hover-bg;
|
|
47113
|
+
|
|
47114
|
+
&::before {
|
|
47115
|
+
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
47116
|
+
}
|
|
47117
|
+
} @else {
|
|
47118
|
+
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
47119
|
+
}
|
|
46232
47120
|
}
|
|
46233
47121
|
}
|
|
46234
47122
|
|
|
@@ -46274,14 +47162,30 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46274
47162
|
.k-selected.k-grid-row-sticky .k-table-td,
|
|
46275
47163
|
.k-grid-row-sticky .k-table-td.k-selected,
|
|
46276
47164
|
.k-selected.k-grid-content-sticky {
|
|
46277
|
-
@
|
|
47165
|
+
@if($kendo-enable-color-system) {
|
|
47166
|
+
@include fill( $bg: $kendo-grid-sticky-bg );
|
|
47167
|
+
|
|
47168
|
+
&::before {
|
|
47169
|
+
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
47170
|
+
}
|
|
47171
|
+
} @else {
|
|
47172
|
+
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
47173
|
+
}
|
|
46278
47174
|
}
|
|
46279
47175
|
|
|
46280
47176
|
.k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
46281
47177
|
.k-selected.k-table-alt-row.k-grid-row-sticky td,
|
|
46282
47178
|
.k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
|
|
46283
47179
|
.k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
46284
|
-
@
|
|
47180
|
+
@if($kendo-enable-color-system) {
|
|
47181
|
+
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
47182
|
+
|
|
47183
|
+
&::before {
|
|
47184
|
+
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
47185
|
+
}
|
|
47186
|
+
} @else {
|
|
47187
|
+
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
47188
|
+
}
|
|
46285
47189
|
}
|
|
46286
47190
|
|
|
46287
47191
|
// Hover state
|
|
@@ -46319,7 +47223,15 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
46319
47223
|
.k-grid-row-sticky.k-hover .k-table-td.k-selected,
|
|
46320
47224
|
.k-table-row:hover .k-grid-content-sticky.k-selected,
|
|
46321
47225
|
.k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
46322
|
-
|
|
47226
|
+
@if($kendo-enable-color-system) {
|
|
47227
|
+
background-color: $kendo-grid-sticky-hover-bg;
|
|
47228
|
+
|
|
47229
|
+
&::before {
|
|
47230
|
+
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
47231
|
+
}
|
|
47232
|
+
} @else {
|
|
47233
|
+
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
47234
|
+
}
|
|
46323
47235
|
}
|
|
46324
47236
|
}
|
|
46325
47237
|
|
|
@@ -46545,7 +47457,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
46545
47457
|
$kendo-listview-item-selected-text: null !default;
|
|
46546
47458
|
/// The background color of the selected ListView items.
|
|
46547
47459
|
/// @group listview
|
|
46548
|
-
$kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
47460
|
+
$kendo-listview-item-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
46549
47461
|
/// The border color of the selected ListView items.
|
|
46550
47462
|
/// @group listview
|
|
46551
47463
|
$kendo-listview-item-selected-border: null !default;
|
|
@@ -46924,7 +47836,7 @@ $kendo-spreadsheet-formula-input-line-height: $kendo-input-line-height !default;
|
|
|
46924
47836
|
$kendo-spreadsheet-view-font-family: Arial, Verdana, sans-serif !default;
|
|
46925
47837
|
$kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
|
|
46926
47838
|
|
|
46927
|
-
$kendo-spreadsheet-selection-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
47839
|
+
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
46928
47840
|
$kendo-spreadsheet-selection-text: null !default;
|
|
46929
47841
|
$kendo-spreadsheet-selection-border: $kendo-selected-bg !default;
|
|
46930
47842
|
$kendo-spreadsheet-selection-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
|
|
@@ -46933,12 +47845,12 @@ $kendo-spreadsheet-single-selection-bg: $kendo-selected-bg !default;
|
|
|
46933
47845
|
$kendo-spreadsheet-single-selection-text: null !default;
|
|
46934
47846
|
$kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
|
|
46935
47847
|
|
|
46936
|
-
$kendo-spreadsheet-partial-selection-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
47848
|
+
$kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
46937
47849
|
|
|
46938
47850
|
$kendo-spreadsheet-active-cell-bg: $kendo-spreadsheet-bg !default;
|
|
46939
47851
|
$kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
|
|
46940
47852
|
|
|
46941
|
-
$kendo-spreadsheet-auto-fill-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
47853
|
+
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
46942
47854
|
$kendo-spreadsheet-auto-fill-text: null !default;
|
|
46943
47855
|
$kendo-spreadsheet-auto-fill-border: $kendo-selected-bg !default;
|
|
46944
47856
|
$kendo-spreadsheet-auto-fill-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
|
|
@@ -46988,7 +47900,7 @@ $kendo-spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !defaul
|
|
|
46988
47900
|
$kendo-spreadsheet-drawing-outline-style: solid !default;
|
|
46989
47901
|
$kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
46990
47902
|
|
|
46991
|
-
$kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
47903
|
+
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
46992
47904
|
|
|
46993
47905
|
$kendo-spreadsheet-dropzone-spacing-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
46994
47906
|
|
|
@@ -48224,21 +49136,21 @@ $kendo-pivotgrid-bg: $kendo-component-bg !default;
|
|
|
48224
49136
|
$kendo-pivotgrid-text: $kendo-component-text !default;
|
|
48225
49137
|
$kendo-pivotgrid-border: $kendo-component-border !default;
|
|
48226
49138
|
|
|
48227
|
-
$kendo-pivotgrid-alt-border: k-try-shade( $kendo-pivotgrid-border, 2 ) !default;
|
|
49139
|
+
$kendo-pivotgrid-alt-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-pivotgrid-border, 2 )) !default;
|
|
48228
49140
|
|
|
48229
49141
|
$kendo-pivotgrid-headers-bg: $kendo-component-header-bg !default;
|
|
48230
49142
|
$kendo-pivotgrid-headers-text: $kendo-component-header-text !default;
|
|
48231
49143
|
$kendo-pivotgrid-headers-border: $kendo-component-header-border !default;
|
|
48232
49144
|
|
|
48233
|
-
$kendo-pivotgrid-total-bg: k-try-shade( $kendo-pivotgrid-bg, 1 ) !default;
|
|
49145
|
+
$kendo-pivotgrid-total-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-pivotgrid-bg, 1 )) !default;
|
|
48234
49146
|
$kendo-pivotgrid-total-text: $kendo-component-header-text !default;
|
|
48235
49147
|
$kendo-pivotgrid-total-border: $kendo-component-header-border !default;
|
|
48236
49148
|
|
|
48237
|
-
$kendo-pivotgrid-hover-bg: k-color-darken( $kendo-pivotgrid-bg, 7% ) !default;
|
|
49149
|
+
$kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-color-darken( $kendo-pivotgrid-bg, 7% )) !default;
|
|
48238
49150
|
$kendo-pivotgrid-hover-text: null !default;
|
|
48239
49151
|
$kendo-pivotgrid-hover-border: null !default;
|
|
48240
49152
|
|
|
48241
|
-
$kendo-pivotgrid-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
49153
|
+
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
|
|
48242
49154
|
$kendo-pivotgrid-selected-text: null !default;
|
|
48243
49155
|
$kendo-pivotgrid-selected-border: null !default;
|
|
48244
49156
|
|
|
@@ -48307,7 +49219,7 @@ $kendo-pivotgrid-alt-text: $kendo-grid-header-text !default;
|
|
|
48307
49219
|
$kendo-pivotgrid-chrome-border: $kendo-grid-border !default;
|
|
48308
49220
|
|
|
48309
49221
|
$kendo-pivotgrid-container-bg: $kendo-component-bg !default;
|
|
48310
|
-
$kendo-pivotgrid-row-headers-bg: k-try-shade( $kendo-component-bg, 2 ) !default;
|
|
49222
|
+
$kendo-pivotgrid-row-headers-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 2 )) !default;
|
|
48311
49223
|
|
|
48312
49224
|
$kendo-pivotgrid-button-bg: null !default;
|
|
48313
49225
|
$kendo-pivotgrid-button-text: null !default;
|
|
@@ -49923,7 +50835,7 @@ $kendo-file-manager-listview-item-border: null !default;
|
|
|
49923
50835
|
$kendo-file-manager-listview-item-icon-bg: null !default;
|
|
49924
50836
|
/// The text color of the FileManager ListView item icon.
|
|
49925
50837
|
/// @group filemanager
|
|
49926
|
-
$kendo-file-manager-listview-item-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
|
|
50838
|
+
$kendo-file-manager-listview-item-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4)) !default;
|
|
49927
50839
|
/// The border color of the FileManager ListView item icon.
|
|
49928
50840
|
/// @group filemanager
|
|
49929
50841
|
$kendo-file-manager-listview-item-icon-border: null !default;
|
|
@@ -49980,7 +50892,7 @@ $kendo-file-manager-preview-border: null !default;
|
|
|
49980
50892
|
$kendo-file-manager-preview-icon-bg: null !default;
|
|
49981
50893
|
/// The text color of the FileManager preview icon.
|
|
49982
50894
|
/// @group filemanager
|
|
49983
|
-
$kendo-file-manager-preview-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
|
|
50895
|
+
$kendo-file-manager-preview-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4)) !default;
|
|
49984
50896
|
/// The border color of the FileManager preview icon.
|
|
49985
50897
|
/// @group filemanager
|
|
49986
50898
|
$kendo-file-manager-preview-icon-border: null !default;
|
|
@@ -50012,6 +50924,7 @@ $kendo-file-manager-preview-icon-border: null !default;
|
|
|
50012
50924
|
border-bottom-width: $kendo-file-manager-toolbar-border-width;
|
|
50013
50925
|
border-color: inherit;
|
|
50014
50926
|
flex-shrink: 0;
|
|
50927
|
+
z-index: 1;
|
|
50015
50928
|
}
|
|
50016
50929
|
|
|
50017
50930
|
|
|
@@ -50026,6 +50939,10 @@ $kendo-file-manager-preview-icon-border: null !default;
|
|
|
50026
50939
|
overflow: hidden;
|
|
50027
50940
|
}
|
|
50028
50941
|
|
|
50942
|
+
.k-filemanager-splitter {
|
|
50943
|
+
border-width: 0;
|
|
50944
|
+
}
|
|
50945
|
+
|
|
50029
50946
|
|
|
50030
50947
|
// Navigation
|
|
50031
50948
|
.k-filemanager-navigation {
|
|
@@ -50468,7 +51385,7 @@ $kendo-taskboard-column-border: transparent !default;
|
|
|
50468
51385
|
|
|
50469
51386
|
$kendo-taskboard-column-focus-bg: null !default;
|
|
50470
51387
|
$kendo-taskboard-column-focus-text: null !default;
|
|
50471
|
-
$kendo-taskboard-column-focus-border: k-try-shade( $kendo-base-border, 2.5 ) !default;
|
|
51388
|
+
$kendo-taskboard-column-focus-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-base-border, 2.5 )) !default;
|
|
50472
51389
|
|
|
50473
51390
|
$kendo-taskboard-column-header-padding-y: k-math-div( $kendo-taskboard-spacer, 2 ) !default;
|
|
50474
51391
|
$kendo-taskboard-column-header-padding-x: $kendo-taskboard-column-header-padding-y !default;
|
|
@@ -50511,10 +51428,11 @@ $kendo-taskboard-card-shadow: $kendo-card-shadow !default;
|
|
|
50511
51428
|
|
|
50512
51429
|
$kendo-taskboard-card-category-border-width: 4px !default;
|
|
50513
51430
|
|
|
50514
|
-
$kendo-taskboard-card-
|
|
51431
|
+
$kendo-taskboard-card-hover-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-taskboard-card-border, 10% )) !default;
|
|
51432
|
+
|
|
51433
|
+
$kendo-taskboard-card-focus-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-taskboard-card-border, 18% )) !default;
|
|
50515
51434
|
$kendo-taskboard-card-focus-shadow: none !default;
|
|
50516
51435
|
|
|
50517
|
-
$kendo-taskboard-card-hover-border: k-try-shade( $kendo-taskboard-card-border, 10% ) !default;
|
|
50518
51436
|
|
|
50519
51437
|
$kendo-taskboard-card-selected-border: k-color-tint( $kendo-color-primary-lighter, 5 ) !default;
|
|
50520
51438
|
$kendo-taskboard-card-selected-shadow: none !default;
|
|
@@ -50998,7 +51916,7 @@ $kendo-editor-selected-bg: $kendo-color-primary !default;
|
|
|
50998
51916
|
|
|
50999
51917
|
/// The highlighted background color of the Editor.
|
|
51000
51918
|
/// @group editor
|
|
51001
|
-
$kendo-editor-highlighted-bg: k-color-mix( $kendo-color-primary, #ffffff, 20% ) !default;
|
|
51919
|
+
$kendo-editor-highlighted-bg: if($kendo-enable-color-system, k-color( primary-subtle ), k-color-mix( $kendo-color-primary, #ffffff, 20% )) !default;
|
|
51002
51920
|
|
|
51003
51921
|
/// The horizontal margin of the Editor's export tool icon.
|
|
51004
51922
|
/// @group editor
|
|
@@ -52238,12 +53156,12 @@ $kendo-gantt-treelist-bg: null !default;
|
|
|
52238
53156
|
$kendo-gantt-treelist-text: null !default;
|
|
52239
53157
|
$kendo-gantt-treelist-border: null !default;
|
|
52240
53158
|
|
|
52241
|
-
$kendo-gantt-nonwork-bg: rgba( k-contrast-color( $kendo-gantt-bg ), .025 ) !default;
|
|
53159
|
+
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .03 ), rgba( k-contrast-color( $kendo-gantt-bg ), .025 )) !default;
|
|
52242
53160
|
$kendo-gantt-nonwork-text: null !default;
|
|
52243
53161
|
$kendo-gantt-nonwork-border: null !default;
|
|
52244
53162
|
|
|
52245
53163
|
$kendo-gantt-line-size: 2px !default;
|
|
52246
|
-
$kendo-gantt-line-fill: k-contrast-color( $kendo-gantt-bg ) !default;
|
|
53164
|
+
$kendo-gantt-line-fill: if($kendo-enable-color-system, k-color( on-base ), k-contrast-color( $kendo-gantt-bg )) !default;
|
|
52247
53165
|
$kendo-gantt-line-selected-fill: $kendo-color-primary !default;
|
|
52248
53166
|
|
|
52249
53167
|
$kendo-gantt-dot-size: 8px !default;
|
|
@@ -52258,19 +53176,19 @@ $kendo-gantt-milestone-border: $kendo-gantt-border !default;
|
|
|
52258
53176
|
$kendo-gantt-milestone-selected-bg: $kendo-selected-bg !default;
|
|
52259
53177
|
$kendo-gantt-milestone-selected-border: $kendo-selected-border !default;
|
|
52260
53178
|
|
|
52261
|
-
$kendo-gantt-summary-bg: k-try-tint( $kendo-gantt-text, 1 ) !default;
|
|
52262
|
-
$kendo-gantt-summary-progress-bg: k-try-shade( $kendo-gantt-text, 5 ) !default;
|
|
52263
|
-
$kendo-gantt-summary-selected-bg: k-try-tint( $kendo-selected-bg, 6 ) !default;
|
|
53179
|
+
$kendo-gantt-summary-bg: if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-gantt-text, 1 )) !default;
|
|
53180
|
+
$kendo-gantt-summary-progress-bg: if($kendo-enable-color-system, k-color( on-base ), k-try-shade( $kendo-gantt-text, 5 )) !default;
|
|
53181
|
+
$kendo-gantt-summary-selected-bg: if($kendo-enable-color-system, k-color( primary-subtle-active ), k-try-tint( $kendo-selected-bg, 6 )) !default;
|
|
52264
53182
|
$kendo-gantt-summary-progress-selected-bg: $kendo-selected-bg !default;
|
|
52265
53183
|
|
|
52266
53184
|
$kendo-gantt-task-border-width: 0px !default;
|
|
52267
53185
|
$kendo-gantt-task-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
52268
53186
|
$kendo-gantt-task-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
52269
|
-
$kendo-gantt-task-bg: k-try-tint( $kendo-gantt-text, 2 ) !default;
|
|
52270
|
-
$kendo-gantt-task-text: k-contrast-color( $kendo-gantt-text ) !default;
|
|
53187
|
+
$kendo-gantt-task-bg: if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-gantt-text, 2 )) !default;
|
|
53188
|
+
$kendo-gantt-task-text: if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-color( $kendo-gantt-text )) !default;
|
|
52271
53189
|
$kendo-gantt-task-border: null !default;
|
|
52272
53190
|
$kendo-gantt-task-progress-bg: $kendo-gantt-text !default;
|
|
52273
|
-
$kendo-gantt-task-selected-bg: k-try-tint( $kendo-selected-bg, 6 ) !default;
|
|
53191
|
+
$kendo-gantt-task-selected-bg: if($kendo-enable-color-system, k-color( primary-subtle-active ), k-try-tint( $kendo-selected-bg, 6 )) !default;
|
|
52274
53192
|
$kendo-gantt-task-selected-text: $kendo-selected-text !default;
|
|
52275
53193
|
$kendo-gantt-task-selected-border: null !default;
|
|
52276
53194
|
$kendo-gantt-task-progress-selected-bg: $kendo-selected-bg !default;
|
|
@@ -52304,10 +53222,10 @@ $kendo-gantt-planned-bg: $kendo-color-primary !default;
|
|
|
52304
53222
|
$kendo-gantt-planned-border: $kendo-gantt-planned-bg !default;
|
|
52305
53223
|
|
|
52306
53224
|
$kendo-gantt-delayed-bg: $kendo-color-error !default;
|
|
52307
|
-
$kendo-gantt-delayed-bg-lighter: k-color-tint($kendo-gantt-delayed-bg, 5) !default;
|
|
53225
|
+
$kendo-gantt-delayed-bg-lighter: if($kendo-enable-color-system, k-color( error-emphasis ), k-color-tint($kendo-gantt-delayed-bg, 5)) !default;
|
|
52308
53226
|
|
|
52309
53227
|
$kendo-gantt-advanced-bg: $kendo-color-success !default;
|
|
52310
|
-
$kendo-gantt-advanced-bg-lighter: k-color-tint($kendo-gantt-advanced-bg, 5) !default;
|
|
53228
|
+
$kendo-gantt-advanced-bg-lighter: if($kendo-enable-color-system, k-color( success-emphasis ), k-color-tint($kendo-gantt-advanced-bg, 5)) !default;
|
|
52311
53229
|
|
|
52312
53230
|
$kendo-gantt-action-on-offset-text: #000000 !default;
|
|
52313
53231
|
$kendo-gantt-offset-resize-handler-top: 50% !default;
|
|
@@ -52614,9 +53532,9 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
52614
53532
|
|
|
52615
53533
|
|
|
52616
53534
|
// Timeline
|
|
52617
|
-
.k-gantt-timeline {
|
|
53535
|
+
.k-gantt-timeline-pane {
|
|
52618
53536
|
|
|
52619
|
-
.k-timeline {
|
|
53537
|
+
.k-gantt-timeline {
|
|
52620
53538
|
height: 100%;
|
|
52621
53539
|
border-width: 0;
|
|
52622
53540
|
display: flex;
|
|
@@ -53095,7 +54013,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
53095
54013
|
}
|
|
53096
54014
|
|
|
53097
54015
|
.k-gantt,
|
|
53098
|
-
.k-gantt-timeline,
|
|
54016
|
+
.k-gantt-timeline-pane,
|
|
53099
54017
|
.k-gantt-dependencies {
|
|
53100
54018
|
width: auto !important; // stylelint-disable-line declaration-no-important
|
|
53101
54019
|
height: auto !important; // stylelint-disable-line declaration-no-important
|
|
@@ -53140,7 +54058,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
53140
54058
|
margin-inline: -26px;
|
|
53141
54059
|
}
|
|
53142
54060
|
|
|
53143
|
-
.k-gantt-timeline {
|
|
54061
|
+
.k-gantt-timeline-pane {
|
|
53144
54062
|
.k-header {
|
|
53145
54063
|
border-width: 0 $kendo-grid-cell-vertical-border-width 1px 0;
|
|
53146
54064
|
}
|
|
@@ -53200,7 +54118,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
53200
54118
|
margin-right: $kendo-gantt-rtl-milestone-planned-moment-margin-x;
|
|
53201
54119
|
}
|
|
53202
54120
|
|
|
53203
|
-
.k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
54121
|
+
.k-gantt-timeline-pane .k-milestone-wrap .k-task-start {
|
|
53204
54122
|
right: $kendo-gantt-rtl-milestone-dot-start-margin-x;
|
|
53205
54123
|
}
|
|
53206
54124
|
|
|
@@ -53616,7 +54534,7 @@ $kendo-scheduler-event-min-height: 25px !default;
|
|
|
53616
54534
|
$kendo-scheduler-event-border-radius: $kendo-border-radius-md !default;
|
|
53617
54535
|
$kendo-scheduler-event-line-height: calc( #{$kendo-scheduler-event-min-height} - (2 * #{$kendo-padding-md-y}) ) !default;
|
|
53618
54536
|
|
|
53619
|
-
$kendo-scheduler-event-bg: k-color-tint( $kendo-selected-bg, 2 ) !default;
|
|
54537
|
+
$kendo-scheduler-event-bg: if($kendo-enable-color-system, k-color( primary ), k-color-tint( $kendo-selected-bg, 2 )) !default;
|
|
53620
54538
|
$kendo-scheduler-event-text: $kendo-selected-text !default;
|
|
53621
54539
|
$kendo-scheduler-event-border: null !default;
|
|
53622
54540
|
$kendo-scheduler-event-gradient: null !default;
|
|
@@ -53642,13 +54560,13 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
|
|
|
53642
54560
|
$kendo-scheduler-datecolumn-width: 12em !default;
|
|
53643
54561
|
$kendo-scheduler-timecolumn-width: 11em !default;
|
|
53644
54562
|
|
|
53645
|
-
$kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
|
|
54563
|
+
$kendo-scheduler-nonwork-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
|
|
53646
54564
|
$kendo-scheduler-nonwork-text: null !default;
|
|
53647
54565
|
|
|
53648
54566
|
$kendo-scheduler-weekend-bg: null !default;
|
|
53649
54567
|
$kendo-scheduler-weekend-text: null !default;
|
|
53650
54568
|
|
|
53651
|
-
$kendo-scheduler-othermonth-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
|
|
54569
|
+
$kendo-scheduler-othermonth-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
|
|
53652
54570
|
$kendo-scheduler-othermonth-text: null !default;
|
|
53653
54571
|
|
|
53654
54572
|
$kendo-scheduler-yearview-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
@@ -54809,7 +55727,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
54809
55727
|
|
|
54810
55728
|
.k-scheduler-layout td.k-selected,
|
|
54811
55729
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
54812
|
-
background-color: rgba($kendo-selected-bg, .25);
|
|
55730
|
+
background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
|
|
54813
55731
|
}
|
|
54814
55732
|
|
|
54815
55733
|
.k-scheduler-layout-flex {
|
|
@@ -54852,7 +55770,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
54852
55770
|
}
|
|
54853
55771
|
|
|
54854
55772
|
&.k-event-inverse {
|
|
54855
|
-
color: k-contrast-legacy( $kendo-scheduler-event-text );
|
|
55773
|
+
color: if($kendo-enable-color-system, k-color( on-app-surface ), k-contrast-legacy( $kendo-scheduler-event-text ));
|
|
54856
55774
|
}
|
|
54857
55775
|
|
|
54858
55776
|
&.k-event-ongoing {
|
|
@@ -54926,7 +55844,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
54926
55844
|
|
|
54927
55845
|
// Selected
|
|
54928
55846
|
.k-scheduler-content tr.k-selected {
|
|
54929
|
-
background-color: rgba($kendo-selected-bg, .25);
|
|
55847
|
+
background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
|
|
54930
55848
|
}
|
|
54931
55849
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
54932
55850
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
@@ -55115,7 +56033,7 @@ $kendo-chat-bubble-hover-shadow: k-elevation(2) !default;
|
|
|
55115
56033
|
$kendo-chat-bubble-selected-shadow: k-elevation(3) !default;
|
|
55116
56034
|
|
|
55117
56035
|
$kendo-chat-alt-bubble-bg: $kendo-color-primary !default;
|
|
55118
|
-
$kendo-chat-alt-bubble-text: k-contrast-legacy( $kendo-chat-alt-bubble-bg ) !default;
|
|
56036
|
+
$kendo-chat-alt-bubble-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-chat-alt-bubble-bg )) !default;
|
|
55119
56037
|
$kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-bg !default;
|
|
55120
56038
|
$kendo-chat-alt-bubble-shadow: k-elevation(1) !default;
|
|
55121
56039
|
$kendo-chat-alt-bubble-hover-shadow: k-elevation(2) !default;
|
|
@@ -55790,7 +56708,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
55790
56708
|
$kendo-media-player-titlebar-bg: null !default;
|
|
55791
56709
|
$kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
|
|
55792
56710
|
$kendo-media-player-titlebar-border: null !default;
|
|
55793
|
-
$kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgba( $kendo-media-player-text, 0 ) !default;
|
|
56711
|
+
$kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-color( on-app-surface, true ), .7 ), rgba( k-color( on-app-surface, true ), 0 ) ), ( rgba( $kendo-media-player-text, .7 ), rgba( $kendo-media-player-text, 0 ) )) !default;
|
|
55794
56712
|
|
|
55795
56713
|
// #endregion
|
|
55796
56714
|
// #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
|
|
@@ -55928,7 +56846,7 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
|
|
|
55928
56846
|
.k-mediaplayer-titlebar {
|
|
55929
56847
|
color: $kendo-media-player-titlebar-text;
|
|
55930
56848
|
background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
|
|
55931
|
-
text-shadow: 0 0 2px rgba( $kendo-media-player-text, .5 );
|
|
56849
|
+
text-shadow: 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-media-player-text, .5 ));
|
|
55932
56850
|
}
|
|
55933
56851
|
|
|
55934
56852
|
}
|
|
@@ -56020,9 +56938,9 @@ $kendo-timeline-mobile-spacing-y: 16px !default;
|
|
|
56020
56938
|
$kendo-timeline-track-arrow-width: 30px !default;
|
|
56021
56939
|
$kendo-timeline-track-arrow-height: 30px !default;
|
|
56022
56940
|
|
|
56023
|
-
$kendo-timeline-track-arrow-disabled-
|
|
56024
|
-
$kendo-timeline-track-arrow-disabled-
|
|
56025
|
-
$kendo-timeline-track-arrow-disabled-border: k-true-mix( #000000, $kendo-body-bg, 4.8% ) !default;
|
|
56941
|
+
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% )) !default;
|
|
56942
|
+
$kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-true-mix( $kendo-button-text, $kendo-body-bg, 65% )) !default;
|
|
56943
|
+
$kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, rgba( k-color( border, true ), .15 ), k-true-mix( #000000, $kendo-body-bg, 4.8% )) !default;
|
|
56026
56944
|
|
|
56027
56945
|
$kendo-timeline-track-size: 6px !default;
|
|
56028
56946
|
$kendo-timeline-track-wrap-padding-bottom: k-math-div( $kendo-timeline-track-size, 2 ) !default;
|
|
@@ -56046,7 +56964,7 @@ $kendo-timeline-flag-max-width: calc(#{$kendo-timeline-flag-min-width} + 2 * #{$
|
|
|
56046
56964
|
$kendo-timeline-mobile-flag-max-width: calc(#{$kendo-timeline-flag-min-width} + 2 * #{$kendo-timeline-mobile-spacing-x}) !default;
|
|
56047
56965
|
$kendo-timeline-horizontal-flag-min-width: 60px !default;
|
|
56048
56966
|
$kendo-timeline-flag-bg: $kendo-color-primary !default;
|
|
56049
|
-
$kendo-timeline-flag-text: k-contrast-legacy( $kendo-timeline-flag-bg ) !default;
|
|
56967
|
+
$kendo-timeline-flag-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-timeline-flag-bg )) !default;
|
|
56050
56968
|
|
|
56051
56969
|
$kendo-timeline-flag-callout-width: 10px !default;
|
|
56052
56970
|
$kendo-timeline-flag-callout-height: 10px !default;
|
|
@@ -57321,7 +58239,7 @@ $kendo-scrollview-pagebutton-border: $kendo-button-border !default;
|
|
|
57321
58239
|
$kendo-scrollview-pagebutton-primary-bg: $kendo-color-primary !default;
|
|
57322
58240
|
/// The primary border color of the ScrollView page button.
|
|
57323
58241
|
/// @group scrollview
|
|
57324
|
-
$kendo-scrollview-pagebutton-primary-border: k-try-shade( $kendo-color-primary, 2 ) !default;
|
|
58242
|
+
$kendo-scrollview-pagebutton-primary-border: if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-color-primary, 2 )) !default;
|
|
57325
58243
|
/// The box shadow of the ScrollView page button.
|
|
57326
58244
|
/// @group scrollview
|
|
57327
58245
|
$kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
@@ -57974,51 +58892,51 @@ $_kendo-module-meta: (
|
|
|
57974
58892
|
|
|
57975
58893
|
/// The first base series color and its light and dark shades.
|
|
57976
58894
|
/// @group charts
|
|
57977
|
-
$kendo-series-a: #ff6358 !default;
|
|
57978
|
-
$kendo-series-a-dark: k-color-mix(
|
|
57979
|
-
$kendo-series-a-darker: k-color-mix(
|
|
57980
|
-
$kendo-series-a-light: k-color-mix(
|
|
57981
|
-
$kendo-series-a-lighter: k-color-mix(
|
|
58895
|
+
$kendo-series-a: if($kendo-enable-color-system, k-color( series-a ), #ff6358) !default;
|
|
58896
|
+
$kendo-series-a-dark: if($kendo-enable-color-system, k-color( series-a-bold ), k-color-mix(black, $kendo-series-a, 25%)) !default;
|
|
58897
|
+
$kendo-series-a-darker: if($kendo-enable-color-system, k-color( series-a-bolder ), k-color-mix(black, $kendo-series-a, 50%)) !default;
|
|
58898
|
+
$kendo-series-a-light: if($kendo-enable-color-system, k-color( series-a-subtle ), k-color-mix(white, $kendo-series-a, 25%)) !default;
|
|
58899
|
+
$kendo-series-a-lighter: if($kendo-enable-color-system, k-color( series-a-subtler ), k-color-mix(white, $kendo-series-a, 50%)) !default;
|
|
57982
58900
|
|
|
57983
58901
|
/// The second base series color and its light and dark shades.
|
|
57984
58902
|
/// @group charts
|
|
57985
|
-
$kendo-series-b: #ffd246 !default;
|
|
57986
|
-
$kendo-series-b-dark: k-color-mix(
|
|
57987
|
-
$kendo-series-b-darker: k-color-mix(
|
|
57988
|
-
$kendo-series-b-light: k-color-mix(
|
|
57989
|
-
$kendo-series-b-lighter: k-color-mix(
|
|
58903
|
+
$kendo-series-b: if($kendo-enable-color-system, k-color( series-b ), #ffd246) !default;
|
|
58904
|
+
$kendo-series-b-dark: if($kendo-enable-color-system, k-color( series-b-bold ), k-color-mix(black, $kendo-series-b, 25%)) !default;
|
|
58905
|
+
$kendo-series-b-darker: if($kendo-enable-color-system, k-color( series-b-bolder ), k-color-mix(black, $kendo-series-b, 50%)) !default;
|
|
58906
|
+
$kendo-series-b-light: if($kendo-enable-color-system, k-color( series-b-subtle ), k-color-mix(white, $kendo-series-b, 25%)) !default;
|
|
58907
|
+
$kendo-series-b-lighter: if($kendo-enable-color-system, k-color( series-b-subtler ), k-color-mix(white, $kendo-series-b, 50%)) !default;
|
|
57990
58908
|
|
|
57991
58909
|
/// The third base series color and its light and dark shades.
|
|
57992
58910
|
/// @group charts
|
|
57993
|
-
$kendo-series-c: #78d237 !default;
|
|
57994
|
-
$kendo-series-c-dark: k-color-mix(
|
|
57995
|
-
$kendo-series-c-darker: k-color-mix(
|
|
57996
|
-
$kendo-series-c-light: k-color-mix(
|
|
57997
|
-
$kendo-series-c-lighter: k-color-mix(
|
|
58911
|
+
$kendo-series-c: if($kendo-enable-color-system, k-color( series-c ), #78d237) !default;
|
|
58912
|
+
$kendo-series-c-dark: if($kendo-enable-color-system, k-color( series-c-bold ), k-color-mix(black, $kendo-series-c, 25%)) !default;
|
|
58913
|
+
$kendo-series-c-darker: if($kendo-enable-color-system, k-color( series-c-bolder ), k-color-mix(black, $kendo-series-c, 50%)) !default;
|
|
58914
|
+
$kendo-series-c-light: if($kendo-enable-color-system, k-color( series-c-subtle ), k-color-mix(white, $kendo-series-c, 25%)) !default;
|
|
58915
|
+
$kendo-series-c-lighter: if($kendo-enable-color-system, k-color( series-c-subtler ), k-color-mix(white, $kendo-series-c, 50%)) !default;
|
|
57998
58916
|
|
|
57999
58917
|
/// The fourth base series color and its light and dark shades.
|
|
58000
58918
|
/// @group charts
|
|
58001
|
-
$kendo-series-d: #28b4c8 !default;
|
|
58002
|
-
$kendo-series-d-dark: k-color-mix(
|
|
58003
|
-
$kendo-series-d-darker: k-color-mix(
|
|
58004
|
-
$kendo-series-d-light: k-color-mix(
|
|
58005
|
-
$kendo-series-d-lighter: k-color-mix(
|
|
58919
|
+
$kendo-series-d: if($kendo-enable-color-system, k-color( series-d ), #28b4c8) !default;
|
|
58920
|
+
$kendo-series-d-dark: if($kendo-enable-color-system, k-color( series-d-bold ), k-color-mix(black, $kendo-series-d, 25%)) !default;
|
|
58921
|
+
$kendo-series-d-darker: if($kendo-enable-color-system, k-color( series-d-bolder ), k-color-mix(black, $kendo-series-d, 50%)) !default;
|
|
58922
|
+
$kendo-series-d-light: if($kendo-enable-color-system, k-color( series-d-subtle ), k-color-mix(white, $kendo-series-d, 25%)) !default;
|
|
58923
|
+
$kendo-series-d-lighter: if($kendo-enable-color-system, k-color( series-d-subtler ), k-color-mix(white, $kendo-series-d, 50%)) !default;
|
|
58006
58924
|
|
|
58007
58925
|
/// The fifth base series color and its light and dark shades.
|
|
58008
58926
|
/// @group charts
|
|
58009
|
-
$kendo-series-e: #2d73f5 !default;
|
|
58010
|
-
$kendo-series-e-dark: k-color-mix(
|
|
58011
|
-
$kendo-series-e-darker: k-color-mix(
|
|
58012
|
-
$kendo-series-e-light: k-color-mix(
|
|
58013
|
-
$kendo-series-e-lighter: k-color-mix(
|
|
58927
|
+
$kendo-series-e: if($kendo-enable-color-system, k-color( series-e ), #2d73f5) !default;
|
|
58928
|
+
$kendo-series-e-dark: if($kendo-enable-color-system, k-color( series-e-bold ), k-color-mix(black, $kendo-series-e, 25%)) !default;
|
|
58929
|
+
$kendo-series-e-darker: if($kendo-enable-color-system, k-color( series-e-bolder ), k-color-mix(black, $kendo-series-e, 50%)) !default;
|
|
58930
|
+
$kendo-series-e-light: if($kendo-enable-color-system, k-color( series-e-subtle ), k-color-mix(white, $kendo-series-e, 25%)) !default;
|
|
58931
|
+
$kendo-series-e-lighter: if($kendo-enable-color-system, k-color( series-e-subtler ), k-color-mix(white, $kendo-series-e, 50%)) !default;
|
|
58014
58932
|
|
|
58015
58933
|
/// The sixth base series color and its light and dark shades.
|
|
58016
58934
|
/// @group charts
|
|
58017
|
-
$kendo-series-f: #aa46be !default;
|
|
58018
|
-
$kendo-series-f-dark: k-color-mix(
|
|
58019
|
-
$kendo-series-f-darker: k-color-mix(
|
|
58020
|
-
$kendo-series-f-light: k-color-mix(
|
|
58021
|
-
$kendo-series-f-lighter: k-color-mix(
|
|
58935
|
+
$kendo-series-f: if($kendo-enable-color-system, k-color( series-f ), #aa46be) !default;
|
|
58936
|
+
$kendo-series-f-dark: if($kendo-enable-color-system, k-color( series-f-bold ), k-color-mix(black, $kendo-series-f, 25%)) !default;
|
|
58937
|
+
$kendo-series-f-darker: if($kendo-enable-color-system, k-color( series-f-bolder ), k-color-mix(black, $kendo-series-f, 50%)) !default;
|
|
58938
|
+
$kendo-series-f-light: if($kendo-enable-color-system, k-color( series-f-subtle ), k-color-mix(white, $kendo-series-f, 25%)) !default;
|
|
58939
|
+
$kendo-series-f-lighter: if($kendo-enable-color-system, k-color( series-f-subtler ), k-color-mix(white, $kendo-series-f, 50%)) !default;
|
|
58022
58940
|
|
|
58023
58941
|
/// The series colors in order:
|
|
58024
58942
|
/// base, light, dark, lighter, darker
|
|
@@ -58069,13 +58987,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
|
|
|
58069
58987
|
|
|
58070
58988
|
/// The color of the Chart grid lines (major).
|
|
58071
58989
|
/// @group charts
|
|
58072
|
-
$kendo-chart-major-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
|
|
58990
|
+
$kendo-chart-major-lines: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .08 ) !default;
|
|
58073
58991
|
|
|
58074
58992
|
/// The color of the Chart grid lines (minor).
|
|
58075
58993
|
/// @group charts
|
|
58076
|
-
$kendo-chart-minor-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .04 ) !default;
|
|
58994
|
+
$kendo-chart-minor-lines: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .04 ) !default;
|
|
58077
58995
|
|
|
58078
|
-
$kendo-chart-inactive: rgba( $kendo-body-text, .5 ) !default;
|
|
58996
|
+
$kendo-chart-inactive: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-body-text, .5 )) !default;
|
|
58079
58997
|
$kendo-chart-area-opacity: .6 !default;
|
|
58080
58998
|
$kendo-chart-area-inactive-opacity: .1 !default;
|
|
58081
58999
|
$kendo-chart-line-inactive-opacity: .1 !default;
|
|
@@ -58086,20 +59004,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
|
|
|
58086
59004
|
$kendo-chart-text: $kendo-component-text !default;
|
|
58087
59005
|
$kendo-chart-border: $kendo-component-border !default;
|
|
58088
59006
|
|
|
58089
|
-
$kendo-chart-crosshair-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
|
|
59007
|
+
$kendo-chart-crosshair-background: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .5 ) !default;
|
|
58090
59008
|
$kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
|
|
58091
|
-
$kendo-chart-crosshair-shared-tooltip-background: k-try-shade( $kendo-chart-bg, 1 ) !default;
|
|
58092
|
-
$kendo-chart-crosshair-shared-tooltip-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08) !default;
|
|
59009
|
+
$kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg, 1 )) !default;
|
|
59010
|
+
$kendo-chart-crosshair-shared-tooltip-border: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .08) !default;
|
|
58093
59011
|
|
|
58094
|
-
$kendo-chart-notes-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
|
|
58095
|
-
$kendo-chart-notes-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
|
|
58096
|
-
$kendo-chart-notes-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
|
|
59012
|
+
$kendo-chart-notes-background: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .5 ) !default;
|
|
59013
|
+
$kendo-chart-notes-border: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .5 ) !default;
|
|
59014
|
+
$kendo-chart-notes-lines: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .5 ) !default;
|
|
58097
59015
|
|
|
58098
|
-
$kendo-chart-error-bars-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
|
|
59016
|
+
$kendo-chart-error-bars-background: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .5 ) !default;
|
|
58099
59017
|
|
|
58100
59018
|
$kendo-chart-selection-handle-size: 22px !default;
|
|
58101
|
-
$kendo-chart-selection-border-color: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
|
|
58102
|
-
$kendo-chart-selection-shadow: inset 0 1px 7px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .15) !default;
|
|
59019
|
+
$kendo-chart-selection-border-color: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .08 ) !default;
|
|
59020
|
+
$kendo-chart-selection-shadow: inset 0 1px 7px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .15) !default;
|
|
58103
59021
|
|
|
58104
59022
|
|
|
58105
59023
|
// TreeMap
|
|
@@ -58565,14 +59483,14 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
|
|
|
58565
59483
|
series-30: $kendo-series-30,
|
|
58566
59484
|
|
|
58567
59485
|
gauge-pointer: $kendo-color-primary,
|
|
58568
|
-
gauge-track: k-try-shade( $kendo-chart-bg )
|
|
59486
|
+
gauge-track: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg ))
|
|
58569
59487
|
);
|
|
58570
59488
|
|
|
58571
59489
|
@each $name, $value in $exported {
|
|
58572
59490
|
$type: k-meta-type-of($value);
|
|
58573
59491
|
|
|
58574
59492
|
.k-var--#{$name} {
|
|
58575
|
-
@if $type == "color" {
|
|
59493
|
+
@if $type == "color" or $type == "string" {
|
|
58576
59494
|
// background-color can store any color
|
|
58577
59495
|
background-color: $value;
|
|
58578
59496
|
} @else if $type == "number" {
|
|
@@ -58861,7 +59779,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
|
|
|
58861
59779
|
$kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
|
|
58862
59780
|
$kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
|
|
58863
59781
|
$kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
|
|
58864
|
-
$kendo-map-attribution-bg: rgba( $kendo-map-bg, .8 ) !default;
|
|
59782
|
+
$kendo-map-attribution-bg: if($kendo-enable-color-system, rgba( k-color( app-surface, true ), .8 ), rgba( $kendo-map-bg, .8 )) !default;
|
|
58865
59783
|
|
|
58866
59784
|
$kendo-map-marker-fill: $kendo-color-primary !default;
|
|
58867
59785
|
|
|
@@ -59462,7 +60380,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
|
|
|
59462
60380
|
|
|
59463
60381
|
$kendo-signature-line-width: 1px !default;
|
|
59464
60382
|
$kendo-signature-line-style: dashed !default;
|
|
59465
|
-
$kendo-signature-line-color: rgba( $kendo-color-info, .24 ) !default;
|
|
60383
|
+
$kendo-signature-line-color: if($kendo-enable-color-system, rgba( k-color( info, true ), .24 ), rgba( $kendo-color-info, .24 )) !default;
|
|
59466
60384
|
|
|
59467
60385
|
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
59468
60386
|
$kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
|