@progress/kendo-theme-classic 6.4.0-dev.1 → 6.4.0-dev.3

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 (45) hide show
  1. package/dist/all.css +49 -103
  2. package/dist/all.scss +401 -245
  3. package/dist/meta/sassdoc-data.json +18181 -11845
  4. package/dist/meta/sassdoc-raw-data.json +9208 -6283
  5. package/dist/meta/variables.json +14 -58
  6. package/lib/swatches/classic-green-dark.json +1 -1
  7. package/lib/swatches/classic-green.json +1 -1
  8. package/lib/swatches/classic-lavender-dark.json +1 -1
  9. package/lib/swatches/classic-lavender.json +1 -1
  10. package/lib/swatches/classic-main-dark.json +1 -1
  11. package/lib/swatches/classic-main.json +1 -1
  12. package/lib/swatches/classic-metro-dark.json +1 -1
  13. package/lib/swatches/classic-metro.json +1 -1
  14. package/lib/swatches/classic-moonlight.json +1 -1
  15. package/lib/swatches/classic-opal-dark.json +1 -1
  16. package/lib/swatches/classic-opal.json +1 -1
  17. package/lib/swatches/classic-silver-dark.json +1 -1
  18. package/lib/swatches/classic-silver.json +1 -1
  19. package/lib/swatches/classic-uniform.json +1 -1
  20. package/package.json +7 -6
  21. package/scss/action-sheet/_variables.scss +0 -2
  22. package/scss/avatar/_variables.scss +6 -6
  23. package/scss/badge/_variables.scss +38 -8
  24. package/scss/bottom-navigation/_variables.scss +0 -1
  25. package/scss/breadcrumb/_variables.scss +0 -2
  26. package/scss/button/_variables.scss +4 -4
  27. package/scss/drawer/_variables.scss +1 -2
  28. package/scss/dropdowntree/_variables.scss +5 -0
  29. package/scss/dropzone/_variables.scss +0 -1
  30. package/scss/fab/_variables.scss +40 -28
  31. package/scss/filemanager/_variables.scss +0 -2
  32. package/scss/floating-label/_variables.scss +31 -0
  33. package/scss/forms/_variables.scss +90 -4
  34. package/scss/grid/_variables.scss +3 -3
  35. package/scss/list/_variables.scss +8 -0
  36. package/scss/map/_variables.scss +0 -1
  37. package/scss/menu-button/_variables.scss +1 -1
  38. package/scss/pager/_variables.scss +57 -33
  39. package/scss/pdf-viewer/_variables.scss +0 -1
  40. package/scss/rating/_variables.scss +0 -2
  41. package/scss/scrollview/_variables.scss +0 -1
  42. package/scss/splitter/_variables.scss +1 -2
  43. package/scss/toolbar/_variables.scss +35 -17
  44. package/scss/treeview/_variables.scss +56 -32
  45. package/scss/upload/_variables.scss +0 -2
@@ -6,72 +6,158 @@
6
6
 
7
7
  // Forms
8
8
 
9
+ /// The padding of the inline Form.
10
+ /// @group form
9
11
  $kendo-form-spacer: $kendo-padding-md-x * 2 !default;
10
12
 
13
+ /// The font size of the Form.
14
+ /// @group form
11
15
  $kendo-form-font-size: $kendo-font-size-md !default;
16
+ /// The line height of the Form.
17
+ /// @group form
12
18
  $kendo-form-line-height: $kendo-line-height-md !default;
