@progress/kendo-theme-bootstrap 6.4.0-dev.0 → 6.4.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.
Files changed (46) hide show
  1. package/dist/all.css +211 -162
  2. package/dist/all.scss +617 -334
  3. package/dist/meta/sassdoc-data.json +20435 -14153
  4. package/dist/meta/sassdoc-raw-data.json +8998 -6098
  5. package/dist/meta/variables.json +25 -69
  6. package/lib/swatches/bootstrap-3-dark.json +1 -1
  7. package/lib/swatches/bootstrap-3.json +1 -1
  8. package/lib/swatches/bootstrap-4-dark.json +1 -1
  9. package/lib/swatches/bootstrap-4.json +1 -1
  10. package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
  11. package/lib/swatches/bootstrap-main-dark.json +1 -1
  12. package/lib/swatches/bootstrap-main.json +1 -1
  13. package/lib/swatches/bootstrap-nordic.json +1 -1
  14. package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
  15. package/lib/swatches/bootstrap-turquoise.json +1 -1
  16. package/lib/swatches/bootstrap-urban.json +1 -1
  17. package/lib/swatches/bootstrap-vintage.json +1 -1
  18. package/package.json +7 -6
  19. package/scss/action-sheet/_variables.scss +0 -2
  20. package/scss/avatar/_variables.scss +6 -6
  21. package/scss/badge/_variables.scss +38 -8
  22. package/scss/bottom-navigation/_variables.scss +0 -1
  23. package/scss/breadcrumb/_variables.scss +0 -2
  24. package/scss/button/_variables.scss +4 -4
  25. package/scss/drawer/_variables.scss +3 -2
  26. package/scss/dropdowntree/_variables.scss +5 -0
  27. package/scss/dropzone/_variables.scss +0 -1
  28. package/scss/fab/_theme.scss +5 -0
  29. package/scss/fab/_variables.scss +43 -37
  30. package/scss/filemanager/_variables.scss +0 -2
  31. package/scss/floating-label/_variables.scss +31 -0
  32. package/scss/forms/_variables.scss +91 -4
  33. package/scss/grid/_theme.scss +10 -10
  34. package/scss/input/_variables.scss +0 -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/scheduler/_layout.scss +1 -1
  42. package/scss/scrollview/_variables.scss +0 -1
  43. package/scss/splitter/_variables.scss +1 -2
  44. package/scss/toolbar/_variables.scss +35 -17
  45. package/scss/treeview/_variables.scss +56 -32
  46. package/scss/upload/_variables.scss +0 -2
@@ -5,72 +5,159 @@
5
5
 
6
6
 
7
7
  // Forms
8
+
9
+ /// The padding of the inline Form.
10
+ /// @group form
8
11
  $kendo-form-spacer: $kendo-padding-md-x * 2 !default;
9
12
 
13
+ /// The font size of the Form.
14
+ /// @group form
10
15
  $kendo-form-font-size: $kendo-font-size-md !default;
16
+ /// The line height of the Form.
17
+ /// @group form
11
18
  $kendo-form-line-height: $input-btn-line-height !default;
