@progress/kendo-theme-classic 5.0.0-beta.2 → 5.0.0-beta.6

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 (39) hide show
  1. package/README.md +5 -8
  2. package/dist/all.css +2583 -2198
  3. package/dist/all.scss +3641 -3217
  4. package/package.json +3 -3
  5. package/scss/appbar/_variables.scss +1 -1
  6. package/scss/autocomplete/_variables.scss +0 -19
  7. package/scss/button/_variables.scss +60 -32
  8. package/scss/card/_variables.scss +4 -4
  9. package/scss/chat/_variables.scss +0 -7
  10. package/scss/checkbox/_index.scss +2 -1
  11. package/scss/checkbox/_variables.scss +65 -74
  12. package/scss/chip/_variables.scss +30 -15
  13. package/scss/coloreditor/_variables.scss +3 -3
  14. package/scss/combobox/_variables.scss +1 -31
  15. package/scss/fab/_variables.scss +129 -72
  16. package/scss/fab/index.md +0 -0
  17. package/scss/grid/_variables.scss +7 -7
  18. package/scss/imageeditor/_variables.scss +1 -0
  19. package/scss/index.scss +1 -0
  20. package/scss/input/_variables.scss +40 -16
  21. package/scss/list/_index.scss +1 -0
  22. package/scss/list/_variables.scss +19 -19
  23. package/scss/listbox/_variables.scss +1 -1
  24. package/scss/menu/_variables.scss +56 -46
  25. package/scss/orgchart/_variables.scss +2 -2
  26. package/scss/pager/_variables.scss +1 -1
  27. package/scss/pdf-viewer/_variables.scss +2 -5
  28. package/scss/radio/_index.scss +1 -1
  29. package/scss/radio/_variables.scss +71 -90
  30. package/scss/switch/_variables.scss +22 -25
  31. package/scss/table/_variables.scss +15 -15
  32. package/scss/toolbar/_index.scss +1 -0
  33. package/scss/toolbar/_variables.scss +2 -0
  34. package/scss/treeview/_variables.scss +68 -85
  35. package/scss/typography/_variables.scss +3 -3
  36. package/scss/virtual-scroller/_index.scss +10 -0
  37. package/scss/virtual-scroller/_layout.scss +1 -0
  38. package/scss/virtual-scroller/_theme.scss +1 -0
  39. package/scss/virtual-scroller/_variables.scss +1 -0
@@ -62,5 +62,5 @@ $pager-number-focus-opacity: .12 !default;
62
62
  $pager-number-focus-bg: transparent !default;
63
63
  $pager-number-focus-shadow: inset 0 0 0 2px rgba($pager-number-selected-bg, $pager-number-focus-opacity) !default;
64
64
 
65
- $pager-input-width: 3em !default;
65
+ $pager-input-width: 5em !default;
66
66
  $pager-dropdown-width: 5em !default;
@@ -24,11 +24,8 @@ $pdf-viewer-page-text: $component-text !default;
24
24
  $pdf-viewer-page-border: $component-border !default;
25
25
  $pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing / 2) $pdf-viewer-page-border !default;
26
26
 
27
- $pdf-viewer-search-dialog-spacing: $toolbar-padding-x !default;
28
- $pdf-viewer-search-dialog-button-spacing: $pdf-viewer-search-dialog-spacing !default;
29
- $pdf-viewer-search-dialog-textbox-padding-x: $kendo-input-padding-y !default;
30
- $pdf-viewer-search-dialog-input-button-height: $line-height-em !default;
31
- $pdf-viewer-search-dialog-matches-width: 4.5em !default;
27
+ $pdf-viewer-search-dialog-padding: $toolbar-padding-x !default;
28
+ $pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
32
29
 
33
30
  $pdf-viewer-selection-line-height: $line-height-sm !default;
34
31
 
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  // Dependencies
5
- @import "../common/_index.scss";
5
+ @import "../typography/_variables.scss";
6
6
  @import "../list/_variables.scss";
