@progress/kendo-theme-classic 5.0.0-alpha.3 → 5.0.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/dist/all.css +3747 -5330
  2. package/dist/all.scss +4126 -4437
  3. package/package.json +3 -3
  4. package/scss/_variables.scss +0 -19
  5. package/scss/autocomplete/_index.scss +1 -0
  6. package/scss/autocomplete/_variables.scss +0 -5
  7. package/scss/avatar/_variables.scss +18 -8
  8. package/scss/button/_index.scss +2 -0
  9. package/scss/button/_variables.scss +4 -2
  10. package/scss/calendar/_index.scss +1 -0
  11. package/scss/chat/_variables.scss +0 -8
  12. package/scss/checkbox/_index.scss +2 -1
  13. package/scss/checkbox/_variables.scss +1 -1
  14. package/scss/chip/_variables.scss +127 -191
  15. package/scss/colorpicker/_variables.scss +0 -2
  16. package/scss/combobox/_index.scss +1 -0
  17. package/scss/combobox/_variables.scss +0 -2
  18. package/scss/dataviz/_index.scss +1 -0
  19. package/scss/drawer/_index.scss +1 -0
  20. package/scss/drawer/_variables.scss +1 -1
  21. package/scss/dropdownlist/_index.scss +1 -0
  22. package/scss/editor/_variables.scss +1 -1
  23. package/scss/expansion-panel/_index.scss +3 -0
  24. package/scss/expansion-panel/_variables.scss +2 -2
  25. package/scss/forms/_index.scss +1 -1
  26. package/scss/grid/_index.scss +1 -0
  27. package/scss/grid/_variables.scss +3 -3
  28. package/scss/index.scss +2 -2
  29. package/scss/input/_variables.scss +35 -24
  30. package/scss/list/_index.scss +11 -0
  31. package/scss/list/_layout.scss +1 -0
  32. package/scss/list/_theme.scss +1 -0
  33. package/scss/list/_variables.scss +81 -0
  34. package/scss/listbox/_index.scss +1 -0
  35. package/scss/menu/_index.scss +1 -0
  36. package/scss/menu/_variables.scss +113 -34
  37. package/scss/multiselect/_index.scss +2 -0
  38. package/scss/multiselect/_variables.scss +0 -36
  39. package/scss/pager/_index.scss +1 -0
  40. package/scss/pager/_variables.scss +5 -5
  41. package/scss/panelbar/_index.scss +1 -0
  42. package/scss/panelbar/_variables.scss +2 -2
  43. package/scss/pivotgrid/_index.scss +1 -0
  44. package/scss/pivotgrid/_variables.scss +1 -1
  45. package/scss/popup/_index.scss +1 -4
  46. package/scss/popup/_variables.scss +0 -5
  47. package/scss/radio/_index.scss +2 -0
  48. package/scss/radio/_variables.scss +1 -1
  49. package/scss/spreadsheet/_index.scss +1 -0
  50. package/scss/table/_index.scss +19 -0
  51. package/scss/table/_layout.scss +1 -0
  52. package/scss/table/_theme.scss +1 -0
  53. package/scss/table/_variables.scss +72 -0
  54. package/scss/tabstrip/_index.scss +1 -0
  55. package/scss/tabstrip/_variables.scss +3 -3