19
+ /// The line height of the Form in em units.
20
+ /// @group form
12
21
  $kendo-form-line-height-em: calc( #{$kendo-form-line-height} * 1em ) !default;
22
+ /// The line height of the small Form.
23
+ /// @group form
13
24
  $kendo-form-sm-line-height: $kendo-line-height-sm !default;
25
+ /// The line height of the large Form.
26
+ /// @group form
14
27
  $kendo-form-lg-line-height: $kendo-line-height-lg !default;
15
28
 
29
+ /// The margin of the Form fieldset.
30
+ /// @group form
16
31
  $kendo-form-fieldset-margin: 2rem 0 0 !default;
32
+ /// The padding of the Form fieldset.
33
+ /// @group form
17
34
  $kendo-form-fieldset-padding: 0px !default;
18
35
 
36
+ /// The margin of the Form legend.
37
+ /// @group form
19
38
  $kendo-form-legend-margin: 0 0 1rem !default;
39
+ /// The padding of the Form legend.
40
+ /// @group form
20
41
  $kendo-form-legend-padding: 0px !default;
42
+ /// The border width of the Form legend.
43
+ /// @group form
21
44
  $kendo-form-legend-border-width: 0 0 2px !default;
45
+ /// The border style of the Form legend.
46
+ /// @group form
22
47
  $kendo-form-legend-border-style: solid !default;
48
+ /// The border color of the Form legend.
49
+ /// @group form
23
50
  $kendo-form-legend-border-color: $kendo-component-border !default;
51
+ /// The width of the Form legend.
52
+ /// @group form
24
53
  $kendo-form-legend-width: 100% !default;
54
+ /// The font size of the Form legend.
55
+ /// @group form
25
56
  $kendo-form-legend-font-size: $kendo-font-size-sm !default;
57
+ /// The text capitalization of the Form legend.
58
+ /// @group form
26
59
  $kendo-form-legend-text-transform: uppercase !default;
27
60
 
61
+ /// The bottom margin of the Form label.
62
+ /// @group form
28
63
  $kendo-form-label-margin-bottom: k-map-get( $kendo-spacing, 2 ) !default;
29
64
 
65
+ /// The horizontal margin of the Form buttons.
66
+ /// @group form
30
67
  $kendo-form-button-margin-x: 8px !default;
31
68
 
69
+ /// The font size of the Form hint.
70
+ /// @group form
32
71
  $kendo-form-hint-font-size: $kendo-font-size-xs !default;
72
+ /// The font style of the Form hint.
73
+ /// @group form
33
74
  $kendo-form-hint-font-style: normal !default;
75
+ /// The top margin of the Form hint.
76
+ /// @group form
34
77
  $kendo-form-hint-margin-top: 4px !default;
35
78
 
79
+ /// The row spacing of the small Form.
80
+ /// @group form
36
81
  $kendo-form-sm-rows-spacing: k-map-get( $kendo-spacing, 4 ) !default;
82
+ /// The row spacing of the medium Form.
83
+ /// @group form
37
84
  $kendo-form-md-rows-spacing: $kendo-form-sm-rows-spacing !default;
85
+ /// The row spacing of the large Form.
86
+ /// @group form
38
87
  $kendo-form-lg-rows-spacing: $kendo-form-sm-rows-spacing !default;
39
88
 
89
+ /// The margin of the Form separator.
90
+ /// @group form
40
91
  $kendo-form-separator-margin: $kendo-form-md-rows-spacing 0 0 !default;
92
+ /// The border color of the Form separator.
93
+ /// @group form
41
94
  $kendo-form-separator-border-color: $kendo-form-legend-border-color !default;
42
95
 
96
+ /// The top padding of the label in the horizontal Form.
97
+ /// @group form
43
98
  $kendo-horizontal-form-label-padding-top: 5px !default;
99
+ /// The horizontal margin of the label in the horizontal Form.
100
+ /// @group form
44
101
  $kendo-horizontal-form-label-margin-x: 10px !default;
102
+ /// The width of the label in the horizontal Form.
103
+ /// @group form
45
104
  $kendo-horizontal-form-label-width: 25% !default;
105
+ /// The horizontal alignment of the label in the horizontal Form.
106
+ /// @group form
46
107
  $kendo-horizontal-form-label-align: flex-end !default;
47
108
 
109
+ /// The maximum width of the field wrap in the horizontal Form.
110
+ /// @group form
48
111
  $kendo-horizontal-form-field-wrap-max-width: calc( ( 100% - #{$kendo-horizontal-form-label-width} ) - #{$kendo-horizontal-form-label-margin-x} ) !default;
49
112
 
113
+ /// The width of the inline Form element.
114
+ /// @group form
50
115
  $kendo-inline-form-element-width: 25% !default;
51
116
 
117
+ /// The invalid text color of the Form.
118
+ /// @group form
52
119
  $kendo-forms-invalid-color: $kendo-color-error !default;
53
120
 
54
121
 
55
- // Label
122
+ /// The horizontal margin of the optional label in the Form.
123
+ /// @group form
56
124
  $kendo-label-optional-margin-x: 6px !default;
125
+ /// The font size of the optional label in the Form.
126
+ /// @group form
57
127
  $kendo-label-optional-font-size: $kendo-font-size-xs !default;
128
+ /// The font style of the optional label in the Form.
129
+ /// @group form
58
130
  $kendo-label-optional-font-style: italic !default;
59
131
 
60
132
 
61
- // Fieldset
133
+ /// The margin of the Form fieldset.
134
+ /// @group form
62
135
  $kendo-fieldset-margin: 30px !default;
136
+ /// The font size of the Form fieldset.
137
+ /// @group form
63
138
  $kendo-fieldset-font-size: $kendo-h4-font-size !default;
64
-
139
+ /// The background color of the Form fieldset.
140
+ /// @group form
65
141
  $kendo-fieldset-bg: null !default;
142
+ /// The text color of the Form fieldset.
143
+ /// @group form
66
144
  $kendo-fieldset-text: null !default;
145
+ /// The border color of the Form fieldset.
146
+ /// @group form
67
147
  $kendo-fieldset-border: null !default;
68
148
 
149
+ /// The background color of the Form legend.
150
+ /// @group form
69
151
  $kendo-fieldset-legend-bg: null !default;
152
+ /// The text color of the Form legend.
153
+ /// @group form
70
154
  $kendo-fieldset-legend-text: null !default;
155
+ /// The border color of the Form legend.
156
+ /// @group form
71
157
  $kendo-fieldset-legend-border: null !default;
72
158
 
73
- // Sizes
159
+ /// The sizes map for the Form.
160
+ /// @group form
74
161
  $kendo-form-sizes: (
75
162
  sm: (
76
163
  form-rows-spacing: $kendo-form-sm-rows-spacing
@@ -210,15 +210,15 @@
210
210
  }
211
211
 
212
212
  // Selected state
213
- &.k-selected .k-grid-content-sticky,
214
- &.k-selected .k-grid-row-sticky,
215
- td.k-grid-content-sticky.k-selected,
216
- .k-table-td.k-grid-content-sticky.k-selected {
213
+ &.k-table-row.k-selected td.k-grid-content-sticky,
214
+ &.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
215
+ &.k-table-row td.k-grid-content-sticky.k-selected,
216
+ &.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
217
217
  @include fill( $bg: $kendo-grid-sticky-selected-bg );
218
218
  }
219
219
 
220
- &.k-selected.k-table-alt-row .k-grid-content-sticky,
221
- &.k-selected.k-table-alt-row .k-grid-row-sticky,
220
+ &.k-selected.k-table-alt-row td.k-grid-content-sticky,
221
+ &.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
222
222
  &.k-table-alt-row td.k-grid-content-sticky.k-selected,
223
223
  &.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
224
224
  @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
@@ -235,10 +235,10 @@
235
235
 
236
236
 
237
237
  // Selected hover
238
- &.k-selected:hover .k-grid-content-sticky,
239
- &.k-selected.k-hover .k-grid-content-sticky,
240
- &.k-selected:hover .k-grid-row-sticky,
241
- &.k-selected.k-hover .k-grid-row-sticky,
238
+ &.k-selected:hover td.k-grid-content-sticky,
239
+ &.k-selected.k-hover .k-table-td.k-grid-content-sticky,
240
+ &.k-selected:hover td.k-grid-row-sticky,
241
+ &.k-selected.k-hover .k-table-td.k-grid-row-sticky,
242
242
  &:hover td.k-grid-content-sticky.k-selected,
243
243
  &.k-hover td.k-grid-content-sticky.k-selected,
244
244
  &:hover .k-table-td.k-grid-content-sticky.k-selected,
@@ -76,7 +76,6 @@ $kendo-input-sizes: (
76
76
  padding-y: $kendo-input-sm-padding-y,
77
77
  font-size: $kendo-input-sm-font-size,
78
78
  line-height: $kendo-input-sm-line-height,
79
- icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-sm-padding-y * 2} ),
80
79
  button-padding-x: $kendo-input-sm-padding-y,
81
80
  button-padding-y: $kendo-input-sm-padding-y
82
81
  ),
@@ -85,7 +84,6 @@ $kendo-input-sizes: (
85
84
  padding-y: $kendo-input-md-padding-y,
86
85
  font-size: $kendo-input-md-font-size,
87
86
  line-height: $kendo-input-md-line-height,
88
- icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-md-padding-y * 2} ),
89
87
  button-padding-x: $kendo-input-md-padding-y,
90
88
  button-padding-y: $kendo-input-md-padding-y
91
89
  ),
