@progress/kendo-theme-classic 6.5.0-dev.0 → 6.5.0-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +338 -40
- package/dist/all.scss +2216 -680
- package/dist/meta/sassdoc-data.json +40975 -19275
- package/dist/meta/sassdoc-raw-data.json +18172 -8170
- package/dist/meta/variables.json +330 -266
- 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 +15 -0
- package/scss/action-sheet/_variables.scss +1 -0
- package/scss/appbar/_variables.scss +39 -7
- package/scss/bottom-navigation/_variables.scss +42 -8
- package/scss/breadcrumb/_variables.scss +177 -6
- package/scss/coloreditor/_variables.scss +53 -4
- package/scss/colorgradient/_variables.scss +86 -5
- package/scss/colorpalette/_variables.scss +18 -1
- package/scss/common/_index.scss +0 -1
- package/scss/core/_index.scss +2 -15
- package/scss/dialog/_variables.scss +16 -2
- package/scss/editor/_variables.scss +33 -0
- package/scss/expansion-panel/_variables.scss +56 -12
- package/scss/filter/_variables.scss +18 -1
- package/scss/listbox/_variables.scss +21 -20
- package/scss/listview/_variables.scss +42 -7
- package/scss/loader/_variables.scss +88 -12
- package/scss/menu/_variables.scss +1 -1
- package/scss/notification/_variables.scss +20 -19
- package/scss/popover/_variables.scss +60 -6
- package/scss/progressbar/_variables.scss +24 -23
- package/scss/scrollview/_variables.scss +59 -6
- package/scss/tilelayout/_variables.scss +21 -4
- package/scss/upload/_variables.scss +62 -9
- package/scss/window/_variables.scss +61 -6
- package/scss/common/_selection.scss +0 -1
package/dist/all.scss
CHANGED
|
@@ -5,18 +5,10 @@
|
|
|
5
5
|
// #region @import "./core/_index.scss"; -> scss/core/_index.scss
|
|
6
6
|
$wcag-min-contrast-ratio: 4.5 !default;
|
|
7
7
|
|
|
8
|
-
//
|
|
9
|
-
// #region @import "
|
|
8
|
+
// Variables
|
|
9
|
+
// #region @import "../_variables.scss"; -> scss/_variables.scss
|
|
10
|
+
// #region @import "./core/functions/index.import.scss"; -> scss/core/functions/index.import.scss
|
|
10
11
|
// #region @import "@progress/kendo-theme-core/scss/functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
11
|
-
// #region @import "../_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
|
|
12
|
-
// Equilateral triangle variables
|
|
13
|
-
// stylelint-disable number-max-precision
|
|
14
|
-
$equilateral-index: 1.7320508076 !default;
|
|
15
|
-
$equilateral-height: .8660254038 !default;
|
|
16
|
-
// stylelint-enable number-max-precision
|
|
17
|
-
|
|
18
|
-
// #endregion
|
|
19
|
-
|
|
20
12
|
// #region @import "./_color.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/_color.import.scss
|
|
21
13
|
/// Returns the alpha channel of a color.
|
|
22
14
|
/// @param {Color} $color - The color to get the alpha channel for.
|
|
@@ -1242,6 +1234,36 @@ $_kendo-escape-class-name: (
|
|
|
1242
1234
|
@return $map;
|
|
1243
1235
|
}
|
|
1244
1236
|
|
|
1237
|
+
/// Returns a deep-map with the keys and values from `$map` and `$args`.
|
|
1238
|
+
/// @param {Map} $maps - The maps to deep-merge.
|
|
1239
|
+
/// @return {Map} - A map with the keys and values from `$map` and `$args`.
|
|
1240
|
+
///
|
|
1241
|
+
/// @example scss - Usage
|
|
1242
|
+
/// @debug k-map-deep-merge( ( "foo": ("bar": "baz", "baz": "qux" ) ), ( "foo": ("bar": "foo") ) ); // => ( "foo": ("bar": "foo", "baz": "qux" ))
|
|
1243
|
+
@function k-map-deep-merge($maps...) {
|
|
1244
|
+
$merged: ();
|
|
1245
|
+
|
|
1246
|
+
@each $map in $maps {
|
|
1247
|
+
@each $key, $val in $map {
|
|
1248
|
+
@if (k-meta-type-of($val) == 'map') {
|
|
1249
|
+
$current: k-map-get($merged, $key);
|
|
1250
|
+
@if (k-meta-type-of($current) == 'map') {
|
|
1251
|
+
$val: k-map-deep-merge($current, $val);
|
|
1252
|
+
$map: k-map-merge(
|
|
1253
|
+
$map,
|
|
1254
|
+
(
|
|
1255
|
+
$key: $val
|
|
1256
|
+
)
|
|
1257
|
+
);
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
$merged: k-map-merge($merged, $map);
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
@return $merged;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1245
1267
|
/// Returns a map with the keys and values from `$map` except for `$keys`.
|
|
1246
1268
|
/// @param {Map} $map - The map to remove keys from.
|
|
1247
1269
|
/// @param {Any} $keys - The keys to remove from `$map`.
|
|
@@ -1323,6 +1345,10 @@ $_kendo-escape-class-name: (
|
|
|
1323
1345
|
/// @example scss - Usage
|
|
1324
1346
|
/// @debug k-meta-function-exists( "k-string-replace" ); // => true
|
|
1325
1347
|
@function k-meta-function-exists( $name ) {
|
|
1348
|
+
@if $name == "" {
|
|
1349
|
+
@return false;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1326
1352
|
@return function-exists( $name );
|
|
1327
1353
|
}
|
|
1328
1354
|
|
|
@@ -1543,6 +1569,15 @@ $_kendo-escape-class-name: (
|
|
|
1543
1569
|
|
|
1544
1570
|
// #endregion
|
|
1545
1571
|
// #region @import "./_string.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/_string.import.scss
|
|
1572
|
+
$svg-escaped-characters: (
|
|
1573
|
+
("%", "%25"),
|
|
1574
|
+
("<", "%3c"),
|
|
1575
|
+
(">", "%3e"),
|
|
1576
|
+
("#", "%23"),
|
|
1577
|
+
("(", "%28"),
|
|
1578
|
+
(")", "%29")
|
|
1579
|
+
) !default;
|
|
1580
|
+
|
|
1546
1581
|
/// Returns the first index of `$substring` in `$string`, or `null` if `$string` doesn’t contain `$substring`.
|
|
1547
1582
|
/// @param {String} $string - The string to process.
|
|
1548
1583
|
/// @param {String} $substring - The substring to look for.
|
|
@@ -1662,163 +1697,413 @@ $_kendo-escape-class-name: (
|
|
|
1662
1697
|
@return unquote( $string );
|
|
1663
1698
|
}
|
|
1664
1699
|
|
|
1665
|
-
// #endregion
|
|
1666
1700
|
|
|
1667
|
-
//
|
|
1701
|
+
// See https://www.sassmeister.com/gist/1b4f2da5527830088e4d
|
|
1702
|
+
@function str-replace($string, $search, $replace: "") {
|
|
1703
|
+
$index: k-string-index($string, $search);
|
|
1704
|
+
|
|
1705
|
+
@if $index {
|
|
1706
|
+
@return k-string-slice($string, 1, $index - 1) + $replace + str-replace(k-string-slice($string, $index + k-string-length($search)), $search, $replace);
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
@return $string;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
// See https://codepen.io/kevinweber/pen/dXWoRw
|
|
1713
|
+
@function escape-svg($string) {
|
|
1714
|
+
@if k-string-index($string, "data:image/svg+xml") {
|
|
1715
|
+
@each $char, $encoded in $svg-escaped-characters {
|
|
1716
|
+
// Do not escape the url brackets
|
|
1717
|
+
@if k-string-index($string, "url(") == 1 {
|
|
1718
|
+
$string: url("#{str-replace(k-string-slice($string, 6, -3), $char, $encoded)}");
|
|
1719
|
+
} @else {
|
|
1720
|
+
$string: str-replace($string, $char, $encoded);
|
|
1721
|
+
}
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
@return $string;
|
|
1726
|
+
}
|
|
1668
1727
|
|
|
1669
1728
|
// #endregion
|
|
1670
1729
|
|
|
1671
|
-
//
|
|
1672
|
-
// #region @import "./color-system/index.import.scss"; -> scss/core/color-system/index.import.scss
|
|
1673
|
-
// #region @import "@progress/kendo-theme-core/scss/color-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/index.import.scss
|
|
1674
|
-
// #region @import "./_functions.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_functions.import.scss
|
|
1675
|
-
@function k-generate-theme-variant( $variant, $matrix, $src-palette-name ) {
|
|
1676
|
-
$result: ();
|
|
1730
|
+
// #endregion
|
|
1677
1731
|
|
|
1678
|
-
|
|
1679
|
-
$prefix: if( $ui-state == DEFAULT, "", "#{$ui-state}-" );
|
|
1680
|
-
$indices-count: k-list-length( $indices );
|
|
1732
|
+
// #endregion
|
|
1681
1733
|
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
$outline-prop: if( $indices-count > 5, k-list-nth( $indices, 6 ), null );
|
|
1734
|
+
/// The color white.
|
|
1735
|
+
/// Note: you cannot change this value.
|
|
1736
|
+
/// @type Color
|
|
1737
|
+
/// @group color-system
|
|
1738
|
+
$kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
|
|
1688
1739
|
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
$shadow: $shadow-prop;
|
|
1695
|
-
$outline: $outline-prop;
|
|
1740
|
+
/// The color black.
|
|
1741
|
+
/// Note: you cannot change this value.
|
|
1742
|
+
/// @type Color
|
|
1743
|
+
/// @group color-system
|
|
1744
|
+
$kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
|
|
1696
1745
|
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
));
|
|
1705
|
-
}
|
|
1746
|
+
// Options
|
|
1747
|
+
$kendo-enable-rounded: true !default;
|
|
1748
|
+
$kendo-enable-shadows: true !default;
|
|
1749
|
+
$kendo-enable-gradients: true !default;
|
|
1750
|
+
$kendo-enable-transitions: true !default;
|
|
1751
|
+
$kendo-enable-focus-contrast: false !default;
|
|
1752
|
+
$kendo-enable-typography: false !default;
|
|
1706
1753
|
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1754
|
+
$kendo-use-input-button-width: false !default;
|
|
1755
|
+
$kendo-use-input-spinner-width: false !default;
|
|
1756
|
+
$kendo-use-input-spinner-icon-offset: false !default;
|
|
1710
1757
|
|
|
1711
|
-
|
|
1758
|
+
$kendo-auto-bootstrap: true !default;
|
|
1712
1759
|
|
|
1713
|
-
};
|
|
1714
1760
|
|
|
1761
|
+
// Spacing
|
|
1762
|
+
$kendo-spacing: (
|
|
1763
|
+
0: 0,
|
|
1764
|
+
1px: 1px,
|
|
1765
|
+
0.5: 2px,
|
|
1766
|
+
1: 4px,
|
|
1767
|
+
1.5: 6px,
|
|
1768
|
+
2: 8px,
|
|
1769
|
+
2.5: 10px,
|
|
1770
|
+
3: 12px,
|
|
1771
|
+
3.5: 14px,
|
|
1772
|
+
4: 16px,
|
|
1773
|
+
4.5: 18px,
|
|
1774
|
+
5: 20px,
|
|
1775
|
+
5.5: 22px,
|
|
1776
|
+
6: 24px,
|
|
1777
|
+
6.5: 26px,
|
|
1778
|
+
7: 28px,
|
|
1779
|
+
7.5: 30px,
|
|
1780
|
+
8: 32px,
|
|
1781
|
+
9: 36px,
|
|
1782
|
+
10: 40px,
|
|
1783
|
+
11: 44px,
|
|
1784
|
+
12: 48px,
|
|
1785
|
+
13: 52px,
|
|
1786
|
+
14: 56px,
|
|
1787
|
+
15: 60px,
|
|
1788
|
+
16: 64px,
|
|
1789
|
+
17: 68px,
|
|
1790
|
+
18: 72px,
|
|
1791
|
+
19: 76px,
|
|
1792
|
+
20: 80px,
|
|
1793
|
+
21: 84px,
|
|
1794
|
+
22: 88px,
|
|
1795
|
+
23: 92px,
|
|
1796
|
+
24: 96px
|
|
1797
|
+
) !default;
|
|
1715
1798
|
|
|
1716
|
-
@function k-process-variant-matrices( $theme-matrix, $palette-matrix: () ) {
|
|
1717
|
-
$result: ();
|
|
1718
1799
|
|
|
1719
|
-
|
|
1720
|
-
|
|
1800
|
+
// Icons
|
|
1801
|
+
$kendo-icon-size: 16px !default;
|
|
1721
1802
|
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1803
|
+
$kendo-icon-size-xs: calc( #{$kendo-icon-size} * .75 ) !default;
|
|
1804
|
+
$kendo-icon-size-sm: calc( #{$kendo-icon-size} * .875 ) !default;
|
|
1805
|
+
$kendo-icon-size-md: $kendo-icon-size !default;
|
|
1806
|
+
$kendo-icon-size-lg: calc( #{$kendo-icon-size} * 1.25 ) !default;
|
|
1807
|
+
$kendo-icon-size-xl: calc( #{$kendo-icon-size} * 1.5 ) !default;
|
|
1808
|
+
$kendo-icon-size-xxl: calc( #{$kendo-icon-size} * 2 ) !default;
|
|
1809
|
+
$kendo-icon-size-xxxl: calc( #{$kendo-icon-size} * 3 ) !default;
|
|
1726
1810
|
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
$result: k-map-merge( $result, $tmp-result);
|
|
1730
|
-
} @else {
|
|
1731
|
-
@each $color, $palette in $palette-matrix {
|
|
1732
|
-
$variant-name: k-string-replace( $variant, THEME_COLOR, $color);
|
|
1733
|
-
$palette-name: k-string-unquote($src-palette-name + "");
|
|
1811
|
+
$kendo-icon-spacing: k-map-get( $kendo-spacing, 1 ) !default;
|
|
1812
|
+
$kendo-icon-padding: k-map-get( $kendo-spacing, 1 ) !default;
|
|
1734
1813
|
|
|
1735
|
-
@if ($palette-name == THEME_COLOR) {
|
|
1736
|
-
$palette-name: k-string-replace( $palette-name, THEME_COLOR, $color );
|
|
1737
|
-
$palette-name: k-map-get( $palette-matrix, $palette-name );
|
|
1738
|
-
}
|
|
1739
1814
|
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1815
|
+
// Metrics
|
|
1816
|
+
$kendo-padding-x: 8px !default;
|
|
1817
|
+
$kendo-padding-y: 4px !default;
|
|
1818
|
+
$kendo-padding-sm-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
1819
|
+
$kendo-padding-sm-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
1820
|
+
$kendo-padding-md-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
1821
|
+
$kendo-padding-md-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
1822
|
+
$kendo-padding-lg-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
1823
|
+
$kendo-padding-lg-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
1745
1824
|
|
|
1746
|
-
|
|
1747
|
-
|
|
1825
|
+
/// Border radius for all components.
|
|
1826
|
+
$kendo-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
|
|
1827
|
+
$kendo-border-radius-sm: k-math-div( $kendo-border-radius, 2 ) !default;
|
|
1828
|
+
$kendo-border-radius-md: $kendo-border-radius !default;
|
|
1829
|
+
$kendo-border-radius-lg: $kendo-border-radius * 2 !default;
|
|
1748
1830
|
|
|
1831
|
+
$kendo-border-radii: (
|
|
1832
|
+
DEFAULT: $kendo-border-radius-md,
|
|
1833
|
+
0: 0,
|
|
1834
|
+
sm: $kendo-border-radius-sm,
|
|
1835
|
+
md: $kendo-border-radius-md,
|
|
1836
|
+
lg: $kendo-border-radius-lg,
|
|
1837
|
+
full: 9999px
|
|
1838
|
+
) !default;
|
|
1749
1839
|
|
|
1750
|
-
@function k-get-theme-palette( $name ) {
|
|
1751
|
-
@return k-map-get( $kendo-palettes, $name );
|
|
1752
|
-
}
|
|
1753
1840
|
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
}
|
|
1841
|
+
$kendo-zindex-popup: 1 !default;
|
|
1842
|
+
$kendo-zindex-window: 2 !default;
|
|
1843
|
+
$kendo-zindex-loading: 100 !default;
|
|
1758
1844
|
|
|
1759
|
-
@return k-map-get( k-get-theme-palette( $palette ), $hue );
|
|
1760
|
-
}
|
|
1761
1845
|
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
}
|
|
1846
|
+
// Color settings
|
|
1847
|
+
$kendo-is-dark-theme: false !default;
|
|
1765
1848
|
|
|
1766
|
-
//
|
|
1767
|
-
|
|
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;
|
|
1768
1857
|
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
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;
|
|
1772
1863
|
|
|
1773
|
-
/// The color
|
|
1774
|
-
///
|
|
1864
|
+
/// The secondary color of the theme.
|
|
1865
|
+
/// @group color-system
|
|
1775
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.
|
|
1776
1873
|
/// @group color-system
|
|
1777
|
-
|
|
1874
|
+
/// @type Color
|
|
1875
|
+
$kendo-color-secondary-contrast: k-contrast-color( $kendo-color-secondary ) !default;
|
|
1778
1876
|
|
|
1779
|
-
/// The color
|
|
1780
|
-
///
|
|
1877
|
+
/// The tertiary color of the theme.
|
|
1878
|
+
/// @group color-system
|
|
1781
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.
|
|
1782
1886
|
/// @group color-system
|
|
1783
|
-
|
|
1887
|
+
/// @type Color
|
|
1888
|
+
$kendo-color-tertiary-contrast: k-contrast-color( $kendo-color-tertiary ) !default;
|
|
1784
1889
|
|
|
1785
|
-
/// The color
|
|
1786
|
-
///
|
|
1890
|
+
/// The color for informational messages and states.
|
|
1891
|
+
/// @group color-system
|
|
1787
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.
|
|
1788
1898
|
/// @group color-system
|
|
1789
|
-
|
|
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;
|
|
1790
1903
|
|
|
1791
|
-
///
|
|
1792
|
-
/// Note: you cannot change this value.
|
|
1793
|
-
/// @type Gradient
|
|
1904
|
+
/// The color for warning messages and states.
|
|
1794
1905
|
/// @group color-system
|
|
1795
|
-
|
|
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;
|
|
1796
1910
|
|
|
1797
|
-
///
|
|
1798
|
-
/// Note: you cannot change this value.
|
|
1799
|
-
/// @type Gradient
|
|
1911
|
+
/// The color for error messages and states.
|
|
1800
1912
|
/// @group color-system
|
|
1801
|
-
|
|
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;
|
|
1802
1917
|
|
|
1803
|
-
///
|
|
1804
|
-
/// Note: you cannot change this value.
|
|
1805
|
-
/// @type Gradient
|
|
1918
|
+
/// The dark color of the theme.
|
|
1806
1919
|
/// @group color-system
|
|
1807
|
-
|
|
1920
|
+
/// @type Color
|
|
1921
|
+
$kendo-color-dark: #404040 !default;
|
|
1808
1922
|
|
|
1809
|
-
///
|
|
1810
|
-
/// Note: you cannot change this value.
|
|
1811
|
-
/// @type Gradient
|
|
1923
|
+
/// The light color of the theme.
|
|
1812
1924
|
/// @group color-system
|
|
1813
|
-
|
|
1925
|
+
/// @type Color
|
|
1926
|
+
$kendo-color-light: #ebebeb !default;
|
|
1814
1927
|
|
|
1815
|
-
///
|
|
1816
|
-
/// Note: you cannot change this value.
|
|
1817
|
-
/// @type Gradient
|
|
1928
|
+
/// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
|
|
1818
1929
|
/// @group color-system
|
|
1819
|
-
$kendo-
|
|
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
|
+
|
|
1947
|
+
// Typography
|
|
1948
|
+
|
|
1949
|
+
/// Base font size across all components.
|
|
1950
|
+
/// @group typography
|
|
1951
|
+
$kendo-font-size: 14px !default;
|
|
1952
|
+
$kendo-font-size-xs: 10px !default;
|
|
1953
|
+
$kendo-font-size-sm: 12px !default;
|
|
1954
|
+
$kendo-font-size-md: $kendo-font-size !default;
|
|
1955
|
+
$kendo-font-size-lg: 16px !default;
|
|
1956
|
+
$kendo-font-size-xl: 20px !default;
|
|
1957
|
+
|
|
1958
|
+
$kendo-font-sizes: (
|
|
1959
|
+
xs: $kendo-font-size-xs,
|
|
1960
|
+
sm: $kendo-font-size-sm,
|
|
1961
|
+
md: $kendo-font-size-md,
|
|
1962
|
+
lg: $kendo-font-size-lg,
|
|
1963
|
+
xl: $kendo-font-size-xl
|
|
1964
|
+
) !default;
|
|
1965
|
+
|
|
1966
|
+
/// Font family for text.
|
|
1967
|
+
/// @group typography
|
|
1968
|
+
$kendo-font-family-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
|
|
1969
|
+
|
|
1970
|
+
/// Font family for monospaced text. Used for styling the code.
|
|
1971
|
+
/// @group typography
|
|
1972
|
+
$kendo-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono", "Ubuntu Mono", "Lucida Console", "Courier New", monospace !default;
|
|
1820
1973
|
|
|
1974
|
+
/// Font family across all components.
|
|
1975
|
+
/// @group typography
|
|
1976
|
+
$kendo-font-family: inherit !default;
|
|
1977
|
+
|
|
1978
|
+
/// Line height used along with $kendo-font-size.
|
|
1979
|
+
/// @group typography
|
|
1980
|
+
$kendo-line-height: k-math-div( 20, 14 ) !default;
|
|
1981
|
+
$kendo-line-height-xs: 1 !default;
|
|
1982
|
+
$kendo-line-height-sm: 1.25 !default;
|
|
1983
|
+
$kendo-line-height-md: $kendo-line-height !default;
|
|
1984
|
+
$kendo-line-height-lg: 1.5 !default;
|
|
1985
|
+
$kendo-line-height-em: calc( #{$kendo-line-height} * 1em ) !default;
|
|
1986
|
+
|
|
1987
|
+
// Font weight
|
|
1988
|
+
$kendo-font-weight-light: 300 !default;
|
|
1989
|
+
$kendo-font-weight-normal: 400 !default;
|
|
1990
|
+
$kendo-font-weight-medium: 500 !default;
|
|
1991
|
+
$kendo-font-weight-semibold: 600 !default;
|
|
1992
|
+
$kendo-font-weight-bold: 700 !default;
|
|
1993
|
+
|
|
1994
|
+
// Letter Spacing
|
|
1995
|
+
$kendo-letter-spacing: null !default;
|
|
1996
|
+
|
|
1997
|
+
|
|
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
|
+
$kendo-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
2063
|
+
|
|
2064
|
+
$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
|
+
|
|
2066
|
+
|
|
2067
|
+
// Disabled mixin variables
|
|
2068
|
+
$kendo-disabled-text: #8d8d8d !default;
|
|
2069
|
+
$kendo-disabled-filter: grayscale(.1) !default;
|
|
2070
|
+
$kendo-disabled-opacity: .6 !default;
|
|
2071
|
+
|
|
2072
|
+
$kendo-disabled-styling: (
|
|
2073
|
+
opacity: $kendo-disabled-opacity,
|
|
2074
|
+
filter: $kendo-disabled-filter
|
|
2075
|
+
) !default;
|
|
2076
|
+
|
|
2077
|
+
|
|
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
|
+
// Loading
|
|
2097
|
+
$kendo-loading-opacity: .3 !default;
|
|
2098
|
+
$kendo-zindex-loading: 100 !default;
|
|
1821
2099
|
// #endregion
|
|
2100
|
+
|
|
2101
|
+
// #region @import "@progress/kendo-theme-core/scss/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/index.import.scss
|
|
2102
|
+
// #region @import "./functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
2103
|
+
// File already imported_once. Skipping output.
|
|
2104
|
+
// #endregion
|
|
2105
|
+
// #region @import "./color-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/index.import.scss
|
|
2106
|
+
// #region @import "./_functions.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_functions.import.scss
|
|
1822
2107
|
// #region @import "./_palettes.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_palettes.scss
|
|
1823
2108
|
/// Color palettes to be used in the Kendo UI themes.
|
|
1824
2109
|
/// @access private
|
|
@@ -2807,13 +3092,380 @@ $kendo-palettes: (
|
|
|
2807
3092
|
|
|
2808
3093
|
// #endregion
|
|
2809
3094
|
|
|
3095
|
+
@function k-generate-theme-variant( $variant, $matrix, $src-palette-name ) {
|
|
3096
|
+
$result: ();
|
|
3097
|
+
|
|
3098
|
+
@each $ui-state, $indices in $matrix {
|
|
3099
|
+
$prefix: if( $ui-state == DEFAULT, "", "#{$ui-state}-" );
|
|
3100
|
+
$indices-count: k-list-length( $indices );
|
|
3101
|
+
|
|
3102
|
+
$bg-prop: k-list-nth( $indices, 1 );
|
|
3103
|
+
$text-prop: k-list-nth( $indices, 2 );
|
|
3104
|
+
$border-prop: k-list-nth( $indices, 3 );
|
|
3105
|
+
$gradient-prop: if( $indices-count > 3, k-list-nth( $indices, 4 ), null );
|
|
3106
|
+
$shadow-prop: if( $indices-count > 4, k-list-nth( $indices, 5 ), null );
|
|
3107
|
+
$outline-prop: if( $indices-count > 5, k-list-nth( $indices, 6 ), null );
|
|
3108
|
+
|
|
3109
|
+
// Take value from the palette only if it is a number
|
|
3110
|
+
$bg: if( k-meta-type-of( $bg-prop ) == number, k-get-theme-color( $src-palette-name, $bg-prop ), $bg-prop );
|
|
3111
|
+
$text: if( k-meta-type-of( $text-prop ) == number, k-get-theme-color( $src-palette-name, $text-prop ), $text-prop );
|
|
3112
|
+
$border: if( k-meta-type-of( $border-prop ) == number, k-get-theme-color( $src-palette-name, $border-prop ), $border-prop );
|
|
3113
|
+
$gradient: $gradient-prop;
|
|
3114
|
+
$shadow: $shadow-prop;
|
|
3115
|
+
$outline: $outline-prop;
|
|
3116
|
+
|
|
3117
|
+
$result: k-map-merge($result, (
|
|
3118
|
+
#{$prefix}bg: $bg,
|
|
3119
|
+
#{$prefix}text: $text,
|
|
3120
|
+
#{$prefix}border: $border,
|
|
3121
|
+
#{$prefix}gradient: $gradient,
|
|
3122
|
+
#{$prefix}shadow: $shadow,
|
|
3123
|
+
#{$prefix}outline: $outline
|
|
3124
|
+
));
|
|
3125
|
+
}
|
|
3126
|
+
|
|
3127
|
+
$result: (
|
|
3128
|
+
#{$variant}: $result
|
|
3129
|
+
);
|
|
3130
|
+
|
|
3131
|
+
@return $result;
|
|
3132
|
+
|
|
3133
|
+
};
|
|
3134
|
+
|
|
3135
|
+
|
|
3136
|
+
@function k-process-variant-matrices( $theme-matrix, $palette-matrix: () ) {
|
|
3137
|
+
$result: ();
|
|
3138
|
+
|
|
3139
|
+
// @debug $theme-matrix;
|
|
3140
|
+
// @debug $palette-matrix;
|
|
3141
|
+
|
|
3142
|
+
@each $variant, $definition in $theme-matrix {
|
|
3143
|
+
$tc-index: k-string-index( $variant, "THEME_COLOR" );
|
|
3144
|
+
$src-palette-name: k-map-get( $definition, PALETTE );
|
|
3145
|
+
$matrix: k-map-remove( $definition, PALETTE );
|
|
3146
|
+
|
|
3147
|
+
@if ($tc-index == null ) { // stylelint-disable-line
|
|
3148
|
+
$tmp-result: k-generate-theme-variant( $variant, $matrix, $src-palette-name );
|
|
3149
|
+
$result: k-map-merge( $result, $tmp-result);
|
|
3150
|
+
} @else {
|
|
3151
|
+
@each $color, $palette in $palette-matrix {
|
|
3152
|
+
$variant-name: k-string-replace( $variant, THEME_COLOR, $color);
|
|
3153
|
+
$palette-name: k-string-unquote($src-palette-name + "");
|
|
3154
|
+
|
|
3155
|
+
@if ($palette-name == THEME_COLOR) {
|
|
3156
|
+
$palette-name: k-string-replace( $palette-name, THEME_COLOR, $color );
|
|
3157
|
+
$palette-name: k-map-get( $palette-matrix, $palette-name );
|
|
3158
|
+
}
|
|
3159
|
+
|
|
3160
|
+
$tmp-result: k-generate-theme-variant( $variant-name, $matrix, $palette-name );
|
|
3161
|
+
$result: k-map-merge( $result, $tmp-result );
|
|
3162
|
+
}
|
|
3163
|
+
}
|
|
3164
|
+
}
|
|
3165
|
+
|
|
3166
|
+
@return $result;
|
|
3167
|
+
}
|
|
3168
|
+
|
|
3169
|
+
|
|
3170
|
+
@function k-get-theme-palette( $name ) {
|
|
3171
|
+
@return k-map-get( $kendo-palettes, $name );
|
|
3172
|
+
}
|
|
3173
|
+
|
|
3174
|
+
@function k-get-theme-color( $palette, $hue ) {
|
|
3175
|
+
@if ( k-meta-type-of( $palette ) == "map" ) {
|
|
3176
|
+
@return k-map-get( $palette, $hue );
|
|
3177
|
+
}
|
|
3178
|
+
|
|
3179
|
+
@return k-map-get( k-get-theme-palette( $palette ), $hue );
|
|
3180
|
+
}
|
|
3181
|
+
|
|
3182
|
+
@function k-get-theme-color-var( $name, $fallback: "inherit", $prefix: "kendo-" ) {
|
|
3183
|
+
@return var( --#{$prefix}#{$name}, #{$fallback} );
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
@function k-generate-theme-variation( $theme-color, $source-palette-name, $mapping ) {
|
|
3187
|
+
$temp: ( );
|
|
3188
|
+
|
|
3189
|
+
@each $ui-state, $indices in $mapping {
|
|
3190
|
+
$prefix: if( $ui-state == normal, '', '#{$ui-state}-' );
|
|
3191
|
+
|
|
3192
|
+
$bg-prop: k-list-nth($indices, 1);
|
|
3193
|
+
$text-prop: k-list-nth($indices, 2);
|
|
3194
|
+
$border-prop: k-list-nth($indices, 3);
|
|
3195
|
+
|
|
3196
|
+
// Take value from the palette only if it is a number
|
|
3197
|
+
$bg: if( k-meta-type-of($bg-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$bg-prop} ), $bg-prop );
|
|
3198
|
+
$text: if( k-meta-type-of($text-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$text-prop} ), $text-prop );
|
|
3199
|
+
$border: if( k-meta-type-of($border-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$border-prop} ), $border-prop );
|
|
3200
|
+
|
|
3201
|
+
|
|
3202
|
+
$temp: k-map-deep-merge( $temp, (
|
|
3203
|
+
#{$prefix}bg: $bg,
|
|
3204
|
+
#{$prefix}text: $text,
|
|
3205
|
+
#{$prefix}border: $border
|
|
3206
|
+
));
|
|
3207
|
+
|
|
3208
|
+
// Add outline if provided in the map
|
|
3209
|
+
@if ( k-list-length($indices) > 3 ) {
|
|
3210
|
+
$outline-prop: k-list-nth($indices, 4);
|
|
3211
|
+
$outline: if( k-meta-type-of($outline-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$outline-prop} ), $outline-prop );
|
|
3212
|
+
|
|
3213
|
+
$temp: k-map-deep-merge( $temp, (
|
|
3214
|
+
#{$prefix}outline: $outline
|
|
3215
|
+
));
|
|
3216
|
+
}
|
|
3217
|
+
}
|
|
3218
|
+
|
|
3219
|
+
$map: (
|
|
3220
|
+
#{$theme-color}: $temp
|
|
3221
|
+
);
|
|
3222
|
+
|
|
3223
|
+
@return $map;
|
|
3224
|
+
|
|
3225
|
+
};
|
|
3226
|
+
|
|
3227
|
+
@function k-generate-fill-mode-theme-variation( $fill-mode, $theme-color, $source-palette-name, $mapping ) {
|
|
3228
|
+
|
|
3229
|
+
$map: k-generate-theme-variation( $theme-color, $source-palette-name, $mapping );
|
|
3230
|
+
|
|
3231
|
+
$result: (
|
|
3232
|
+
#{$fill-mode}: $map
|
|
3233
|
+
);
|
|
3234
|
+
|
|
3235
|
+
@return $result;
|
|
3236
|
+
}
|
|
3237
|
+
|
|
2810
3238
|
// #endregion
|
|
3239
|
+
// #region @import "./_mixins.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_mixins.import.scss
|
|
3240
|
+
@mixin k-css-vars($map) {
|
|
3241
|
+
@each $group, $values in $map {
|
|
3242
|
+
@each $key, $value in $values {
|
|
3243
|
+
--kendo-#{k-meta-inspect($group)}-#{$key}: #{$value};
|
|
3244
|
+
}
|
|
3245
|
+
}
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3248
|
+
// #endregion
|
|
3249
|
+
// #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/color-system/_variables.scss
|
|
3250
|
+
// Color constants
|
|
3251
|
+
|
|
3252
|
+
/// The color white.
|
|
3253
|
+
/// Note: you cannot change this value.
|
|
3254
|
+
/// @type Color
|
|
3255
|
+
/// @group color-system
|
|
3256
|
+
$kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
|
|
3257
|
+
|
|
3258
|
+
/// The color black.
|
|
3259
|
+
/// Note: you cannot change this value.
|
|
3260
|
+
/// @type Color
|
|
3261
|
+
/// @group color-system
|
|
3262
|
+
$kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
|
|
3263
|
+
|
|
3264
|
+
/// The color transparent.
|
|
3265
|
+
/// Note: you cannot change this value.
|
|
3266
|
+
/// @type Color
|
|
3267
|
+
/// @group color-system
|
|
3268
|
+
$kendo-color-rgba-transparent: rgba( 0, 0, 0, 0 ); // stylelint-disable-line scss/dollar-variable-default
|
|
3269
|
+
|
|
3270
|
+
/// A gradient that goes from transparent to black.
|
|
3271
|
+
/// Note: you cannot change this value.
|
|
3272
|
+
/// @type Gradient
|
|
3273
|
+
/// @group color-system
|
|
3274
|
+
$kendo-gradient-transparent-to-black: rgba( black, 0 ), black; // stylelint-disable-line scss/dollar-variable-default
|
|
3275
|
+
|
|
3276
|
+
/// A gradient that goes from transparent to white.
|
|
3277
|
+
/// Note: you cannot change this value.
|
|
3278
|
+
/// @type Gradient
|
|
3279
|
+
/// @group color-system
|
|
3280
|
+
$kendo-gradient-transparent-to-white: rgba( white, 0 ), white; // stylelint-disable-line scss/dollar-variable-default
|
|
3281
|
+
|
|
3282
|
+
/// A gradient that goes from black to transparent.
|
|
3283
|
+
/// Note: you cannot change this value.
|
|
3284
|
+
/// @type Gradient
|
|
3285
|
+
/// @group color-system
|
|
3286
|
+
$kendo-gradient-black-to-transparent: black, rgba( black, 0 ); // stylelint-disable-line scss/dollar-variable-default
|
|
3287
|
+
|
|
3288
|
+
/// A gradient that goes from white to transparent.
|
|
3289
|
+
/// Note: you cannot change this value.
|
|
3290
|
+
/// @type Gradient
|
|
3291
|
+
/// @group color-system
|
|
3292
|
+
$kendo-gradient-white-to-transparent: white, rgba( white, 0 ); // stylelint-disable-line scss/dollar-variable-default
|
|
3293
|
+
|
|
3294
|
+
/// A gradient that cycles through the colors of the rainbow.
|
|
3295
|
+
/// Note: you cannot change this value.
|
|
3296
|
+
/// @type Gradient
|
|
3297
|
+
/// @group color-system
|
|
3298
|
+
$kendo-gradient-rainbow: #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000; // stylelint-disable-line scss/dollar-variable-default
|
|
3299
|
+
|
|
3300
|
+
|
|
3301
|
+
// Root styles
|
|
3302
|
+
$kendo-body-bg: $kendo-color-white !default;
|
|
3303
|
+
$kendo-body-text: k-get-theme-color-var( neutral-160 ) !default;
|
|
3304
|
+
|
|
3305
|
+
// Component styles
|
|
3306
|
+
$kendo-component-bg: $kendo-body-bg !default;
|
|
3307
|
+
$kendo-component-text: $kendo-body-text !default;
|
|
3308
|
+
$kendo-component-border: k-get-theme-color-var( neutral-30 ) !default;
|
|
3309
|
+
|
|
3310
|
+
// States styles
|
|
3311
|
+
$kendo-hover-bg: k-get-theme-color-var( neutral-20 ) !default;
|
|
3312
|
+
$kendo-hover-text: k-get-theme-color-var( neutral-190 ) !default;
|
|
3313
|
+
$kendo-hover-border: k-get-theme-color-var( neutral-20 ) !default;
|
|
3314
|
+
|
|
3315
|
+
$kendo-selected-bg: k-get-theme-color-var( neutral-30 ) !default;
|
|
3316
|
+
$kendo-selected-text: k-get-theme-color-var( neutral-160 ) !default;
|
|
3317
|
+
$kendo-selected-border: k-get-theme-color-var( neutral-130 ) !default;
|
|
3318
|
+
|
|
3319
|
+
$kendo-selected-hover-bg: k-get-theme-color-var( neutral-40 ) !default;
|
|
3320
|
+
$kendo-selected-hover-text: k-get-theme-color-var( neutral-190 ) !default;
|
|
3321
|
+
$kendo-selected-hover-border: k-get-theme-color-var( neutral-130 ) !default;
|
|
3322
|
+
|
|
3323
|
+
$kendo-focus-outline: k-get-theme-color-var( neutral-130 ) !default;
|
|
3324
|
+
|
|
3325
|
+
$kendo-subtle-text: k-get-theme-color-var( neutral-130 ) !default;
|
|
3326
|
+
|
|
3327
|
+
// Shadows
|
|
3328
|
+
|
|
3329
|
+
/// Shadow for cards and grid item thumbnails.
|
|
3330
|
+
/// Equivalent to fluent depth 4.
|
|
3331
|
+
$kendo-box-shadow-depth-1: 0 1.6px 3.6px rgba( $kendo-color-black, 0.132 ), 0 0.3px 0.9px rgba( $kendo-color-black, 0.108 ) !default;
|
|
3332
|
+
/// Shadow for command bars and dropdowns.
|
|
3333
|
+
/// Equivalent to fluent depth 8.
|
|
3334
|
+
$kendo-box-shadow-depth-2: 0 3.2px 7.2px rgba( $kendo-color-black, 0.132 ), 0 0.6px 1.8px rgba( $kendo-color-black, 0.108 ) !default;
|
|
3335
|
+
/// Shadow for teaching callouts and hover cards / tooltips.
|
|
3336
|
+
/// Equivalent to fluent depth 16.
|
|
3337
|
+
$kendo-box-shadow-depth-3: 0 6.4px 14.4px rgba( $kendo-color-black, 0.132 ), 0 1.2px 3.6px rgba( $kendo-color-black, 0.108 ) !default;
|
|
3338
|
+
/// Shadow for panels and pop up dialogs.
|
|
3339
|
+
/// Equivalent to fluent depth 64.
|
|
3340
|
+
$kendo-box-shadow-depth-4: 0 25.6px 57.6px rgba( $kendo-color-black, 0.22 ), 0 4.8px 14.4px rgba( $kendo-color-black, 0.18 ) !default;
|
|
3341
|
+
|
|
3342
|
+
// Link
|
|
3343
|
+
$kendo-link-text: k-get-theme-color-var( primary-100 ) !default;
|
|
3344
|
+
$kendo-link-hover-text: k-get-theme-color-var( primary-120 ) !default;
|
|
3345
|
+
|
|
3346
|
+
// Validator
|
|
3347
|
+
$kendo-invalid-bg: initial !default;
|
|
3348
|
+
$kendo-invalid-text: k-get-theme-color-var( error-190 ) !default;
|
|
3349
|
+
$kendo-invalid-border: k-get-theme-color-var( error-190 ) !default;
|
|
3350
|
+
$kendo-invalid-shadow: null !default;
|
|
3351
|
+
|
|
3352
|
+
// Disabled Styling
|
|
3353
|
+
$kendo-disabled-bg: k-get-theme-color-var( neutral-20 ) !default;
|
|
3354
|
+
$kendo-disabled-text: k-get-theme-color-var( neutral-90 ) !default;
|
|
3355
|
+
$kendo-disabled-border: transparent !default;
|
|
3356
|
+
|
|
3357
|
+
// Loading
|
|
3358
|
+
$kendo-loading-bg: $kendo-component-bg !default;
|
|
3359
|
+
$kendo-loading-text: currentColor !default;
|
|
3360
|
+
|
|
3361
|
+
|
|
3362
|
+
// Theme colors
|
|
3363
|
+
$kendo-theme-colors: (
|
|
3364
|
+
primary: (
|
|
3365
|
+
text: k-get-theme-color-var( primary-130 ),
|
|
3366
|
+
bg: k-get-theme-color-var( primary-20 ),
|
|
3367
|
+
border: k-get-theme-color-var( primary-20 )
|
|
3368
|
+
),
|
|
3369
|
+
info: (
|
|
3370
|
+
text: k-get-theme-color-var( info-190 ),
|
|
3371
|
+
bg: k-get-theme-color-var( info-20 ),
|
|
3372
|
+
border: k-get-theme-color-var( info-20 )
|
|
3373
|
+
),
|
|
3374
|
+
success: (
|
|
3375
|
+
text: k-get-theme-color-var( success-190 ),
|
|
3376
|
+
bg: k-get-theme-color-var( success-20 ),
|
|
3377
|
+
border: k-get-theme-color-var( success-20 )
|
|
3378
|
+
),
|
|
3379
|
+
warning: (
|
|
3380
|
+
text: k-get-theme-color-var( neutral-160 ),
|
|
3381
|
+
bg: k-get-theme-color-var( warning-20 ),
|
|
3382
|
+
border: k-get-theme-color-var( warning-20 )
|
|
3383
|
+
),
|
|
3384
|
+
error: (
|
|
3385
|
+
text: k-get-theme-color-var( error-190 ),
|
|
3386
|
+
bg: k-get-theme-color-var( error-20 ),
|
|
3387
|
+
border: k-get-theme-color-var( error-20 )
|
|
3388
|
+
)
|
|
3389
|
+
) !default;
|
|
3390
|
+
|
|
3391
|
+
|
|
3392
|
+
@mixin color-system-styles() {
|
|
3393
|
+
:root {
|
|
3394
|
+
@include k-css-vars( $kendo-palettes );
|
|
3395
|
+
@include k-css-vars( $kendo-theme-colors );
|
|
3396
|
+
|
|
3397
|
+
--kendo-body-bg: #{$kendo-body-bg};
|
|
3398
|
+
--kendo-body-text: #{$kendo-body-text};
|
|
3399
|
+
|
|
3400
|
+
--kendo-component-bg: #{$kendo-component-bg};
|
|
3401
|
+
--kendo-component-text: #{$kendo-component-text};
|
|
3402
|
+
--kendo-component-border: #{$kendo-component-border};
|
|
3403
|
+
|
|
3404
|
+
--kendo-box-shadow-depth-1: #{$kendo-box-shadow-depth-1};
|
|
3405
|
+
--kendo-box-shadow-depth-2: #{$kendo-box-shadow-depth-2};
|
|
3406
|
+
--kendo-box-shadow-depth-3: #{$kendo-box-shadow-depth-3};
|
|
3407
|
+
--kendo-box-shadow-depth-4: #{$kendo-box-shadow-depth-4};
|
|
3408
|
+
|
|
3409
|
+
--kendo-link-text: #{$kendo-link-text};
|
|
3410
|
+
--kendo-link-hover-text: #{$kendo-link-hover-text};
|
|
3411
|
+
|
|
3412
|
+
--kendo-disabled-bg: #{$kendo-disabled-bg};
|
|
3413
|
+
--kendo-disabled-text: #{$kendo-disabled-text};
|
|
3414
|
+
--kendo-disabled-border: #{$kendo-disabled-border};
|
|
3415
|
+
|
|
3416
|
+
--kendo-hover-bg: #{$kendo-hover-bg};
|
|
3417
|
+
--kendo-hover-text: #{$kendo-hover-text};
|
|
3418
|
+
--kendo-hover-border: #{$kendo-hover-border};
|
|
3419
|
+
|
|
3420
|
+
--kendo-selected-bg: #{$kendo-selected-bg};
|
|
3421
|
+
--kendo-selected-text: #{$kendo-selected-text};
|
|
3422
|
+
--kendo-selected-border: #{$kendo-selected-border};
|
|
3423
|
+
|
|
3424
|
+
--kendo-selected-hover-bg: #{$kendo-selected-hover-bg};
|
|
3425
|
+
--kendo-selected-hover-text: #{$kendo-selected-hover-text};
|
|
3426
|
+
--kendo-selected-hover-border: #{$kendo-selected-hover-border};
|
|
3427
|
+
|
|
3428
|
+
--kendo-focus-outline: #{$kendo-focus-outline};
|
|
3429
|
+
|
|
3430
|
+
--kendo-subtle-text: #{$kendo-subtle-text};
|
|
3431
|
+
|
|
3432
|
+
--kendo-invalid-bg: #{$kendo-invalid-bg};
|
|
3433
|
+
--kendo-invalid-text: #{$kendo-invalid-text};
|
|
3434
|
+
--kendo-invalid-border: #{$kendo-invalid-border};
|
|
3435
|
+
--kendo-invalid-shadow: #{$kendo-invalid-shadow};
|
|
3436
|
+
|
|
3437
|
+
--kendo-border-radius-sm: #{$kendo-border-radius-sm};
|
|
3438
|
+
--kendo-border-radius-md: #{$kendo-border-radius-md};
|
|
3439
|
+
--kendo-border-radius-lg: #{$kendo-border-radius-lg};
|
|
3440
|
+
}
|
|
3441
|
+
|
|
3442
|
+
// Text colors
|
|
3443
|
+
@each $theme-color, $color-props in $kendo-theme-colors {
|
|
3444
|
+
$_color: k-map-get( $color-props, text );
|
|
3445
|
+
|
|
3446
|
+
.k-text-#{$theme-color},
|
|
3447
|
+
.k-color-#{$theme-color} {
|
|
3448
|
+
color: var( --kendo-text-#{$theme-color}, #{$_color} );
|
|
3449
|
+
}
|
|
3450
|
+
.\!k-text-#{$theme-color},
|
|
3451
|
+
.\!k-color-#{$theme-color} {
|
|
3452
|
+
color: var( --kendo-text-#{$theme-color}, #{$_color} ) !important; // stylelint-disable-line declaration-no-important
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3455
|
+
.k-bg-#{$theme-color} {
|
|
3456
|
+
background-color: var( --kendo-bg-#{$theme-color}, #{$_color} );
|
|
3457
|
+
}
|
|
3458
|
+
.\!k-bg-#{$theme-color} {
|
|
3459
|
+
background-color: var( --kendo-bg-#{$theme-color}, #{$_color} ) !important; // stylelint-disable-line declaration-no-important
|
|
3460
|
+
}
|
|
3461
|
+
};
|
|
3462
|
+
}
|
|
2811
3463
|
|
|
2812
3464
|
// #endregion
|
|
3465
|
+
// @import "./_palettes.scss";
|
|
2813
3466
|
|
|
2814
|
-
//
|
|
2815
|
-
// #region @import "./mixins/index.import.scss"; ->
|
|
2816
|
-
// #region @import "@progress/kendo-theme-core/scss/mixins/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/index.import.scss
|
|
3467
|
+
// #endregion
|
|
3468
|
+
// #region @import "./mixins/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/index.import.scss
|
|
2817
3469
|
// #region @import "./_border-radius.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_border-radius.scss
|
|
2818
3470
|
// Border radius
|
|
2819
3471
|
@mixin border-radius( $radius: null ) {
|
|
@@ -2913,6 +3565,47 @@ $_kendo-data-uris: () !default;
|
|
|
2913
3565
|
box-shadow: none;
|
|
2914
3566
|
}
|
|
2915
3567
|
|
|
3568
|
+
@mixin disabled-color( $color: null, $bg: null, $border: null ) {
|
|
3569
|
+
outline: none;
|
|
3570
|
+
cursor: default;
|
|
3571
|
+
background-color: $bg;
|
|
3572
|
+
color: $color;
|
|
3573
|
+
border-color: $border;
|
|
3574
|
+
pointer-events: none;
|
|
3575
|
+
box-shadow: none;
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3578
|
+
// #endregion
|
|
3579
|
+
// #region @import "./_decoration.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_decoration.scss
|
|
3580
|
+
@mixin fill( $color: null, $bg: null, $border: null, $gradient: null ) {
|
|
3581
|
+
@if $border {
|
|
3582
|
+
border-color: $border;
|
|
3583
|
+
}
|
|
3584
|
+
@if $color {
|
|
3585
|
+
color: $color;
|
|
3586
|
+
}
|
|
3587
|
+
@if $bg {
|
|
3588
|
+
background-color: $bg;
|
|
3589
|
+
}
|
|
3590
|
+
@if $gradient {
|
|
3591
|
+
@include linear-gradient( $gradient );
|
|
3592
|
+
}
|
|
3593
|
+
}
|
|
3594
|
+
|
|
3595
|
+
@mixin linear-gradient( $gradient: null ) {
|
|
3596
|
+
@if $gradient and $kendo-enable-gradients {
|
|
3597
|
+
@if $gradient == none {
|
|
3598
|
+
background-image: none;
|
|
3599
|
+
} @else {
|
|
3600
|
+
background-image: linear-gradient( $gradient );
|
|
3601
|
+
}
|
|
3602
|
+
}
|
|
3603
|
+
}
|
|
3604
|
+
|
|
3605
|
+
@mixin repeating-striped-gradient( $color: rgba(255,255,255,.15), $background: #FFF, $angle: 45deg, $largeStep: 2px, $smallStep: 1px) {
|
|
3606
|
+
background-image: repeating-linear-gradient($angle, $background, $background $smallStep, $color $smallStep, $color $largeStep);
|
|
3607
|
+
}
|
|
3608
|
+
|
|
2916
3609
|
// #endregion
|
|
2917
3610
|
// #region @import "./_focus-indicator.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_focus-indicator.scss
|
|
2918
3611
|
@mixin focus-indicator( $indicator, $inset: false, $themeable: false, $type: "box-shadow" ) {
|
|
@@ -2965,7 +3658,7 @@ $_kendo-data-uris: () !default;
|
|
|
2965
3658
|
// #region @import "./_hide-scrollbar.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_hide-scrollbar.scss
|
|
2966
3659
|
$kendo-scrollbar-width: 17px !default;
|
|
2967
3660
|
|
|
2968
|
-
@mixin hide-scrollbar( $dir: "right", $max-scrollbar: 100px
|
|
3661
|
+
@mixin hide-scrollbar( $dir: "right", $max-scrollbar: 100px) {
|
|
2969
3662
|
// anything larger than the scrollbar width will do
|
|
2970
3663
|
$scrollbar-size: var( --kendo-scrollbar-width, #{$kendo-scrollbar-width} );
|
|
2971
3664
|
$margin: calc( -#{$max-scrollbar} - #{$scrollbar-size} );
|
|
@@ -2982,6 +3675,18 @@ $kendo-scrollbar-width: 17px !default;
|
|
|
2982
3675
|
}
|
|
2983
3676
|
}
|
|
2984
3677
|
|
|
3678
|
+
@mixin hide-scrollbar-dir-agnostic($max-scrollbar: 100px) {
|
|
3679
|
+
// anything larger than the scrollbar width will do
|
|
3680
|
+
$scrollbar-size: var( --kendo-scrollbar-width, #{$kendo-scrollbar-width} );
|
|
3681
|
+
$margin: calc( -#{$max-scrollbar} - #{$scrollbar-size} );
|
|
3682
|
+
|
|
3683
|
+
padding-inline-end: $max-scrollbar;
|
|
3684
|
+
padding-inline-start: $max-scrollbar;
|
|
3685
|
+
|
|
3686
|
+
margin-inline-start: -$max-scrollbar;
|
|
3687
|
+
margin-inline-end: $margin;
|
|
3688
|
+
}
|
|
3689
|
+
|
|
2985
3690
|
// #endregion
|
|
2986
3691
|
// #region @import "./_import-once.scss"; -> node_modules/@progress/kendo-theme-core/scss/mixins/_import-once.scss
|
|
2987
3692
|
/// A list of exported modules.
|
|
@@ -3011,13 +3716,6 @@ $_kendo-imported-modules: () !default;
|
|
|
3011
3716
|
|
|
3012
3717
|
// #endregion
|
|
3013
3718
|
|
|
3014
|
-
@mixin fill( $color: null, $bg: null, $border: null, $gradient: null ) {
|
|
3015
|
-
border-color: $border;
|
|
3016
|
-
color: $color;
|
|
3017
|
-
background-color: $bg;
|
|
3018
|
-
@include linear-gradient( $gradient );
|
|
3019
|
-
}
|
|
3020
|
-
|
|
3021
3719
|
@mixin background-image( $background-image: null ) {
|
|
3022
3720
|
@if $background-image {
|
|
3023
3721
|
background-image: url(#{$background-image});
|
|
@@ -3025,12 +3723,7 @@ $_kendo-imported-modules: () !default;
|
|
|
3025
3723
|
}
|
|
3026
3724
|
|
|
3027
3725
|
// #endregion
|
|
3028
|
-
|
|
3029
|
-
// #endregion
|
|
3030
|
-
|
|
3031
|
-
// Module system
|
|
3032
|
-
// #region @import "./module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
|
|
3033
|
-
// #region @import "@progress/kendo-theme-core/scss/module-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/module-system/index.import.scss
|
|
3726
|
+
// #region @import "./module-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/module-system/index.import.scss
|
|
3034
3727
|
// #region @import "./_components.scss"; -> node_modules/@progress/kendo-theme-core/scss/module-system/_components.scss
|
|
3035
3728
|
$kendo-components: (
|
|
3036
3729
|
// Typography and utils
|
|
@@ -3709,12 +4402,7 @@ $_imported: () !default;
|
|
|
3709
4402
|
// stylelint-enable scss/at-if-no-null
|
|
3710
4403
|
|
|
3711
4404
|
// #endregion
|
|
3712
|
-
|
|
3713
|
-
// #endregion
|
|
3714
|
-
|
|
3715
|
-
// Common styles
|
|
3716
|
-
// #region @import "./styles/index.import.scss"; -> scss/core/styles/index.import.scss
|
|
3717
|
-
// #region @import "@progress/kendo-theme-core/scss/styles/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/index.import.scss
|
|
4405
|
+
// #region @import "./styles/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/index.import.scss
|
|
3718
4406
|
// #region @import "./_accessibility.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_accessibility.scss
|
|
3719
4407
|
@mixin kendo-core--styles--accessibility() {
|
|
3720
4408
|
|
|
@@ -3745,6 +4433,20 @@ $_imported: () !default;
|
|
|
3745
4433
|
// #endregion
|
|
3746
4434
|
// #region @import "./_layout.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_layout.scss
|
|
3747
4435
|
@mixin kendo-core--styles--layout() {
|
|
4436
|
+
.k-body {
|
|
4437
|
+
@include typography(
|
|
4438
|
+
var( --kendo-font-size, inherit ),
|
|
4439
|
+
var( --kendo-font-family, inherit ),
|
|
4440
|
+
var( --kendo-line-height, normal ),
|
|
4441
|
+
var( --kendo-font-weight, normal ),
|
|
4442
|
+
var( --kendo-letter-spacing, normal ),
|
|
4443
|
+
);
|
|
4444
|
+
@include fill(
|
|
4445
|
+
var( --kendo-body-text, initial ),
|
|
4446
|
+
var( --kendo-body-bg, initial )
|
|
4447
|
+
);
|
|
4448
|
+
margin: 0;
|
|
4449
|
+
}
|
|
3748
4450
|
|
|
3749
4451
|
// Basic layout
|
|
3750
4452
|
.k-hstack {
|
|
@@ -3859,375 +4561,386 @@ $_imported: () !default;
|
|
|
3859
4561
|
}
|
|
3860
4562
|
|
|
3861
4563
|
// #endregion
|
|
4564
|
+
// #region @import "./_base.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_base.scss
|
|
4565
|
+
@mixin kendo-core--styles--base() {
|
|
4566
|
+
// Disabled state
|
|
4567
|
+
.k-disabled,
|
|
4568
|
+
.k-widget[disabled],
|
|
4569
|
+
.k-disabled {
|
|
4570
|
+
@include disabled-color(
|
|
4571
|
+
$color: var( --kendo-disabled-text, inherit ),
|
|
4572
|
+
$border: var( --kendo-disabled-border, inherit )
|
|
4573
|
+
);
|
|
3862
4574
|
|
|
4575
|
+
.k-link {
|
|
4576
|
+
cursor: default;
|
|
4577
|
+
outline: 0;
|
|
4578
|
+
}
|
|
4579
|
+
}
|
|
3863
4580
|
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
// #region @import "../_variables.scss"; -> scss/_variables.scss
|
|
3877
|
-
// #region @import "./core/functions/index.import.scss"; -> scss/core/functions/index.import.scss
|
|
3878
|
-
// File already imported_once. Skipping output.
|
|
3879
|
-
// #endregion
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
// Options
|
|
3883
|
-
$kendo-enable-rounded: true !default;
|
|
3884
|
-
$kendo-enable-shadows: true !default;
|
|
3885
|
-
$kendo-enable-gradients: true !default;
|
|
3886
|
-
$kendo-enable-transitions: true !default;
|
|
3887
|
-
$kendo-enable-focus-contrast: false !default;
|
|
3888
|
-
$kendo-enable-typography: false !default;
|
|
3889
|
-
|
|
3890
|
-
$kendo-use-input-button-width: false !default;
|
|
3891
|
-
$kendo-use-input-spinner-width: false !default;
|
|
3892
|
-
$kendo-use-input-spinner-icon-offset: false !default;
|
|
3893
|
-
|
|
3894
|
-
$kendo-auto-bootstrap: true !default;
|
|
3895
|
-
|
|
4581
|
+
// Horizontal line
|
|
4582
|
+
.k-hr {
|
|
4583
|
+
margin-block: k-map-get( $kendo-spacing, 4 );
|
|
4584
|
+
padding: 0;
|
|
4585
|
+
height: 0;
|
|
4586
|
+
border-width: 1px 0 0;
|
|
4587
|
+
border-style: solid;
|
|
4588
|
+
border-color: var( --kendo-component-border, inherit );
|
|
4589
|
+
display: block;
|
|
4590
|
+
float: none;
|
|
4591
|
+
clear: both;
|
|
4592
|
+
}
|
|
3896
4593
|
|
|
3897
|
-
//
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
2.5: 10px,
|
|
3906
|
-
3: 12px,
|
|
3907
|
-
3.5: 14px,
|
|
3908
|
-
4: 16px,
|
|
3909
|
-
4.5: 18px,
|
|
3910
|
-
5: 20px,
|
|
3911
|
-
5.5: 22px,
|
|
3912
|
-
6: 24px,
|
|
3913
|
-
6.5: 26px,
|
|
3914
|
-
7: 28px,
|
|
3915
|
-
7.5: 30px,
|
|
3916
|
-
8: 32px,
|
|
3917
|
-
9: 36px,
|
|
3918
|
-
10: 40px,
|
|
3919
|
-
11: 44px,
|
|
3920
|
-
12: 48px,
|
|
3921
|
-
13: 52px,
|
|
3922
|
-
14: 56px,
|
|
3923
|
-
15: 60px,
|
|
3924
|
-
16: 64px,
|
|
3925
|
-
17: 68px,
|
|
3926
|
-
18: 72px,
|
|
3927
|
-
19: 76px,
|
|
3928
|
-
20: 80px,
|
|
3929
|
-
21: 84px,
|
|
3930
|
-
22: 88px,
|
|
3931
|
-
23: 92px,
|
|
3932
|
-
24: 96px
|
|
3933
|
-
) !default;
|
|
4594
|
+
// Horizontal rule
|
|
4595
|
+
.k-d-flex-row > .k-hr {
|
|
4596
|
+
margin: 0;
|
|
4597
|
+
width: 0;
|
|
4598
|
+
height: auto;
|
|
4599
|
+
border-width: 0 0 0 1px;
|
|
4600
|
+
flex: 0 0 auto;
|
|
4601
|
+
}
|
|
3934
4602
|
|
|
4603
|
+
// Vertical rule
|
|
4604
|
+
.k-d-flex-col > .k-hr {
|
|
4605
|
+
margin: 0;
|
|
4606
|
+
flex: 0 0 auto;
|
|
4607
|
+
}
|
|
3935
4608
|
|
|
3936
|
-
|
|
3937
|
-
|
|
4609
|
+
.k-sprite {
|
|
4610
|
+
display: inline-block;
|
|
4611
|
+
width: 1rem;
|
|
4612
|
+
height: 1rem;
|
|
4613
|
+
overflow: hidden;
|
|
4614
|
+
background-repeat: no-repeat;
|
|
4615
|
+
font-size: 0;
|
|
4616
|
+
line-height: 0;
|
|
4617
|
+
text-align: center;
|
|
4618
|
+
}
|
|
3938
4619
|
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
$kendo-icon-size-lg: calc( #{$kendo-icon-size} * 1.25 ) !default;
|
|
3943
|
-
$kendo-icon-size-xl: calc( #{$kendo-icon-size} * 1.5 ) !default;
|
|
3944
|
-
$kendo-icon-size-xxl: calc( #{$kendo-icon-size} * 2 ) !default;
|
|
3945
|
-
$kendo-icon-size-xxxl: calc( #{$kendo-icon-size} * 3 ) !default;
|
|
4620
|
+
.k-image {
|
|
4621
|
+
display: inline-block;
|
|
4622
|
+
}
|
|
3946
4623
|
|
|
3947
|
-
|
|
3948
|
-
|
|
4624
|
+
// Layout
|
|
4625
|
+
.k-reset {
|
|
4626
|
+
margin: 0;
|
|
4627
|
+
padding: 0;
|
|
4628
|
+
border-width: 0;
|
|
4629
|
+
outline: 0;
|
|
4630
|
+
text-decoration: none;
|
|
4631
|
+
font: inherit;
|
|
4632
|
+
list-style: none;
|
|
4633
|
+
}
|
|
3949
4634
|
|
|
4635
|
+
kendo-sortable {
|
|
4636
|
+
display: block;
|
|
4637
|
+
}
|
|
3950
4638
|
|
|
3951
|
-
// Metrics
|
|
3952
|
-
$kendo-padding-x: 8px !default;
|
|
3953
|
-
$kendo-padding-y: 4px !default;
|
|
3954
|
-
$kendo-padding-sm-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
3955
|
-
$kendo-padding-sm-y: k-map-get( $kendo-spacing, 0.5 ) !default;
|
|
3956
|
-
$kendo-padding-md-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
3957
|
-
$kendo-padding-md-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
3958
|
-
$kendo-padding-lg-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
3959
|
-
$kendo-padding-lg-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
3960
4639
|
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
4640
|
+
// Links
|
|
4641
|
+
.k-link,
|
|
4642
|
+
.k-link:hover {
|
|
4643
|
+
color: inherit;
|
|
4644
|
+
text-decoration: none;
|
|
4645
|
+
outline: 0;
|
|
4646
|
+
cursor: pointer;
|
|
4647
|
+
}
|
|
3966
4648
|
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
md: $kendo-border-radius-md,
|
|
3972
|
-
lg: $kendo-border-radius-lg,
|
|
3973
|
-
full: 9999px
|
|
3974
|
-
) !default;
|
|
4649
|
+
// Outline
|
|
4650
|
+
.k-content {
|
|
4651
|
+
outline: 0;
|
|
4652
|
+
}
|
|
3975
4653
|
|
|
4654
|
+
// Centering
|
|
4655
|
+
.k-centered {
|
|
4656
|
+
position: absolute;
|
|
4657
|
+
top: 50%;
|
|
4658
|
+
left: 50%;
|
|
4659
|
+
transform: translate(-50%, -50%);
|
|
4660
|
+
}
|
|
3976
4661
|
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
4662
|
+
// Disable mouse events
|
|
4663
|
+
.k-no-click {
|
|
4664
|
+
pointer-events: none;
|
|
4665
|
+
}
|
|
3980
4666
|
|
|
4667
|
+
// Off-screen container used during PDF export
|
|
4668
|
+
.k-pdf-export-shadow {
|
|
4669
|
+
position: absolute;
|
|
4670
|
+
overflow: hidden;
|
|
4671
|
+
left: -15000px;
|
|
4672
|
+
width: 14400px;
|
|
4673
|
+
}
|
|
3981
4674
|
|
|
3982
|
-
//
|
|
3983
|
-
|
|
4675
|
+
// PDF export icons fix
|
|
4676
|
+
.kendo-pdf-hide-pseudo-elements::before,
|
|
4677
|
+
.kendo-pdf-hide-pseudo-elements::after {
|
|
4678
|
+
display: none !important; // stylelint-disable-line declaration-no-important
|
|
4679
|
+
}
|
|
3984
4680
|
|
|
3985
|
-
//
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
4681
|
+
// Dirty indicator
|
|
4682
|
+
.k-dirty {
|
|
4683
|
+
margin: 0;
|
|
4684
|
+
padding: 0;
|
|
4685
|
+
width: 0;
|
|
4686
|
+
height: 0;
|
|
4687
|
+
border-width: 3px;
|
|
4688
|
+
border-style: solid;
|
|
4689
|
+
border-block-start-color: currentColor;
|
|
4690
|
+
border-block-end-color: transparent;
|
|
4691
|
+
border-inline-start-color: transparent;
|
|
4692
|
+
border-inline-end-color: currentColor;
|
|
4693
|
+
position: absolute;
|
|
4694
|
+
inset-block-start: 0;
|
|
4695
|
+
inset-inline-end: 0;
|
|
4696
|
+
}
|
|
4697
|
+
}
|
|
4698
|
+
// #endregion
|
|
4699
|
+
// #region @import "./_loading.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_loading.scss
|
|
4700
|
+
@mixin kendo-core--styles--loading() {
|
|
4701
|
+
// Loading mask
|
|
4702
|
+
.k-loading-mask,
|
|
4703
|
+
.k-loading-image,
|
|
4704
|
+
.k-loading-color {
|
|
4705
|
+
width: 100%;
|
|
4706
|
+
height: 100%;
|
|
4707
|
+
box-sizing: border-box;
|
|
4708
|
+
position: absolute;
|
|
4709
|
+
top: 0;
|
|
4710
|
+
left: 0;
|
|
3993
4711
|
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
4712
|
+
*,
|
|
4713
|
+
*::before,
|
|
4714
|
+
*::after,
|
|
4715
|
+
&::before,
|
|
4716
|
+
&::after {
|
|
4717
|
+
box-sizing: border-box;
|
|
4718
|
+
}
|
|
4719
|
+
}
|
|
3999
4720
|
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
/// @type Color
|
|
4003
|
-
$kendo-color-secondary: #e9e9e9 !default;
|
|
4004
|
-
$kendo-color-secondary-lighter: k-color-tint( $kendo-color-secondary, 2 ) !default;
|
|
4005
|
-
$kendo-color-secondary-darker: k-color-shade( $kendo-color-secondary, 2 ) !default;
|
|
4721
|
+
.k-loading-mask {
|
|
4722
|
+
z-index: $kendo-zindex-loading;
|
|
4006
4723
|
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4724
|
+
&.k-opaque {
|
|
4725
|
+
.k-loading-color {
|
|
4726
|
+
opacity: 1;
|
|
4727
|
+
}
|
|
4728
|
+
}
|
|
4729
|
+
}
|
|
4730
|
+
.k-loading-text {
|
|
4731
|
+
text-indent: -4000px;
|
|
4732
|
+
text-align: center;
|
|
4733
|
+
position: absolute;
|
|
4734
|
+
color: $kendo-loading-text;
|
|
4735
|
+
}
|
|
4736
|
+
.k-loading-image {
|
|
4737
|
+
z-index: 2;
|
|
4738
|
+
color: $kendo-loading-text;
|
|
4739
|
+
}
|
|
4740
|
+
.k-loading-color {
|
|
4741
|
+
background-color: $kendo-loading-bg;
|
|
4742
|
+
opacity: $kendo-loading-opacity;
|
|
4743
|
+
}
|
|
4012
4744
|
|
|
4013
|
-
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
|
|
4745
|
+
// Loading indicator
|
|
4746
|
+
.k-i-loading {
|
|
4747
|
+
position: relative;
|
|
4748
|
+
background-color: transparent;
|
|
4749
|
+
box-sizing: border-box;
|
|
4750
|
+
color: $kendo-loading-text;
|
|
4019
4751
|
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4752
|
+
&::before,
|
|
4753
|
+
&::after {
|
|
4754
|
+
box-sizing: border-box;
|
|
4755
|
+
}
|
|
4756
|
+
}
|
|
4025
4757
|
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4758
|
+
.k-i-loading::before,
|
|
4759
|
+
.k-i-loading::after,
|
|
4760
|
+
.k-loading-image::before,
|
|
4761
|
+
.k-loading-image::after {
|
|
4762
|
+
position: absolute;
|
|
4763
|
+
top: 50%;
|
|
4764
|
+
left: 50%;
|
|
4765
|
+
display: inline-block;
|
|
4766
|
+
content: "";
|
|
4767
|
+
box-sizing: inherit;
|
|
4768
|
+
border-radius: 50%;
|
|
4769
|
+
border-width: .05em;
|
|
4770
|
+
border-style: solid;
|
|
4771
|
+
border-color: currentColor;
|
|
4772
|
+
border-top-color: transparent;
|
|
4773
|
+
border-bottom-color: transparent;
|
|
4774
|
+
background-color: transparent;
|
|
4775
|
+
}
|
|
4032
4776
|
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
$kendo-color-success-lighter: k-color-tint( $kendo-color-success, 2 ) !default;
|
|
4038
|
-
$kendo-color-success-darker: k-color-shade( $kendo-color-success, 2 ) !default;
|
|
4777
|
+
.k-icon.k-i-loading::before,
|
|
4778
|
+
.k-icon.k-i-loading::after {
|
|
4779
|
+
content: "";
|
|
4780
|
+
}
|
|
4039
4781
|
|
|
4040
|
-
|
|
4041
|
-
|
|
4042
|
-
|
|
4043
|
-
|
|
4044
|
-
|
|
4045
|
-
|
|
4782
|
+
.k-i-loading::before,
|
|
4783
|
+
.k-loading-image::before {
|
|
4784
|
+
margin-top: -.5em;
|
|
4785
|
+
margin-left: -.5em;
|
|
4786
|
+
width: 1em;
|
|
4787
|
+
height: 1em;
|
|
4788
|
+
animation: k-loading-animation .7s linear infinite;
|
|
4789
|
+
}
|
|
4046
4790
|
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4791
|
+
.k-i-loading::after,
|
|
4792
|
+
.k-loading-image::after {
|
|
4793
|
+
margin-top: -.25em;
|
|
4794
|
+
margin-left: -.25em;
|
|
4795
|
+
width: .5em;
|
|
4796
|
+
height: .5em;
|
|
4797
|
+
animation: k-loading-animation reverse 1.4s linear infinite;
|
|
4798
|
+
}
|
|
4053
4799
|
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4800
|
+
.k-loading-image::before,
|
|
4801
|
+
.k-loading-image::after {
|
|
4802
|
+
content: "";
|
|
4803
|
+
// See https://github.com/telerik/kendo-themes/issues/1925
|
|
4804
|
+
border-width: 1px; // TODO: Remove once we drop IE support
|
|
4805
|
+
border-width: clamp( .015em, 1px, 1px );
|
|
4806
|
+
font-size: 4em;
|
|
4807
|
+
}
|
|
4058
4808
|
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4809
|
+
// Loading animation
|
|
4810
|
+
@keyframes k-loading-animation {
|
|
4811
|
+
0% {
|
|
4812
|
+
transform: rotate(0deg);
|
|
4813
|
+
}
|
|
4814
|
+
100% {
|
|
4815
|
+
transform: rotate(360deg);
|
|
4816
|
+
}
|
|
4817
|
+
}
|
|
4818
|
+
}
|
|
4819
|
+
// #endregion
|
|
4820
|
+
// #region @import "./_selection.scss"; -> node_modules/@progress/kendo-theme-core/scss/styles/_selection.scss
|
|
4821
|
+
@mixin kendo-core--styles--selection() {
|
|
4822
|
+
.k-marquee {
|
|
4823
|
+
position: absolute;
|
|
4824
|
+
z-index: 100000;
|
|
4825
|
+
}
|
|
4063
4826
|
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4827
|
+
.k-marquee-color,
|
|
4828
|
+
.k-marquee-text {
|
|
4829
|
+
position: absolute;
|
|
4830
|
+
top: 0;
|
|
4831
|
+
left: 0;
|
|
4832
|
+
width: 100%;
|
|
4833
|
+
height: 100%;
|
|
4834
|
+
}
|
|
4067
4835
|
|
|
4836
|
+
.k-marquee-color {
|
|
4837
|
+
color: $kendo-selected-text;
|
|
4838
|
+
background-color: k-get-theme-color-var( primary-60, #{$kendo-selected-bg} );
|
|
4839
|
+
border-color: k-get-theme-color-var( primary-100, #{$kendo-selected-border} );
|
|
4840
|
+
opacity: .6;
|
|
4841
|
+
}
|
|
4842
|
+
.k-marquee-text {
|
|
4843
|
+
color: $kendo-selected-text;
|
|
4844
|
+
}
|
|
4845
|
+
}
|
|
4846
|
+
// #endregion
|
|
4068
4847
|
|
|
4069
|
-
$kendo-theme-colors: (
|
|
4070
|
-
"primary": $kendo-color-primary,
|
|
4071
|
-
"secondary": $kendo-color-secondary,
|
|
4072
|
-
"tertiary": $kendo-color-tertiary,
|
|
4073
|
-
"info": $kendo-color-info,
|
|
4074
|
-
"success": $kendo-color-success,
|
|
4075
|
-
"warning": $kendo-color-warning,
|
|
4076
|
-
"error": $kendo-color-error,
|
|
4077
|
-
"dark": $kendo-color-dark,
|
|
4078
|
-
"light": $kendo-color-light,
|
|
4079
|
-
"inverse": $kendo-color-inverse
|
|
4080
|
-
) !default;
|
|
4081
4848
|
|
|
4849
|
+
@mixin kendo-core--styles() {
|
|
4850
|
+
@include kendo-core--styles--accessibility();
|
|
4851
|
+
@include kendo-core--styles--asp-fallback();
|
|
4852
|
+
@include kendo-core--styles--layout();
|
|
4853
|
+
@include kendo-core--styles--normalize();
|
|
4854
|
+
@include kendo-core--styles--base();
|
|
4855
|
+
@include kendo-core--styles--loading();
|
|
4856
|
+
@include kendo-core--styles--selection();
|
|
4857
|
+
}
|
|
4082
4858
|
|
|
4083
|
-
//
|
|
4859
|
+
// #endregion
|
|
4860
|
+
// #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
|
|
4861
|
+
// #region @import "./functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
4862
|
+
// File already imported_once. Skipping output.
|
|
4863
|
+
// #endregion
|
|
4084
4864
|
|
|
4085
|
-
|
|
4086
|
-
|
|
4087
|
-
$kendo-
|
|
4088
|
-
$kendo-
|
|
4089
|
-
$kendo-
|
|
4090
|
-
$kendo-font-size-md: $kendo-font-size !default;
|
|
4091
|
-
$kendo-font-size-lg: 16px !default;
|
|
4092
|
-
$kendo-font-size-xl: 20px !default;
|
|
4865
|
+
// Options
|
|
4866
|
+
$kendo-enable-shadows: true !default;
|
|
4867
|
+
$kendo-enable-rounded: true !default;
|
|
4868
|
+
$kendo-enable-gradients: true !default;
|
|
4869
|
+
$kendo-enable-transitions: true !default;
|
|
4093
4870
|
|
|
4094
|
-
$kendo-
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4871
|
+
$kendo-spacing: (
|
|
4872
|
+
0: 0,
|
|
4873
|
+
1px: 1px,
|
|
4874
|
+
0.5: 0.125rem,
|
|
4875
|
+
1: 0.25rem,
|
|
4876
|
+
1.5: 0.375rem,
|
|
4877
|
+
2: 0.5rem,
|
|
4878
|
+
2.5: 0.625rem,
|
|
4879
|
+
3: 0.75rem,
|
|
4880
|
+
3.5: 0.875rem,
|
|
4881
|
+
4: 1rem,
|
|
4882
|
+
4.5: 1.125rem,
|
|
4883
|
+
5: 1.25rem,
|
|
4884
|
+
5.5: 1.375rem,
|
|
4885
|
+
6: 1.5rem,
|
|
4886
|
+
6.5: 1.625rem,
|
|
4887
|
+
7: 1.75rem,
|
|
4888
|
+
7.5: 1.875rem,
|
|
4889
|
+
8: 2rem,
|
|
4890
|
+
9: 2.25rem,
|
|
4891
|
+
10: 2.5rem,
|
|
4892
|
+
11: 2.75rem,
|
|
4893
|
+
12: 3rem,
|
|
4894
|
+
13: 3.25rem,
|
|
4895
|
+
14: 3.5rem,
|
|
4896
|
+
15: 3.75rem,
|
|
4897
|
+
16: 4rem,
|
|
4898
|
+
17: 4.25rem,
|
|
4899
|
+
18: 4.5rem,
|
|
4900
|
+
19: 4.75rem,
|
|
4901
|
+
20: 5rem,
|
|
4902
|
+
21: 5.25rem,
|
|
4903
|
+
22: 5.5rem,
|
|
4904
|
+
23: 5.75rem,
|
|
4905
|
+
24: 6rem,
|
|
4100
4906
|
) !default;
|
|
4101
4907
|
|
|
4102
|
-
///
|
|
4103
|
-
|
|
4104
|
-
$kendo-
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
/// @group typography
|
|
4108
|
-
$kendo-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono", "Ubuntu Mono", "Lucida Console", "Courier New", monospace !default;
|
|
4109
|
-
|
|
4110
|
-
/// Font family across all components.
|
|
4111
|
-
/// @group typography
|
|
4112
|
-
$kendo-font-family: inherit !default;
|
|
4113
|
-
|
|
4114
|
-
/// Line height used along with $kendo-font-size.
|
|
4115
|
-
/// @group typography
|
|
4116
|
-
$kendo-line-height: k-math-div( 20, 14 ) !default;
|
|
4117
|
-
$kendo-line-height-xs: 1 !default;
|
|
4118
|
-
$kendo-line-height-sm: 1.25 !default;
|
|
4119
|
-
$kendo-line-height-md: $kendo-line-height !default;
|
|
4120
|
-
$kendo-line-height-lg: 1.5 !default;
|
|
4121
|
-
$kendo-line-height-em: calc( #{$kendo-line-height} * 1em ) !default;
|
|
4122
|
-
|
|
4123
|
-
// Font weight
|
|
4124
|
-
$kendo-font-weight-light: 300 !default;
|
|
4125
|
-
$kendo-font-weight-normal: 400 !default;
|
|
4126
|
-
$kendo-font-weight-medium: 500 !default;
|
|
4127
|
-
$kendo-font-weight-semibold: 600 !default;
|
|
4128
|
-
$kendo-font-weight-bold: 700 !default;
|
|
4129
|
-
|
|
4130
|
-
// Letter Spacing
|
|
4131
|
-
$kendo-letter-spacing: null !default;
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
// Generic styles
|
|
4135
|
-
|
|
4136
|
-
// Root styles
|
|
4137
|
-
$kendo-body-bg: $kendo-color-white !default;
|
|
4138
|
-
$kendo-body-text: #272727 !default;
|
|
4139
|
-
|
|
4140
|
-
$kendo-subtle-text: #646464 !default;
|
|
4141
|
-
|
|
4142
|
-
$kendo-app-bg: $kendo-body-bg !default;
|
|
4143
|
-
$kendo-app-text: $kendo-body-text !default;
|
|
4144
|
-
$kendo-app-border: k-try-shade( $kendo-app-bg, 2 ) !default;
|
|
4145
|
-
|
|
4146
|
-
// Link
|
|
4147
|
-
$kendo-link-text: $kendo-color-primary !default;
|
|
4148
|
-
$kendo-link-hover-text: $kendo-color-primary-darker !default;
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
// Components
|
|
4152
|
-
|
|
4153
|
-
/// The background of the components' chrome area.
|
|
4154
|
-
$kendo-base-bg: #f0f0f0 !default;
|
|
4155
|
-
/// The text color of the components' chrome area.
|
|
4156
|
-
$kendo-base-text: $kendo-body-text !default;
|
|
4157
|
-
/// The border color of the components' chrome area.
|
|
4158
|
-
$kendo-base-border: k-try-shade( $kendo-base-bg, 2 ) !default;
|
|
4159
|
-
/// The gradient background of the components' chrome area.
|
|
4160
|
-
$kendo-base-gradient: rgba( white, .1 ), rgba( white, 0 ) !default;
|
|
4161
|
-
|
|
4162
|
-
/// Background color of a component.
|
|
4163
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.
|
|
4164
|
-
/// @group component
|
|
4165
|
-
$kendo-component-bg: $kendo-body-bg !default;
|
|
4166
|
-
/// Text color of a component.
|
|
4167
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.
|
|
4168
|
-
/// @group component
|
|
4169
|
-
$kendo-component-text: $kendo-body-text !default;
|
|
4170
|
-
/// Border color of a component.
|
|
4171
|
-
/// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.
|
|
4172
|
-
/// @group component
|
|
4173
|
-
$kendo-component-border: $kendo-base-border !default;
|
|
4174
|
-
|
|
4175
|
-
/// The background of hovered items.
|
|
4176
|
-
$kendo-hover-bg: k-try-shade( $kendo-base-bg, 1 ) !default;
|
|
4177
|
-
/// The text color of hovered items.
|
|
4178
|
-
$kendo-hover-text: $kendo-base-text !default;
|
|
4179
|
-
/// The border color of hovered items.
|
|
4180
|
-
$kendo-hover-border: k-try-shade( $kendo-hover-bg, 2 ) !default;
|
|
4181
|
-
/// The gradient background of hovered items.
|
|
4182
|
-
$kendo-hover-gradient: $kendo-base-gradient !default;
|
|
4183
|
-
|
|
4184
|
-
/// The background of selected items.
|
|
4185
|
-
$kendo-selected-bg: $kendo-color-primary !default;
|
|
4186
|
-
/// The text color of selected items.
|
|
4187
|
-
$kendo-selected-text: k-contrast-legacy( $kendo-selected-bg ) !default;
|
|
4188
|
-
/// The border color of selected items.
|
|
4189
|
-
$kendo-selected-border: k-try-shade( $kendo-selected-bg, 2 ) !default;
|
|
4190
|
-
/// The gradient background of selected items.
|
|
4191
|
-
$kendo-selected-gradient: $kendo-base-gradient !default;
|
|
4192
|
-
|
|
4193
|
-
$kendo-selected-hover-bg: k-try-shade( $kendo-selected-bg, 1 ) !default;
|
|
4194
|
-
$kendo-selected-hover-text: k-contrast-legacy( $kendo-selected-hover-bg ) !default;
|
|
4195
|
-
$kendo-selected-hover-border: $kendo-selected-border !default;
|
|
4196
|
-
$kendo-selected-hover-gradient: $kendo-selected-gradient !default;
|
|
4197
|
-
|
|
4198
|
-
$kendo-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
4199
|
-
|
|
4200
|
-
$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;
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
// Disabled mixin variables
|
|
4204
|
-
$kendo-disabled-text: #8d8d8d !default;
|
|
4205
|
-
$kendo-disabled-filter: grayscale(.1) !default;
|
|
4206
|
-
$kendo-disabled-opacity: .6 !default;
|
|
4908
|
+
/// Border radius for all components.
|
|
4909
|
+
$kendo-border-radius: k-map-get($kendo-spacing, 0.5) !default;
|
|
4910
|
+
$kendo-border-radius-sm: k-math-div($kendo-border-radius, 2) !default;
|
|
4911
|
+
$kendo-border-radius-md: $kendo-border-radius !default;
|
|
4912
|
+
$kendo-border-radius-lg: ($kendo-border-radius * 2) !default;
|
|
4207
4913
|
|
|
4208
|
-
$kendo-
|
|
4209
|
-
|
|
4210
|
-
|
|
4914
|
+
$kendo-border-radii: (
|
|
4915
|
+
DEFAULT: var(--kendo-border-radius-md, $kendo-border-radius-md),
|
|
4916
|
+
0: 0,
|
|
4917
|
+
sm: var(--kendo-border-radius-sm, $kendo-border-radius-sm),
|
|
4918
|
+
md: var(--kendo-border-radius-md, $kendo-border-radius-md),
|
|
4919
|
+
lg: var(--kendo-border-radius-lg, $kendo-border-radius-lg),
|
|
4920
|
+
none: 0,
|
|
4921
|
+
full: 9999px,
|
|
4211
4922
|
) !default;
|
|
4212
4923
|
|
|
4924
|
+
// Metrics
|
|
4925
|
+
$kendo-padding-x: k-map-get($kendo-spacing, 2) !default;
|
|
4926
|
+
$kendo-padding-y: k-map-get($kendo-spacing, 1) !default;
|
|
4927
|
+
$kendo-padding-sm-x: k-map-get($kendo-spacing, 1) !default;
|
|
4928
|
+
$kendo-padding-sm-y: k-map-get($kendo-spacing, 0.5) !default;
|
|
4929
|
+
$kendo-padding-md-x: k-map-get($kendo-spacing, 2) !default;
|
|
4930
|
+
$kendo-padding-md-y: k-map-get($kendo-spacing, 1) !default;
|
|
4931
|
+
$kendo-padding-lg-x: k-map-get($kendo-spacing, 3) !default;
|
|
4932
|
+
$kendo-padding-lg-y: k-map-get($kendo-spacing, 1.5) !default;
|
|
4213
4933
|
|
|
4214
|
-
//
|
|
4215
|
-
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
// Header
|
|
4220
|
-
$kendo-component-header-bg: $kendo-base-bg !default;
|
|
4221
|
-
$kendo-component-header-text: $kendo-base-text !default;
|
|
4222
|
-
$kendo-component-header-border: $kendo-base-border !default;
|
|
4223
|
-
$kendo-component-header-gradient: $kendo-base-gradient !default;
|
|
4224
|
-
|
|
4934
|
+
// Equilateral triangle variables
|
|
4935
|
+
// stylelint-disable number-max-precision
|
|
4936
|
+
$equilateral-index: 1.7320508076 !default;
|
|
4937
|
+
$equilateral-height: 0.8660254038 !default;
|
|
4938
|
+
// stylelint-enable number-max-precision
|
|
4225
4939
|
|
|
4226
|
-
//
|
|
4227
|
-
$kendo-
|
|
4228
|
-
$kendo-
|
|
4229
|
-
|
|
4230
|
-
$kendo-invalid-shadow: null !default;
|
|
4940
|
+
// Loading
|
|
4941
|
+
$kendo-loading-opacity: .3 !default;
|
|
4942
|
+
$kendo-zindex-loading: 100 !default;
|
|
4943
|
+
// #endregion
|
|
4231
4944
|
|
|
4232
4945
|
// #endregion
|
|
4233
4946
|
|
|
@@ -5322,39 +6035,6 @@ $kendo-invalid-shadow: null !default;
|
|
|
5322
6035
|
|
|
5323
6036
|
// #endregion
|
|
5324
6037
|
|
|
5325
|
-
// #endregion
|
|
5326
|
-
// #region @import "./_selection.scss"; -> scss/common/_selection.scss
|
|
5327
|
-
// #region @import "@progress/kendo-theme-default/scss/common/_selection.scss"; -> node_modules/@progress/kendo-theme-default/scss/common/_selection.scss
|
|
5328
|
-
@include exports( "common/selection/marquee" ) {
|
|
5329
|
-
|
|
5330
|
-
.k-marquee {
|
|
5331
|
-
position: absolute;
|
|
5332
|
-
z-index: 100000;
|
|
5333
|
-
}
|
|
5334
|
-
|
|
5335
|
-
.k-marquee-color,
|
|
5336
|
-
.k-marquee-text {
|
|
5337
|
-
position: absolute;
|
|
5338
|
-
top: 0;
|
|
5339
|
-
left: 0;
|
|
5340
|
-
width: 100%;
|
|
5341
|
-
height: 100%;
|
|
5342
|
-
}
|
|
5343
|
-
|
|
5344
|
-
.k-marquee-color {
|
|
5345
|
-
color: $kendo-selected-text;
|
|
5346
|
-
background-color: $kendo-selected-bg;
|
|
5347
|
-
border-color: $kendo-selected-border;
|
|
5348
|
-
opacity: .6;
|
|
5349
|
-
}
|
|
5350
|
-
.k-marquee-text {
|
|
5351
|
-
color: $kendo-selected-text;
|
|
5352
|
-
}
|
|
5353
|
-
|
|
5354
|
-
}
|
|
5355
|
-
|
|
5356
|
-
// #endregion
|
|
5357
|
-
|
|
5358
6038
|
// #endregion
|
|
5359
6039
|
|
|
5360
6040
|
// #endregion
|
|
@@ -13249,7 +13929,10 @@ $kendo-utils: (
|
|
|
13249
13929
|
|
|
13250
13930
|
// Register
|
|
13251
13931
|
// #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
|
|
13932
|
+
// #region @import "@progress/kendo-theme-core/scss/module-system/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/module-system/index.import.scss
|
|
13252
13933
|
// File already imported_once. Skipping output.
|
|
13934
|
+
// #endregion
|
|
13935
|
+
|
|
13253
13936
|
// #endregion
|
|
13254
13937
|
@include module-register( $_kendo-module-meta... );
|
|
13255
13938
|
|
|
@@ -19753,53 +20436,129 @@ $_kendo-module-meta: (
|
|
|
19753
20436
|
// #region @import "./_variables.scss"; -> scss/loader/_variables.scss
|
|
19754
20437
|
// Loader
|
|
19755
20438
|
|
|
20439
|
+
/// The border radius of the Loader segment.
|
|
20440
|
+
/// @group loader
|
|
19756
20441
|
$kendo-loader-segment-border-radius: 50% !default;
|
|
20442
|
+
|
|
20443
|
+
/// The size of the small Loader segment.
|
|
20444
|
+
/// @group loader
|
|
19757
20445
|
$kendo-loader-sm-segment-size: k-map-get( $kendo-spacing, 1 ) !default;
|
|
20446
|
+
/// The size of the medium Loader segment.
|
|
20447
|
+
/// @group loader
|
|
19758
20448
|
$kendo-loader-md-segment-size: k-map-get( $kendo-spacing, 2 ) !default;
|
|
20449
|
+
/// The size of the large Loader segment.
|
|
20450
|
+
/// @group loader
|
|
19759
20451
|
$kendo-loader-lg-segment-size: k-map-get( $kendo-spacing, 4 ) !default;
|
|
19760
20452
|
|
|
20453
|
+
/// The padding of the small Loader.
|
|
20454
|
+
/// @group loader
|
|
19761
20455
|
$kendo-loader-sm-padding: k-math-div( $kendo-loader-sm-segment-size, 2 ) !default;
|
|
20456
|
+
/// The padding of the medium Loader.
|
|
20457
|
+
/// @group loader
|
|
19762
20458
|
$kendo-loader-md-padding: k-math-div( $kendo-loader-md-segment-size, 2 ) !default;
|
|
20459
|
+
/// The padding of the large Loader.
|
|
20460
|
+
/// @group loader
|
|
19763
20461
|
$kendo-loader-lg-padding: k-math-div( $kendo-loader-lg-segment-size, 2 ) !default;
|
|
19764
20462
|
|
|
20463
|
+
/// The width of the small spinner-3 Loader.
|
|
20464
|
+
/// @group loader
|
|
19765
20465
|
$kendo-loader-sm-spinner-3-width: ( $kendo-loader-sm-segment-size * 4 ) !default;
|
|
19766
|
-
|
|
20466
|
+
/// The width of the medium spinner-3 Loader.
|
|
20467
|
+
/// @group loader
|
|
19767
20468
|
$kendo-loader-md-spinner-3-width: ( $kendo-loader-md-segment-size * 4 ) !default;
|
|
19768
|
-
|
|
20469
|
+
/// The width of the large spinner-3 Loader.
|
|
20470
|
+
/// @group loader
|
|
19769
20471
|
$kendo-loader-lg-spinner-3-width: ( $kendo-loader-lg-segment-size * 4 ) !default;
|
|
20472
|
+
|
|
20473
|
+
/// The height of the small spinner-3 Loader.
|
|
20474
|
+
/// @group loader
|
|
20475
|
+
$kendo-loader-sm-spinner-3-height: ( $kendo-loader-sm-spinner-3-width * $equilateral-height ) !default;
|
|
20476
|
+
/// The height of the medium spinner-3 Loader.
|
|
20477
|
+
/// @group loader
|
|
20478
|
+
$kendo-loader-md-spinner-3-height: ( $kendo-loader-md-spinner-3-width * $equilateral-height ) !default;
|
|
20479
|
+
/// The height of the large spinner-3 Loader.
|
|
20480
|
+
/// @group loader
|
|
19770
20481
|
$kendo-loader-lg-spinner-3-height: ( $kendo-loader-lg-spinner-3-width * $equilateral-height ) !default;
|
|
19771
20482
|
|
|
20483
|
+
/// The width of the small spinner-4 Loader.
|
|
20484
|
+
/// @group loader
|
|
19772
20485
|
$kendo-loader-sm-spinner-4-width: $kendo-loader-sm-segment-size * 4 !default;
|
|
19773
|
-
|
|
20486
|
+
/// The width of the medium spinner-4 Loader.
|
|
20487
|
+
/// @group loader
|
|
19774
20488
|
$kendo-loader-md-spinner-4-width: $kendo-loader-md-segment-size * 4 !default;
|
|
19775
|
-
|
|
20489
|
+
/// The width of the large spinner-4 Loader.
|
|
20490
|
+
/// @group loader
|
|
19776
20491
|
$kendo-loader-lg-spinner-4-width: $kendo-loader-lg-segment-size * 4 !default;
|
|
20492
|
+
|
|
20493
|
+
/// The height of the small spinner-4 Loader.
|
|
20494
|
+
/// @group loader
|
|
20495
|
+
$kendo-loader-sm-spinner-4-height: $kendo-loader-sm-spinner-4-width !default;
|
|
20496
|
+
/// The height of the medium spinner-4 Loader.
|
|
20497
|
+
/// @group loader
|
|
20498
|
+
$kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
|
|
20499
|
+
/// The height of the large spinner-4 Loader.
|
|
20500
|
+
/// @group loader
|
|
19777
20501
|
$kendo-loader-lg-spinner-4-height: $kendo-loader-lg-spinner-4-width !default;
|
|
19778
20502
|
|
|
20503
|
+
/// The color of the Loader based on the secondary theme color.
|
|
20504
|
+
/// @group loader
|
|
19779
20505
|
$kendo-loader-secondary-bg: #656565 !default;
|
|
19780
20506
|
|
|
20507
|
+
/// The border width of the container panel.
|
|
20508
|
+
/// @group loader
|
|
19781
20509
|
$kendo-loader-container-panel-border-width: 1px !default;
|
|
20510
|
+
/// The border style of the container panel.
|
|
20511
|
+
/// @group loader
|
|
19782
20512
|
$kendo-loader-container-panel-border-style: solid !default;
|
|
20513
|
+
/// The border color of the container panel.
|
|
20514
|
+
/// @group loader
|
|
19783
20515
|
$kendo-loader-container-panel-border-color: $kendo-component-border !default;
|
|
20516
|
+
/// The border radius of the container panel.
|
|
20517
|
+
/// @group loader
|
|
19784
20518
|
$kendo-loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
20519
|
+
/// The background color of the container panel.
|
|
20520
|
+
/// @group loader
|
|
19785
20521
|
$kendo-loader-container-panel-bg: $kendo-color-white !default;
|
|
19786
20522
|
|
|
20523
|
+
/// The padding of the small Loader container.
|
|
20524
|
+
/// @group loader
|
|
19787
20525
|
$kendo-loader-sm-container-padding: 15px !default;
|
|
19788
|
-
|
|
19789
|
-
|
|
19790
|
-
|
|
20526
|
+
/// The padding of the medium Loader container.
|
|
20527
|
+
/// @group loader
|
|
19791
20528
|
$kendo-loader-md-container-padding: 20px !default;
|
|
19792
|
-
|
|
19793
|
-
|
|
19794
|
-
|
|
20529
|
+
/// The padding of the large Loader container.
|
|
20530
|
+
/// @group loader
|
|
19795
20531
|
$kendo-loader-lg-container-padding: 25px !default;
|
|
20532
|
+
|
|
20533
|
+
/// The gap of the small Loader container.
|
|
20534
|
+
/// @group loader
|
|
20535
|
+
$kendo-loader-sm-container-gap: k-map-get( $kendo-spacing, 1 ) !default;
|
|
20536
|
+
/// The gap of the medium Loader container.
|
|
20537
|
+
/// @group loader
|
|
20538
|
+
$kendo-loader-md-container-gap: k-map-get( $kendo-spacing, 2 ) !default;
|
|
20539
|
+
/// The gap of the large Loader container.
|
|
20540
|
+
/// @group loader
|
|
19796
20541
|
$kendo-loader-lg-container-gap: k-map-get( $kendo-spacing, 3 ) !default;
|
|
19797
|
-
$kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
|
|
19798
20542
|
|
|
20543
|
+
/// The font size of the small Loader container.
|
|
20544
|
+
/// @group loader
|
|
20545
|
+
$kendo-loader-sm-container-font-size: $kendo-font-size-xs !default;
|
|
20546
|
+
/// The font size of the medium Loader container.
|
|
20547
|
+
/// @group loader
|
|
20548
|
+
$kendo-loader-md-container-font-size: $kendo-font-size-md !default;
|
|
20549
|
+
/// The font size of the large Loader container.
|
|
20550
|
+
/// @group loader
|
|
20551
|
+
$kendo-loader-lg-container-font-size: $kendo-font-size-lg !default;
|
|
19799
20552
|
|
|
19800
|
-
// Loading
|
|
20553
|
+
// Loading indicator
|
|
20554
|
+
/// The background color of the Loading indicator.
|
|
20555
|
+
/// @group loading
|
|
19801
20556
|
$kendo-loading-bg: $kendo-component-bg !default;
|
|
20557
|
+
/// The text color of the Loading indicator.
|
|
20558
|
+
/// @group loading
|
|
19802
20559
|
$kendo-loading-text: currentColor !default;
|
|
20560
|
+
/// The opacity of the Loading indicator.
|
|
20561
|
+
/// @group loading
|
|
19803
20562
|
$kendo-loading-opacity: .3 !default;
|
|
19804
20563
|
|
|
19805
20564
|
// #endregion
|
|
@@ -21542,7 +22301,7 @@ $kendo-menu-popup-border-width: $kendo-popup-border-width !default;
|
|
|
21542
22301
|
$kendo-menu-popup-font-size: $kendo-font-size-md !default;
|
|
21543
22302
|
$kendo-menu-popup-sm-font-size: $kendo-font-size-md !default;
|
|
21544
22303
|
$kendo-menu-popup-md-font-size: $kendo-font-size-md !default;
|
|
21545
|
-
$kendo-menu-popup-lg-font-size: $kendo-font-size-
|
|
22304
|
+
$kendo-menu-popup-lg-font-size: $kendo-font-size-lg !default;
|
|
21546
22305
|
|
|
21547
22306
|
/// Line heights used along with $kendo-font-size.
|
|
21548
22307
|
/// @group menu
|
|
@@ -23321,54 +24080,109 @@ $kendo-tooltip-error-border: $kendo-tooltip-error-bg !default;
|
|
|
23321
24080
|
// File already imported_once. Skipping output.
|
|
23322
24081
|
// #endregion
|
|
23323
24082
|
|
|
23324
|
-
|
|
23325
24083
|
// Window
|
|
23326
24084
|
|
|
24085
|
+
/// The width of the border around the Window.
|
|
24086
|
+
/// @group window
|
|
23327
24087
|
$kendo-window-border-width: 1px !default;
|
|
24088
|
+
/// The border radius of the Window.
|
|
24089
|
+
/// @group window
|
|
23328
24090
|
$kendo-window-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
|
|
24091
|
+
/// The font family of the Window.
|
|
24092
|
+
/// @group window
|
|
23329
24093
|
$kendo-window-font-family: $kendo-font-family !default;
|
|
24094
|
+
/// The font size of the Window.
|
|
24095
|
+
/// @group window
|
|
23330
24096
|
$kendo-window-font-size: $kendo-font-size-md !default;
|
|
24097
|
+
/// The line height of the Window.
|
|
24098
|
+
/// @group window
|
|
23331
24099
|
$kendo-window-line-height: $kendo-line-height-md !default;
|
|
23332
24100
|
|
|
24101
|
+
/// The horizontal padding of the Window titlebar.
|
|
24102
|
+
/// @group window
|
|
23333
24103
|
$kendo-window-titlebar-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
24104
|
+
/// The vertical padding of the Window titlebar.
|
|
24105
|
+
/// @group window
|
|
23334
24106
|
$kendo-window-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
24107
|
+
/// The width of the border of the Window titlebar.
|
|
24108
|
+
/// @group window
|
|
23335
24109
|
$kendo-window-titlebar-border-width: 0 0 1px !default;
|
|
24110
|
+
/// The style of the border of the Window titlebar.
|
|
24111
|
+
/// @group window
|
|
23336
24112
|
$kendo-window-titlebar-border-style: solid !default;
|
|
23337
24113
|
|
|
24114
|
+
/// The font size of the title of the Window.
|
|
24115
|
+
/// @group window
|
|
23338
24116
|
$kendo-window-title-font-size: $kendo-font-size-lg !default;
|
|
24117
|
+
/// The line height of the title of the Window.
|
|
24118
|
+
/// @group window
|
|
23339
24119
|
$kendo-window-title-line-height: 1.25 !default;
|
|
23340
24120
|
|
|
24121
|
+
/// The spacing between the buttons in the Window titlebar.
|
|
24122
|
+
/// @group window
|
|
23341
24123
|
$kendo-window-actions-gap: null !default;
|
|
23342
|
-
|
|
24124
|
+
/// The opacity of the buttons in the Window titlebar.
|
|
24125
|
+
/// @group window
|
|
23343
24126
|
$kendo-window-action-opacity: null !default;
|
|
24127
|
+
/// The opacity of the hovered buttons in the Window titlebar.
|
|
24128
|
+
/// @group window
|
|
23344
24129
|
$kendo-window-action-hover-opacity: null !default;
|
|
23345
24130
|
|
|
24131
|
+
/// The horizontal padding of the content of the Window.
|
|
24132
|
+
/// @group window
|
|
23346
24133
|
$kendo-window-inner-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
24134
|
+
/// The vertical padding of the content of the Window.
|
|
24135
|
+
/// @group window
|
|
23347
24136
|
$kendo-window-inner-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
23348
24137
|
|
|
24138
|
+
/// The horizontal padding of the Window action buttons.
|
|
24139
|
+
/// @group window
|
|
23349
24140
|
$kendo-window-buttongroup-padding-x: $kendo-actions-padding-x !default;
|
|
24141
|
+
/// The vertical padding of the Window action buttons.
|
|
24142
|
+
/// @group window
|
|
23350
24143
|
$kendo-window-buttongroup-padding-y: $kendo-actions-padding-y !default;
|
|
24144
|
+
/// The width of the top border of the Window action buttons.
|
|
24145
|
+
/// @group window
|
|
23351
24146
|
$kendo-window-buttongroup-border-width: 1px !default;
|
|
23352
24147
|
|
|
24148
|
+
/// The background color of the Window.
|
|
24149
|
+
/// @group window
|
|
23353
24150
|
$kendo-window-bg: $kendo-component-bg !default;
|
|
24151
|
+
/// The text color of the Window.
|
|
24152
|
+
/// @group window
|
|
23354
24153
|
$kendo-window-text: $kendo-component-text !default;
|
|
24154
|
+
/// The border color of the Window.
|
|
24155
|
+
/// @group window
|
|
23355
24156
|
$kendo-window-border: $kendo-component-border !default;
|
|
24157
|
+
/// The box shadow of the Window.
|
|
24158
|
+
/// @group window
|
|
24159
|
+
$kendo-window-shadow: 1px 1px 7px 1px rgba( black, .12 ) !default;
|
|
24160
|
+
/// The box shadow of the focused Window.
|
|
24161
|
+
/// @group window
|
|
24162
|
+
$kendo-window-focus-shadow: 1px 1px 7px 1px rgba( black, .25 ) !default;
|
|
23356
24163
|
|
|
24164
|
+
/// The background color of the Window titlebar.
|
|
24165
|
+
/// @group window
|
|
23357
24166
|
$kendo-window-titlebar-bg: $kendo-component-header-bg !default;
|
|
24167
|
+
/// The text color of the Window titlebar.
|
|
24168
|
+
/// @group window
|
|
23358
24169
|
$kendo-window-titlebar-text: $kendo-component-header-text !default;
|
|
24170
|
+
/// The border color of the Window titlebar.
|
|
24171
|
+
/// @group window
|
|
23359
24172
|
$kendo-window-titlebar-border: $kendo-component-header-border !default;
|
|
24173
|
+
/// The background gradient of the Window titlebar.
|
|
24174
|
+
/// @group window
|
|
23360
24175
|
$kendo-window-titlebar-gradient: $kendo-component-header-gradient !default;
|
|
23361
24176
|
|
|
23362
|
-
|
|
23363
|
-
|
|
23364
|
-
|
|
24177
|
+
/// The map of the width for the different Window sizes.
|
|
24178
|
+
/// @group window
|
|
23365
24179
|
$kendo-window-sizes: (
|
|
23366
24180
|
sm: 300px,
|
|
23367
24181
|
md: 800px,
|
|
23368
24182
|
lg: 1200px
|
|
23369
24183
|
) !default;
|
|
23370
24184
|
|
|
23371
|
-
///
|
|
24185
|
+
/// The theme colors map for the Window.
|
|
23372
24186
|
/// @group window
|
|
23373
24187
|
$kendo-window-theme-colors: (
|
|
23374
24188
|
"primary": k-map-get($kendo-theme-colors, "primary"),
|
|
@@ -26275,55 +27089,56 @@ $_kendo-module-meta: (
|
|
|
26275
27089
|
|
|
26276
27090
|
// Component
|
|
26277
27091
|
// #region @import "./_variables.scss"; -> scss/listbox/_variables.scss
|
|
26278
|
-
//
|
|
27092
|
+
// ListBox
|
|
26279
27093
|
|
|
26280
|
-
///
|
|
27094
|
+
/// The spacing between the ListBox elements.
|
|
26281
27095
|
/// @group listbox
|
|
26282
27096
|
$kendo-listbox-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
26283
|
-
///
|
|
27097
|
+
/// The spacing between the ListBox buttons.
|
|
26284
27098
|
/// @group listbox
|
|
26285
27099
|
$kendo-listbox-button-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
26286
|
-
///
|
|
27100
|
+
/// The width of the ListBox.
|
|
26287
27101
|
/// @group listbox
|
|
26288
27102
|
$kendo-listbox-width: 10em !default;
|
|
26289
|
-
///
|
|
27103
|
+
/// The height of the ListBox.
|
|
26290
27104
|
/// @group listbox
|
|
26291
27105
|
$kendo-listbox-default-height: 200px !default;
|
|
26292
|
-
///
|
|
27106
|
+
/// The width of the border around the ListBox.
|
|
26293
27107
|
/// @group listbox
|
|
26294
27108
|
$kendo-listbox-border-width: 1px !default;
|
|
26295
|
-
///
|
|
27109
|
+
/// The font family of the ListBox.
|
|
26296
27110
|
/// @group listbox
|
|
26297
27111
|
$kendo-listbox-font-family: $kendo-font-family !default;
|
|
26298
|
-
///
|
|
27112
|
+
/// The font size of the ListBox.
|
|
26299
27113
|
/// @group listbox
|
|
26300
27114
|
$kendo-listbox-font-size: $kendo-font-size-md !default;
|
|
26301
|
-
///
|
|
27115
|
+
/// The line height of the ListBox.
|
|
26302
27116
|
/// @group listbox
|
|
26303
27117
|
$kendo-listbox-line-height: $kendo-line-height-md !default;
|
|
26304
|
-
|
|
26305
|
-
///
|
|
26306
|
-
$kendo-listbox-bg: $kendo-component-bg !default;
|
|
26307
|
-
/// Text color of the listbox.
|
|
27118
|
+
|
|
27119
|
+
/// The text color of the ListBox.
|
|
26308
27120
|
/// @group listbox
|
|
26309
27121
|
$kendo-listbox-text: $kendo-component-text !default;
|
|
26310
|
-
///
|
|
27122
|
+
/// The background color of the ListBox.
|
|
27123
|
+
/// @group listbox
|
|
27124
|
+
$kendo-listbox-bg: $kendo-component-bg !default;
|
|
27125
|
+
/// The border color of the ListBox.
|
|
26311
27126
|
/// @group listbox
|
|
26312
27127
|
$kendo-listbox-border: $kendo-component-border !default;
|
|
26313
27128
|
|
|
26314
|
-
///
|
|
27129
|
+
/// The inline padding of the ListBox item.
|
|
26315
27130
|
/// @group listbox
|
|
26316
27131
|
$kendo-listbox-item-padding-x: null !default;
|
|
26317
|
-
///
|
|
27132
|
+
/// The block padding of the ListBox item.
|
|
26318
27133
|
/// @group listbox
|
|
26319
27134
|
$kendo-listbox-item-padding-y: null !default;
|
|
26320
27135
|
|
|
26321
|
-
///
|
|
26322
|
-
/// @group listbox
|
|
26323
|
-
$kendo-listbox-drop-hint-border-width: null !default;
|
|
26324
|
-
/// Width of the drop hint.
|
|
27136
|
+
/// The width of the ListBox drop hint.
|
|
26325
27137
|
/// @group listbox
|
|
26326
27138
|
$kendo-listbox-drop-hint-width: 1px !default;
|
|
27139
|
+
/// The width of the border around the ListBox drop hint.
|
|
27140
|
+
/// @group listbox
|
|
27141
|
+
$kendo-listbox-drop-hint-border-width: null !default;
|
|
26327
27142
|
|
|
26328
27143
|
// #endregion
|
|
26329
27144
|
// #region @import "./_layout.scss"; -> scss/listbox/_layout.scss
|
|
@@ -26501,77 +27316,78 @@ $_kendo-module-meta: (
|
|
|
26501
27316
|
|
|
26502
27317
|
// Component
|
|
26503
27318
|
// #region @import "./_variables.scss"; -> scss/progressbar/_variables.scss
|
|
26504
|
-
//
|
|
27319
|
+
// ProgressBar
|
|
26505
27320
|
|
|
26506
|
-
///
|
|
27321
|
+
/// The height of the ProgressBar.
|
|
26507
27322
|
/// @group progressbar
|
|
26508
27323
|
$kendo-progressbar-height: 22px !default;
|
|
26509
|
-
///
|
|
27324
|
+
/// The horizontal width of the ProgressBar.
|
|
26510
27325
|
/// @group progressbar
|
|
26511
27326
|
$kendo-progressbar-horizontal-width: 100% !default;
|
|
26512
|
-
///
|
|
27327
|
+
/// The animation timing of the ProgressBar.
|
|
26513
27328
|
/// @group progressbar
|
|
26514
27329
|
$kendo-progressbar-animation-timing: 1s linear infinite !default;
|
|
26515
|
-
///
|
|
27330
|
+
/// The width of the border around the ProgressBar.
|
|
26516
27331
|
/// @group progressbar
|
|
26517
27332
|
$kendo-progressbar-border-width: 0px !default;
|
|
26518
|
-
///
|
|
27333
|
+
/// The font family of the ProgressBar.
|
|
26519
27334
|
/// @group progressbar
|
|
26520
27335
|
$kendo-progressbar-font-family: $kendo-font-family !default;
|
|
26521
|
-
///
|
|
27336
|
+
/// The font size of the ProgressBar.
|
|
26522
27337
|
/// @group progressbar
|
|
26523
27338
|
$kendo-progressbar-font-size: $kendo-font-size-sm !default;
|
|
26524
|
-
///
|
|
27339
|
+
/// The line height of the ProgressBar.
|
|
26525
27340
|
/// @group progressbar
|
|
26526
27341
|
$kendo-progressbar-line-height: 1 !default;
|
|
26527
|
-
|
|
27342
|
+
|
|
27343
|
+
/// The background color of the ProgressBar.
|
|
26528
27344
|
/// @group progressbar
|
|
26529
27345
|
$kendo-progressbar-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
|
|
26530
|
-
///
|
|
27346
|
+
/// The text color of the ProgressBar.
|
|
26531
27347
|
/// @group progressbar
|
|
26532
27348
|
$kendo-progressbar-text: $kendo-component-text !default;
|
|
26533
|
-
///
|
|
27349
|
+
/// The border color of the ProgressBar.
|
|
26534
27350
|
/// @group progressbar
|
|
26535
27351
|
$kendo-progressbar-border: $kendo-component-border !default;
|
|
26536
|
-
///
|
|
27352
|
+
/// The background gradient of the ProgressBar.
|
|
26537
27353
|
/// @group progressbar
|
|
26538
27354
|
$kendo-progressbar-gradient: null !default;
|
|
26539
27355
|
|
|
26540
|
-
///
|
|
27356
|
+
/// The progress background color of the ProgressBar.
|
|
26541
27357
|
/// @group progressbar
|
|
26542
27358
|
$kendo-progressbar-value-bg: $kendo-color-primary !default;
|
|
26543
|
-
///
|
|
27359
|
+
/// The progress text color of the ProgressBar.
|
|
26544
27360
|
/// @group progressbar
|
|
26545
27361
|
$kendo-progressbar-value-text: k-contrast-legacy( $kendo-progressbar-value-bg ) !default;
|
|
26546
|
-
///
|
|
27362
|
+
/// The progress border color of the ProgressBar.
|
|
26547
27363
|
/// @group progressbar
|
|
26548
27364
|
$kendo-progressbar-value-border: k-try-shade( $kendo-progressbar-value-bg ) !default;
|
|
26549
|
-
///
|
|
27365
|
+
/// The progress background gradient of the ProgressBar.
|
|
26550
27366
|
/// @group progressbar
|
|
26551
27367
|
$kendo-progressbar-value-gradient: null !default;
|
|
26552
27368
|
|
|
26553
|
-
///
|
|
27369
|
+
/// The background color of the indeterminate ProgressBar.
|
|
26554
27370
|
/// @group progressbar
|
|
26555
27371
|
$kendo-progressbar-indeterminate-bg: $kendo-progressbar-bg !default;
|
|
26556
|
-
///
|
|
27372
|
+
/// The text color of the indeterminate ProgressBar.
|
|
26557
27373
|
/// @group progressbar
|
|
26558
27374
|
$kendo-progressbar-indeterminate-text: $kendo-progressbar-text !default;
|
|
26559
|
-
///
|
|
27375
|
+
/// The border color of the indeterminate ProgressBar.
|
|
26560
27376
|
/// @group progressbar
|
|
26561
27377
|
$kendo-progressbar-indeterminate-border: $kendo-progressbar-border !default;
|
|
26562
|
-
///
|
|
27378
|
+
/// The background gradient of the indeterminate ProgressBar.
|
|
26563
27379
|
/// @group progressbar
|
|
26564
27380
|
$kendo-progressbar-indeterminate-gradient: null !default;
|
|
26565
27381
|
|
|
26566
|
-
///
|
|
27382
|
+
/// The border color of the chunk ProgressBar.
|
|
26567
27383
|
/// @group progressbar
|
|
26568
27384
|
$kendo-progressbar-chunk-border: $kendo-body-bg !default;
|
|
26569
27385
|
|
|
26570
27386
|
// Circular Progressbar
|
|
26571
|
-
///
|
|
27387
|
+
/// The arc stroke color of the circular ProgressBar.
|
|
26572
27388
|
/// @group progressbar
|
|
26573
27389
|
$kendo-circular-progressbar-arc-stroke: $kendo-color-primary !default;
|
|
26574
|
-
///
|
|
27390
|
+
/// The scale stroke background color of the circular ProgressBar.
|
|
26575
27391
|
/// @group progressbar
|
|
26576
27392
|
$kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
26577
27393
|
|
|
@@ -29928,15 +30744,32 @@ $_kendo-module-meta: (
|
|
|
29928
30744
|
|
|
29929
30745
|
// Component
|
|
29930
30746
|
// #region @import "./_variables.scss"; -> scss/colorpalette/_variables.scss
|
|
29931
|
-
//
|
|
30747
|
+
// ColorPalette
|
|
30748
|
+
|
|
30749
|
+
/// The font family of the ColorPalette.
|
|
30750
|
+
/// @group colorpalette
|
|
29932
30751
|
$kendo-color-palette-font-family: $kendo-font-family !default;
|
|
30752
|
+
/// The font size of the ColorPalette.
|
|
30753
|
+
/// @group colorpalette
|
|
29933
30754
|
$kendo-color-palette-font-size: $kendo-font-size-md !default;
|
|
30755
|
+
/// The line height of the ColorPalette.
|
|
30756
|
+
/// @group colorpalette
|
|
29934
30757
|
$kendo-color-palette-line-height: 0 !default;
|
|
29935
30758
|
|
|
30759
|
+
/// The width of the ColorPalette tile.
|
|
30760
|
+
/// @group colorpalette
|
|
29936
30761
|
$kendo-color-palette-tile-width: k-map-get( $kendo-spacing, 6 ) !default;
|
|
30762
|
+
/// The height of the ColorPalette tile.
|
|
30763
|
+
/// @group colorpalette
|
|
29937
30764
|
$kendo-color-palette-tile-height: $kendo-color-palette-tile-width !default;
|
|
30765
|
+
/// The shadow of the ColorPalette focused tile.
|
|
30766
|
+
/// @group colorpalette
|
|
29938
30767
|
$kendo-color-palette-tile-focus-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .5 ) !default;
|
|
30768
|
+
/// The shadow of the ColorPalette hovered tile.
|
|
30769
|
+
/// @group colorpalette
|
|
29939
30770
|
$kendo-color-palette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .8 ) !default;
|
|
30771
|
+
/// The shadow of the ColorPalette selected tile.
|
|
30772
|
+
/// @group colorpalette
|
|
29940
30773
|
$kendo-color-palette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, 1 ) !default;
|
|
29941
30774
|
|
|
29942
30775
|
// #endregion
|
|
@@ -30229,60 +31062,140 @@ $_kendo-module-meta: (
|
|
|
30229
31062
|
// File already imported_once. Skipping output.
|
|
30230
31063
|
// #endregion
|
|
30231
31064
|
|
|
30232
|
-
|
|
30233
31065
|
// ColorGradient
|
|
31066
|
+
|
|
31067
|
+
/// The spacer of the ColorGradient.
|
|
31068
|
+
/// @group cologradient
|
|
30234
31069
|
$kendo-color-gradient-spacer: k-map-get( $kendo-spacing, 3 ) !default;
|
|
30235
31070
|
|
|
31071
|
+
/// The width of the ColorGradient.
|
|
31072
|
+
/// @group cologradient
|
|
30236
31073
|
$kendo-color-gradient-width: 272px !default;
|
|
31074
|
+
/// The width of the border around the ColorGradient.
|
|
31075
|
+
/// @group cologradient
|
|
30237
31076
|
$kendo-color-gradient-border-width: 1px !default;
|
|
31077
|
+
/// The border radius of the ColorGradient.
|
|
31078
|
+
/// @group cologradient
|
|
30238
31079
|
$kendo-color-gradient-border-radius: $kendo-border-radius-md !default;
|
|
31080
|
+
/// The vertical padding of the ColorGradient.
|
|
31081
|
+
/// @group cologradient
|
|
30239
31082
|
$kendo-color-gradient-padding-y: $kendo-color-gradient-spacer !default;
|
|
31083
|
+
/// The horizontal padding of the ColorGradient.
|
|
31084
|
+
/// @group cologradient
|
|
30240
31085
|
$kendo-color-gradient-padding-x: $kendo-color-gradient-padding-y !default;
|
|
31086
|
+
/// The spacing between the sections of the ColorGradient.
|
|
31087
|
+
/// @group cologradient
|
|
30241
31088
|
$kendo-color-gradient-gap: $kendo-color-gradient-spacer !default;
|
|
31089
|
+
/// The font family of the ColorGradient.
|
|
31090
|
+
/// @group cologradient
|
|
30242
31091
|
$kendo-color-gradient-font-family: $kendo-font-family !default;
|
|
31092
|
+
/// The font size of the ColorGradient.
|
|
31093
|
+
/// @group cologradient
|
|
30243
31094
|
$kendo-color-gradient-font-size: $kendo-font-size-md !default;
|
|
31095
|
+
/// The line height of the ColorGradient.
|
|
31096
|
+
/// @group cologradient
|
|
30244
31097
|
$kendo-color-gradient-line-height: $kendo-line-height-md !default;
|
|
30245
|
-
|
|
31098
|
+
/// The text color of the ColorGradient.
|
|
31099
|
+
/// @group cologradient
|
|
30246
31100
|
$kendo-color-gradient-text: $kendo-component-text !default;
|
|
31101
|
+
/// The background color of the ColorGradient.
|
|
31102
|
+
/// @group cologradient
|
|
31103
|
+
$kendo-color-gradient-bg: $kendo-component-bg !default;
|
|
31104
|
+
/// The border color of the ColorGradient.
|
|
31105
|
+
/// @group cologradient
|
|
30247
31106
|
$kendo-color-gradient-border: $kendo-component-border !default;
|
|
30248
31107
|
|
|
31108
|
+
/// The border color of the focused ColorGradient.
|
|
31109
|
+
/// @group cologradient
|
|
30249
31110
|
$kendo-color-gradient-focus-border: null !default;
|
|
31111
|
+
/// The box shadow of the focused ColorGradient.
|
|
31112
|
+
/// @group cologradient
|
|
30250
31113
|
$kendo-color-gradient-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
|
|
30251
31114
|
|
|
30252
|
-
|
|
31115
|
+
/// The border radius of the ColorGradient canvas.
|
|
31116
|
+
/// @group cologradient
|
|
30253
31117
|
$kendo-color-gradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
31118
|
+
/// The spacing between the items of the ColorGradient canvas.
|
|
31119
|
+
/// @group cologradient
|
|
30254
31120
|
$kendo-color-gradient-canvas-gap: $kendo-color-gradient-spacer !default;
|
|
31121
|
+
/// The height the ColorGradient canvas hsv rectangle.
|
|
31122
|
+
/// @group cologradient
|
|
30255
31123
|
$kendo-color-gradient-canvas-rectangle-height: 180px !default;
|
|
30256
31124
|
|
|
31125
|
+
/// The width of the ColorGradient slider.
|
|
31126
|
+
/// @group cologradient
|
|
30257
31127
|
$kendo-color-gradient-slider-track-size: 10px !default;
|
|
31128
|
+
/// The border radius of the ColorGradient slider.
|
|
31129
|
+
/// @group cologradient
|
|
30258
31130
|
$kendo-color-gradient-slider-border-radius: 10px !default;
|
|
31131
|
+
/// The width of the border around the ColorGradient slider drag handle.
|
|
31132
|
+
/// @group cologradient
|
|
30259
31133
|
$kendo-color-gradient-slider-draghandle-border-width: 3px !default;
|
|
30260
31134
|
|
|
31135
|
+
/// The height of the ColorGradient vertical slider.
|
|
31136
|
+
/// @group cologradient
|
|
30261
31137
|
$kendo-color-gradient-slider-vertical-size: 180px !default;
|
|
31138
|
+
/// The width of the ColorGradient horizontal slider.
|
|
31139
|
+
/// @group cologradient
|
|
30262
31140
|
$kendo-color-gradient-slider-horizontal-size: 100% !default;
|
|
30263
31141
|
|
|
31142
|
+
/// The width of the ColorGradient canvas drag handle.
|
|
31143
|
+
/// @group cologradient
|
|
30264
31144
|
$kendo-color-gradient-draghandle-width: 14px !default;
|
|
31145
|
+
/// The height of the ColorGradient canvas drag handle.
|
|
31146
|
+
/// @group cologradient
|
|
30265
31147
|
$kendo-color-gradient-draghandle-height: 14px !default;
|
|
31148
|
+
/// The width of the border around the ColorGradient canvas drag handle.
|
|
31149
|
+
/// @group cologradient
|
|
30266
31150
|
$kendo-color-gradient-draghandle-border-width: 1px !default;
|
|
31151
|
+
/// The border radius of the ColorGradient canvas drag handle.
|
|
31152
|
+
/// @group cologradient
|
|
30267
31153
|
$kendo-color-gradient-draghandle-border-radius: 50% !default;
|
|
30268
|
-
|
|
31154
|
+
/// The text color of the ColorGradient canvas drag handle.
|
|
31155
|
+
/// @group cologradient
|
|
30269
31156
|
$kendo-color-gradient-draghandle-text: null !default;
|
|
31157
|
+
/// The background color of the ColorGradient canvas drag handle.
|
|
31158
|
+
/// @group cologradient
|
|
31159
|
+
$kendo-color-gradient-draghandle-bg: transparent !default;
|
|
31160
|
+
/// The color of the border around the ColorGradient canvas drag handle.
|
|
31161
|
+
/// @group cologradient
|
|
30270
31162
|
$kendo-color-gradient-draghandle-border: rgba( white, .8) !default;
|
|
31163
|
+
/// The box shadow of the ColorGradient canvas drag handle.
|
|
31164
|
+
/// @group cologradient
|
|
30271
31165
|
$kendo-color-gradient-draghandle-shadow: 0 1px 4px rgba( black, .5 ) !default;
|
|
31166
|
+
/// The box shadow of the focused ColorGradient canvas drag handle.
|
|
31167
|
+
/// @group cologradient
|
|
30272
31168
|
$kendo-color-gradient-draghandle-focus-shadow: 0 1px 4px black !default;
|
|
31169
|
+
/// The box shadow of the hovered ColorGradient canvas drag handle.
|
|
31170
|
+
/// @group cologradient
|
|
30273
31171
|
$kendo-color-gradient-draghandle-hover-shadow: $kendo-color-gradient-draghandle-focus-shadow !default;
|
|
30274
31172
|
|
|
31173
|
+
/// The vertical margin of the ColorGradient canvas drag handle.
|
|
31174
|
+
/// @group cologradient
|
|
30275
31175
|
$kendo-color-gradient-canvas-draghandle-margin-y: - k-math-div( $kendo-color-gradient-draghandle-height, 2 ) !default;
|
|
31176
|
+
/// The horizontal margin of the ColorGradient canvas drag handle.
|
|
31177
|
+
/// @group cologradient
|
|
30276
31178
|
$kendo-color-gradient-canvas-draghandle-margin-x: - k-math-div( $kendo-color-gradient-draghandle-width, 2 ) !default;
|
|
30277
31179
|
|
|
31180
|
+
/// The width of the ColorGradient input.
|
|
31181
|
+
/// @group cologradient
|
|
30278
31182
|
$kendo-color-gradient-input-width: 46px !default;
|
|
31183
|
+
/// The spacing between the ColorGradient inputs.
|
|
31184
|
+
/// @group cologradient
|
|
30279
31185
|
$kendo-color-gradient-input-gap: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
|
|
31186
|
+
/// The spacing between the ColorGradient inputs and their labels.
|
|
31187
|
+
/// @group cologradient
|
|
30280
31188
|
$kendo-color-gradient-input-label-gap: k-math-div( $kendo-color-gradient-spacer, 3 ) !default;
|
|
31189
|
+
/// The text color of the ColorGradient input labels.
|
|
31190
|
+
/// @group cologradient
|
|
30281
31191
|
$kendo-color-gradient-input-label-text: $kendo-subtle-text !default;
|
|
30282
31192
|
|
|
31193
|
+
/// The font weight of the ColorGradient contrast ratio text.
|
|
31194
|
+
/// @group cologradient
|
|
30283
31195
|
$kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !default;
|
|
31196
|
+
/// The spacing between the items in the ColorGradient contrast tool.
|
|
31197
|
+
/// @group cologradient
|
|
30284
31198
|
$kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
|
|
30285
|
-
|
|
30286
31199
|
// #endregion
|
|
30287
31200
|
// #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
|
|
30288
31201
|
// #region @import "@progress/kendo-theme-default/scss/colorgradient/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss
|
|
@@ -30649,38 +31562,86 @@ $_kendo-module-meta: (
|
|
|
30649
31562
|
|
|
30650
31563
|
// Component
|
|
30651
31564
|
// #region @import "./_variables.scss"; -> scss/coloreditor/_variables.scss
|
|
30652
|
-
//
|
|
31565
|
+
// ColorEditor/FlatColorPicker
|
|
31566
|
+
|
|
31567
|
+
/// The spacer of the ColorEditor.
|
|
31568
|
+
/// @group coloreditor
|
|
30653
31569
|
$kendo-color-editor-spacer: k-map-get( $kendo-spacing, 3 ) !default;
|
|
30654
31570
|
|
|
31571
|
+
/// The minimum width of the ColorEditor.
|
|
31572
|
+
/// @group coloreditor
|
|
30655
31573
|
$kendo-color-editor-min-width: 272px !default;
|
|
31574
|
+
/// The width of the border around the ColorEditor.
|
|
31575
|
+
/// @group coloreditor
|
|
30656
31576
|
$kendo-color-editor-border-width: 1px !default;
|
|
31577
|
+
/// The border radius of the ColorEditor.
|
|
31578
|
+
/// @group coloreditor
|
|
30657
31579
|
$kendo-color-editor-border-radius: $kendo-border-radius-md !default;
|
|
31580
|
+
/// The font family of the ColorEditor.
|
|
31581
|
+
/// @group coloreditor
|
|
30658
31582
|
$kendo-color-editor-font-family: $kendo-font-family !default;
|
|
31583
|
+
/// The font size of the ColorEditor.
|
|
31584
|
+
/// @group coloreditor
|
|
30659
31585
|
$kendo-color-editor-font-size: $kendo-font-size-md !default;
|
|
31586
|
+
/// The line height of the ColorEditor.
|
|
31587
|
+
/// @group coloreditor
|
|
30660
31588
|
$kendo-color-editor-line-height: $kendo-line-height-md !default;
|
|
30661
|
-
|
|
31589
|
+
/// The text color of the ColorEditor.
|
|
31590
|
+
/// @group coloreditor
|
|
30662
31591
|
$kendo-color-editor-text: $kendo-component-text !default;
|
|
31592
|
+
/// The background color of the ColorEditor.
|
|
31593
|
+
/// @group coloreditor
|
|
31594
|
+
$kendo-color-editor-bg: $kendo-component-bg !default;
|
|
31595
|
+
/// The border color of the ColorEditor.
|
|
31596
|
+
/// @group coloreditor
|
|
30663
31597
|
$kendo-color-editor-border: $kendo-component-border !default;
|
|
30664
31598
|
|
|
31599
|
+
/// The border color of the focused ColorEditor.
|
|
31600
|
+
/// @group coloreditor
|
|
30665
31601
|
$kendo-color-editor-focus-border: null !default;
|
|
31602
|
+
/// The box shadow of the focused ColorEditor.
|
|
31603
|
+
/// @group coloreditor
|
|
30666
31604
|
$kendo-color-editor-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
|
|
30667
31605
|
|
|
31606
|
+
/// The vertical padding of the ColorEditor header.
|
|
31607
|
+
/// @group coloreditor
|
|
30668
31608
|
$kendo-color-editor-header-padding-y: $kendo-color-editor-spacer !default;
|
|
31609
|
+
/// The horizontal padding of the ColorEditor header.
|
|
31610
|
+
/// @group coloreditor
|
|
30669
31611
|
$kendo-color-editor-header-padding-x: $kendo-color-editor-header-padding-y !default;
|
|
31612
|
+
/// The spacing between the ColorEditor header actions.
|
|
31613
|
+
/// @group coloreditor
|
|
30670
31614
|
$kendo-color-editor-header-actions-gap: k-math-div( $kendo-color-editor-spacer, 1.5 ) !default;
|
|
30671
31615
|
|
|
30672
|
-
|
|
31616
|
+
/// The width of the ColorEditor preview.
|
|
31617
|
+
/// @group coloreditor
|
|
30673
31618
|
$kendo-color-editor-color-preview-width: 32px !default;
|
|
31619
|
+
/// The height of the ColorEditor preview.
|
|
31620
|
+
/// @group coloreditor
|
|
30674
31621
|
$kendo-color-editor-color-preview-height: 12px !default;
|
|
31622
|
+
/// The spacing between the colors in the ColorEditor preview.
|
|
31623
|
+
/// @group coloreditor
|
|
31624
|
+
$kendo-color-editor-preview-gap: k-map-get( $kendo-spacing, 1 ) !default;
|
|
30675
31625
|
|
|
31626
|
+
/// The vertical padding of the ColorEditor views container.
|
|
31627
|
+
/// @group coloreditor
|
|
30676
31628
|
$kendo-color-editor-views-padding-y: $kendo-color-editor-spacer !default;
|
|
31629
|
+
/// The horizontal padding of the ColorEditor views container.
|
|
31630
|
+
/// @group coloreditor
|
|
30677
31631
|
$kendo-color-editor-views-padding-x: $kendo-color-editor-views-padding-y !default;
|
|
31632
|
+
/// The spacing of the ColorEditor views container.
|
|
31633
|
+
/// @group coloreditor
|
|
30678
31634
|
$kendo-color-editor-views-gap: $kendo-color-editor-spacer !default;
|
|
30679
31635
|
|
|
31636
|
+
/// The outline color of the focused ColorGradient.
|
|
31637
|
+
/// @group coloreditor
|
|
30680
31638
|
$kendo-color-editor-color-gradient-focus-outline-color: rgba(0, 0, 0, .3) !default;
|
|
31639
|
+
/// The outline width of the focused ColorGradient.
|
|
31640
|
+
/// @group coloreditor
|
|
30681
31641
|
$kendo-color-editor-color-gradient-focus-outline: 2px !default;
|
|
31642
|
+
/// The outline offset of the focused ColorGradient.
|
|
31643
|
+
/// @group coloreditor
|
|
30682
31644
|
$kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
|
|
30683
|
-
|
|
30684
31645
|
// #endregion
|
|
30685
31646
|
// #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
|
|
30686
31647
|
// #region @import "@progress/kendo-theme-default/scss/coloreditor/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/coloreditor/_layout.scss
|
|
@@ -34165,49 +35126,102 @@ $kendo-dropzone-note-text: $kendo-subtle-text !default;
|
|
|
34165
35126
|
// #region @import "./_variables.scss"; -> scss/upload/_variables.scss
|
|
34166
35127
|
// Upload
|
|
34167
35128
|
|
|
35129
|
+
/// The width of the border around the Upload.
|
|
35130
|
+
/// @group upload
|
|
34168
35131
|
$kendo-upload-border-width: 1px !default;
|
|
35132
|
+
/// The font family of the Upload.
|
|
35133
|
+
/// @group upload
|
|
34169
35134
|
$kendo-upload-font-family: $kendo-font-family !default;
|
|
35135
|
+
/// The font size of the Upload.
|
|
35136
|
+
/// @group upload
|
|
34170
35137
|
$kendo-upload-font-size: $kendo-font-size-md !default;
|
|
35138
|
+
/// The line height of the Upload.
|
|
35139
|
+
/// @group upload
|
|
34171
35140
|
$kendo-upload-line-height: $kendo-line-height-md !default;
|
|
35141
|
+
/// The maximum height of the list with uploaded items.
|
|
35142
|
+
/// @group upload
|
|
34172
35143
|
$kendo-upload-max-height: 300px !default;
|
|
34173
35144
|
|
|
34174
|
-
|
|
35145
|
+
/// The text color of the Upload.
|
|
35146
|
+
/// @group upload
|
|
34175
35147
|
$kendo-upload-text: $kendo-component-text !default;
|
|
35148
|
+
/// The background color of the Upload.
|
|
35149
|
+
/// @group upload
|
|
35150
|
+
$kendo-upload-bg: $kendo-component-bg !default;
|
|
35151
|
+
/// The border color of the Upload.
|
|
35152
|
+
/// @group upload
|
|
34176
35153
|
$kendo-upload-border: $kendo-component-border !default;
|
|
34177
35154
|
|
|
35155
|
+
/// The horizontal padding of the Upload dropzone.
|
|
35156
|
+
/// @group upload
|
|
34178
35157
|
$kendo-upload-dropzone-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
35158
|
+
/// The vertical padding of the Upload dropzone.
|
|
35159
|
+
/// @group upload
|
|
34179
35160
|
$kendo-upload-dropzone-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34180
|
-
|
|
35161
|
+
/// The text color of the Upload dropzone.
|
|
35162
|
+
/// @group upload
|
|
34181
35163
|
$kendo-upload-dropzone-text: $kendo-component-header-text !default;
|
|
35164
|
+
/// The background color of the Upload dropzone.
|
|
35165
|
+
/// @group upload
|
|
35166
|
+
$kendo-upload-dropzone-bg: $kendo-component-header-bg !default;
|
|
35167
|
+
/// The border color of the Upload dropzone.
|
|
35168
|
+
/// @group upload
|
|
34182
35169
|
$kendo-upload-dropzone-border: $kendo-upload-border !default;
|
|
35170
|
+
/// The background color of the hovered Upload dropzone.
|
|
35171
|
+
/// @group upload
|
|
34183
35172
|
$kendo-upload-dropzone-hover-bg: $kendo-hover-bg !default;
|
|
34184
35173
|
|
|
35174
|
+
/// The text color of the Upload status message.
|
|
35175
|
+
/// @group upload
|
|
34185
35176
|
$kendo-upload-status-text: $kendo-subtle-text !default;
|
|
35177
|
+
/// The opacity of the Upload status message.
|
|
35178
|
+
/// @group upload
|
|
34186
35179
|
$kendo-upload-status-text-opacity: null !default;
|
|
34187
35180
|
|
|
35181
|
+
/// The horizontal padding of an uploaded item.
|
|
35182
|
+
/// @group upload
|
|
34188
35183
|
$kendo-upload-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
35184
|
+
/// The vertical padding of an uploaded item.
|
|
35185
|
+
/// @group upload
|
|
34189
35186
|
$kendo-upload-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34190
35187
|
|
|
35188
|
+
/// The vertical spacing between uploaded batch items.
|
|
35189
|
+
/// @group upload
|
|
34191
35190
|
$kendo-upload-multiple-items-spacing: 12px !default;
|
|
34192
35191
|
|
|
35192
|
+
/// The font size of the Upload validation message.
|
|
35193
|
+
/// @group upload
|
|
34193
35194
|
$kendo-upload-validation-font-size: 11px !default;
|
|
35195
|
+
/// The horizontal spacing of the Upload status icon.
|
|
35196
|
+
/// @group upload
|
|
34194
35197
|
$kendo-upload-icon-spacing: $kendo-icon-spacing !default;
|
|
35198
|
+
/// The color of the uploaded items icon.
|
|
35199
|
+
/// @group upload
|
|
34195
35200
|
$kendo-upload-icon-color: $kendo-subtle-text !default;
|
|
34196
35201
|
|
|
34197
|
-
|
|
34198
|
-
|
|
34199
|
-
$kendo-upload-item-image-border: 0px !default; // TODO: remove
|
|
34200
|
-
|
|
35202
|
+
/// The thickness of the Upload progress bar.
|
|
35203
|
+
/// @group upload
|
|
34201
35204
|
$kendo-upload-progress-thickness: 2px !default;
|
|
35205
|
+
/// The background color of the Upload progress bar.
|
|
35206
|
+
/// @group upload
|
|
34202
35207
|
$kendo-upload-progress-bg: $kendo-color-info !default;
|
|
34203
35208
|
|
|
34204
|
-
|
|
35209
|
+
/// The success text color of the Upload.
|
|
35210
|
+
/// @group upload
|
|
34205
35211
|
$kendo-upload-success-text: $kendo-color-success !default;
|
|
35212
|
+
/// The success background color of the Upload progress bar.
|
|
35213
|
+
/// @group upload
|
|
35214
|
+
$kendo-upload-success-bg: $kendo-color-success !default;
|
|
34206
35215
|
|
|
34207
|
-
|
|
35216
|
+
/// The error text color of the Upload.
|
|
35217
|
+
/// @group upload
|
|
34208
35218
|
$kendo-upload-error-text: $kendo-color-error !default;
|
|
34209
|
-
|
|
35219
|
+
/// The error background color of the Upload progress bar.
|
|
35220
|
+
/// @group upload
|
|
35221
|
+
$kendo-upload-error-bg: $kendo-color-error !default;
|
|
34210
35222
|
|
|
35223
|
+
/// The shadow of the focused Upload button, actions and uploaded items.
|
|
35224
|
+
/// @group upload
|
|
34211
35225
|
$kendo-upload-focus-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
34212
35226
|
|
|
34213
35227
|
// #endregion
|
|
@@ -34645,29 +35659,60 @@ $_kendo-module-meta: (
|
|
|
34645
35659
|
|
|
34646
35660
|
// Component
|
|
34647
35661
|
// #region @import "./_variables.scss"; -> scss/appbar/_variables.scss
|
|
34648
|
-
//
|
|
34649
|
-
|
|
35662
|
+
// AppBar
|
|
35663
|
+
|
|
35664
|
+
/// The horizontal margin of the AppBar.
|
|
35665
|
+
/// @group appbar
|
|
34650
35666
|
$kendo-appbar-margin-x: null !default;
|
|
34651
|
-
|
|
35667
|
+
/// The vertical margin of the AppBar.
|
|
35668
|
+
/// @group appbar
|
|
35669
|
+
$kendo-appbar-margin-y: null !default;
|
|
35670
|
+
/// The horizontal padding of the AppBar.
|
|
35671
|
+
/// @group appbar
|
|
34652
35672
|
$kendo-appbar-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
35673
|
+
/// The vertical padding of the AppBar.
|
|
35674
|
+
/// @group appbar
|
|
35675
|
+
$kendo-appbar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
35676
|
+
/// The width of the border around the AppBar.
|
|
35677
|
+
/// @group appbar
|
|
34653
35678
|
$kendo-appbar-border-width: 0px !default;
|
|
34654
|
-
|
|
35679
|
+
/// The z-index of the AppBar.
|
|
35680
|
+
/// @group appbar
|
|
34655
35681
|
$kendo-appbar-zindex: 1000 !default;
|
|
34656
|
-
|
|
35682
|
+
/// The font family of the AppBar.
|
|
35683
|
+
/// @group appbar
|
|
35684
|
+
$kendo-appbar-font-family: $kendo-font-family !default;
|
|
35685
|
+
/// The font size of the AppBar.
|
|
35686
|
+
/// @group appbar
|
|
34657
35687
|
$kendo-appbar-font-size: $kendo-font-size-md !default;
|
|
35688
|
+
/// The line height of the AppBar.
|
|
35689
|
+
/// @group appbar
|
|
34658
35690
|
$kendo-appbar-line-height: $kendo-line-height-md !default;
|
|
34659
|
-
|
|
35691
|
+
|
|
35692
|
+
/// The spacing between the AppBar sections.
|
|
35693
|
+
/// @group appbar
|
|
34660
35694
|
$kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
|
|
34661
35695
|
|
|
35696
|
+
/// The background color of the AppBar based on light theme color.
|
|
35697
|
+
/// @group appbar
|
|
34662
35698
|
$kendo-appbar-light-bg: $kendo-color-light !default;
|
|
35699
|
+
/// The text color of the AppBar based on light theme color.
|
|
35700
|
+
/// @group appbar
|
|
34663
35701
|
$kendo-appbar-light-text: k-contrast-color( $kendo-color-light ) !default;
|
|
34664
35702
|
|
|
35703
|
+
/// The background color of the AppBar based on dark theme color.
|
|
35704
|
+
/// @group appbar
|
|
34665
35705
|
$kendo-appbar-dark-bg: $kendo-color-dark !default;
|
|
35706
|
+
/// The text color of the AppBar based on dark theme colorr.
|
|
35707
|
+
/// @group appbar
|
|
34666
35708
|
$kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
|
|
34667
35709
|
|
|
35710
|
+
/// The box shadow of the AppBar.
|
|
35711
|
+
/// @group appbar
|
|
34668
35712
|
$kendo-appbar-box-shadow: 0px 1px 1px rgba( black, .16 ) !default;
|
|
35713
|
+
/// The box shadow of the AppBar with bottom position.
|
|
35714
|
+
/// @group appbar
|
|
34669
35715
|
$kendo-appbar-bottom-box-shadow: 0px -1px 1px rgba( black, .16 ) !default;
|
|
34670
|
-
|
|
34671
35716
|
// #endregion
|
|
34672
35717
|
// #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
|
|
34673
35718
|
// #region @import "@progress/kendo-theme-default/scss/appbar/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/appbar/_layout.scss
|
|
@@ -35513,6 +36558,7 @@ $kendo-actionsheet-item-disabled-shadow: null !default;
|
|
|
35513
36558
|
|
|
35514
36559
|
|
|
35515
36560
|
// Adaptive Actionsheet
|
|
36561
|
+
$kendo-adaptive-actionsheet-font-size: $kendo-font-size-lg !default;
|
|
35516
36562
|
$kendo-adaptive-actionsheet-titlebar-border-width: 1px !default;
|
|
35517
36563
|
$kendo-adaptive-actionsheet-titlebar-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
35518
36564
|
$kendo-adaptive-actionsheet-titlebar-padding-x: $kendo-adaptive-actionsheet-titlebar-padding-y !default;
|
|
@@ -35759,6 +36805,7 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
|
|
|
35759
36805
|
.k-adaptive-actionsheet {
|
|
35760
36806
|
max-width: 100%;
|
|
35761
36807
|
width: 100%;
|
|
36808
|
+
font-size: $kendo-adaptive-actionsheet-font-size;
|
|
35762
36809
|
|
|
35763
36810
|
// TMP: this should be moved to action sheet
|
|
35764
36811
|
display: flex;
|
|
@@ -35798,6 +36845,12 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-map-get( $kendo-spacing, 4 ) !de
|
|
|
35798
36845
|
padding-inline: 0;
|
|
35799
36846
|
}
|
|
35800
36847
|
|
|
36848
|
+
.k-menu-group {
|
|
36849
|
+
height: 100%;
|
|
36850
|
+
overflow: auto;
|
|
36851
|
+
position: static;
|
|
36852
|
+
}
|
|
36853
|
+
|
|
35801
36854
|
.k-calendar {
|
|
35802
36855
|
margin-inline: auto;
|
|
35803
36856
|
border-width: 0;
|
|
@@ -36372,17 +37425,31 @@ $_kendo-module-meta: (
|
|
|
36372
37425
|
// Component
|
|
36373
37426
|
// #region @import "./_variables.scss"; -> scss/dialog/_variables.scss
|
|
36374
37427
|
// Dialog
|
|
37428
|
+
|
|
37429
|
+
/// The background color of the Dialog titlebar.
|
|
37430
|
+
/// @group dialog
|
|
36375
37431
|
$kendo-dialog-titlebar-bg: null !default;
|
|
37432
|
+
/// The text color of the Dialog titlebar.
|
|
37433
|
+
/// @group dialog
|
|
36376
37434
|
$kendo-dialog-titlebar-text: null !default;
|
|
37435
|
+
/// The border color of the Dialog titlebar.
|
|
37436
|
+
/// @group dialog
|
|
36377
37437
|
$kendo-dialog-titlebar-border: null !default;
|
|
36378
37438
|
|
|
37439
|
+
/// The horizontal padding of the Dialog action buttons.
|
|
37440
|
+
/// @group dialog
|
|
36379
37441
|
$kendo-dialog-buttongroup-padding-x: $kendo-actions-padding-x !default;
|
|
37442
|
+
/// The vertical padding of the Dialog action buttons.
|
|
37443
|
+
/// @group dialog
|
|
36380
37444
|
$kendo-dialog-buttongroup-padding-y: $kendo-actions-padding-y !default;
|
|
37445
|
+
/// The width of the top border of the Dialog action buttons.
|
|
37446
|
+
/// @group dialog
|
|
36381
37447
|
$kendo-dialog-buttongroup-border-width: 1px !default;
|
|
36382
|
-
|
|
37448
|
+
/// The spacing between the Dialog action buttons.
|
|
37449
|
+
/// @group dialog
|
|
36383
37450
|
$kendo-dialog-button-spacing: $kendo-actions-button-spacing !default;
|
|
36384
37451
|
|
|
36385
|
-
///
|
|
37452
|
+
/// The theme colors map for the Dialog.
|
|
36386
37453
|
/// @group dialog
|
|
36387
37454
|
$kendo-dialog-theme-colors: (
|
|
36388
37455
|
"primary": k-map-get($kendo-theme-colors, "primary"),
|
|
@@ -37006,44 +38073,43 @@ $_kendo-module-meta: (
|
|
|
37006
38073
|
// #region @import "./_variables.scss"; -> scss/notification/_variables.scss
|
|
37007
38074
|
// Notification
|
|
37008
38075
|
|
|
37009
|
-
///
|
|
38076
|
+
/// The horizontal padding of the Notification.
|
|
37010
38077
|
/// @group notification
|
|
37011
38078
|
$kendo-notification-padding-x: 8px !default;
|
|
37012
|
-
///
|
|
38079
|
+
/// The vertical padding of the Notification.
|
|
37013
38080
|
/// @group notification
|
|
37014
38081
|
$kendo-notification-padding-y: 4px !default;
|
|
37015
|
-
///
|
|
38082
|
+
/// The width of the border around the Notification.
|
|
37016
38083
|
/// @group notification
|
|
37017
38084
|
$kendo-notification-border-width: 1px !default;
|
|
37018
|
-
///
|
|
38085
|
+
/// The border radius of the Notification.
|
|
37019
38086
|
/// @group notification
|
|
37020
38087
|
$kendo-notification-border-radius: $kendo-border-radius-md !default;
|
|
37021
|
-
///
|
|
37022
|
-
/// @group notification
|
|
37023
|
-
$kendo-notification-shadow: $kendo-popup-shadow !default;
|
|
37024
|
-
/// Font family of the notification.
|
|
38088
|
+
/// The font family of the Notification.
|
|
37025
38089
|
/// @group notification
|
|
37026
38090
|
$kendo-notification-font-family: $kendo-font-family !default;
|
|
37027
|
-
///
|
|
38091
|
+
/// The font size of the Notification.
|
|
37028
38092
|
/// @group notification
|
|
37029
38093
|
$kendo-notification-font-size: $kendo-font-size-sm !default;
|
|
37030
|
-
///
|
|
38094
|
+
/// The line height of the Notification.
|
|
37031
38095
|
/// @group notification
|
|
37032
38096
|
$kendo-notification-line-height: $kendo-line-height-md !default;
|
|
37033
|
-
|
|
37034
|
-
/// Horizontal spacing of the notification icon.
|
|
37035
|
-
/// @group notification
|
|
37036
|
-
$kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
37037
|
-
|
|
37038
|
-
/// Background color of the notification.
|
|
38097
|
+
/// The background color of the Notification.
|
|
37039
38098
|
/// @group notification
|
|
37040
38099
|
$kendo-notification-bg: $kendo-component-bg !default;
|
|
37041
|
-
///
|
|
38100
|
+
/// The text color of the Notification.
|
|
37042
38101
|
/// @group notification
|
|
37043
38102
|
$kendo-notification-text: $kendo-component-text !default;
|
|
37044
|
-
///
|
|
38103
|
+
/// The border color of the Notification.
|
|
37045
38104
|
/// @group notification
|
|
37046
38105
|
$kendo-notification-border: $kendo-component-border !default;
|
|
38106
|
+
/// The box shadow of the Notification.
|
|
38107
|
+
/// @group notification
|
|
38108
|
+
$kendo-notification-shadow: $kendo-popup-shadow !default;
|
|
38109
|
+
|
|
38110
|
+
/// The horizontal spacing of the Notification icon.
|
|
38111
|
+
/// @group notification
|
|
38112
|
+
$kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
37047
38113
|
|
|
37048
38114
|
@function notification-theme( $colors ) {
|
|
37049
38115
|
$_theme: ();
|
|
@@ -37059,9 +38125,11 @@ $kendo-notification-border: $kendo-component-border !default;
|
|
|
37059
38125
|
@return $_theme;
|
|
37060
38126
|
}
|
|
37061
38127
|
|
|
37062
|
-
///
|
|
38128
|
+
/// The theme colors map for the Notification.
|
|
37063
38129
|
/// @group notification
|
|
37064
38130
|
$kendo-notification-theme-colors: $kendo-theme-colors !default;
|
|
38131
|
+
/// The generated theme colors map for the Notification.
|
|
38132
|
+
/// @group notification
|
|
37065
38133
|
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
|
|
37066
38134
|
|
|
37067
38135
|
// #endregion
|
|
@@ -37886,37 +38954,90 @@ $kendo-card-callout-height: 20px !default;
|
|
|
37886
38954
|
// Component
|
|
37887
38955
|
// #region @import "./_variables.scss"; -> scss/popover/_variables.scss
|
|
37888
38956
|
// Popover
|
|
38957
|
+
|
|
38958
|
+
/// The width of the border around the Popover.
|
|
38959
|
+
/// @group popover
|
|
37889
38960
|
$kendo-popover-border-width: $kendo-card-border-width !default;
|
|
38961
|
+
/// The style of the border around the Popover.
|
|
38962
|
+
/// @group popover
|
|
37890
38963
|
$kendo-popover-border-style: solid !default;
|
|
38964
|
+
/// The radius of the border around the Popover.
|
|
38965
|
+
/// @group popover
|
|
37891
38966
|
$kendo-popover-border-radius: $kendo-card-border-radius !default;
|
|
37892
|
-
|
|
38967
|
+
/// The font family of the Popover.
|
|
38968
|
+
/// @group popover
|
|
37893
38969
|
$kendo-popover-font-family: $kendo-card-font-family !default;
|
|
38970
|
+
/// The font size of the Popover.
|
|
38971
|
+
/// @group popover
|
|
38972
|
+
$kendo-popover-font-size: $kendo-card-font-size !default;
|
|
38973
|
+
/// The line height of the Popover.
|
|
38974
|
+
/// @group popover
|
|
37894
38975
|
$kendo-popover-line-height: $kendo-card-line-height !default;
|
|
37895
|
-
|
|
38976
|
+
|
|
38977
|
+
/// The text color of the Popover.
|
|
38978
|
+
/// @group popover
|
|
37896
38979
|
$kendo-popover-text: $kendo-component-text !default;
|
|
38980
|
+
/// The background color of the Popover.
|
|
38981
|
+
/// @group popover
|
|
38982
|
+
$kendo-popover-bg: $kendo-component-bg !default;
|
|
38983
|
+
/// The border color of the Popover.
|
|
38984
|
+
/// @group popover
|
|
37897
38985
|
$kendo-popover-border: $kendo-component-border !default;
|
|
38986
|
+
/// The box shadow of the Popover.
|
|
38987
|
+
/// @group popover
|
|
37898
38988
|
$kendo-popover-shadow: $kendo-popup-shadow !default;
|
|
37899
38989
|
|
|
37900
|
-
|
|
38990
|
+
/// The horizontal padding of the Popover header.
|
|
38991
|
+
/// @group popover
|
|
37901
38992
|
$kendo-popover-header-padding-x: $kendo-card-header-padding-x !default;
|
|
38993
|
+
/// The vertical padding of the Popover header.
|
|
38994
|
+
/// @group popover
|
|
38995
|
+
$kendo-popover-header-padding-y: $kendo-card-header-padding-y !default;
|
|
38996
|
+
/// The border width of the Popover header.
|
|
38997
|
+
/// @group popover
|
|
37902
38998
|
$kendo-popover-header-border-width: $kendo-card-header-border-width !default;
|
|
38999
|
+
/// The border style of the Popover header.
|
|
39000
|
+
/// @group popover
|
|
37903
39001
|
$kendo-popover-header-border-style: $kendo-popover-border-style !default;
|
|
37904
|
-
|
|
39002
|
+
/// The text color of the Popover header.
|
|
39003
|
+
/// @group popover
|
|
37905
39004
|
$kendo-popover-header-text: $kendo-card-header-text !default;
|
|
39005
|
+
/// The background color of the Popover header.
|
|
39006
|
+
/// @group popover
|
|
39007
|
+
$kendo-popover-header-bg: $kendo-card-header-bg !default;
|
|
39008
|
+
/// The border color of the Popover header.
|
|
39009
|
+
/// @group popover
|
|
37906
39010
|
$kendo-popover-header-border: $kendo-card-header-border !default;
|
|
37907
39011
|
|
|
37908
|
-
|
|
39012
|
+
/// The horizontal padding of the Popover body.
|
|
39013
|
+
/// @group popover
|
|
37909
39014
|
$kendo-popover-body-padding-x: $kendo-card-body-padding-x !default;
|
|
39015
|
+
/// The vertical padding of the Popover body.
|
|
39016
|
+
/// @group popover
|
|
39017
|
+
$kendo-popover-body-padding-y: $kendo-card-body-padding-y !default;
|
|
37910
39018
|
|
|
39019
|
+
/// The border width of the Popover actions.
|
|
39020
|
+
/// @group popover
|
|
37911
39021
|
$kendo-popover-actions-border-width: $kendo-popover-border-width !default;
|
|
37912
39022
|
|
|
39023
|
+
/// The width of the Popover callout.
|
|
39024
|
+
/// @group popover
|
|
37913
39025
|
$kendo-popover-callout-width: $kendo-card-callout-width !default;
|
|
39026
|
+
/// The height of the Popover callout.
|
|
39027
|
+
/// @group popover
|
|
37914
39028
|
$kendo-popover-callout-height: $kendo-card-callout-height !default;
|
|
39029
|
+
/// The border width of the Popover callout.
|
|
39030
|
+
/// @group popover
|
|
37915
39031
|
$kendo-popover-callout-border-width: $kendo-popover-border-width !default;
|
|
39032
|
+
/// The border style of the Popover callout.
|
|
39033
|
+
/// @group popover
|
|
37916
39034
|
$kendo-popover-callout-border-style: $kendo-popover-border-style !default;
|
|
39035
|
+
/// The background color of the Popover callout.
|
|
39036
|
+
/// @group popover
|
|
37917
39037
|
$kendo-popover-callout-bg: $kendo-popover-bg !default;
|
|
39038
|
+
/// The border color of the Popover callout.
|
|
39039
|
+
/// @group popover
|
|
37918
39040
|
$kendo-popover-callout-border: $kendo-popover-border !default;
|
|
37919
|
-
|
|
37920
39041
|
// #endregion
|
|
37921
39042
|
// #region @import "./_layout.scss"; -> scss/popover/_layout.scss
|
|
37922
39043
|
// #region @import "@progress/kendo-theme-default/scss/popover/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/popover/_layout.scss
|
|
@@ -38278,35 +39399,68 @@ $_kendo-module-meta: (
|
|
|
38278
39399
|
|
|
38279
39400
|
// Component
|
|
38280
39401
|
// #region @import "./_variables.scss"; -> scss/bottom-navigation/_variables.scss
|
|
38281
|
-
//
|
|
39402
|
+
// BottomNavigation
|
|
39403
|
+
|
|
39404
|
+
/// The horizontal padding of the BottomNavigation.
|
|
39405
|
+
/// @group bottom-navigation
|
|
38282
39406
|
$kendo-bottom-nav-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
39407
|
+
/// The vertical padding of the BottomNavigation.
|
|
39408
|
+
/// @group bottom-navigation
|
|
38283
39409
|
$kendo-bottom-nav-padding-y: $kendo-bottom-nav-padding-x !default;
|
|
39410
|
+
/// The spacing between the BottomNavigation items.
|
|
39411
|
+
/// @group bottom-navigation
|
|
38284
39412
|
$kendo-bottom-nav-gap: $kendo-bottom-nav-padding-x !default;
|
|
39413
|
+
/// The width of the border around the BottomNavigation.
|
|
39414
|
+
/// @group bottom-navigation
|
|
38285
39415
|
$kendo-bottom-nav-border-width: 1px 0px 0px 0px !default;
|
|
38286
|
-
|
|
39416
|
+
/// The font family of the BottomNavigation.
|
|
39417
|
+
/// @group bottom-navigation
|
|
38287
39418
|
$kendo-bottom-nav-font-family: $kendo-font-family !default;
|
|
39419
|
+
/// The font size of the BottomNavigation.
|
|
39420
|
+
/// @group bottom-navigation
|
|
38288
39421
|
$kendo-bottom-nav-font-size: $kendo-font-size-md !default;
|
|
39422
|
+
/// The line height of the BottomNavigation.
|
|
39423
|
+
/// @group bottom-navigation
|
|
38289
39424
|
$kendo-bottom-nav-line-height: normal !default;
|
|
39425
|
+
/// The letter spacing of the BottomNavigation.
|
|
39426
|
+
/// @group bottom-navigation
|
|
38290
39427
|
$kendo-bottom-nav-letter-spacing: .2px !default;
|
|
38291
39428
|
|
|
39429
|
+
/// The horizontal padding of the BottomNavigation item.
|
|
39430
|
+
/// @group bottom-navigation
|
|
38292
39431
|
$kendo-bottom-nav-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39432
|
+
/// The vertical padding of the BottomNavigation item.
|
|
39433
|
+
/// @group bottom-navigation
|
|
38293
39434
|
$kendo-bottom-nav-item-padding-y: 0 !default;
|
|
39435
|
+
/// The minimum width of the BottomNavigation item.
|
|
39436
|
+
/// @group bottom-navigation
|
|
38294
39437
|
$kendo-bottom-nav-item-min-width: 72px !default;
|
|
39438
|
+
/// The maximum width of the BottomNavigation item.
|
|
39439
|
+
/// @group bottom-navigation
|
|
38295
39440
|
$kendo-bottom-nav-item-max-width: null !default;
|
|
39441
|
+
/// The minimum height of the BottomNavigation item.
|
|
39442
|
+
/// @group bottom-navigation
|
|
38296
39443
|
$kendo-bottom-nav-item-min-height: calc( #{$kendo-icon-size * 2.5} + #{$kendo-padding-md-x * 2} - #{$kendo-bottom-nav-padding-x * 2} ) !default;
|
|
39444
|
+
/// The border radius of the BottomNavigation item.
|
|
39445
|
+
/// @group bottom-navigation
|
|
38297
39446
|
$kendo-bottom-nav-item-border-radius: $kendo-border-radius-md !default;
|
|
39447
|
+
/// The spacing of the BottomNavigation item.
|
|
39448
|
+
/// @group bottom-navigation
|
|
38298
39449
|
$kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
|
|
38299
39450
|
|
|
38300
|
-
|
|
38301
|
-
|
|
38302
|
-
$kendo-bottom-nav-item-disabled-opacity: .5 !default;
|
|
38303
|
-
|
|
39451
|
+
/// The box shadow of the BottomNavigation.
|
|
39452
|
+
/// @group bottom-navigation
|
|
38304
39453
|
$kendo-bottom-nav-shadow: 0px 0px 5px rgba( black, .12 ) !default;
|
|
38305
39454
|
|
|
38306
|
-
|
|
39455
|
+
/// The text color of the flat BottomNavigation.
|
|
39456
|
+
/// @group bottom-navigation
|
|
38307
39457
|
$kendo-bottom-nav-flat-text: $kendo-component-text !default;
|
|
39458
|
+
/// The background color of the flat BottomNavigation.
|
|
39459
|
+
/// @group bottom-navigation
|
|
39460
|
+
$kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
|
|
39461
|
+
/// The border color of the flat BottomNavigation.
|
|
39462
|
+
/// @group bottom-navigation
|
|
38308
39463
|
$kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
38309
|
-
|
|
38310
39464
|
// #endregion
|
|
38311
39465
|
// #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
|
|
38312
39466
|
// #region @import "@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss
|
|
@@ -38563,63 +39717,234 @@ $_kendo-module-meta: (
|
|
|
38563
39717
|
// #region @import "./_variables.scss"; -> scss/breadcrumb/_variables.scss
|
|
38564
39718
|
// Breadcrumb
|
|
38565
39719
|
|
|
39720
|
+
/// The width of the border around the Breadcrumb.
|
|
39721
|
+
/// @group breadcrumb
|
|
39722
|
+
$kendo-breadcrumb-border-width: 0px !default;
|
|
39723
|
+
|
|
39724
|
+
/// The horizontal margin of the Breadcrumb.
|
|
39725
|
+
/// @group breadcrumb
|
|
38566
39726
|
$kendo-breadcrumb-margin-x: null !default;
|
|
39727
|
+
/// The vertical margin of the Breadcrumb.
|
|
39728
|
+
/// @group breadcrumb
|
|
38567
39729
|
$kendo-breadcrumb-margin-y: null !default;
|
|
39730
|
+
|
|
39731
|
+
/// The horizontal padding of the Breadcrumb.
|
|
39732
|
+
/// @group breadcrumb
|
|
38568
39733
|
$kendo-breadcrumb-padding-x: null !default;
|
|
39734
|
+
/// The vertical padding of the Breadcrumb.
|
|
39735
|
+
/// @group breadcrumb
|
|
38569
39736
|
$kendo-breadcrumb-padding-y: null !default;
|
|
38570
|
-
$kendo-breadcrumb-border-width: 0px !default;
|
|
38571
39737
|
|
|
39738
|
+
/// The font family of the Breadcrumb.
|
|
39739
|
+
/// @group breadcrumb
|
|
38572
39740
|
$kendo-breadcrumb-font-family: $kendo-font-family !default;
|
|
39741
|
+
|
|
39742
|
+
/// The font size of the Breadcrumb.
|
|
39743
|
+
/// @group breadcrumb
|
|
38573
39744
|
$kendo-breadcrumb-font-size: $kendo-font-size-md !default;
|
|
39745
|
+
/// The font size of the small Breadcrumb.
|
|
39746
|
+
/// @group breadcrumb
|
|
39747
|
+
$kendo-breadcrumb-sm-font-size: $kendo-font-size-md !default;
|
|
39748
|
+
/// The font size of the medium Breadcrumb.
|
|
39749
|
+
/// @group breadcrumb
|
|
39750
|
+
$kendo-breadcrumb-md-font-size: $kendo-breadcrumb-font-size !default;
|
|
39751
|
+
/// The font size of the large Breadcrumb.
|
|
39752
|
+
/// @group breadcrumb
|
|
39753
|
+
$kendo-breadcrumb-lg-font-size: $kendo-font-size-lg !default;
|
|
39754
|
+
|
|
39755
|
+
/// The line-height of the Breadcrumb.
|
|
39756
|
+
/// @group breadcrumb
|
|
38574
39757
|
$kendo-breadcrumb-line-height: $kendo-line-height-md !default;
|
|
38575
|
-
|
|
39758
|
+
/// The line-height of the small Breadcrumb.
|
|
39759
|
+
/// @group breadcrumb
|
|
39760
|
+
$kendo-breadcrumb-sm-line-height: $kendo-line-height-md !default;
|
|
39761
|
+
/// The line-height of the medium Breadcrumb.
|
|
39762
|
+
/// @group breadcrumb
|
|
39763
|
+
$kendo-breadcrumb-md-line-height: $kendo-breadcrumb-line-height !default;
|
|
39764
|
+
/// The line-height of the height Breadcrumb.
|
|
39765
|
+
/// @group breadcrumb
|
|
39766
|
+
$kendo-breadcrumb-lg-line-height: $kendo-line-height-lg !default;
|
|
39767
|
+
|
|
39768
|
+
/// The base background of the Breadcrumb.
|
|
39769
|
+
/// @group breadcrumb
|
|
38576
39770
|
$kendo-breadcrumb-bg: $kendo-component-bg !default;
|
|
39771
|
+
/// The base text color of the Breadcrumb.
|
|
39772
|
+
/// @group breadcrumb
|
|
38577
39773
|
$kendo-breadcrumb-text: $kendo-component-text !default;
|
|
39774
|
+
/// The base border color of the Breadcrumb.
|
|
39775
|
+
/// @group breadcrumb
|
|
38578
39776
|
$kendo-breadcrumb-border: $kendo-component-border !default;
|
|
38579
39777
|
|
|
39778
|
+
/// The box shadow of the focused Breadcrumb.
|
|
39779
|
+
/// @group breadcrumb
|
|
39780
|
+
$kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
39781
|
+
|
|
39782
|
+
/// The horizontal padding of the Breadcrumb link.
|
|
39783
|
+
/// @group breadcrumb
|
|
38580
39784
|
$kendo-breadcrumb-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39785
|
+
/// The horizontal padding of the small Breadcrumb link.
|
|
39786
|
+
/// @group breadcrumb
|
|
39787
|
+
$kendo-breadcrumb-sm-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39788
|
+
/// The horizontal padding of the medium Breadcrumb link.
|
|
39789
|
+
/// @group breadcrumb
|
|
39790
|
+
$kendo-breadcrumb-md-link-padding-x: $kendo-breadcrumb-link-padding-x !default;
|
|
39791
|
+
/// The horizontal padding of the large Breadcrumb link.
|
|
39792
|
+
/// @group breadcrumb
|
|
39793
|
+
$kendo-breadcrumb-lg-link-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39794
|
+
|
|
39795
|
+
/// The vertical padding of the Breadcrumb link.
|
|
39796
|
+
/// @group breadcrumb
|
|
38581
39797
|
$kendo-breadcrumb-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
39798
|
+
/// The vertical padding of the small Breadcrumb link.
|
|
39799
|
+
/// @group breadcrumb
|
|
39800
|
+
$kendo-breadcrumb-sm-link-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
39801
|
+
/// The vertical padding of the medium Breadcrumb link.
|
|
39802
|
+
/// @group breadcrumb
|
|
39803
|
+
$kendo-breadcrumb-md-link-padding-y: $kendo-breadcrumb-link-padding-y !default;
|
|
39804
|
+
/// The vertical padding of the large Breadcrumb link.
|
|
39805
|
+
/// @group breadcrumb
|
|
39806
|
+
$kendo-breadcrumb-lg-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39807
|
+
|
|
39808
|
+
/// The border-radius of the Breadcrumb link.
|
|
39809
|
+
/// @group breadcrumb
|
|
38582
39810
|
$kendo-breadcrumb-link-border-radius: $kendo-border-radius-md !default;
|
|
38583
39811
|
|
|
38584
|
-
|
|
38585
|
-
|
|
38586
|
-
|
|
38587
|
-
|
|
38588
|
-
|
|
38589
|
-
|
|
39812
|
+
/// The vertical padding of the Breadcrumb link icon.
|
|
39813
|
+
/// @group breadcrumb
|
|
39814
|
+
$kendo-breadcrumb-icon-link-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
39815
|
+
/// The vertical padding of the small Breadcrumb link icon.
|
|
39816
|
+
/// @group breadcrumb
|
|
39817
|
+
$kendo-breadcrumb-sm-icon-link-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
39818
|
+
/// The vertical padding of the medium Breadcrumb link icon.
|
|
39819
|
+
/// @group breadcrumb
|
|
39820
|
+
$kendo-breadcrumb-md-icon-link-padding-y: $kendo-breadcrumb-icon-link-padding-y !default;
|
|
39821
|
+
/// The vertical padding of the large Breadcrumb link icon.
|
|
39822
|
+
/// @group breadcrumb
|
|
39823
|
+
$kendo-breadcrumb-lg-icon-link-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
|
|
39824
|
+
|
|
39825
|
+
/// The horizontal padding of the Breadcrumb link icon.
|
|
39826
|
+
/// @group breadcrumb
|
|
39827
|
+
$kendo-breadcrumb-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-y !default;
|
|
39828
|
+
/// The horizontal padding of the small Breadcrumb link icon.
|
|
39829
|
+
/// @group breadcrumb
|
|
39830
|
+
$kendo-breadcrumb-sm-icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-y !default;
|
|
39831
|
+
/// The horizontal padding of the medium Breadcrumb link icon.
|
|
39832
|
+
/// @group breadcrumb
|
|
39833
|
+
$kendo-breadcrumb-md-icon-link-padding-x: $kendo-breadcrumb-icon-link-padding-x !default;
|
|
39834
|
+
/// The horizontal padding of the large Breadcrumb link icon.
|
|
39835
|
+
/// @group breadcrumb
|
|
39836
|
+
$kendo-breadcrumb-lg-icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-y !default;
|
|
39837
|
+
|
|
39838
|
+
/// The text color of the Breadcrumb link.
|
|
39839
|
+
/// @group breadcrumb
|
|
38590
39840
|
$kendo-breadcrumb-link-initial-text: inherit !default;
|
|
39841
|
+
/// The spacing of the Breadcrumb link icon.
|
|
39842
|
+
/// @group breadcrumb
|
|
39843
|
+
$kendo-breadcrumb-link-icon-spacing: $kendo-icon-spacing !default;
|
|
38591
39844
|
|
|
39845
|
+
/// The background color of the Breadcrumb link.
|
|
39846
|
+
/// @group breadcrumb
|
|
38592
39847
|
$kendo-breadcrumb-link-bg: null !default;
|
|
39848
|
+
/// The text color of the Breadcrumb link.
|
|
39849
|
+
/// @group breadcrumb
|
|
38593
39850
|
$kendo-breadcrumb-link-text: $kendo-link-text !default;
|
|
39851
|
+
/// The border color of the Breadcrumb link.
|
|
39852
|
+
/// @group breadcrumb
|
|
38594
39853
|
$kendo-breadcrumb-link-border: null !default;
|
|
38595
39854
|
|
|
39855
|
+
/// @group breadcrumb
|
|
38596
39856
|
$kendo-breadcrumb-link-hover-bg: $kendo-base-bg !default;
|
|
39857
|
+
/// The text color of the hovered Breadcrumb link.
|
|
39858
|
+
/// @group breadcrumb
|
|
38597
39859
|
$kendo-breadcrumb-link-hover-text: $kendo-link-hover-text !default;
|
|
39860
|
+
/// The border color of the hovered Breadcrumb link.
|
|
39861
|
+
/// @group breadcrumb
|
|
38598
39862
|
$kendo-breadcrumb-link-hover-border: null !default;
|
|
38599
39863
|
|
|
39864
|
+
/// The background color of the focused Breadcrumb link.
|
|
39865
|
+
/// @group breadcrumb
|
|
38600
39866
|
$kendo-breadcrumb-link-focus-bg: null !default;
|
|
39867
|
+
/// The text color of the focused Breadcrumb link.
|
|
39868
|
+
/// @group breadcrumb
|
|
38601
39869
|
$kendo-breadcrumb-link-focus-text: $kendo-link-text !default;
|
|
39870
|
+
/// The border color of the focused Breadcrumb link.
|
|
39871
|
+
/// @group breadcrumb
|
|
38602
39872
|
$kendo-breadcrumb-link-focus-border: null !default;
|
|
39873
|
+
/// The box shadow of the focused Breadcrumb link.
|
|
39874
|
+
/// @group breadcrumb
|
|
38603
39875
|
$kendo-breadcrumb-link-focus-shadow: $kendo-focus-shadow !default;
|
|
38604
39876
|
|
|
39877
|
+
/// The background color of the Breadcrumb root link.
|
|
39878
|
+
/// @group breadcrumb
|
|
38605
39879
|
$kendo-breadcrumb-root-link-bg: null !default;
|
|
39880
|
+
/// The text color of the Breadcrumb root link.
|
|
39881
|
+
/// @group breadcrumb
|
|
38606
39882
|
$kendo-breadcrumb-root-link-text: null !default;
|
|
39883
|
+
/// The border color of the Breadcrumb root link.
|
|
39884
|
+
/// @group breadcrumb
|
|
38607
39885
|
$kendo-breadcrumb-root-link-border: null !default;
|
|
38608
39886
|
|
|
39887
|
+
/// The background color of the hovered Breadcrumb root link.
|
|
39888
|
+
/// @group breadcrumb
|
|
38609
39889
|
$kendo-breadcrumb-root-link-hover-bg: $kendo-base-bg !default;
|
|
39890
|
+
/// The text color of the hovered Breadcrumb root link.
|
|
39891
|
+
/// @group breadcrumb
|
|
38610
39892
|
$kendo-breadcrumb-root-link-hover-text: null !default;
|
|
39893
|
+
/// The border color of the hovered Breadcrumb root link.
|
|
39894
|
+
/// @group breadcrumb
|
|
38611
39895
|
$kendo-breadcrumb-root-link-hover-border: null !default;
|
|
38612
39896
|
|
|
39897
|
+
/// The background color of the focused Breadcrumb root link.
|
|
39898
|
+
/// @group breadcrumb
|
|
38613
39899
|
$kendo-breadcrumb-root-link-focus-bg: null !default;
|
|
39900
|
+
/// The text color of the focused Breadcrumb root link.
|
|
39901
|
+
/// @group breadcrumb
|
|
38614
39902
|
$kendo-breadcrumb-root-link-focus-text: null !default;
|
|
39903
|
+
/// The border color of the focused Breadcrumb root link.
|
|
39904
|
+
/// @group breadcrumb
|
|
38615
39905
|
$kendo-breadcrumb-root-link-focus-border: null !default;
|
|
39906
|
+
/// The box shadow of the focused Breadcrumb root link.
|
|
39907
|
+
/// @group breadcrumb
|
|
38616
39908
|
$kendo-breadcrumb-root-link-focus-shadow: $kendo-breadcrumb-link-focus-shadow !default;
|
|
38617
39909
|
|
|
39910
|
+
/// The background color of the current Breadcrumb root link.
|
|
39911
|
+
/// @group breadcrumb
|
|
38618
39912
|
$kendo-breadcrumb-current-item-bg: null !default;
|
|
39913
|
+
/// The text color of the current Breadcrumb root link.
|
|
39914
|
+
/// @group breadcrumb
|
|
38619
39915
|
$kendo-breadcrumb-current-item-text: null !default;
|
|
39916
|
+
/// The border color of the current Breadcrumb root link.
|
|
39917
|
+
/// @group breadcrumb
|
|
38620
39918
|
$kendo-breadcrumb-current-item-border: null !default;
|
|
38621
39919
|
|
|
38622
|
-
|
|
39920
|
+
/// The sizes map for the Breadcrumb.
|
|
39921
|
+
/// @group breadcrumb
|
|
39922
|
+
$kendo-breadcrumb-sizes: (
|
|
39923
|
+
sm: (
|
|
39924
|
+
link-padding-x: $kendo-breadcrumb-sm-link-padding-x,
|
|
39925
|
+
link-padding-y: $kendo-breadcrumb-sm-link-padding-y,
|
|
39926
|
+
icon-link-padding-x: $kendo-breadcrumb-sm-icon-link-padding-x,
|
|
39927
|
+
icon-link-padding-y: $kendo-breadcrumb-sm-icon-link-padding-y,
|
|
39928
|
+
font-size: $kendo-breadcrumb-sm-font-size,
|
|
39929
|
+
line-height: $kendo-breadcrumb-sm-line-height
|
|
39930
|
+
),
|
|
39931
|
+
md: (
|
|
39932
|
+
link-padding-x: $kendo-breadcrumb-md-link-padding-x,
|
|
39933
|
+
link-padding-y: $kendo-breadcrumb-md-link-padding-y,
|
|
39934
|
+
icon-link-padding-x: $kendo-breadcrumb-md-icon-link-padding-x,
|
|
39935
|
+
icon-link-padding-y: $kendo-breadcrumb-md-icon-link-padding-y,
|
|
39936
|
+
font-size: $kendo-breadcrumb-md-font-size,
|
|
39937
|
+
line-height: $kendo-breadcrumb-md-line-height
|
|
39938
|
+
),
|
|
39939
|
+
lg: (
|
|
39940
|
+
link-padding-x: $kendo-breadcrumb-lg-link-padding-x,
|
|
39941
|
+
link-padding-y: $kendo-breadcrumb-lg-link-padding-y,
|
|
39942
|
+
icon-link-padding-x: $kendo-breadcrumb-lg-icon-link-padding-x,
|
|
39943
|
+
icon-link-padding-y: $kendo-breadcrumb-lg-icon-link-padding-y,
|
|
39944
|
+
font-size: $kendo-breadcrumb-lg-font-size,
|
|
39945
|
+
line-height: $kendo-breadcrumb-lg-line-height
|
|
39946
|
+
)
|
|
39947
|
+
) !default;
|
|
38623
39948
|
|
|
38624
39949
|
// #endregion
|
|
38625
39950
|
// #region @import "./_layout.scss"; -> scss/breadcrumb/_layout.scss
|
|
@@ -38637,8 +39962,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
38637
39962
|
box-sizing: border-box;
|
|
38638
39963
|
outline: 0;
|
|
38639
39964
|
font-family: $kendo-breadcrumb-font-family;
|
|
38640
|
-
font-size: $kendo-breadcrumb-font-size;
|
|
38641
|
-
line-height: $kendo-breadcrumb-line-height;
|
|
38642
39965
|
display: flex;
|
|
38643
39966
|
flex-direction: row;
|
|
38644
39967
|
-webkit-touch-callout: none;
|
|
@@ -38690,8 +40013,6 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
38690
40013
|
.k-breadcrumb-link,
|
|
38691
40014
|
.k-breadcrumb-root-link {
|
|
38692
40015
|
@include border-radius( $kendo-breadcrumb-link-border-radius );
|
|
38693
|
-
padding-block: $kendo-breadcrumb-link-padding-y;
|
|
38694
|
-
padding-inline: $kendo-breadcrumb-link-padding-x;
|
|
38695
40016
|
color: $kendo-breadcrumb-link-initial-text;
|
|
38696
40017
|
text-decoration: none;
|
|
38697
40018
|
white-space: nowrap;
|
|
@@ -38705,21 +40026,12 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
38705
40026
|
transition: $kendo-transition;
|
|
38706
40027
|
}
|
|
38707
40028
|
|
|
38708
|
-
.k-breadcrumb-root-link {
|
|
38709
|
-
margin-inline-end: $kendo-breadcrumb-root-link-spacing;
|
|
38710
|
-
}
|
|
38711
|
-
|
|
38712
40029
|
.k-breadcrumb-link > .k-image,
|
|
38713
40030
|
.k-breadcrumb-icontext-link .k-icon,
|
|
38714
40031
|
.k-breadcrumb-icontext-link .k-svg-icon {
|
|
38715
40032
|
margin-inline-end: $kendo-breadcrumb-link-icon-spacing;
|
|
38716
40033
|
}
|
|
38717
40034
|
|
|
38718
|
-
.k-breadcrumb-icon-link {
|
|
38719
|
-
padding-block: $kendo-breadcrumb-icon-link-padding-y;
|
|
38720
|
-
padding-inline: $kendo-breadcrumb-icon-link-padding-x;
|
|
38721
|
-
}
|
|
38722
|
-
|
|
38723
40035
|
|
|
38724
40036
|
// Breadcrumb delimiter
|
|
38725
40037
|
.k-breadcrumb-delimiter,
|
|
@@ -38738,6 +40050,34 @@ $kendo-breadcrumb-focus-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
|
38738
40050
|
}
|
|
38739
40051
|
}
|
|
38740
40052
|
|
|
40053
|
+
|
|
40054
|
+
// Sizes
|
|
40055
|
+
@each $size, $size-props in $kendo-breadcrumb-sizes {
|
|
40056
|
+
$_link-padding-x: k-map-get( $size-props, link-padding-x );
|
|
40057
|
+
$_link-padding-y: k-map-get( $size-props, link-padding-y );
|
|
40058
|
+
$_icon-link-padding-x: k-map-get( $size-props, icon-link-padding-x );
|
|
40059
|
+
$_icon-link-padding-y: k-map-get( $size-props, icon-link-padding-y );
|
|
40060
|
+
$_font-size: k-map-get( $size-props, font-size );
|
|
40061
|
+
$_line-height: k-map-get( $size-props, line-height );
|
|
40062
|
+
|
|
40063
|
+
.k-breadcrumb-#{$size} {
|
|
40064
|
+
font-size: $_font-size;
|
|
40065
|
+
line-height: $_line-height;
|
|
40066
|
+
|
|
40067
|
+
|
|
40068
|
+
.k-breadcrumb-link,
|
|
40069
|
+
.k-breadcrumb-root-link {
|
|
40070
|
+
padding-block: $_link-padding-y;
|
|
40071
|
+
padding-inline: $_link-padding-x;
|
|
40072
|
+
}
|
|
40073
|
+
|
|
40074
|
+
.k-breadcrumb-icon-link {
|
|
40075
|
+
padding-block: $_icon-link-padding-y;
|
|
40076
|
+
padding-inline: $_icon-link-padding-x;
|
|
40077
|
+
}
|
|
40078
|
+
}
|
|
40079
|
+
}
|
|
40080
|
+
|
|
38741
40081
|
}
|
|
38742
40082
|
|
|
38743
40083
|
|
|
@@ -41017,41 +42357,84 @@ $_kendo-module-meta: (
|
|
|
41017
42357
|
|
|
41018
42358
|
// Component
|
|
41019
42359
|
// #region @import "./_variables.scss"; -> scss/expansion-panel/_variables.scss
|
|
41020
|
-
//
|
|
42360
|
+
// ExpansionPanel
|
|
42361
|
+
|
|
42362
|
+
/// The vertical spacing of the ExpansionPanel.
|
|
42363
|
+
/// @group expander
|
|
41021
42364
|
$kendo-expander-spacing-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
42365
|
+
/// The width of the border around the ExpansionPanel.
|
|
42366
|
+
/// @group expander
|
|
42367
|
+
$kendo-expander-border-width: 1px !default;
|
|
42368
|
+
/// The font family of the ExpansionPanel.
|
|
42369
|
+
/// @group expander
|
|
41022
42370
|
$kendo-expander-font-family: $kendo-font-family !default;
|
|
42371
|
+
/// The font size of the ExpansionPanel.
|
|
42372
|
+
/// @group expander
|
|
41023
42373
|
$kendo-expander-font-size: $kendo-font-size-md !default;
|
|
42374
|
+
/// The hine height of the ExpansionPanel.
|
|
42375
|
+
/// @group expander
|
|
41024
42376
|
$kendo-expander-line-height: $kendo-line-height-md !default;
|
|
41025
|
-
$kendo-expander-border-width: 1px !default;
|
|
41026
|
-
|
|
41027
|
-
$kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
41028
|
-
// TODO: use 2
|
|
41029
|
-
$kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
41030
|
-
|
|
41031
|
-
$kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
41032
42377
|
|
|
41033
|
-
|
|
42378
|
+
/// The text color of the ExpansionPanel.
|
|
42379
|
+
/// @group expander
|
|
41034
42380
|
$kendo-expander-text: $kendo-component-text !default;
|
|
42381
|
+
/// The background color of the ExpansionPanel.
|
|
42382
|
+
/// @group expander
|
|
42383
|
+
$kendo-expander-bg: $kendo-component-bg !default;
|
|
42384
|
+
/// The border color of the ExpansionPanel.
|
|
42385
|
+
/// @group expander
|
|
41035
42386
|
$kendo-expander-border: $kendo-component-border !default;
|
|
41036
42387
|
|
|
42388
|
+
/// The box shadow of the focused ExpansionPanel.
|
|
42389
|
+
/// @group expander
|
|
41037
42390
|
$kendo-expander-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
41038
42391
|
|
|
41039
|
-
|
|
42392
|
+
/// The horizontal padding of the ExpansionPanel header.
|
|
42393
|
+
/// @group expander
|
|
42394
|
+
$kendo-expander-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
42395
|
+
// TODO: use 2
|
|
42396
|
+
/// The vertical padding of the ExpansionPanel header.
|
|
42397
|
+
/// @group expander
|
|
42398
|
+
$kendo-expander-header-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
42399
|
+
|
|
42400
|
+
/// The text color of the ExpansionPanel header.
|
|
42401
|
+
/// @group expander
|
|
41040
42402
|
$kendo-expander-header-text: $kendo-expander-text !default;
|
|
42403
|
+
/// The background color of the ExpansionPanel header.
|
|
42404
|
+
/// @group expander
|
|
42405
|
+
$kendo-expander-header-bg: transparent !default;
|
|
42406
|
+
/// The border color of the ExpansionPanel header.
|
|
42407
|
+
/// @group expander
|
|
41041
42408
|
$kendo-expander-header-border: null !default;
|
|
41042
42409
|
|
|
42410
|
+
/// The background color of the hovered ExpansionPanel header.
|
|
42411
|
+
/// @group expander
|
|
41043
42412
|
$kendo-expander-header-hover-bg: k-color-shade( $kendo-expander-bg, 1 ) !default;
|
|
41044
|
-
|
|
42413
|
+
/// The background color of the focused ExpansionPanel header.
|
|
42414
|
+
/// @group expander
|
|
41045
42415
|
$kendo-expander-header-focus-bg: null !default;
|
|
42416
|
+
/// The box shadow of the focused ExpansionPanel header.
|
|
42417
|
+
/// @group expander
|
|
41046
42418
|
$kendo-expander-header-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
41047
42419
|
|
|
42420
|
+
/// The text color of the ExpansionPanel title.
|
|
42421
|
+
/// @group expander
|
|
41048
42422
|
$kendo-expander-title-text: $kendo-color-primary !default;
|
|
41049
42423
|
|
|
42424
|
+
/// The text color of the ExpansionPanel sub-title.
|
|
42425
|
+
/// @group expander
|
|
41050
42426
|
$kendo-expander-header-sub-title-text: $kendo-subtle-text !default;
|
|
41051
42427
|
|
|
42428
|
+
/// The horizontal margin of the ExpansionPanel indicator.
|
|
42429
|
+
/// @group expander
|
|
42430
|
+
$kendo-expander-indicator-margin-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
42431
|
+
|
|
42432
|
+
/// The horizontal padding of the ExpansionPanel content.
|
|
42433
|
+
/// @group expander
|
|
41052
42434
|
$kendo-expander-content-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
|
|
42435
|
+
/// The vertical padding of the ExpansionPanel content.
|
|
42436
|
+
/// @group expander
|
|
41053
42437
|
$kendo-expander-content-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
|
|
41054
|
-
|
|
41055
42438
|
// #endregion
|
|
41056
42439
|
// #region @import "./_layout.scss"; -> scss/expansion-panel/_layout.scss
|
|
41057
42440
|
// #region @import "@progress/kendo-theme-default/scss/expansion-panel/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/expansion-panel/_layout.scss
|
|
@@ -42153,17 +43536,34 @@ $_kendo-module-meta: (
|
|
|
42153
43536
|
// Component
|
|
42154
43537
|
// #region @import "./_variables.scss"; -> scss/tilelayout/_variables.scss
|
|
42155
43538
|
// TileLayout
|
|
43539
|
+
|
|
43540
|
+
/// The width of the border around the TileLayout.
|
|
43541
|
+
/// @group tilelayout
|
|
42156
43542
|
$kendo-tile-layout-border-width: 0px !default;
|
|
43543
|
+
/// The background color of the TileLayout.
|
|
43544
|
+
/// @group tilelayout
|
|
43545
|
+
$kendo-tile-layout-bg: $kendo-base-bg !default;
|
|
43546
|
+
|
|
43547
|
+
/// The width of the border around the TileLayout card.
|
|
43548
|
+
/// @group tilelayout
|
|
42157
43549
|
$kendo-tile-layout-card-border-width: $kendo-card-border-width !default;
|
|
43550
|
+
/// The focus box shadow of the TileLayout card.
|
|
43551
|
+
/// @group tilelayout
|
|
42158
43552
|
$kendo-tile-layout-card-focus-shadow: $kendo-card-focus-shadow !default;
|
|
42159
43553
|
|
|
43554
|
+
/// The width of the border around the TileLayout hint.
|
|
43555
|
+
/// @group tilelayout
|
|
42160
43556
|
$kendo-tile-layout-hint-border-width: 1px !default;
|
|
43557
|
+
/// The radius of the border around the TileLayout hint.
|
|
43558
|
+
/// @group tilelayout
|
|
42161
43559
|
$kendo-tile-layout-hint-border-radius: $kendo-border-radius-lg !default;
|
|
42162
|
-
|
|
42163
|
-
|
|
42164
|
-
|
|
42165
|
-
$kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
|
|
43560
|
+
/// The color of the border around the TileLayout hint.
|
|
43561
|
+
/// @group tilelayout
|
|
42166
43562
|
$kendo-tile-layout-hint-border: $kendo-component-border !default;
|
|
43563
|
+
/// The background color of the TileLayout hint.
|
|
43564
|
+
/// @group tilelayout
|
|
43565
|
+
$kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
|
|
43566
|
+
|
|
42167
43567
|
|
|
42168
43568
|
// #endregion
|
|
42169
43569
|
// #region @import "./_layout.scss"; -> scss/tilelayout/_layout.scss
|
|
@@ -45391,32 +46791,66 @@ $_kendo-module-meta: (
|
|
|
45391
46791
|
|
|
45392
46792
|
// Component
|
|
45393
46793
|
// #region @import "./_variables.scss"; -> scss/listview/_variables.scss
|
|
45394
|
-
//
|
|
46794
|
+
// ListView
|
|
46795
|
+
|
|
46796
|
+
/// The horizontal padding of the ListView.
|
|
46797
|
+
/// @group listview
|
|
45395
46798
|
$kendo-listview-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
46799
|
+
/// The vertical padding of the ListView.
|
|
46800
|
+
/// @group listview
|
|
45396
46801
|
$kendo-listview-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
46802
|
+
/// The width of the border around bordered ListView.
|
|
46803
|
+
/// @group listview
|
|
45397
46804
|
$kendo-listview-border-width: 1px !default;
|
|
46805
|
+
/// The font family of the ListView.
|
|
46806
|
+
/// @group listview
|
|
45398
46807
|
$kendo-listview-font-family: $kendo-font-family !default;
|
|
46808
|
+
/// The font size of the ListView.
|
|
46809
|
+
/// @group listview
|
|
45399
46810
|
$kendo-listview-font-size: $kendo-font-size-md !default;
|
|
46811
|
+
/// The line height of the ListView.
|
|
46812
|
+
/// @group listview
|
|
45400
46813
|
$kendo-listview-line-height: $kendo-line-height-md !default;
|
|
45401
46814
|
|
|
45402
|
-
|
|
46815
|
+
/// The text color of the ListView.
|
|
46816
|
+
/// @group listview
|
|
45403
46817
|
$kendo-listview-text: $kendo-component-text !default;
|
|
46818
|
+
/// The background color of the ListView.
|
|
46819
|
+
/// @group listview
|
|
46820
|
+
$kendo-listview-bg: $kendo-component-bg !default;
|
|
46821
|
+
/// The border color of the ListView.
|
|
46822
|
+
/// @group listview
|
|
45404
46823
|
$kendo-listview-border: $kendo-component-border !default;
|
|
45405
46824
|
|
|
45406
|
-
|
|
45407
|
-
|
|
46825
|
+
/// The horizontal padding of the ListView items.
|
|
46826
|
+
/// @group listview
|
|
45408
46827
|
$kendo-listview-item-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
46828
|
+
/// The vertical padding of the ListView items.
|
|
46829
|
+
/// @group listview
|
|
45409
46830
|
$kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
45410
46831
|
|
|
45411
|
-
|
|
46832
|
+
/// The text color of the selected ListView items.
|
|
46833
|
+
/// @group listview
|
|
45412
46834
|
$kendo-listview-item-selected-text: null !default;
|
|
46835
|
+
/// The background color of the selected ListView items.
|
|
46836
|
+
/// @group listview
|
|
46837
|
+
$kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
|
|
46838
|
+
/// The border color of the selected ListView items.
|
|
46839
|
+
/// @group listview
|
|
45413
46840
|
$kendo-listview-item-selected-border: null !default;
|
|
45414
46841
|
|
|
45415
|
-
|
|
46842
|
+
/// The text color of the focused ListView items.
|
|
46843
|
+
/// @group listview
|
|
45416
46844
|
$kendo-listview-item-focus-text: null !default;
|
|
46845
|
+
/// The background color of the focused ListView items.
|
|
46846
|
+
/// @group listview
|
|
46847
|
+
$kendo-listview-item-focus-bg: null !default;
|
|
46848
|
+
/// The border color of the focused ListView items.
|
|
46849
|
+
/// @group listview
|
|
45417
46850
|
$kendo-listview-item-focus-border: null !default;
|
|
46851
|
+
/// The box shadow of the focused ListView items.
|
|
46852
|
+
/// @group listview
|
|
45418
46853
|
$kendo-listview-item-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
45419
|
-
|
|
45420
46854
|
// #endregion
|
|
45421
46855
|
// #region @import "./_layout.scss"; -> scss/listview/_layout.scss
|
|
45422
46856
|
// #region @import "@progress/kendo-theme-default/scss/listview/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/listview/_layout.scss
|
|
@@ -48358,19 +49792,35 @@ $_kendo-module-meta: (
|
|
|
48358
49792
|
// Component
|
|
48359
49793
|
// #region @import "./_variables.scss"; -> scss/filter/_variables.scss
|
|
48360
49794
|
// Filter expression builder
|
|
49795
|
+
|
|
49796
|
+
/// The horizontal padding of the Filter.
|
|
49797
|
+
/// @group filter
|
|
48361
49798
|
$kendo-filter-padding-x: $kendo-padding-md-x !default;
|
|
49799
|
+
/// The vertical padding of the Filter.
|
|
49800
|
+
/// @group filter
|
|
48362
49801
|
$kendo-filter-padding-y: $kendo-padding-md-y !default;
|
|
48363
49802
|
|
|
49803
|
+
/// The bottom margin of the Filter.
|
|
49804
|
+
/// @group filter
|
|
48364
49805
|
$kendo-filter-bottom-margin: 30px !default;
|
|
49806
|
+
/// The width of the line that connects the Filter items.
|
|
49807
|
+
/// @group filter
|
|
48365
49808
|
$kendo-filter-line-size: 1px !default;
|
|
48366
49809
|
|
|
49810
|
+
/// The width of the dropdown elements in the Filter items.
|
|
49811
|
+
/// @group filter
|
|
48367
49812
|
$kendo-filter-operator-dropdown-width: 15em !default;
|
|
48368
49813
|
|
|
49814
|
+
/// The text color of the Filter preview field.
|
|
49815
|
+
/// @group filter
|
|
48369
49816
|
$kendo-filter-preview-field-text: $kendo-color-primary !default;
|
|
49817
|
+
/// The text color of the Filter preview operator.
|
|
49818
|
+
/// @group filter
|
|
48370
49819
|
$kendo-filter-preview-operator-text: $kendo-subtle-text !default;
|
|
48371
49820
|
|
|
49821
|
+
/// The box shadow of the focused Filter toolbar.
|
|
49822
|
+
/// @group filter
|
|
48372
49823
|
$kendo-filter-toolbar-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .08) !default;
|
|
48373
|
-
|
|
48374
49824
|
// #endregion
|
|
48375
49825
|
// #region @import "./_layout.scss"; -> scss/filter/_layout.scss
|
|
48376
49826
|
// #region @import "@progress/kendo-theme-default/scss/filter/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/filter/_layout.scss
|
|
@@ -49699,27 +51149,60 @@ $_kendo-module-meta: (
|
|
|
49699
51149
|
// Component
|
|
49700
51150
|
// #region @import "./_variables.scss"; -> scss/editor/_variables.scss
|
|
49701
51151
|
// Editor
|
|
51152
|
+
|
|
51153
|
+
/// The width of the border around the Еditor.
|
|
51154
|
+
/// @group editor
|
|
49702
51155
|
$kendo-editor-border-width: 1px !default;
|
|
51156
|
+
/// The font family of the Еditor.
|
|
51157
|
+
/// @group editor
|
|
49703
51158
|
$kendo-editor-font-family: $kendo-font-family !default;
|
|
51159
|
+
/// The font size of the Еditor.
|
|
51160
|
+
/// @group editor
|
|
49704
51161
|
$kendo-editor-font-size: $kendo-font-size-md !default;
|
|
51162
|
+
/// The line height of the Еditor.
|
|
51163
|
+
/// @group editor
|
|
49705
51164
|
$kendo-editor-line-height: $kendo-line-height-md !default;
|
|
49706
51165
|
|
|
51166
|
+
/// The text color of the Еditor placeholder.
|
|
51167
|
+
/// @group editor
|
|
49707
51168
|
$kendo-editor-placeholder-text: $kendo-input-placeholder-text !default;
|
|
51169
|
+
/// The opacity of the Editor placeholder.
|
|
51170
|
+
/// @group editor
|
|
49708
51171
|
$kendo-editor-placeholder-opacity: $kendo-input-placeholder-opacity !default;
|
|
49709
51172
|
|
|
51173
|
+
/// The selected text color of the Editor.
|
|
51174
|
+
/// @group editor
|
|
49710
51175
|
$kendo-editor-selected-text: $kendo-color-primary-contrast !default;
|
|
51176
|
+
/// The selected background color of the Editor.
|
|
51177
|
+
/// @group editor
|
|
49711
51178
|
$kendo-editor-selected-bg: $kendo-color-primary !default;
|
|
49712
51179
|
|
|
51180
|
+
/// The highlighted background color of the Editor.
|
|
51181
|
+
/// @group editor
|
|
49713
51182
|
$kendo-editor-highlighted-bg: k-color-mix( $kendo-color-primary, #ffffff, 20% ) !default;
|
|
49714
51183
|
|
|
51184
|
+
/// The horizontal margin of the Editor's export tool icon.
|
|
51185
|
+
/// @group editor
|
|
49715
51186
|
$kendo-editor-export-tool-icon-margin-x: .25em !default;
|
|
49716
51187
|
|
|
51188
|
+
/// The size of the Editor's resize handle.
|
|
51189
|
+
/// @group editor
|
|
49717
51190
|
$kendo-editor-resize-handle-size: 8px !default;
|
|
51191
|
+
/// The border width of the Editor's resize handle.
|
|
51192
|
+
/// @group editor
|
|
49718
51193
|
$kendo-editor-resize-handle-border-width: 1px !default;
|
|
51194
|
+
/// The border color of the Editor's resize handle.
|
|
51195
|
+
/// @group editor
|
|
49719
51196
|
$kendo-editor-resize-handle-border: #000000 !default;
|
|
51197
|
+
/// The background color of the Editor's resize handle.
|
|
51198
|
+
/// @group editor
|
|
49720
51199
|
$kendo-editor-resize-handle-bg: #ffffff !default;
|
|
49721
51200
|
|
|
51201
|
+
/// The outline width of the Editor's selected node.
|
|
51202
|
+
/// @group editor
|
|
49722
51203
|
$kendo-editor-selectednode-outline-width: 2px !default;
|
|
51204
|
+
/// The outline color of the Editor's selected node.
|
|
51205
|
+
/// @group editor
|
|
49723
51206
|
$kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
49724
51207
|
|
|
49725
51208
|
// #endregion
|
|
@@ -56049,44 +57532,97 @@ $_kendo-module-meta: (
|
|
|
56049
57532
|
|
|
56050
57533
|
// Component
|
|
56051
57534
|
// #region @import "./_variables.scss"; -> scss/scrollview/_variables.scss
|
|
56052
|
-
//
|
|
57535
|
+
// ScrollView
|
|
57536
|
+
|
|
57537
|
+
/// The width of the border around the ScrollView.
|
|
57538
|
+
/// @group scrollview
|
|
56053
57539
|
$kendo-scrollview-border-width: 1px !default;
|
|
57540
|
+
/// The font family of the ScrollView.
|
|
57541
|
+
/// @group scrollview
|
|
56054
57542
|
$kendo-scrollview-font-family: $kendo-font-family !default;
|
|
57543
|
+
/// The font size of the ScrollView.
|
|
57544
|
+
/// @group scrollview
|
|
56055
57545
|
$kendo-scrollview-font-size: $kendo-font-size-md !default;
|
|
57546
|
+
/// The line height of the ScrollView.
|
|
57547
|
+
/// @group scrollview
|
|
56056
57548
|
$kendo-scrollview-line-height: $kendo-line-height-md !default;
|
|
56057
57549
|
|
|
56058
|
-
|
|
57550
|
+
/// The text color of the ScrollView.
|
|
57551
|
+
/// @group scrollview
|
|
56059
57552
|
$kendo-scrollview-text: $kendo-component-text !default;
|
|
57553
|
+
/// The background color of the ScrollView.
|
|
57554
|
+
/// @group scrollview
|
|
57555
|
+
$kendo-scrollview-bg: $kendo-component-bg !default;
|
|
57556
|
+
/// The border color of the ScrollView.
|
|
57557
|
+
/// @group scrollview
|
|
56060
57558
|
$kendo-scrollview-border: $kendo-component-border !default;
|
|
56061
57559
|
|
|
57560
|
+
/// The size of the ScrollView page button.
|
|
57561
|
+
/// @group scrollview
|
|
56062
57562
|
$kendo-scrollview-pagebutton-size: 10px !default;
|
|
57563
|
+
/// The background color of the ScrollView page button.
|
|
57564
|
+
/// @group scrollview
|
|
56063
57565
|
$kendo-scrollview-pagebutton-bg: $kendo-button-bg !default;
|
|
57566
|
+
/// The border color of the ScrollView page button.
|
|
57567
|
+
/// @group scrollview
|
|
56064
57568
|
$kendo-scrollview-pagebutton-border: $kendo-button-border !default;
|
|
57569
|
+
/// The primary background color of the ScrollView page button.
|
|
57570
|
+
/// @group scrollview
|
|
56065
57571
|
$kendo-scrollview-pagebutton-primary-bg: $kendo-color-primary !default;
|
|
57572
|
+
/// The primary border color of the ScrollView page button.
|
|
57573
|
+
/// @group scrollview
|
|
56066
57574
|
$kendo-scrollview-pagebutton-primary-border: k-try-shade( $kendo-color-primary, 2 ) !default;
|
|
57575
|
+
/// The box shadow of the ScrollView page button.
|
|
57576
|
+
/// @group scrollview
|
|
56067
57577
|
$kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
56068
57578
|
|
|
57579
|
+
/// The offset of the ScrollView pager.
|
|
57580
|
+
/// @group scrollview
|
|
56069
57581
|
$kendo-scrollview-pager-offset: 0 !default;
|
|
57582
|
+
/// The spacing between the ScrollView pager items.
|
|
57583
|
+
/// @group scrollview
|
|
56070
57584
|
$kendo-scrollview-pager-item-spacing: 20px !default;
|
|
57585
|
+
/// The border width of the ScrollView pager items.
|
|
57586
|
+
/// @group scrollview
|
|
56071
57587
|
$kendo-scrollview-pager-item-border-width: 0px !default;
|
|
57588
|
+
/// The height of the ScrollView pager.
|
|
57589
|
+
/// @group scrollview
|
|
56072
57590
|
$kendo-scrollview-pager-height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-border-width * 2} + #{$kendo-scrollview-pager-item-spacing * 2} ) !default;
|
|
56073
57591
|
|
|
56074
|
-
|
|
56075
|
-
|
|
56076
|
-
$kendo-scrollview-pager-multidot-step: 1px !default;
|
|
56077
|
-
|
|
57592
|
+
/// The text color of the highlight over the tapped ScrollView navigation arrows.
|
|
57593
|
+
/// @group scrollview
|
|
56078
57594
|
$kendo-scrollview-arrow-tap-highlight-color: $kendo-color-rgba-transparent !default;
|
|
57595
|
+
/// The color of the ScrollView navigation arrows.
|
|
57596
|
+
/// @group scrollview
|
|
56079
57597
|
$kendo-scrollview-navigation-color: white !default;
|
|
57598
|
+
/// The box shadow of the ScrollView navigation arrows.
|
|
57599
|
+
/// @group scrollview
|
|
56080
57600
|
$kendo-scrollview-navigation-icon-shadow: rgba( black, .3 ) 0 0 15px !default;
|
|
57601
|
+
/// The background color of the ScrollView navigation.
|
|
57602
|
+
/// @group scrollview
|
|
56081
57603
|
$kendo-scrollview-navigation-bg: rgba( black, 0 ) !default;
|
|
57604
|
+
/// The opacity of the ScrollView navigation.
|
|
57605
|
+
/// @group scrollview
|
|
56082
57606
|
$kendo-scrollview-navigation-default-opacity: .7 !default;
|
|
57607
|
+
/// The hover opacity of the ScrollView navigation.
|
|
57608
|
+
/// @group scrollview
|
|
56083
57609
|
$kendo-scrollview-navigation-hover-opacity: 1 !default;
|
|
57610
|
+
/// The hover background color of the ScrollView navigation arrows.
|
|
57611
|
+
/// @group scrollview
|
|
56084
57612
|
$kendo-scrollview-navigation-hover-span-bg: null !default;
|
|
56085
57613
|
|
|
57614
|
+
/// The background color of the ScrollView pager in light mode.
|
|
57615
|
+
/// @group scrollview
|
|
56086
57616
|
$kendo-scrollview-light-bg: rgba( white, .4 ) !default;
|
|
57617
|
+
/// The background color of the ScrollView pager in dark mode.
|
|
57618
|
+
/// @group scrollview
|
|
56087
57619
|
$kendo-scrollview-dark-bg: rgba( black, .4 ) !default;
|
|
56088
57620
|
|
|
57621
|
+
/// The duration of the ScrollView transition.
|
|
57622
|
+
/// @group scrollview
|
|
56089
57623
|
$kendo-scrollview-transition-duration: .3s !default;
|
|
57624
|
+
/// The timing function of the ScrollView transition.
|
|
57625
|
+
/// @group scrollview
|
|
56090
57626
|
$kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
56091
57627
|
|
|
56092
57628
|
// #endregion
|