@progress/kendo-theme-default 6.4.0-dev.1 → 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 (58) hide show
  1. package/dist/all.css +40 -94
  2. package/dist/all.scss +398 -240
  3. package/dist/meta/sassdoc-data.json +21157 -14767
  4. package/dist/meta/sassdoc-raw-data.json +9471 -6521
  5. package/dist/meta/variables.json +11 -51
  6. package/lib/swatches/default-blue.json +1 -1
  7. package/lib/swatches/default-dataviz-v4.json +1 -1
  8. package/lib/swatches/default-green.json +1 -1
  9. package/lib/swatches/default-main-dark.json +1 -1
  10. package/lib/swatches/default-main.json +1 -1
  11. package/lib/swatches/default-nordic.json +1 -1
  12. package/lib/swatches/default-ocean-blue-a11y.json +1 -1
  13. package/lib/swatches/default-ocean-blue.json +1 -1
  14. package/lib/swatches/default-orange.json +1 -1
  15. package/lib/swatches/default-purple.json +1 -1
  16. package/lib/swatches/default-turquoise.json +1 -1
  17. package/lib/swatches/default-urban.json +1 -1
  18. package/package.json +6 -5
  19. package/scss/action-sheet/_layout.scss +0 -3
  20. package/scss/action-sheet/_variables.scss +0 -2
  21. package/scss/avatar/_variables.scss +6 -6
  22. package/scss/badge/_variables.scss +38 -8
  23. package/scss/bottom-navigation/_layout.scss +0 -4
  24. package/scss/bottom-navigation/_variables.scss +0 -1
  25. package/scss/breadcrumb/_layout.scss +0 -1
  26. package/scss/breadcrumb/_variables.scss +0 -2
  27. package/scss/button/_variables.scss +4 -4
  28. package/scss/chip/_layout.scss +0 -1
  29. package/scss/drawer/_layout.scss +0 -10
  30. package/scss/drawer/_variables.scss +1 -2
  31. package/scss/dropdowntree/_variables.scss +5 -0
  32. package/scss/dropzone/_layout.scss +0 -7
  33. package/scss/dropzone/_variables.scss +0 -1
  34. package/scss/fab/_variables.scss +40 -28
  35. package/scss/filemanager/_layout.scss +1 -11
  36. package/scss/filemanager/_variables.scss +0 -2
  37. package/scss/floating-label/_variables.scss +31 -0
  38. package/scss/forms/_variables.scss +90 -4
  39. package/scss/grid/_theme.scss +8 -8
  40. package/scss/list/_layout.scss +2 -0
  41. package/scss/list/_theme.scss +6 -0
  42. package/scss/list/_variables.scss +8 -0
  43. package/scss/map/_layout.scss +0 -1
  44. package/scss/map/_variables.scss +0 -1
  45. package/scss/menu-button/_variables.scss +1 -1
  46. package/scss/pager/_variables.scss +57 -33
  47. package/scss/pdf-viewer/_layout.scss +0 -8
  48. package/scss/pdf-viewer/_variables.scss +0 -1
  49. package/scss/rating/_layout.scss +0 -8
  50. package/scss/scheduler/_layout.scss +0 -6
  51. package/scss/scrollview/_layout.scss +0 -6
  52. package/scss/scrollview/_variables.scss +0 -1
  53. package/scss/splitter/_layout.scss +0 -8
  54. package/scss/splitter/_variables.scss +1 -2
  55. package/scss/toolbar/_variables.scss +35 -17
  56. package/scss/treeview/_variables.scss +56 -32
  57. package/scss/upload/_layout.scss +2 -6
  58. package/scss/upload/_variables.scss +0 -2
@@ -1,20 +1,51 @@
1
1
  // Floating label
2
+
3
+ /// The transformation scale of the Floating Label.
4
+ /// @group floating-label
2
5
  $kendo-floating-label-scale: 1 !default;
6
+ ///The font size of the Floating Label.
7
+ /// @group floating-label
3
8
  $kendo-floating-label-font-size: $kendo-input-font-size !default;