@@ -94,7 +92,6 @@ $kendo-input-sizes: (
94
92
  padding-y: $kendo-input-lg-padding-y,
95
93
  font-size: $kendo-input-lg-font-size,
96
94
  line-height: $kendo-input-lg-line-height,
97
- icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-lg-padding-y * 2} ),
98
95
  button-padding-x: $kendo-input-lg-padding-y,
99
96
  button-padding-y: $kendo-input-lg-padding-y
100
97
  )
@@ -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;
@@ -1,125 +1,149 @@
1
1
  // Pager
2
2
 
3
- /// Horizontal padding of the pager according to the pager size.
3
+ /// The horizontal padding of the Pager.
4
4
  /// @group pager
5
5
  $kendo-pager-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
6
+ /// The horizontal padding of the small Pager.
7
+ /// @group pager
6
8
  $kendo-pager-sm-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
9
+ /// The horizontal padding of the medium Pager.
10
+ /// @group pager
7
11
  $kendo-pager-md-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
12
+ /// The horizontal padding of the large Pager.
13
+ /// @group pager
8
14
  $kendo-pager-lg-padding-x: k-map-get( $kendo-spacing, 2.5 ) !default;
9
- /// Vertical padding of the pager according to the pager size.
15
+ /// The vertical padding of the Pager.
10
16
  /// @group pager