@@ -0,0 +1,72 @@
1
+ // Table
2
+
3
+ /// The font size of the table if no size is specified.
4
+ /// @group table
5
+ $kendo-table-font-size: null !default;
6
+ /// The horizontal padding of the cells in the table if no size is specified.
7
+ /// @group table
8
+ $kendo-table-padding-x: null !default;
9
+ /// The vertical padding of the cells in the table if no size is specified.
10
+ /// @group table
11
+ $kendo-table-padding-y: null !default;
12
+ /// The sizes of the table.
13
+ /// @group table
14
+ $kendo-table-sizes: (
15
+ sm: (
16
+ font-size: map-get( $spacing, sm) + 2,
17
+ padding-y: map-get( $spacing, sm),
18
+ padding-x: map-get( $spacing, md)
19
+ ),
20
+ md: (
21
+ font-size: map-get( $spacing, md) + 2,
22
+ padding-y: map-get( $spacing, md),
23
+ padding-x: map-get( $spacing, lg)
24
+ ),
25
+ lg: (
26
+ font-size: map-get( $spacing, lg),
27
+ padding-y: map-get( $spacing, lg),
28
+ padding-x: map-get( $spacing, xl) - 4
29
+ )
30
+ ) !default;
31
+
32
+
33
+ /// The border color of the table.
34
+ /// @group table
35
+ $kendo-table-border-color: $grid-header-border !default;
36
+ /// The vertical width of the table border.
37
+ /// @group table
38
+ $kendo-table-cell-vertical-border-width: $grid-cell-vertical-border-width !default;
39
+ /// The horizontal width of the table border.
40
+ /// @group table
41
+ $kendo-table-cell-horizontal-border-width: $grid-cell-horizontal-border-width !default;
42
+
43
+
44
+ /// The inline end padding of the table.
45
+ /// @group table
46
+ $kendo-table-padding-inline-end: var(--kendo-scrollbar-width) !default;
47
+
48
+
49
+ /// The text color of the table.
50
+ /// @group table
51
+ $kendo-table-text-color: $grid-header-text !default;
52
+ /// The text color of the body grouping in the table.
53
+ /// @group table
54
+ $kendo-table-body-grouping-text-color: null !default;
55
+
56
+ /// The background color of the table.
57
+ /// @group table
58
+ $kendo-table-bg-color: $grid-header-bg !default;
59
+ /// The background color of the even rows in the table.
60
+ /// @group table
61
+ $kendo-table-alt-row-bg: $grid-alt-bg !default;
62
+
63
+
64
+ /// The focus state of the table.
65
+ /// @group table
66
+ $kendo-table-state-focus: $kendo-list-item-focus-shadow !default;
67
+ /// The hover state of the table.
68
+ /// @group table
69
+ $kendo-table-state-hover: $grid-hovered-bg !default;
70
+ /// The selected state of the table.
71
+ /// @group table
72
+ $kendo-table-state-selected: $grid-selected-bg !default;
@@ -5,6 +5,7 @@
5
5
  @import "../common/_index.scss";
6
6
  @import "../button/_index.scss";
7
7
  @import "../icons/_index.scss";
8
+ @import "../list/_index.scss";
8
9
 
9
10
 
10
11
  // Component
@@ -77,7 +77,7 @@ $tabstrip-item-selected-border: $component-border !default;
77
77
  /// @group tabstrip
78
78
  $tabstrip-item-selected-gradient: false !default;
79
79
 
80
- $tabstrip-item-focused-shadow: $list-item-focused-shadow !default;
80
+ $tabstrip-item-focused-shadow: $kendo-list-item-focus-shadow !default;
81
81
 
82
82
  $tabstrip-item-dragging-shadow: 0px 3px 4px rgba(0, 0, 0, .15) !default;
83
83
 
@@ -86,10 +86,10 @@ $tabstrip-indicator-color: null !default;
86
86
 
87
87
  /// Horizontal padding of tabstrip content
88
88
  /// @group tabstrip
89
- $tabstrip-content-padding-x: $tabstrip-item-padding-x !default;
89
+ $tabstrip-content-padding-x: map-get( $spacing, 4 ) !default;
90
90
  /// Vertical padding of tabstrip content
91
91
  /// @group tabstrip
92
- $tabstrip-content-padding-y: $tabstrip-item-padding-y !default;
92
+ $tabstrip-content-padding-y: map-get( $spacing, 4 ) !default;
93
93
  /// Width of border around tabstrip content
94
94
  /// @group tabstrip
95
95
  $tabstrip-content-border-width: 1px !default;