7
7
  @import "../checkbox/_variables.scss";
8
8
 
@@ -1,126 +1,124 @@
1
1
  // Radio button
2
2
 
3
- /// The Sizes of the radio button.
4
- /// @group radio
5
- $kendo-radio-sizes: (
6
- sm: map-get( $spacing, 3),
7
- md: map-get( $spacing, 4),
8
- lg: map-get( $spacing, 6)
9
- ) !default;
10
-
11
- /// The Border radius of the radio button.
3
+ /// Border radius of radio button.
12
4
  /// @group radio
13
5
  $kendo-radio-radius: 50% !default;
14
- /// The Border width of the radio button.
6
+ /// Border width of radio button.
15
7
  /// @group radio
16
8
  $kendo-radio-border-width: 1px !default;
17
- /// The Line height of the radio button.
18
- /// @group radio
19
- $kendo-radio-line-height: calc( #{map-get( $kendo-radio-sizes, "md" )} + #{$kendo-radio-border-width} ) !default;
20
9
 
21
- /// The Background of the radio button.
10
+ // Radio button sizes
11
+ $kendo-radio-sizes: (
12
+ sm: (
13
+ size: map-get( $spacing, 3 ),
14
+ glyph-size: ( map-get( $spacing, 3 ) - map-get( $spacing, thin ) ),
15
+ ripple-size: map-get( $spacing, 3 ) * 3
16
+ ),
17
+ md: (
18
+ size: map-get( $spacing, 4 ),
19
+ glyph-size: ( map-get( $spacing, 4 ) - map-get( $spacing, thin ) ),
20
+ ripple-size: map-get( $spacing, 4 ) * 3
21
+ ),
22
+ lg: (
23
+ size: map-get( $spacing, 5 ),
24
+ glyph-size: ( map-get( $spacing, 5 ) - map-get( $spacing, thin ) ),
25
+ ripple-size: map-get( $spacing, 5 ) * 3
26
+ )
27
+ ) !default;
28
+
29
+ /// Background color of radio button.
22
30
  /// @group radio
23
31
  $kendo-radio-bg: $kendo-checkbox-bg !default;
24
- /// The Text of the radio button.
32
+ /// Color of radio button.
25
33
  /// @group radio
26
34
  $kendo-radio-text: $kendo-checkbox-text !default;
27
- /// The Border of the radio button.
35
+ /// Border color of radio button.
28
36
  /// @group radio
29
37
  $kendo-radio-border: $kendo-checkbox-border !default;
30
38
 
31
- /// The background of hovered radio button.
39
+ /// Background color of hovered radio button.
32
40
  /// @group radio
33
41
  $kendo-radio-hover-bg: $kendo-checkbox-hover-bg !default;
34
- /// The text of hovered radio button.hover
42
+ /// Color of hovered radio button.
35
43
  /// @group radio
36
44
  $kendo-radio-hover-text: $kendo-checkbox-hover-text !default;
37
- /// The border of hovered radio button.
45
+ /// Border color of hovered radio button.
38
46
  /// @group radio
39
47
  $kendo-radio-hover-border: $kendo-checkbox-hover-border !default;
40
48
 
41
- /// The background of checked radio button.
49
+ /// Background color of checked radio button.
42
50
  /// @group radio
43
51
  $kendo-radio-checked-bg: $kendo-checkbox-checked-bg !default;
44
- /// The text of checked radio button.
52
+ /// Color of checked radio button.
45
53
  /// @group radio
46
54
  $kendo-radio-checked-text: $kendo-checkbox-checked-text !default;
47
- /// The border of checked radio button.
55
+ /// Border color of checked radio button.
48
56
  /// @group radio
49
57
  $kendo-radio-checked-border: $kendo-checkbox-checked-border !default;
50
58
 
51
- /// The background of indeterminate radio button.
59
+ /// Border color of focused radio button.
52
60
  /// @group radio
53
- $kendo-radio-indeterminate-bg: $kendo-radio-checked-bg !default;
54
- /// The text of indeterminate radio button
55
- /// @group radio
56
- $kendo-radio-indeterminate-text: $kendo-radio-checked-text !default;
57
- /// The border of indeterminate radio button.
58
- /// @group radio
59
- $kendo-radio-indeterminate-border: $kendo-radio-checked-border !default;
60
-
61
- /// The border of focused radio button.
62
- /// @group radio
63
- $kendo-radio-focus-border: $kendo-checkbox-hover-border !default;
64
- /// The shadow of focused radio button.
61
+ $kendo-radio-focus-border: $kendo-checkbox-focus-border !default;
62
+ /// Box shadow of focused radio button.
65
63
  /// @group radio
66
64
  $kendo-radio-focus-shadow: $kendo-checkbox-focus-shadow !default;
67
- /// The border of focused and checked radio button.
65
+ /// Border color of focused and checked radio button.
68
66
  /// @group radio
69
- $kendo-radio-focus-checked-border: $kendo-checkbox-checked-border !default;
70
- /// The shadow of focused and checked radio button.
67
+ $kendo-radio-focus-checked-border: $kendo-checkbox-focus-checked-border !default;
68
+ /// Box shadow of focused and checked radio button.
71
69
  /// @group radio
72
70
  $kendo-radio-focus-checked-shadow: $kendo-checkbox-focus-checked-shadow !default;
73
71
 
74
- /// The background of disabled radio button.
72
+ /// Background color of disabled radio button.
75
73
  /// @group radio
76
- $kendo-radio-disabled-bg: null !default;
77
- /// The text of disabled radio button.
74
+ $kendo-radio-disabled-bg: $kendo-checkbox-disabled-bg !default;
75
+ /// Color of disabled radio button.
78
76
  /// @group radio
79
- $kendo-radio-disabled-text: null !default;
80
- /// The border of disabled radio button.
77
+ $kendo-radio-disabled-text: $kendo-checkbox-disabled-text !default;
78
+ /// Border color of disabled radio button.
81
79
  /// @group radio
82
- $kendo-radio-disabled-border: null !default;
80
+ $kendo-radio-disabled-border: $kendo-checkbox-disabled-border !default;
83
81
 
84
- /// The background of diasbled and checked radio button.
82
+ /// Background color of disabled and checked radio button.
85
83
  /// @group radio
86
- $kendo-radio-disabled-checked-bg: null !default;
87
- /// The text of disabled and checked radio button.
84
+ $kendo-radio-disabled-checked-bg: $kendo-checkbox-disabled-checked-bg !default;
85
+ /// Color of disabled and checked radio button.
88
86
  /// @group radio
89
- $kendo-radio-disabled-checked-text: null !default;
90
- /// The border of disabled and checked radio button.
87
+ $kendo-radio-disabled-checked-text: $kendo-checkbox-disabled-checked-text !default;
88
+ /// Border color of disabled and checked radio button.
91
89
  /// @group radio
92
- $kendo-radio-disabled-checked-border: null !default;
90
+ $kendo-radio-disabled-checked-border: $kendo-checkbox-disabled-checked-border !default;
93
91
 
94
- /// The background of invalid radio button.
92
+ /// Background color of invalid radio button.
95
93
  /// @group radio
96
- $kendo-radio-invalid-bg: null !default;
97
- /// The text of invalid radio button.
94
+ $kendo-radio-invalid-bg: $kendo-checkbox-invalid-bg !default;
95
+ /// Color of invalid radio button.
98
96
  /// @group radio
99
- $kendo-radio-invalid-text: $invalid-text !default;
100
- /// The border of invalid radio button.
97
+ $kendo-radio-invalid-text: $kendo-checkbox-invalid-text !default;
98
+ /// Border color of invalid radio button.
101
99
  /// @group radio
102
- $kendo-radio-invalid-border: $invalid-border !default;
100
+ $kendo-radio-invalid-border: $kendo-checkbox-invalid-border !default;
103
101
 
104
102
 
105
103
  // Radio indicator
106
104
 
107
- /// The icon type of radio button.
105
+ /// Type of radio button indicator.
108
106
  /// @group radio
109
- $kendo-radio-icon-type: marker !default;
107
+ $kendo-radio-indicator-type: image !default;
110
108
 
111
- /// The glyph font family of radio button.
109
+ /// Glyph font family of radio button indicator.
112
110
  /// @group radio
113
111
  $kendo-radio-glyph-font-family: "WebComponentsIcons", monospace !default;
114
- /// The glyph size of radio button.
115
- /// @group radio
116
- $kendo-radio-glyph-size: 12px !default;
117
- /// The checked glyph of radio button.
112
+ /// Glyph of radio button indicator.
118
113
  /// @group radio
119
114
  $kendo-radio-checked-glyph: "\e308" !default;
120
115
 
121
- /// The checked image of radio button.
116
+ /// Image of checked radio button indicator.
122
117
  /// @group radio
123
- $kendo-radio-checked-image: null !default;
118
+ $kendo-radio-checked-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><circle cx='50%' cy='50%' r='4' fill='#{$kendo-radio-checked-text}'/></svg>") ) !default;
119
+ /// Image of disabled and checked radio button indicator.
120
+ /// @group radio
121
+ $kendo-radio-disabled-checked-image: null !default;
124
122
 
125
123
 
126
124
  // Radio label
@@ -132,39 +130,22 @@ $kendo-radio-label-margin-x: map-get( $spacing, 1 ) !default;
132
130
 
133
131
  // Radio list
134
132
 
135
- /// The list margin of radio button.
136
- /// @group radio
137
- $kendo-radio-list-margin: 0px !default;
138
- /// The list padding of radio button.
133
+ /// Spacing between items of horizontal radio button list.
139
134
  /// @group radio
140
- $kendo-radio-list-padding: 0px !default;
141
- /// The horizontal list item padding of radio button.
135
+ $kendo-radio-list-spacing: map-get( $spacing, 4 ) !default;
136
+ /// Horizontal padding of radio button list items.
142
137
  /// @group radio
143
138
  $kendo-radio-list-item-padding-x: 0px !default;
144
- /// The vertical list item padding of radio button.
139
+ /// Vertical padding of radio button list items.
145
140
  /// @group radio
146
141
  $kendo-radio-list-item-padding-y: $kendo-list-item-padding-y-md !default;
147
- /// The horizontal list item margin of radio button.
148
- /// @group radio
149
- $kendo-radio-list-horizontal-item-margin-x: 32px !default;
150
142
 
151
143
 
152
144
  // Radio ripple
153
145
 
154
- /// The ripple size of radio.
155
- /// @group radio
156
- $kendo-radio-ripple-size: (
157
- sm: (map-get( $kendo-radio-sizes, "sm" ) * 3),
158
- md: (map-get( $kendo-radio-sizes, "md" ) * 3),
159
- lg: (map-get( $kendo-radio-sizes, "lg" ) * 3)
160
- ) !default;
161
- /// The ripple margin of radio button.
146
+ /// Background color of radio button ripple.
162
147
  /// @group radio
163
- $kendo-radio-ripple-margin: (
164
- sm: calc(-1 * (#{map-get( $kendo-radio-sizes, "sm" )} + 2 * #{$kendo-radio-border-width})),
165
- md: calc(-1 * (#{map-get( $kendo-radio-sizes, "md" )} + 2 * #{$kendo-radio-border-width})),
166
- lg: calc(-1 * (#{map-get( $kendo-radio-sizes, "lg" )} + 2 * #{$kendo-radio-border-width}))
167
- ) !default;
168
- /// The ripple opacity of radio button.
148
+ $kendo-radio-ripple-bg: $kendo-radio-checked-bg !default;
149
+ /// Opacity of radio button ripple.
169
150
  /// @group radio
170
- $kendo-radio-ripple-opacity: .3 !default;
151
+ $kendo-radio-ripple-opacity: .25 !default;
@@ -3,9 +3,6 @@
3
3
  /// Font family of the switch.
4
4
  /// @group switch
5
5
  $kendo-switch-font-family: null !default;
6
- /// Line height of the switch.
7
- /// @group switch
8
- $kendo-switch-line-height: null !default;
9
6
 
10
7
  /// Border width of the switch track.
11
8
  /// @group switch
@@ -17,17 +14,17 @@ $kendo-switch-thumb-border-width: 1px !default;
17
14
 
18
15
  /// Text transform of the switch label.
19
16
  /// @group switch
20
- $kendo-switch-label-text-transform: null !default;
17
+ $kendo-switch-label-text-transform: uppercase !default;
21
18
  /// Display of the switch label.
22
19
  /// @group switch
23
- $kendo-switch-label-display: none !default;
20
+ $kendo-switch-label-display: inline !default;
24
21
 
25
22
  /// Map with the different switch sizes.
26
23
  /// @group switch
27
24
  $kendo-switch-sizes: (
28
- sm: ( font-size: 8px, track-width: 40px, track-height: 20px, thumb-width: 20px, thumb-height: 20px, thumb-offset: 0px, label-offset: 5px ),
29
- md: ( font-size: 10px, track-width: 60px, track-height: 30px, thumb-width: 30px, thumb-height: 30px, thumb-offset: 0px, label-offset: 8px ),
30
- lg: ( font-size: 12px, track-width: 80px, track-height: 40px, thumb-width: 40px, thumb-height: 40px, thumb-offset: 0px, label-offset: 10px )
25
+ sm: ( font-size: 12px, track-width: 48px, track-height: 26px, thumb-width: 20px, thumb-height: 20px, thumb-offset: 3px, label-offset: 4px ),
26
+ md: ( font-size: 12px, track-width: 56px, track-height: 30px, thumb-width: 24px, thumb-height: 24px, thumb-offset: 3px, label-offset: 6px ),
27
+ lg: ( font-size: 12px, track-width: 64px, track-height: 34px, thumb-width: 28px, thumb-height: 28px, thumb-offset: 3px, label-offset: 8px )
31
28
  ) !default;
32
29
 
33
30
  /// The background of the track when the switch is not checked.
@@ -70,7 +67,7 @@ $kendo-switch-off-track-focus-border: null !default;
70
67
  $kendo-switch-off-track-focus-gradient: null !default;
71
68
  /// The ring around the track when the focused switch is not checked.
72
69
  /// @group switch
73
- $kendo-switch-off-track-focus-ring: 2px solid rgba( $kendo-switch-off-track-border, .5 ) !default;
70
+ $kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if($dark-theme, $white, $black), .25 ) !default;
74
71
 
75
72
  /// The background of the track when the disabled switch is not checked.
76
73
  /// @group switch
@@ -87,26 +84,26 @@ $kendo-switch-off-track-disabled-gradient: null !default;
87
84
 
88
85
  /// The background of the thumb when the switch is not checked.
89
86
  /// @group switch
90
- $kendo-switch-off-thumb-bg: $base-bg !default;
87
+ $kendo-switch-off-thumb-bg: try-shade( $kendo-switch-off-track-bg ) !default;
91
88
  /// The text color of the thumb when the switch is not checked.
92
89
  /// @group switch
93
- $kendo-switch-off-thumb-text: $base-text !default;
90
+ $kendo-switch-off-thumb-text: null !default;
94
91
  /// The border color of the thumb when the switch is not checked.
95
92
  /// @group switch
96
- $kendo-switch-off-thumb-border: $base-border !default;
93
+ $kendo-switch-off-thumb-border: $kendo-switch-off-track-border !default;
97
94
  /// The background gradient of the thumb when the switch is not checked.
98
95
  /// @group switch
99
- $kendo-switch-off-thumb-gradient: null !default;
96
+ $kendo-switch-off-thumb-gradient: $base-gradient !default;
100
97
 
101
98
  /// The background of the thumb when the hovered switch is not checked.
102
99
  /// @group switch
103
- $kendo-switch-off-thumb-hover-bg: null !default;
100
+ $kendo-switch-off-thumb-hover-bg: try-shade( $kendo-switch-off-thumb-bg ) !default;
104
101
  /// The text color of the thumb when the hovered switch is not checked.
105
102
  /// @group switch
106
103
  $kendo-switch-off-thumb-hover-text: null !default;
107
104
  /// The border color of the thumb when the hovered switch is not checked.
108
105
  /// @group switch
109
- $kendo-switch-off-thumb-hover-border: null !default;
106
+ $kendo-switch-off-thumb-hover-border: $kendo-switch-off-thumb-border !default;
110
107
  /// The background gradient of the thumb when the hovered switch is not checked.
111
108
  /// @group switch
112
109
  $kendo-switch-off-thumb-hover-gradient: null !default;
@@ -114,13 +111,13 @@ $kendo-switch-off-thumb-hover-gradient: null !default;
114
111
 
115
112
  /// The background of the track when the switch is checked.
116
113
  /// @group switch
117
- $kendo-switch-on-track-bg: $primary !default;
114
+ $kendo-switch-on-track-bg: $component-bg !default;
118
115
  /// The text color of the track when the switch is checked.
119
116
  /// @group switch
120
- $kendo-switch-on-track-text: contrast-wcag( $kendo-switch-on-track-bg ) !default;
117
+ $kendo-switch-on-track-text: $primary !default;
121
118
  /// The border color of the track when the switch is checked.
122
119
  /// @group switch
123
- $kendo-switch-on-track-border: $kendo-switch-on-track-bg !default;
120
+ $kendo-switch-on-track-border: $component-border !default;
124
121
  /// The background gradient of the track when the switch is checked.
125
122
  /// @group switch
126
123
  $kendo-switch-on-track-gradient: null !default;
@@ -152,7 +149,7 @@ $kendo-switch-on-track-focus-border: null !default;
152
149
  $kendo-switch-on-track-focus-gradient: null !default;
153
150
  /// The ring around the track wen the focused switch is checked.
154
151
  /// @group switch
155
- $kendo-switch-on-track-focus-ring: 2px solid rgba( $kendo-switch-on-track-border, .25 ) !default;
152
+ $kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if($dark-theme, $white, $black), .25 ) !default;
156
153
 
157
154
  /// The background of the track when the disabled switch is checked.
158
155
  /// @group switch
@@ -169,26 +166,26 @@ $kendo-switch-on-track-disabled-gradient: null !default;
169
166
 
170
167
  /// The background of the thumb when the switch is checked.
171
168
  /// @group switch
172
- $kendo-switch-on-thumb-bg: $base-bg !default;
169
+ $kendo-switch-on-thumb-bg: $primary !default;
173
170
  /// The text color of the thumb when the switch is checked.
174
171
  /// @group switch
175
- $kendo-switch-on-thumb-text: $base-text !default;
172
+ $kendo-switch-on-thumb-text: null !default;
176
173
  /// The border color of the thumb when the switch is checked.
177
174
  /// @group switch
178
- $kendo-switch-on-thumb-border: $base-border !default;
175
+ $kendo-switch-on-thumb-border: try-shade( $kendo-switch-on-thumb-bg ) !default;
179
176
  /// The background gradient of the thumb when the switch is checked.
180
177
  /// @group switch
181
- $kendo-switch-on-thumb-gradient: null !default;
178
+ $kendo-switch-on-thumb-gradient: $base-gradient !default;
182
179
 
183
180
  /// The background of the thumb when the hovered switch is checked.
184
181
  /// @group switch
185
- $kendo-switch-on-thumb-hover-bg: null !default;
182
+ $kendo-switch-on-thumb-hover-bg: try-shade( $kendo-switch-on-thumb-bg ) !default;
186
183
  /// The text color of the thumb when the hovered switch is checked.
187
184
  /// @group switch
188
185
  $kendo-switch-on-thumb-hover-text: null !default;
189
186
  /// The border color of the thumb when the hovered switch is checked.
190
187
  /// @group switch
191
- $kendo-switch-on-thumb-hover-border: null !default;
188
+ $kendo-switch-on-thumb-hover-border: try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
192
189
  /// The background gradient of the thumb when the hovered switch is checked.
193
190
  /// @group switch
194
191
  $kendo-switch-on-thumb-hover-gradient: null !default;
@@ -30,22 +30,22 @@ $kendo-table-cell-padding-y: null !default;
30
30
  /// @group table
31
31
  $kendo-table-sizes: (
32
32
  sm: (
33
- font-size: $font-size,
34
- line-height: $line-height,
35
- cell-padding-y: map-get( $spacing, 1 ),
36
- cell-padding-x: map-get( $spacing, 1 )
33
+ font-size: $font-size-md,
34
+ line-height: $line-height-md,
35
+ cell-padding-x: map-get( $spacing, 2 ),
36
+ cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
37
37
  ),
38
38
  md: (
39
- font-size: $font-size,
40
- line-height: $line-height,
41
- cell-padding-y: map-get( $spacing, 2 ),
42
- cell-padding-x: map-get( $spacing, 2 )
39
+ font-size: $font-size-md,
40
+ line-height: $line-height-md,
41
+ cell-padding-x: map-get( $spacing, 2 ),
42
+ cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
43
43
  ),
44
44
  lg: (
45
- font-size: $font-size,
46
- line-height: $line-height,
47
- cell-padding-y: map-get( $spacing, 3 ),
48
- cell-padding-x: map-get( $spacing, 3 )
45
+ font-size: $font-size-md,
46
+ line-height: $line-height-md,
47
+ cell-padding-x: map-get( $spacing, 2 ),
48
+ cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
49
49
  )
50
50
  ) !default;
51
51
 
@@ -85,13 +85,13 @@ $kendo-table-footer-border: $grid-footer-border !default;
85
85
 
86
86
  /// Background color of group rows in table.
87
87
  /// @group table
88
- $kendo-table-group-row-bg: $grid-grouping-row-bg !default;
88
+ $kendo-table-group-row-bg: $kendo-table-header-bg !default;
89
89
  /// Text color of group rows in table.
90
90
  /// @group table
91
- $kendo-table-group-row-text: $grid-grouping-row-text !default;
91
+ $kendo-table-group-row-text: $kendo-table-header-text !default;
92
92
  /// Border color of group rows in table.
93
93
  /// @group table
94
- $kendo-table-group-row-border: null !default;
94
+ $kendo-table-group-row-border: $kendo-table-header-border !default;
95
95
 
96
96
 
97
97
  /// Background color of alternating rows in table.
@@ -5,6 +5,7 @@
5
5
  @import "../common/_index.scss";
6
6
  @import "../button/_index.scss";
7
7
  @import "../popup/_index.scss";
8
+ @import "../menu/_index.scss";
8
9
  @import "../icons/_index.scss";
9
10
 
10
11
 
@@ -23,3 +23,5 @@ $toolbar-gradient: null !default;
23
23
  $toolbar-shadow: null !default;
24
24
 
25
25
  $toolbar-separator-border: inherit !default;
26
+
27
+ $toolbar-input-width: 10em !default;