11
17
  $kendo-pager-padding-y: $kendo-pager-padding-x !default;
18
+ /// The vertical padding of the small Pager.
19
+ /// @group pager
12
20
  $kendo-pager-sm-padding-y: $kendo-pager-sm-padding-x !default;
21
+ /// The vertical padding of the medium Pager.
22
+ /// @group pager
13
23
  $kendo-pager-md-padding-y: $kendo-pager-md-padding-x !default;
24
+ /// The vertical padding of the large Pager.
25
+ /// @group pager
14
26
  $kendo-pager-lg-padding-y: $kendo-pager-lg-padding-x !default;
15
27
 
16
- /// Minimum width of the pager items according to the pager size.
28
+ /// The minimum width of the items in the small Pager.
17
29
  /// @group pager
18
30
  $kendo-pager-sm-item-min-width: $kendo-button-sm-calc-size !default;
31
+ /// The minimum width of the items in the medium Pagers.
32
+ /// @group pager
19
33
  $kendo-pager-md-item-min-width: $kendo-button-md-calc-size !default;
34
+ /// The minimum width of the items in the large Pagers.
35
+ /// @group pager
20
36
  $kendo-pager-lg-item-min-width: $kendo-button-lg-calc-size !default;
21
37
 
22
- /// Margin between pager item groups according to the pager size.
38
+ /// The margin between the item groups in the small Pager.
23
39
  /// @group pager
24
40
  $kendo-pager-sm-item-group-spacing: k-map-get( $kendo-spacing, 3.5 ) !default;