19
+ /// The line height of the Form in em units.
20
+ /// @group form
13
21
  $kendo-form-line-height-em: calc( #{$kendo-form-line-height} * 1em ) !default;
22
+ /// The line height of the small Form.
23
+ /// @group form
14
24
  $kendo-form-sm-line-height: $kendo-line-height-sm !default;
25
+ /// The line height of the large Form.
26
+ /// @group form
15
27
  $kendo-form-lg-line-height: $kendo-line-height-lg !default;
16
28
 
29
+ /// The margin of the Form fieldset.
30
+ /// @group form
17
31
  $kendo-form-fieldset-margin: 2em 0 0 !default;
32
+ /// The padding of the Form fieldset.
33
+ /// @group form
18
34
  $kendo-form-fieldset-padding: 0px !default;
19
35
 
36
+ /// The margin of the Form legend.
37
+ /// @group form
20
38
  $kendo-form-legend-margin: 0 0 1em !default;
39
+ /// The padding of the Form legend.
40
+ /// @group form
21
41
  $kendo-form-legend-padding: 0px !default;
42
+ /// The border width of the Form legend.
43
+ /// @group form
22
44
  $kendo-form-legend-border-width: 0 0 2px !default;
45
+ /// The border style of the Form legend.
46
+ /// @group form
23
47
  $kendo-form-legend-border-style: solid !default;
48
+ /// The border color of the Form legend.
49
+ /// @group form
24
50
  $kendo-form-legend-border-color: $kendo-component-border !default;
51
+ /// The width of the Form legend.
52
+ /// @group form
25
53
  $kendo-form-legend-width: 100% !default;
54
+ /// The font size of the Form legend.
55
+ /// @group form
26
56
  $kendo-form-legend-font-size: 14px !default;
57
+ /// The text capitalization of the Form legend.
58
+ /// @group form
27
59
  $kendo-form-legend-text-transform: uppercase !default;
28
60
 
61
+ /// The bottom margin of the Form label.
62
+ /// @group form
29
63
  $kendo-form-label-margin-bottom: 0px !default;
30
64
 
65
+ /// The horizontal margin of the Form buttons.
66
+ /// @group form
31
67
  $kendo-form-button-margin-x: 8px !default;
32
68
 
69
+ /// The font size of the Form hint.
70
+ /// @group form
33
71
  $kendo-form-hint-font-size: 12px !default;
72
+ /// The font style of the Form hint.
73
+ /// @group form
34
74
  $kendo-form-hint-font-style: italic !default;
75
+ /// The top margin of the Form hint.
76
+ /// @group form
35
77
  $kendo-form-hint-margin-top: 4px !default;
36
78
 
79
+ /// The row spacing of the small Form.
80
+ /// @group form
37
81
  $kendo-form-sm-rows-spacing: 1em !default;
82
+ /// The row spacing of the medium Form.
83
+ /// @group form
38
84
  $kendo-form-md-rows-spacing: $kendo-form-sm-rows-spacing !default;
85
+ /// The row spacing of the large Form.
86
+ /// @group form
39
87
  $kendo-form-lg-rows-spacing: $kendo-form-sm-rows-spacing !default;
40
88
 
89
+ /// The margin of the Form separator.
90
+ /// @group form
41
91
  $kendo-form-separator-margin: $kendo-form-md-rows-spacing 0 0 !default;
92
+ /// The border color of the Form separator.
93
+ /// @group form
42
94
  $kendo-form-separator-border-color: $kendo-form-legend-border-color !default;
43
95
 
96
+ /// The top padding of the label in the horizontal Form.
97
+ /// @group form
44
98
  $kendo-horizontal-form-label-padding-top: 5px !default;
99
+ /// The horizontal margin of the label in the horizontal Form.
100
+ /// @group form
45
101
  $kendo-horizontal-form-label-margin-x: 10px !default;
102
+ /// The width of the label in the horizontal Form.
103
+ /// @group form
46
104
  $kendo-horizontal-form-label-width: 25% !default;
105
+ /// The horizontal alignment of the label in the horizontal Form.
106
+ /// @group form
47
107
  $kendo-horizontal-form-label-align: flex-end !default;
48
108
 
109
+ /// The maximum width of the field wrap in the horizontal Form.
110
+ /// @group form
49
111
  $kendo-horizontal-form-field-wrap-max-width: calc( ( 100% - #{$kendo-horizontal-form-label-width} ) - #{$kendo-horizontal-form-label-margin-x} ) !default;
50
112
 
113
+ /// The width of the inline Form element.
114
+ /// @group form
51
115
  $kendo-inline-form-element-width: 25% !default;
52
116
 
117
+ /// The invalid text color of the Form.
118
+ /// @group form
53
119
  $kendo-forms-invalid-color: $kendo-color-error !default;
54
120
 
55
121
 
56
- // Label
122
+ /// The horizontal margin of the optional label in the Form.
123
+ /// @group form
57
124
  $kendo-label-optional-margin-x: 6px !default;
125
+ /// The font size of the optional label in the Form.
126
+ /// @group form
58
127
  $kendo-label-optional-font-size: 12px !default;
128
+ /// The font style of the optional label in the Form.
129
+ /// @group form
59
130
  $kendo-label-optional-font-style: italic !default;
60
131
 
61
132
 
62
- // Fieldset
133
+ /// The margin of the Form fieldset.
134
+ /// @group form
63
135
  $kendo-fieldset-margin: 30px !default;
136
+ /// The font size of the Form fieldset.
137
+ /// @group form
64
138
  $kendo-fieldset-font-size: $kendo-h4-font-size !default;
65
-
139
+ /// The background color of the Form fieldset.
140
+ /// @group form
66
141
  $kendo-fieldset-bg: null !default;
142
+ //// The text color of the Form fieldset.
143
+ /// @group form
67
144
  $kendo-fieldset-text: null !default;
145
+ /// The border color of the Form fieldset.
146
+ /// @group form
68
147
  $kendo-fieldset-border: null !default;
69
148
 
149
+ /// The background color of the Form legend.
150
+ /// @group form
70
151
  $kendo-fieldset-legend-bg: null !default;
152
+ /// The text color of the Form legend.
153
+ /// @group form
71
154
  $kendo-fieldset-legend-text: k-try-shade( $kendo-body-text, 2 ) !default;
155
+ /// The border color of the Form legend.
156
+ /// @group form
72
157
  $kendo-fieldset-legend-border: null !default;
73
158
 
74
- // Sizes
159
+ /// The sizes map for the Form.
160
+ /// @group form
75
161
  $kendo-form-sizes: (
76
162
  sm: (
77
163
  form-rows-spacing: $kendo-form-sm-rows-spacing
@@ -258,11 +258,11 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
258
258
  $kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
259
259
  $kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
260
260
 
261
- $kendo-grid-sticky-selected-bg: $kendo-grid-selected-bg !default;
262
- $kendo-grid-sticky-selected-alt-bg: k-try-shade( $kendo-grid-selected-bg, .5 ) !default;
261
+ $kendo-grid-sticky-selected-bg: k-color-mix($kendo-selected-bg, #ffffff, 25%) !default;
262
+ $kendo-grid-sticky-selected-alt-bg: k-try-shade( $kendo-grid-sticky-selected-bg, .5 ) !default;
263
263
 
264
264
  $kendo-grid-sticky-hover-bg: $kendo-grid-hover-bg !default;
265
- $kendo-grid-sticky-selected-hover-bg: k-try-shade( $kendo-grid-selected-bg, 1 ) !default;
265
+ $kendo-grid-sticky-selected-hover-bg: k-try-shade( $kendo-grid-sticky-selected-bg, 1 ) !default;
266
266
 
267
267
  $kendo-grid-column-menu-width: 230px !default;
268
268
 
@@ -1,5 +1,9 @@
1
1
  // List
2
2
 
3
+ /// The font family of the List components.
4
+ /// @group list
5
+ $kendo-list-font-family: $kendo-font-family !default;
6
+
3
7
  /// The font size of the List component, if no size is set.
4
8
  /// @group list
5
9
  $kendo-list-font-size: null !default;
@@ -241,3 +245,7 @@ $kendo-list-group-item-shadow: null !default;
241
245
  /// The color of the 'No Data' text.
242
246
  /// @group list
243
247
  $kendo-list-no-data-text: $kendo-subtle-text !default;
248
+
249
+ /// The color of the 'Option Label' text.
250
+ /// @group list
251
+ $kendo-list-option-label-text: $kendo-subtle-text !default;
@@ -27,5 +27,4 @@ $kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
27
27
  $kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
28
28
  $kendo-map-attribution-bg: rgba( $kendo-map-bg, .8 ) !default;
29
29
 
30
- $kendo-map-marker-size: $kendo-icon-size-xxl !default;
31
30
  $kendo-map-marker-fill: $kendo-color-primary !default;
@@ -1,5 +1,5 @@
1
1
  // Menu-button
2
2
 
3
- /// Horizontal padding of the arrow button.
3
+ /// The horizontal padding of the button arrow in the Menu Button.
4
4
  /// @group menu-button
5
5
  $kendo-menu-button-arrow-padding-x: $kendo-button-padding-y !default;
@@ -3,126 +3,150 @@
3
3
 
4
4
  // Pager
5
5
 
6
- /// Horizontal padding of the pager according to the pager size.
6
+ /// The horizontal padding of the Pager.
7
7
  /// @group pager
8
8
  $kendo-pager-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
9
+ /// The horizontal padding of the small Pager.
10
+ /// @group pager
9
11
  $kendo-pager-sm-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
12
+ /// The horizontal padding of the medium Pager.
13
+ /// @group pager
10
14
  $kendo-pager-md-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
15
+ /// The horizontal padding of the large Pager.
16
+ /// @group pager
11
17
  $kendo-pager-lg-padding-x: k-map-get( $kendo-spacing, 2.5 ) !default;
12
- /// Vertical padding of the pager according to the pager size.
18
+ /// The vertical padding of the Pager.
13
19
  /// @group pager
14
20
  $kendo-pager-padding-y: $kendo-pager-padding-x !default;
21
+ /// The vertical padding of the small Pager.
22
+ /// @group pager
15
23
  $kendo-pager-sm-padding-y: $kendo-pager-sm-padding-x !default;
24
+ /// The vertical padding of the medium Pager.
25
+ /// @group pager
16
26
  $kendo-pager-md-padding-y: $kendo-pager-md-padding-x !default;
27
+ /// The vertical padding of the large Pager.
28
+ /// @group pager
17
29
  $kendo-pager-lg-padding-y: $kendo-pager-lg-padding-x !default;
18
30
 
19
- /// Minimum width of the pager items according to the pager size.
31
+ /// The minimum width of the items in the small Pager.
20
32
  /// @group pager
21
33
  $kendo-pager-sm-item-min-width: $kendo-button-sm-calc-size !default;
34
+ /// The minimum width of the items in the medium Pagers.
35
+ /// @group pager
22
36
  $kendo-pager-md-item-min-width: $kendo-button-md-calc-size !default;
37
+ /// The minimum width of the items in the large Pagers.
38
+ /// @group pager
23
39
  $kendo-pager-lg-item-min-width: $kendo-button-lg-calc-size !default;
24
40
 
25
- /// Margin between pager item groups according to the pager size.
41
+ /// The margin between the item groups in the small Pager..
26
42
  /// @group pager
27
43
  $kendo-pager-sm-item-group-spacing: k-map-get( $kendo-spacing, 3 ) !default;
44
+ /// The margin between the item groups in the medium Pager.
45
+ /// @group pager
28
46
  $kendo-pager-md-item-group-spacing: k-map-get( $kendo-spacing, 3.5 ) !default;
47
+ /// The margin between the item groups in the large Pager.
48
+ /// @group pager
29
49
  $kendo-pager-lg-item-group-spacing: k-map-get( $kendo-spacing, 4 ) !default;
30
50
 
31
- /// Border width of the pager.
51
+ /// The border width of the Pager.
32
52
  /// @group pager
33
53
  $kendo-pager-border-width: 1px !default;
34
- /// Font family of the pager.
54
+ /// The font family of the Pager.
35
55
  /// @group pager
36
56
  $kendo-pager-font-family: $kendo-font-family !default;
37
- /// Font size of the pager.
57
+ /// The font size of the Pager.
38
58
  /// @group pager
39
59
  $kendo-pager-font-size: $kendo-font-size-md !default;
40
- /// Line height of the pager.
60
+ /// The line height of the Pager.
41
61
  /// @group pager
42
62
  $kendo-pager-line-height: $kendo-line-height-md !default;
43
- /// Background color of the pager.
63
+ /// The background color of the Pager.
44
64
  /// @group pager
45
65
  $kendo-pager-bg: $kendo-component-header-bg !default;
46
- /// Text color of the pager.
66
+ /// The text color of the Pager.
47
67
  /// @group pager
48
68
  $kendo-pager-text: $kendo-component-header-text !default;
49
- /// Border color of the pager.
69
+ /// The border color of the Pager.
50
70
  /// @group pager
51
71
  $kendo-pager-border: $kendo-component-border !default;
52
72
 
53
- /// Background color of the focused pager.
73
+ /// The background color of the focused Pager.
54
74
  /// @group pager
55
75
  $kendo-pager-focus-bg: null !default;
56
- /// Box shadow of the focused pager.
76
+ /// The box shadow of the focused Pager.
57
77
  /// @group pager
58
78
  $kendo-pager-focus-shadow: $kendo-focus-shadow !default;
59
79
 
60
- /// Spacing between the pager sections.
80
+ /// The spacing between the Pager sections.
61
81
  /// @group pager
62
82
  $kendo-pager-section-spacing: k-map-get( $kendo-spacing, 4 ) !default;
63
83
 
64
- /// Border width of the pager items.
84
+ /// The border width of the Pager items.
65
85
  /// @group pager
66
86
  $kendo-pager-item-border-width: 0px !default;
67
- /// Border radius of the pager items.
87
+ /// The border radius of the Pager items.
68
88
  /// @group pager
69
89
  $kendo-pager-item-border-radius: null !default;
70
- /// Spacing around the pager items.
90
+ /// The spacing around the Pager items.
71
91
  /// @group pager
72
92
  $kendo-pager-item-spacing: null !default;
73
- /// Background color of the pager items.
93
+ /// The background color of the Pager items.
74
94
  /// @group pager
75
95
  $kendo-pager-item-bg: null !default;
76
- /// Text color of the pager items.
96
+ /// The text color of the Pager items.
77
97
  /// @group pager
78
98
  $kendo-pager-item-text: null !default;
79
- /// Border color of the pager items.
99
+ /// The border color of the Pager items.
80
100
  /// @group pager
81
101
  $kendo-pager-item-border: null !default;
82
102
 
83
- /// Background color of the hovered pager items.
103
+ /// The background color of the hovered Pager items.
84
104
  /// @group pager
85
105
  $kendo-pager-item-hover-bg: $kendo-list-item-hover-bg !default;
86
- /// Text color of the hovered pager items.
106
+ /// The text color of the hovered Pager items.
87
107
  /// @group pager
88
108
  $kendo-pager-item-hover-text: $kendo-list-item-hover-text !default;
89
- /// Border color of the hovered pager items.
109
+ /// The border color of the hovered Pager items.
90
110
  /// @group pager
91
111
  $kendo-pager-item-hover-border: null !default;
92
- /// Background color of the selected pager items.
112
+ /// The background color of the selected Pager items.
93
113
  /// @group pager
94
114
  $kendo-pager-item-selected-bg: $kendo-list-item-selected-bg !default;
95
- /// Text color of the selected pager items.
115
+ /// The text color of the selected Pager items.
96
116
  /// @group pager
97
117
  $kendo-pager-item-selected-text: $kendo-list-item-selected-text !default;
98
- /// Border color of the selected pager items.
118
+ /// The border color of the selected Pager items.
99
119
  /// @group pager
100
120
  $kendo-pager-item-selected-border: null !default;
101
- /// Opacity of the focused pager items.
121
+ /// The opacity of the focused Pager items.
102
122
  /// @group pager
103
123
  $kendo-pager-item-focus-opacity: null !default;
104
- /// Background color of the focused pager items.
124
+ /// The background color of the focused Pager items.
105
125
  /// @group pager
106
126
  $kendo-pager-item-focus-bg: transparent !default;
107
- /// Box shadow of the focused pager items.
127
+ /// The box shadow of the focused Pager items.
108
128
  /// @group pager
109
129
  $kendo-pager-item-focus-shadow: $kendo-list-item-focus-shadow !default;
110
130
 
111
- /// Border radius of the pager numbers.
131
+ /// The border radius of the Pager numbers.
112
132
  /// @group pager
113
133
  $kendo-pager-number-border-radius: null !default;
114
134
 
115
- /// Width of the pager inputs.
135
+ /// The width of the Inputs in the Pager.
116
136
  /// @group pager
117
137
  $kendo-pager-input-width: 5em !default;
118
138
 
119
- /// Width of the pager dropdowns according to the pager size.
139
+ /// The width of the DropDowns in the small Pager.
120
140
  /// @group pager
121
141
  $kendo-pager-sm-dropdown-width: 5em !default;
142
+ /// The width of the DropDowns in the medium Pager.
143
+ /// @group pager
122
144
  $kendo-pager-md-dropdown-width: 5em !default;
145
+ /// The width of the DropDowns in the large Pager.
146
+ /// @group pager
123
147
  $kendo-pager-lg-dropdown-width: 5em !default;
124
148
 
125
- /// Sizes map of the pager.
149
+ /// The sizes map of the Pager.
126
150
  /// @group pager
127
151
  $kendo-pager-sizes: (
128
152
  sm: (
@@ -43,4 +43,3 @@ $kendo-pdf-viewer-search-highlight-bg: $kendo-body-text !default;
43
43
  $kendo-pdf-viewer-search-highlight-mark-bg: yellow !default;
44
44
 
45
45
  $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
46
- $kendo-pdf-viewer-icon-size: calc( #{$kendo-icon-size} * 3 ) !default;
@@ -13,8 +13,6 @@ $kendo-rating-label-margin-x: $kendo-padding-md-x !default;
13
13
  $kendo-rating-label-margin-y: $kendo-padding-md-y !default;
14
14
  $kendo-rating-label-line-height: $kendo-line-height-lg !default;
15
15
 
16
- $kendo-rating-icon-size: ($kendo-icon-size * 1.5) !default;
17
-
18
16
  $kendo-rating-icon-text: $kendo-component-text !default;
19
17
  $kendo-rating-icon-selected-text: $kendo-selected-bg !default;
20
18
  $kendo-rating-icon-hover-text: $kendo-selected-bg !default;
@@ -24,7 +24,6 @@ $kendo-scrollview-pager-multidot-threshold: 10 !default;
24
24
  $kendo-scrollview-pager-multidot-intermediate: 3 !default;
25
25
  $kendo-scrollview-pager-multidot-step: 1px !default;
26
26
 
27
- $kendo-scrollview-arrow-icon-size: 4.5em !default;
28
27
  $kendo-scrollview-arrow-tap-highlight-color: $kendo-color-rgba-transparent !default;
29
28
  $kendo-scrollview-navigation-color: white !default;
30
29
  $kendo-scrollview-navigation-icon-shadow: rgba( black, .3 ) 0 0 15px !default;
@@ -8,8 +8,7 @@ $kendo-splitter-bg: $kendo-component-bg !default;
8
8
  $kendo-splitter-text: $kendo-component-text !default;
9
9
  $kendo-splitter-border: $kendo-component-border !default;
10
10
 
11
- $kendo-splitter-splitbar-size: 8px !default;
12
- $kendo-splitter-resize-icon-size: 10px !default;
11
+ $kendo-splitter-splitbar-size: k-map-get( $kendo-spacing, 3 ) !default;
13
12
  $kendo-splitter-drag-handle-length: 20px !default;
14
13
  $kendo-splitter-drag-handle-thickness: 2px !default;
15
14
  $kendo-splitter-drag-icon-margin: 7px !default;
@@ -1,72 +1,90 @@
1
1
  // Toolbar
2
2
 
3
- /// The horizontal padding of the toolbar.
3
+ /// The horizontal padding of the Toolbar.
4
4
  /// @group toolbar
5
5
  $kendo-toolbar-padding-x: null !default;
6
+ /// The horizontal padding of the small Toolbar.
7
+ /// @group toolbar
6
8
  $kendo-toolbar-sm-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
9
+ /// The horizontal padding of the medium Toolbar.
10
+ /// @group toolbar
7
11
  $kendo-toolbar-md-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
12
+ /// The horizontal padding of the large Toolbar.
13
+ /// @group toolbar
8
14
  $kendo-toolbar-lg-padding-x: k-map-get( $kendo-spacing, 2.5 ) !default;
9
15
 
10
- /// The vertical padding of the toolbar.
16
+ /// The vertical padding of the Toolbar.
11
17
  /// @group toolbar
12
18
  $kendo-toolbar-padding-y: null !default;
19
+ /// The vertical padding of the small Toolbar.
20
+ /// @group toolbar
13
21
  $kendo-toolbar-sm-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
22
+ /// The vertical padding of the medium Toolbar.
23
+ /// @group toolbar
14
24
  $kendo-toolbar-md-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
25
+ /// The vertical padding of the large Toolbar.
26
+ /// @group toolbar
15
27
  $kendo-toolbar-lg-padding-y: k-map-get( $kendo-spacing, 2.5 ) !default;
16
28
 
17
- /// The spacing between the toolbar tools.
29
+ /// The spacing between the Toolbar tools.
18
30
  /// @group toolbar
19
31
  $kendo-toolbar-spacing: null !default;
32
+ /// The spacing between the tools of the small Toolbar.
33
+ /// @group toolbar
20
34
  $kendo-toolbar-sm-spacing: k-map-get( $kendo-spacing, 1.5 ) !default;
35
+ /// The spacing between the tools of the medium Toolbar.
36
+ /// @group toolbar
21
37
  $kendo-toolbar-md-spacing: k-map-get( $kendo-spacing, 2 ) !default;
38
+ /// The spacing between the tools of the large Toolbar.
39
+ /// @group toolbar
22
40
  $kendo-toolbar-lg-spacing: k-map-get( $kendo-spacing, 2.5 ) !default;
23
41
 
24
- /// Width of the border around the toolbar.
42
+ /// The width of the border around the Toolbar.
25
43
  /// @group toolbar
26
44
  $kendo-toolbar-border-width: 1px !default;
27
- /// Border radius of the toolbar.
45
+ /// The border radius of the Toolbar.
28
46
  /// @group toolbar
29
47
  $kendo-toolbar-border-radius: null !default;
30
48
 
31
- /// Font family of the toolbar.
49
+ /// The font family of the Toolbar.
32
50
  /// @group toolbar
33
51
  $kendo-toolbar-font-family: $kendo-font-family !default;
34
- /// Font size of the toolbar.
52
+ /// The font size of the Toolbar.
35
53
  /// @group toolbar
36
54
  $kendo-toolbar-font-size: $kendo-font-size-md !default;
37
- /// Line height of the toolbar.
55
+ /// The line height of the Toolbar.
38
56
  /// @group toolbar
39
57
  $kendo-toolbar-line-height: $kendo-line-height-md !default;
40
58
 
41
- /// Background color of the toolbar.
59
+ /// The background color of the Toolbar.
42
60
  /// @group toolbar
43
61
  $kendo-toolbar-bg: $kendo-button-bg !default;
44
- /// Text color of the toolbar.
62
+ /// The text color of the Toolbar.
45
63
  /// @group toolbar
46
64
  $kendo-toolbar-text: $kendo-button-text !default;
47
- /// Color of the border around the toolbar.
65
+ /// The color of the border around the Toolbar.
48
66
  /// @group toolbar
49
67
  $kendo-toolbar-border: $kendo-button-border !default;
50
- /// Gradient of the toolbar.
68
+ /// The gradient of the Toolbar.
51
69
  /// @group toolbar
52
70
  $kendo-toolbar-gradient: null !default;
53
- /// Box shadow of the toolbar.
71
+ /// The box shadow of the Toolbar.
54
72
  /// @group toolbar
55
73
  $kendo-toolbar-shadow: null !default;
56
74
 
57
- /// Color of the separator border of the toolbar.
75
+ /// The color of the separator border of the Toolbar.
58
76
  /// @group toolbar
59
77
  $kendo-toolbar-separator-border: inherit !default;
60
78
 
61
- /// The width of the input in the toolbar.
79
+ /// The width of the input in the Toolbar.
62
80
  /// @group toolbar
63
81
  $kendo-toolbar-input-width: 10em !default;
64
82
 
65
- /// Box shadow of the focused toolbar item.
83
+ /// The box shadow of the focused Toolbar item.
66
84
  /// @group toolbar
67
85
  $kendo-toolbar-item-shadow: $kendo-button-focus-shadow !default;
68
86
 
69
- /// Sizes map for the toolbar.
87
+ /// The sizes map for the Toolbar.
70
88
  /// @group toolbar
71
89
  $kendo-toolbar-sizes: (
72
90
  sm: (