9
+ /// The maximum width of the Floating Label.
10
+ /// @group floating-label
4
11
  $kendo-floating-label-max-width: 90% !default;
12
+ /// The line height of the Floating Label.
13
+ /// @group floating-label
5
14
  $kendo-floating-label-line-height: $kendo-input-line-height !default;
15
+ /// The height of the Floating Label.
16
+ /// @group floating-label
6
17
  $kendo-floating-label-height: calc( #{$kendo-floating-label-line-height} * #{$kendo-floating-label-font-size} ) !default;
18
+ /// The horizontal offset of the Floating Label.
19
+ /// @group floating-label
7
20
  $kendo-floating-label-offset-x: calc( #{$kendo-input-padding-x} + #{$kendo-input-border-width} ) !default;
21
+ /// The vertical offset of the Floating Label.
22
+ /// @group floating-label
8
23
  $kendo-floating-label-offset-y: calc( #{$kendo-floating-label-height} + #{$kendo-input-border-width} + #{$kendo-input-padding-y} ) !default;
9
24
 
25
+ /// The transformation scale of the focused Floating Label.
26
+ /// @group floating-label
10
27
  $kendo-floating-label-focus-scale: 1 !default;
28
+ /// The horizontal offset of the focused Floating Label.
29
+ /// @group floating-label
11
30
  $kendo-floating-label-focus-offset-x: 0 !default;
31
+ /// The vertical offset of the focused Floating Label.
32
+ /// @group floating-label
12
33
  $kendo-floating-label-focus-offset-y: 0 !default;
13
34
 
35
+ /// The transition of the Floating Label.
36
+ /// @group floating-label
14
37
  $kendo-floating-label-transition: .2s ease-out !default;
15
38
 
39
+ /// The background color of the Floating Label.
40
+ /// @group floating-label
16
41
  $kendo-floating-label-bg: null !default;
42
+ /// The text color of the Floating Label.
43
+ /// @group floating-label
17
44
  $kendo-floating-label-text: null !default;
18
45
 
46
+ /// The background color of the focused Floating Label.
47
+ /// @group floating-label
19
48
  $kendo-floating-label-focus-bg: null !default;
49
+ /// The text color of the focused Floating Label.
50
+ /// @group floating-label
20
51
  $kendo-floating-label-focus-text: null !default;
@@ -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: k-map-get( $kendo-spacing, 2.5 ) !default;
82
+ /// The row spacing of the medium Form.
83
+ /// @group form
38
84
  $kendo-form-md-rows-spacing: k-map-get( $kendo-spacing, 3.5 ) !default;
85
+ /// The row spacing of the large Form.
86
+ /// @group form
39
87
  $kendo-form-lg-rows-spacing: k-map-get( $kendo-spacing, 4.5 ) !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
@@ -269,15 +269,15 @@
269
269
  }
270
270
 
271
271
  // Selected state
272
- &.k-table-row.k-selected .k-grid-content-sticky,
273
- &.k-table-row.k-selected .k-grid-row-sticky,
272
+ &.k-table-row.k-selected td.k-grid-content-sticky,
273
+ &.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
274
274
  &.k-table-row td.k-grid-content-sticky.k-selected,
275
275
  &.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
276
276
  @include fill( $bg: $kendo-grid-sticky-selected-bg );
277
277
  }
278
278
 
279
- &.k-selected.k-table-alt-row .k-grid-content-sticky,
280
- &.k-selected.k-table-alt-row .k-grid-row-sticky,
279
+ &.k-selected.k-table-alt-row td.k-grid-content-sticky,
280
+ &.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
281
281
  &.k-table-alt-row td.k-grid-content-sticky.k-selected,
282
282
  &.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
283
283
  @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
@@ -294,10 +294,10 @@
294
294
 
295
295
 
296
296
  // Selected hover
297
- &.k-selected:hover .k-grid-content-sticky,
298
- &.k-selected:hover .k-grid-row-sticky,
299
- &.k-selected.k-hover .k-grid-content-sticky,
300
- &.k-selected.k-hover .k-grid-row-sticky,
297
+ &.k-selected:hover td.k-grid-content-sticky,
298
+ &.k-selected:hover .k-table-td.k-grid-row-sticky,
299
+ &.k-selected.k-hover td.k-grid-content-sticky,
300
+ &.k-selected.k-hover .k-table-td.k-grid-row-sticky,
301
301
  &:hover td.k-grid-content-sticky.k-selected,
302
302
  &.k-hover td.k-grid-content-sticky.k-selected,
303
303
  &:hover .k-table-td.k-grid-content-sticky.k-selected,
@@ -16,6 +16,7 @@
16
16
  margin: 0;
17
17
  padding: 0;
18
18
  box-sizing: border-box;
19
+ font-family: $kendo-list-font-family;
19
20
  font-size: $kendo-list-font-size;
20
21
  line-height: $kendo-list-line-height;
21
22
  display: flex;
@@ -121,6 +122,7 @@
121
122
  }