41
+ /// The margin between the item groups in the medium Pager.
42
+ /// @group pager
25
43
  $kendo-pager-md-item-group-spacing: k-map-get( $kendo-spacing, 4 ) !default;
44
+ /// The margin between the item groups in the large Pager.
45
+ /// @group pager
26
46
  $kendo-pager-lg-item-group-spacing: k-map-get( $kendo-spacing, 4.5 ) !default;
27
47
 
28
- /// Border width of the pager.
48
+ /// The border width of the Pager.
29
49
  /// @group pager
30
50
  $kendo-pager-border-width: 1px !default;
31
- /// Font family of the pager.
51
+ /// The font family of the Pager.
32
52
  /// @group pager
33
53
  $kendo-pager-font-family: $kendo-font-family !default;
34
- /// Font size of the pager.
54
+ /// The font size of the Pager.
35
55
  /// @group pager
36
56
  $kendo-pager-font-size: $kendo-font-size-md !default;
37
- /// Line height of the pager.
57
+ /// The line height of the Pager.
38
58
  /// @group pager
39
59
  $kendo-pager-line-height: $kendo-line-height-md !default;
40
- /// Background color of the pager.
60
+ /// The background color of the Pager.
41
61
  /// @group pager
42
62
  $kendo-pager-bg: $kendo-component-header-bg !default;
43
- /// Text color of the pager.
63
+ /// The text color of the Pager.
44
64
  /// @group pager
45
65
  $kendo-pager-text: $kendo-component-header-text !default;
46
- /// Border color of the pager.
66
+ /// The border color of the Pager.
47
67
  /// @group pager
48
68
  $kendo-pager-border: $kendo-component-header-border !default;
49
69
 
50
- /// Background color of the focused pager.
70
+ /// The background color of the focused Pager.
51
71
  /// @group pager
52
72
  $kendo-pager-focus-bg: null !default;
53
- /// Box shadow of the focused pager.
73
+ /// The box shadow of the focused Pager.
54
74
  /// @group pager
55
75
  $kendo-pager-focus-shadow: inset 0 0 0 2px rgba( $kendo-color-black, .08) !default;
56
76
 
57
- /// Spacing between the pager sections.
77
+ /// The spacing between the Pager sections.
58
78
  /// @group pager
59
79
  $kendo-pager-section-spacing: k-map-get( $kendo-spacing, 4 ) !default;
60
80
 
61
- /// Border width of the pager items.
81
+ /// The border width of the Pager items.
62
82
  /// @group pager
63
83
  $kendo-pager-item-border-width: 1px !default;
64
- /// Border radius of the pager items.
84
+ /// The border radius of the Pager items.
65
85
  /// @group pager
66
86
  $kendo-pager-item-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
67
- /// Spacing around the pager items.
87
+ /// The spacing around the Pager items.
68
88
  /// @group pager
69
89
  $kendo-pager-item-spacing: (-1 * $kendo-pager-item-border-width) !default;
70
- /// Background color of the pager items.
90
+ /// The background color of the Pager items.
71
91
  /// @group pager
72
92
  $kendo-pager-item-bg: $kendo-component-bg !default;
73
- /// Text color of the pager items.
93
+ /// The text color of the Pager items.
74
94
  /// @group pager
75
95
  $kendo-pager-item-text: $kendo-link-text !default;
76
- /// Border color of the pager items.
96
+ /// The border color of the Pager items.
77
97
  /// @group pager
78
98
  $kendo-pager-item-border: $kendo-component-border !default;
79
99
 
80
- /// Background color of the hovered pager items.
100
+ /// The background color of the hovered Pager items.
81
101
  /// @group pager
82
102
  $kendo-pager-item-hover-bg: $kendo-hover-bg !default;
83
- /// Text color of the hovered pager items.
103
+ /// The text color of the hovered Pager items.
84
104
  /// @group pager
85
105
  $kendo-pager-item-hover-text: $kendo-link-hover-text !default;
86
- /// Border color of the hovered pager items.
106
+ /// The border color of the hovered Pager items.
87
107
  /// @group pager
88
108
  $kendo-pager-item-hover-border: $kendo-hover-border !default;
89
- /// Background color of the selected pager items.
109
+ /// The background color of the selected Pager items.
90
110
  /// @group pager
91
111
  $kendo-pager-item-selected-bg: $kendo-selected-bg !default;
92
- /// Text color of the selected pager items.
112
+ /// The text color of the selected Pager items.
93
113
  /// @group pager
94
114
  $kendo-pager-item-selected-text: $kendo-selected-text !default;
95
- /// Border color of the selected pager items.
115
+ /// The border color of the selected Pager items.
96
116
  /// @group pager
97
117
  $kendo-pager-item-selected-border: $kendo-pager-item-selected-bg !default;
98
- /// Opacity of the focused pager items.
118
+ /// The opacity of the focused Pager items.
99
119
  /// @group pager
100
120
  $kendo-pager-item-focus-opacity: null !default;
101
- /// Background color of the focused pager items.
121
+ /// The background color of the focused Pager items.
102
122
  /// @group pager
103
123
  $kendo-pager-item-focus-bg: $kendo-pager-item-bg !default;
104
- /// Box shadow of the focused pager items.
124
+ /// The box shadow of the focused Pager items.
105
125
  /// @group pager
106
126
  $kendo-pager-item-focus-shadow: 0 0 0 3px rgba($kendo-color-primary, .25) !default;
107
127
 
108
- /// Border radius of the pager numbers.
128
+ /// The border radius of the Pager numbers.
109
129
  /// @group pager
110
130
  $kendo-pager-number-border-radius: 0px !default;
111
131
 
112
- /// Width of the pager inputs.
132
+ /// The width of the Inputs in the Pager.
113
133
  /// @group pager
114
134
  $kendo-pager-input-width: 5em !default;
115
135
 
116
- /// Width of the pager dropdowns according to the pager size.
136
+ /// The width of the DropDowns in the small Pager.
117
137
  /// @group pager
118
138
  $kendo-pager-sm-dropdown-width: 5em !default;
139
+ /// The width of the DropDowns in the medium Pager.
140
+ /// @group pager
119
141
  $kendo-pager-md-dropdown-width: 5em !default;
142
+ /// The width of the DropDowns in the large Pager.
143
+ /// @group pager
120
144
  $kendo-pager-lg-dropdown-width: 6em !default;
121
145
 
122
- /// Sizes map of the pager.
146
+ /// The sizes map of the Pager.
123
147
  /// @group pager
124
148
  $kendo-pager-sizes: (
125
149
  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;
@@ -12,8 +12,6 @@ $kendo-rating-label-margin-x: $kendo-padding-md-x !default;
12
12
  $kendo-rating-label-margin-y: $kendo-padding-md-y !default;
13
13
  $kendo-rating-label-line-height: $kendo-line-height-lg !default;
14
14
 
15
- $kendo-rating-icon-size: ($kendo-icon-size * 1.5) !default;
16
-
17
15
  $kendo-rating-icon-text: $kendo-subtle-text !default;
18
16
  $kendo-rating-icon-selected-text: $kendo-selected-bg !default;
19
17
  $kendo-rating-icon-hover-text: $kendo-selected-bg !default;
@@ -28,7 +28,7 @@
28
28
 
29
29
  .k-event-actions {
30
30
  right: $kendo-padding-sm-x;
31
- font-size: $kendo-font-size-sm;
31
+
32
32
  &:first-child {
33
33
  margin: .1ex .4ex 0 $kendo-padding-sm-x;
34
34
  }
@@ -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-component-header-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-component-header-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-component-header-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: 0 0 0 .25rem rgba( $kendo-color-primary, .25 ) !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: (