122
123
  .k-list-optionlabel {
123
124
  @extend .k-list-item !optional;
125
+ column-gap: 0;
124
126
  }
125
127
 
126
128
 
@@ -62,6 +62,12 @@
62
62
  }
63
63
  }
64
64
 
65
+ // Option Label
66
+ .k-list-optionlabel,
67
+ .k-list-optionlabel.k-hover,
68
+ .k-list-optionlabel:hover {
69
+ color: $kendo-list-option-label-text;
70
+ }
65
71
 
66
72
  // List group item
67
73
  .k-list-group-item {
@@ -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;
@@ -37,7 +37,6 @@
37
37
  // Marker
38
38
  .k-marker {
39
39
  transform: translate(-50%, -100%);
40
- font-size: $kendo-map-marker-size;
41
40
  cursor: pointer;
42
41
  position: absolute;
43
42
  overflow: visible;
@@ -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: (
@@ -113,14 +113,6 @@
113
113
  border: 0;
114
114
  background: none;
115
115
  }
116
-
117
- > .k-icon {
118
- font-size: $kendo-pdf-viewer-icon-size;
119
- }
120
- > .k-svg-icon {
121
- width: $kendo-pdf-viewer-icon-size;
122
- height: $kendo-pdf-viewer-icon-size;
123
- }
124
116
  }
125
117
 
126
118
  }
@@ -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;
@@ -47,14 +47,6 @@
47
47
  pointer-events: none;
48
48
  }
49
49
 
50
- .k-icon {
51
- font-size: $kendo-rating-icon-size;
52
- }
53
- .k-svg-icon {
54
- width: $kendo-rating-icon-size;
55
- height: $kendo-rating-icon-size;
56
- }
57
-
58
50
  .k-rating-precision-part,
59
51
  .k-rating-precision-complement {
60
52
  display: inherit;
@@ -426,12 +426,6 @@
426
426
  }
427
427
  }
428
428
 
429
- .k-icon,
430
- .k-svg-icon {
431
- line-height: normal;
432
- font-size: inherit;
433
- }
434
-
435
429
  a { color: inherit; }
436
430
  }
437
431
 
@@ -163,14 +163,8 @@
163
163
  margin: 0;
164
164
  padding: 0;
165
165
  vertical-align: middle;
166
- font-size: $kendo-scrollview-arrow-icon-size;
167
166
  font-weight: normal;
168
167
  }
169
- .k-svg-icon {
170
- font-size: inherit;
171
- width: $kendo-scrollview-arrow-icon-size;
172
- height: $kendo-scrollview-arrow-icon-size;
173
- }
174
168
  }
175
169
 
176
170
  .k-scrollview-prev {
@@ -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(0, 0, 0, .3) 0 0 15px !default;
@@ -58,14 +58,6 @@
58
58
  cursor: pointer;
59
59
  }
60
60
 
61
- .k-icon {
62
- font-size: $kendo-splitter-resize-icon-size;
63
- }
64
- .k-svg-icon {
65
- width: $kendo-splitter-resize-icon-size;
66
- height: $kendo-splitter-resize-icon-size;
67
- }
68
-
69
61
  }
70
62
 
71
63
  .k-splitbar-draggable-horizontal { cursor: col-resize; }
@@ -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;