@progress/kendo-theme-fluent 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 (53) hide show
  1. package/dist/all.css +195 -130
  2. package/dist/meta/sassdoc-data.json +5971 -3665
  3. package/dist/meta/sassdoc-raw-data.json +3027 -1877
  4. package/lib/swatches/all.json +1 -1
  5. package/lib/swatches/fluent-main.json +1 -1
  6. package/package.json +6 -5
  7. package/scss/action-sheet/_layout.scss +11 -6
  8. package/scss/action-sheet/_variables.scss +0 -3
  9. package/scss/adaptive/_layout.scss +2 -6
  10. package/scss/avatar/_variables.scss +10 -8
  11. package/scss/badge/_variables.scss +36 -14
  12. package/scss/bottom-navigation/_layout.scss +0 -4
  13. package/scss/bottom-navigation/_variables.scss +1 -5
  14. package/scss/breadcrumb/_layout.scss +0 -1
  15. package/scss/breadcrumb/_variables.scss +0 -4
  16. package/scss/button/_variables.scss +3 -3
  17. package/scss/chip/_layout.scss +0 -1
  18. package/scss/drawer/_layout.scss +3 -3
  19. package/scss/drawer/_variables.scss +6 -3
  20. package/scss/dropdowntree/_variables.scss +4 -0
  21. package/scss/dropzone/_layout.scss +0 -7
  22. package/scss/dropzone/_variables.scss +0 -3
  23. package/scss/fab/_layout.scss +3 -4
  24. package/scss/fab/_variables.scss +58 -52
  25. package/scss/filemanager/_layout.scss +2 -12
  26. package/scss/filemanager/_variables.scss +0 -6
  27. package/scss/floating-label/_variables.scss +17 -17
  28. package/scss/forms/_variables.scss +62 -34
  29. package/scss/grid/_layout.scss +6 -2
  30. package/scss/icon/_layout.scss +10 -7
  31. package/scss/input/_layout.scss +5 -4
  32. package/scss/input/_variables.scss +2 -2
  33. package/scss/list/_layout.scss +2 -0
  34. package/scss/list/_theme.scss +15 -0
  35. package/scss/list/_variables.scss +11 -0
  36. package/scss/listbox/_layout.scss +2 -5
  37. package/scss/map/_layout.scss +0 -1
  38. package/scss/map/_variables.scss +0 -3
  39. package/scss/pager/_layout.scss +1 -12
  40. package/scss/pager/_variables.scss +37 -21
  41. package/scss/pdf-viewer/_layout.scss +0 -9
  42. package/scss/pdf-viewer/_variables.scss +0 -3
  43. package/scss/rating/_layout.scss +0 -9
  44. package/scss/rating/_variables.scss +0 -4
  45. package/scss/scrollview/_layout.scss +13 -8
  46. package/scss/scrollview/_variables.scss +0 -3
  47. package/scss/splitter/_layout.scss +0 -9
  48. package/scss/splitter/_variables.scss +1 -4
  49. package/scss/spreadsheet/_layout.scss +2 -1
  50. package/scss/toolbar/_variables.scss +28 -16
  51. package/scss/treeview/_variables.scss +56 -40
  52. package/scss/upload/_layout.scss +2 -6
  53. package/scss/upload/_variables.scss +0 -4
@@ -3,127 +3,133 @@
3
3
  @use "../core/" as *;
4
4
  @use "../button/_variables.scss" as *;
5
5
 
6
- /// Width of the border around the FAB.
6
+ /// The width of the border around the FAB.
7
7
  /// @group floating-action-button
8
8
  $kendo-fab-border-width: 1px !default;
9
- /// Border radius of the FAB.
9
+ /// The border radius of the FAB.
10
10
  /// @group floating-action-button
11
11
  $kendo-fab-border-radius: var( --kendo-border-radius-md, 0 ) !default;
12
- /// Font family of the FAB.
12
+ /// The font family of the FAB.
13
13
  /// @group floating-action-button
14
14
  $kendo-fab-font-family: var( --kendo-font-family, inherit ) !default;
15
- /// Font size of the FAB.
15
+ /// The font size of the FAB.
16
16
  /// @group floating-action-button
17
17
  $kendo-fab-font-size: var( --kendo-font-size, inherit ) !default;
18
- /// Line height of the FAB.
18
+ /// The line height of the FAB.
19
19
  /// @group floating-action-button
20
20
  $kendo-fab-line-height: var( --kendo-line-height, normal ) !default;
21
21
 
22
- /// Horizontal padding of the FAB.
22
+ /// The horizontal padding of the FAB.
23
23
  /// @group floating-action-button
24
24
  $kendo-fab-padding-x: map.get( $kendo-spacing, 4 ) !default;
25
+ /// The horizontal padding of the small FAB.
26
+ /// @group floating-action-button
25
27
  $kendo-fab-sm-padding-x: math.div( $kendo-fab-padding-x, 2 ) !default;
28
+ /// The horizontal padding of the medium FAB.
29
+ /// @group floating-action-button
26
30
  $kendo-fab-md-padding-x: $kendo-fab-padding-x !default;
31
+ /// The horizontal padding of the large FAB.
32
+ /// @group floating-action-button
27
33
  $kendo-fab-lg-padding-x: ( $kendo-fab-padding-x * 1.5 ) !default;
28
34
 
29
- /// Vertical padding of the FAB.
35
+ /// The vertical padding of the FAB.
30
36
  /// @group floating-action-button
31
37
  $kendo-fab-padding-y: $kendo-fab-padding-x !default;
38
+ /// The vertical padding of the small FAB.
39
+ /// @group floating-action-button
32
40
  $kendo-fab-sm-padding-y: math.div( $kendo-fab-padding-y, 2 ) !default;
41
+ /// The vertical padding of the medium FAB.
42
+ /// @group floating-action-button
33
43
  $kendo-fab-md-padding-y: $kendo-fab-padding-y !default;
44
+ /// The vertical padding of the large FAB.
45
+ /// @group floating-action-button
34
46
  $kendo-fab-lg-padding-y: ( $kendo-fab-padding-y * 1.5 ) !default;
35
47
 
36
- /// Offset of the focused FAB.
48
+ /// The offset of the focused FAB.
37
49
  /// @group floating-action-button
38
50
  $kendo-fab-focus-offset: $kendo-button-focus-offset !default;
39
- /// Outline width of the focused FAB.
51
+ /// The outline width of the focused FAB.
40
52
  /// @group floating-action-button
41
53
  $kendo-fab-focus-outline-width: $kendo-button-focus-outline-width !default;
42
- /// Outline style of the focused FAB.
54
+ /// The outline style of the focused FAB.
43
55
  /// @group floating-action-button
44
56
  $kendo-fab-focus-outline-style: $kendo-button-focus-outline-style !default;
45
57
 
46
- /// FAB icon width.
58
+ /// The horizontal padding of the FAB icon.
47
59
  /// @group floating-action-button
48
- $kendo-fab-icon-width: 20px !default;
49
- /// FAB icon height.
60
+ $kendo-fab-icon-padding-x: map.get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
61
+ /// The vertical padding of the FAB icon.
50
62
  /// @group floating-action-button
51
- $kendo-fab-icon-height: $kendo-fab-icon-width !default;
52
- /// FAB icon spacing.
63
+ $kendo-fab-icon-padding-y: $kendo-fab-icon-padding-x !default;
64
+ /// The spacing of the FAB icon.
53
65
  /// @group floating-action-button
54
66
  $kendo-fab-icon-spacing: map.get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
55
67
 
56
- /// FAB items horizontal padding.
68
+ /// The horizontal padding of the FAB items.
57
69
  /// @group floating-action-button
58
70
  $kendo-fab-items-padding-x: 0px !default;
59
- /// FAB items vertical padding.
71
+ /// The vertical padding of the FAB items.
60
72
  /// @group floating-action-button
61
73
  $kendo-fab-items-padding-y: map.get( $kendo-spacing, 4 ) !default;
62
74
 
63
- /// FAB item text horizontal padding.
75
+ /// The horizontal padding of the FAB item text.
64
76
  /// @group floating-action-button
65
77
  $kendo-fab-item-text-padding-x: map.get( $kendo-spacing, 1 ) !default;
66
- /// FAB item text vertical padding.
78
+ /// The vertical padding of the FAB item text.
67
79
  /// @group floating-action-button
68
80
  $kendo-fab-item-text-padding-y: map.get( $kendo-spacing, 1 ) !default;
69
- /// Width of the FAB item text border.
81
+ /// The width of the FAB item text border.
70
82
  /// @group floating-action-button
71
83
  $kendo-fab-item-text-border-width: 1px !default;
72
- /// Border style of the FAB item text.
84
+ /// The border style of the FAB item text.
73
85
  /// @group floating-action-button
74
86
  $kendo-fab-item-text-border-style: solid !default;
75
- /// Border radius of the FAB item text.
87
+ /// The border radius of the FAB item text.
76
88
  /// @group floating-action-button
77
89
  $kendo-fab-item-text-border-radius: var( --kendo-border-radius-md, 0 ) !default;
78
- /// Font size of the FAB item text.
90
+ /// The font size of the FAB item text.
79
91
  /// @group floating-action-button
80
92
  $kendo-fab-item-text-font-size: var( --kendo-font-size-sm, inherit ) !default;
81
- /// Line height of the FAB item text.
93
+ /// The line height of the FAB item text.
82
94
  /// @group floating-action-button
83
95
  $kendo-fab-item-text-line-height: var( --kendo-line-height-sm, inherit ) !default;
84
- /// The bottom margin of the FAB item.
96
+ /// The bottom margin of the FAB item text.
85
97
  /// @group floating-action-button
86
98
  $kendo-fab-item-text-offset-x: map.get( $kendo-spacing, 2 ) !default;
87
99
 
88
- /// Offset of the focused FAB item.
100
+ /// The offset of the focused FAB item.
89
101
  /// @group floating-action-button
90
102
  $kendo-fab-item-focus-offset: $kendo-button-focus-offset !default;
91
- /// Outline width of the focused FAB item.
103
+ /// The outline width of the focused FAB item.
92
104
  /// @group floating-action-button
93
105
  $kendo-fab-item-focus-outline-width: $kendo-button-focus-outline-width !default;
94
- /// Outline style of the focused FAB item.
106
+ /// The outline style of the focused FAB item.
95
107
  /// @group floating-action-button
96
108
  $kendo-fab-item-focus-outline-style: $kendo-button-focus-outline-style !default;
97
109
 
98
- /// FAB item icon horizontal padding.
110
+ /// The horizontal padding of the FAB item icon.
99
111
  /// @group floating-action-button
100
- $kendo-fab-item-icon-padding-x: map.get( $kendo-spacing, 2 ) !default;
101
- /// FAB item icon vertical padding.
112
+ $kendo-fab-item-icon-padding-x: map.get( $kendo-spacing, 2 ) + $kendo-fab-icon-padding-x !default;
113
+ /// The vertical padding of the FAB item icon.
102
114
  /// @group floating-action-button
103
- $kendo-fab-item-icon-padding-y: map.get( $kendo-spacing, 2 ) !default;
104
- /// Width of the FAB item icon border.
115
+ $kendo-fab-item-icon-padding-y: $kendo-fab-item-icon-padding-x !default;
116
+ /// The border width of the FAB item icon.
105
117
  /// @group floating-action-button
106
118
  $kendo-fab-item-icon-border-width: 1px !default;
107
- /// Border style of the FAB item icon.
119
+ /// The border style of the FAB item icon.
108
120
  /// @group floating-action-button
109
121
  $kendo-fab-item-icon-border-style: solid !default;
110
- /// Border radius of the FAB item icon.
122
+ /// The border radius of the FAB item icon.
111
123
  /// @group floating-action-button
112
124
  $kendo-fab-item-icon-border-radius: 50% !default;
113
- /// Width of the FAB item icon.
114
- /// @group floating-action-button
115
- $kendo-fab-item-icon-width: 20px !default;
116
- /// Height of the FAB item icon.
117
- /// @group floating-action-button
118
- $kendo-fab-item-icon-height: $kendo-fab-item-icon-width !default;
119
125
 
120
- /// Theme colors map for the FAB.
126
+ /// The theme colors map for the FAB.
121
127
  /// @group floating-action-button
122
128
  $kendo-fab-theme-colors: (
123
129
  solid: map.get( $kendo-button-theme-colors, "solid")
124
130
  ) !default;
125
131
 
126
- /// Sizes map for the FAB.
132
+ /// The size map for the FAB.
127
133
  /// @group floating-action-button
128
134
  $kendo-fab-sizes: (
129
135
  sm: (
@@ -152,30 +158,30 @@ $kendo-fab-item-bg: var( --kendo-component-bg, inherit ) !default;
152
158
  /// The base border color of the FAB item.
153
159
  /// @group floating-action-button
154
160
  $kendo-fab-item-border: get-theme-color-var( neutral-110 ) !default;
155
- /// The hover text color of the FAB item.
161
+ /// The text color of the hovered FAB item.
156
162
  /// @group floating-action-button
157
163
  $kendo-fab-item-hover-text: var( --kendo-hover-text, inherit ) !default;
158
- /// The hover background color of the FAB item.
164
+ /// The background color of the hovered FAB item.
159
165
  /// @group floating-action-button
160
166
  $kendo-fab-item-hover-bg: var( --kendo-hover-bg, inherit ) !default;
161
- /// The hover border color of the FAB item.
167
+ /// The border color of the hovered FAB item.
162
168
  /// @group floating-action-button
163
169
  $kendo-fab-item-hover-border: get-theme-color-var( neutral-110 ) !default;
164
- /// The focus text color of the FAB item.
170
+ /// The text color of the focused FAB item.
165
171
  /// @group floating-action-button
166
172
  $kendo-fab-item-focus-text: get-theme-color-var( neutral-160 ) !default;
167
- /// The focus background color of the FAB item.
173
+ /// The background color of the focused FAB item.
168
174
  /// @group floating-action-button
169
175
  $kendo-fab-item-focus-bg: var( --kendo-component-bg, inherit ) !default;
170
- /// The focus border color of the FAB item.
176
+ /// The border color of the focused FAB item.
171
177
  /// @group floating-action-button
172
178
  $kendo-fab-item-focus-border: get-theme-color-var( neutral-110 ) !default;
173
- /// The active text color of the FAB item.
179
+ /// The text color of the active FAB item.
174
180
  /// @group floating-action-button
175
181
  $kendo-fab-item-active-text: var( --kendo-selected-text, inherit ) !default;
176
- /// The active background color of the FAB item.
182
+ /// The background color of the active FAB item.
177
183
  /// @group floating-action-button
178
184
  $kendo-fab-item-active-bg: var( --kendo-selected-bg, inherit ) !default;
179
- /// The active border color of the FAB item.
185
+ /// The border color of the active FAB item.
180
186
  /// @group floating-action-button
181
187
  $kendo-fab-item-active-border: get-theme-color-var( neutral-110 ) !default;
@@ -1,4 +1,4 @@
1
- @use "../icon/_variables.scss"as *;
1
+ @use "../icon/_variables.scss" as *;
2
2
  @use "./_variables.scss" as *;
3
3
 
4
4
  @mixin kendo-file-manager--layout() {
@@ -104,11 +104,6 @@
104
104
  justify-content: center;
105
105
  }
106
106
 
107
- // File icon
108
- .k-file-icon {
109
- font-size: var( --kendo-file-manager-listview-item-icon-size, #{$kendo-file-manager-listview-item-icon-size} );
110
- }
111
-
112
107
  // File name
113
108
  .k-file-name {
114
109
  margin-block-start: calc( var( --kendo-file-manager-spacer, #{$kendo-file-manager-spacer} ) / 2 );
@@ -155,7 +150,7 @@
155
150
  padding-block-start: calc( var( --kendo-file-manager-preview-padding-y, #{$kendo-file-manager-preview-padding-y} ) * 3 );
156
151
  padding-block-end: var( --kendo-file-manager-preview-padding-y, #{$kendo-file-manager-preview-padding-y} );
157
152
  width: var( --kendo-file-manager-preview-width, #{$kendo-file-manager-preview-width} );
158
- min-height: calc( ( var( --kendo-file-manager-preview-padding-y, #{$kendo-file-manager-preview-padding-y} ) * 4 ) + ( var( --kendo-file-manager-preview-icon-size, #{$kendo-file-manager-preview-icon-size} ) * 2 ) + ( var( --kendo-file-manager-preview-spacing, #{$kendo-file-manager-preview-spacing} ) * 3 ) );
153
+ min-height: calc( ( var( --kendo-file-manager-preview-padding-y, #{$kendo-file-manager-preview-padding-y} ) * 4 ) + var( --kendo-icon-size, 1rem ) * 2 + ( var( --kendo-file-manager-preview-spacing, #{$kendo-file-manager-preview-spacing} ) * 3 ) );
159
154
  border-width: 0;
160
155
  border-left-width: var( --kendo-file-manager-preview-border-width, #{$kendo-file-manager-preview-border-width} );
161
156
  border-style: solid;
@@ -172,11 +167,6 @@
172
167
  justify-content: center;
173
168
  }
174
169
 
175
- // File icon
176
- .k-file-icon {
177
- font-size: var( --kendo-file-manager-preview-icon-size, #{$kendo-file-manager-preview-icon-size} );
178
- }
179
-
180
170
  // File name
181
171
  .k-file-name {
182
172
  margin-block-start: var( --kendo-file-manager-preview-spacing, #{$kendo-file-manager-preview-spacing} );
@@ -105,9 +105,6 @@ $kendo-file-manager-listview-item-width: 120px !default;
105
105
  /// @group filemanager
106
106
  $kendo-file-manager-listview-item-height: 120px !default;
107
107
 
108
- /// Size of the listview item icon.
109
- /// @group filemanager
110
- $kendo-file-manager-listview-item-icon-size: calc( var( --kendo-icon-size, 1rem ) * 3 ) !default;
111
108
  /// Background color of the listview item icon.
112
109
  /// @group filemanager
113
110
  $kendo-file-manager-listview-item-icon-bg: transparent !default;
@@ -174,9 +171,6 @@ $kendo-file-manager-preview-text: inherit !default;
174
171
  /// @group filemanager
175
172
  $kendo-file-manager-preview-border: inherit !default;
176
173
 
177
- /// Size of the preview icon.
178
- /// @group filemanager
179
- $kendo-file-manager-preview-icon-size: calc( var( --kendo-icon-size, 1rem ) * 6 ) !default;
180
174
  /// Background color of the preview icon.
181
175
  /// @group filemanager
182
176
  $kendo-file-manager-preview-icon-bg: transparent !default;
@@ -1,70 +1,70 @@
1
1
  @use "../core/" as *;
2
2
  @use "../input/_variables.scss" as *;
3
3
 
4
- /// The resize scale of the floating label
4
+ /// The transformation scale of the Floating Label.
5
5
  /// @group floating-label
6
6
  $kendo-floating-label-scale: 1 !default;
7
7
 
8
- /// The font size of the floating label
8
+ /// The font size of the Floating Label.
9
9
  /// @group floating-label
10
10
  $kendo-floating-label-font-size: var( --kendo-font-size, inherit ) !default;
11
11
 
12
- /// The max-width of the floating label
12
+ /// The maximum width of the Floating Label.
13
13
  /// @group floating-label
14
14
  $kendo-floating-label-max-width: 90% !default;
15
15
 
16
- /// The font weight of the floating label
16
+ /// The font weight of the Floating Label.
17
17
  /// @group floating-label
18
18
  $kendo-floating-label-font-weight: var( --kendo-font-weight-bold, inherit ) !default;
19
19
 
20
- /// The line height of the floating label
20
+ /// The line height of the Floating Label.
21
21
  /// @group floating-label
22
22
  $kendo-floating-label-line-height: var( --kendo-line-height, normal ) !default;
23
23
 
24
- /// The height of the floating label
24
+ /// The height of the Floating Label.
25
25
  /// @group floating-label
26
26
  $kendo-floating-label-height: calc( #{$kendo-floating-label-line-height} * #{$kendo-floating-label-font-size} ) !default;
27
27
 
28
- /// The horizontal offset of the floating label
28
+ /// The horizontal offset of the Floating Label.
29
29
  /// @group floating-label
30
30
  $kendo-floating-label-offset-x: calc( #{$kendo-input-md-padding-x} + #{$kendo-input-border-width} ) !default;
31
31
 
32
- /// The vertical offset of the floating label
32
+ /// The vertical offset of the Floating Label.
33
33
  /// @group floating-label
34
34
  $kendo-floating-label-offset-y: calc( #{$kendo-floating-label-height} + #{$kendo-input-border-width} + #{$kendo-input-md-padding-y} ) !default;
35
35
 
36
- /// The focus resize scale of the floating label
36
+ /// The transformation scale of the focused Floating Label.
37
37
  /// @group floating-label
38
38
  $kendo-floating-label-focus-scale: 1 !default;
39
39
 
40
- /// The horizontal focus offset of the floating label
40
+ /// The horizontal offset of the focused Floating Label.
41
41
  /// @group floating-label
42
42
  $kendo-floating-label-focus-offset-x: 0 !default;
43
43
 
44
- /// The vertical focus offset of the floating label
44
+ /// The vertical offset of the focused Floating Label.
45
45
  /// @group floating-label
46
46
  $kendo-floating-label-focus-offset-y: 0 !default;
47
47
 
48
- /// The transition of the floating label
48
+ /// The transition of the Floating Label.
49
49
  /// @group floating-label
50
50
  $kendo-floating-label-transition: .2s ease-out !default;
51
51
 
52
- /// The background color of the floating label
52
+ /// The background color of the Floating Label.
53
53
  /// @group floating-label
54
54
  $kendo-floating-label-bg: inherit !default;
55
55
 
56
- /// The text color of the floating label
56
+ /// The text color of the Floating Label.
57
57
  /// @group floating-label
58
58
  $kendo-floating-label-text: inherit !default;
59
59
 
60
- /// The focus background color of the floating label
60
+ /// The background color of the focused Floating Label.
61
61
  /// @group floating-label
62
62
  $kendo-floating-label-focus-bg: inherit !default;
63
63
 
64
- /// The focus text color of the floating label
64
+ /// The text color of the focused Floating Label.
65
65
  /// @group floating-label
66
66
  $kendo-floating-label-focus-text: inherit !default;
67
67
 
68
- /// The invalid text color of the floating label
68
+ /// The invalid text color of the Floating Label.
69
69
  /// @group floating-label
70
70
  $kendo-floating-label-invalid-text: var( --kendo-invalid-text, #{$kendo-invalid-text} ) !default;
@@ -1,63 +1,69 @@
1
1
  @use "sass:map";
2
2
  @use "../core/" as *;
3
3
 
4
- /// The padding of the inline form
4
+ /// The padding of the inline Form.
5
5
  /// @group form
6
6
  $kendo-form-spacer: ( $kendo-padding-md-x * 2 ) !default;
7
7
 
8
- /// The font size of the form
8
+ /// The font size of the Form.
9
9
  /// @group form
10
10
  $kendo-form-font-size: var( --kendo-font-size, inherit ) !default;
11
11
 
12
- /// The line heights of the form
12
+ /// The line height of the Form.
13
13
  /// @group form
14
14
  $kendo-form-line-height: var( --kendo-line-height, normal ) !default;
15
+ /// The line height of the Form in em units.
16
+ /// @group form
15
17
  $kendo-form-line-height-em: $kendo-line-height-em !default;
18
+ /// The line height of the small Form.
19
+ /// @group form
16
20
  $kendo-form-sm-line-height: var( --kendo-line-height-sm, normal ) !default;
21
+ /// The line height of the large Form.
22
+ /// @group form
17
23
  $kendo-form-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
18
24
 
19
- /// The margin of the form fieldset
25
+ /// The margin of the Form fieldset.
20
26
  /// @group form
21
27
  $kendo-form-fieldset-margin: 2em 0 0 !default;
22
28
 
23
- /// The padding of the form fieldset
29
+ /// The padding of the Form fieldset.
24
30
  /// @group form
25
31
  $kendo-form-fieldset-padding: 0px !default;
26
32
 
27
- /// The margin of the form legend
33
+ /// The margin of the Form legend.
28
34
  /// @group form
29
35
  $kendo-form-legend-margin: 0 0 map.get( $kendo-spacing, 3 ) !default;
30
36
 
31
- /// The padding of the form legend
37
+ /// The padding of the Form legend.
32
38
  /// @group form
33
39
  $kendo-form-legend-padding: 0px !default;
34
40
 
35
- /// The border width of the form legend
41
+ /// The border width of the Form legend.
36
42
  /// @group form
37
43
  $kendo-form-legend-border-width: 0 0 map.get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
38
44
 
39
- /// The border style of the form legend
45
+ /// The border style of the Form legend.
40
46
  /// @group form
41
47
  $kendo-form-legend-border-style: solid !default;
42
48
 
43
- /// The border color of the form legend
49
+ /// The border color of the Form legend.
44
50
  /// @group form
45
51
  $kendo-form-legend-border-color: var( --kendo-component-border, initial ) !default;
46
52
 
47
- /// The width of the form legend
53
+ /// The width of the Form legend.
48
54
  /// @group form
49
55
  $kendo-form-legend-width: 100% !default;
50
56
 
51
- /// The font size of the form legend
57
+ /// The font size of the Form legend.
52
58
  /// @group form
53
59
  $kendo-form-legend-font-size: var( --kendo-font-size, inherit ) !default;
54
60
 
55
- /// The text capitalization of the form legend
61
+ /// The text capitalization of the Form legend.
56
62
  /// @group form
57
63
  $kendo-form-legend-text-transform: uppercase !default;
58
64
 
59
65
 
60
- /// The bottom margin of the form label
66
+ /// The bottom margin of the Form label.
61
67
  /// @group form
62
68
  $kendo-form-label-margin-bottom: map.get( $kendo-spacing, 2 ) !default;
63
69
 
@@ -65,91 +71,113 @@ $kendo-form-label-margin-bottom: map.get( $kendo-spacing, 2 ) !default;
65
71
  /// @group form
66
72
  $kendo-form-label-font-weight: var( --kendo-font-weight-bold, inherit ) !default;
67
73
 
68
- /// The horizontal margin of the form button
74
+ /// The horizontal margin of the Form buttons.
69
75
  /// @group form
70
76
  $kendo-form-button-margin-x: map.get( $kendo-spacing, 2 ) !default;
71
77
 
72
- /// The font size of the form hint
78
+ /// The font size of the Form hint.
73
79
  /// @group form
74
80
  $kendo-form-hint-font-size: var( --kendo-font-size-sm, inherit ) !default;
75
81
 
76
- /// The font style of the form hint
82
+ /// The font style of the Form hint.
77
83
  /// @group form
78
84
  $kendo-form-hint-font-style: normal !default;
79
85
 
80
- /// The top margin of the form hint
86
+ /// The top margin of the Form hint.
81
87
  /// @group form
82
88
  $kendo-form-hint-margin-top: map.get( $kendo-spacing, 1 ) !default;
83
89
 
84
- /// The text color of the font hint
90
+ /// The text color of the Form hint.
85
91
  /// @group form
86
92
  $kendo-form-hint-text: get-theme-color-var( neutral-130 ) !default;
87
93
 
88
- /// Form row small size spacing
94
+ /// The row spacing of the small Form.
89
95
  /// @group form
90
96
  $kendo-form-sm-rows-spacing: map.get( $kendo-spacing, 3 ) !default;
91
- /// Form row medium size spacing
97
+ /// The row spacing of the medium Form.
92
98
  /// @group form
93
99
  $kendo-form-md-rows-spacing: $kendo-form-sm-rows-spacing !default;
94
- /// Form row large size spacing
100
+ /// The row spacing of the large Form.
95
101
  /// @group form
96
102
  $kendo-form-lg-rows-spacing: $kendo-form-sm-rows-spacing !default;
97
103
 
98
- /// The margin of the form separator
104
+ /// The margin of the Form separator.
99
105
  /// @group form
100
106
  $kendo-form-separator-margin: map.get( $kendo-spacing, 3 ) 0 0 !default;
101
107
 
102
- /// The border color of the form separator
108
+ /// The border color of the Form separator.
103
109
  /// @group form
104
110
  $kendo-form-separator-border-color: $kendo-form-legend-border-color !default;
105
111
 
106
- /// The top padding of the horizontal form label
112
+ /// The top padding of the label in the horizontal Form.
107
113
  /// @group form
108
114
  $kendo-horizontal-form-label-padding-top: map.get( $kendo-spacing, 1.5 ) !default;
109
115
 
110
- /// The horizontal margin of the horizontal form
116
+ /// The horizontal margin of the label in the horizontal Form.
111
117
  /// @group form
112
118
  $kendo-horizontal-form-label-margin-x: map.get( $kendo-spacing, 2 ) !default;
113
119
 
114
- /// The width of the horizontal form label
120
+ /// The width of the label in the horizontal Form.
115
121
  /// @group form
116
122
  $kendo-horizontal-form-label-width: 25% !default;
117
123
 
118
- /// The horizontal alignment of the form label
124
+ /// The horizontal alignment of the label in the horizontal Form.
125
+ /// @group form
119
126
  $kendo-horizontal-form-label-align: flex-end !default;
120
127
 
121
- /// The max-width of the horizontal form
128
+ /// The maximum width of the field wrap in the horizontal Form.
122
129
  /// @group form
123
130
  $kendo-horizontal-form-field-wrap-max-width: calc( ( 100% - #{$kendo-horizontal-form-label-width} ) - #{$kendo-horizontal-form-label-margin-x} ) !default;
124
131
 
125
- /// The width of the element of the inline form
132
+ /// The width of the inline Form element.
126
133
  /// @group form
127
134
  $kendo-inline-form-element-width: 25% !default;
128
135
 
129
- /// The invalid text color of the form
136
+ /// The invalid text color of the Form.
130
137
  /// @group form
131
138
  $kendo-forms-invalid-color: var( --kendo-invalid-text, initial ) !default;
132
139
 
133
140
 
134
- // Label
141
+ /// The horizontal margin of the optional label in the Form.
142
+ /// @group form
135
143
  $kendo-label-optional-margin-x: map.get( $kendo-spacing, 1.5 ) !default;
144
+ /// The font size of the optional label in the Form.
145
+ /// @group form
136
146
  $kendo-label-optional-font-size: var( --kendo-font-size-sm, inherit ) !default;
147
+ /// The font style of the optional label in the Form.
148
+ /// @group form
137
149
  $kendo-label-optional-font-style: normal !default;
138
150
 
139
151
 
140
- // Fieldset
152
+ /// The margin of the Form fieldset.
153
+ /// @group form
141
154
  $kendo-fieldset-margin: map.get( $kendo-spacing, 7.5 ) !default;
155
+ /// The font size of the Form fieldset.
156
+ /// @group form
142
157
  $kendo-fieldset-font-size: var( --kendo-font-size-xl, inherit ) !default;
143
158
 
159
+ /// The background color of the Form fieldset.
160
+ /// @group form
144
161
  $kendo-fieldset-bg: transparent !default;
162
+ /// The text color of the Form fieldset.
163
+ /// @group form
145
164
  $kendo-fieldset-text: inherit !default;
165
+ /// The border color of the Form fieldset.
166
+ /// @group form
146
167
  $kendo-fieldset-border: initial !default;
147
168
 
169
+ /// The background color of the Form legend.
170
+ /// @group form
148
171
  $kendo-fieldset-legend-bg: transparent !default;
172
+ /// The text color of the Form legend.
173
+ /// @group form
149
174
  $kendo-fieldset-legend-text: get-theme-color-var( neutral-130 ) !default;
175
+ /// The border color of the Form legend.
176
+ /// @group form
150
177
  $kendo-fieldset-legend-border: initial !default;
151
178
 
152
- // Sizes
179
+ /// The sizes map for the Form.
180
+ /// @group form
153
181
  $kendo-form-sizes: (
154
182
  sm: (
155
183
  form-rows-spacing: $kendo-form-sm-rows-spacing
@@ -190,11 +190,15 @@
190
190
  > .k-svg-icon {
191
191
  padding-inline: 0;
192
192
  padding-block: var( --INTERNAL--kendo-grid-cell-padding-y, 0 );
193
- width: 100%;
194
- height: 100%;
195
193
  display: inline-block;
196
194
  outline: 0;
197
195
  }
196
+
197
+ > .k-icon {
198
+ width: 100%;
199
+ height: 100%;
200
+ }
201
+
198
202
  }
199
203
 
200
204
  .k-hierarchy-cell + .k-grid-content-sticky {
@@ -28,13 +28,16 @@
28
28
  }
29
29
 
30
30
  // RTL icons
31
- .k-rtl .k-i-indent-increase,
32
- .k-rtl .k-i-indent-decrease,
33
- .k-rtl .k-i-caret-alt-right,
34
- .k-rtl .k-i-caret-alt-down,
35
- [dir="rtl"] .k-i-caret-alt-right,
36
- [dir="rtl"] .k-i-caret-alt-down {
37
- transform: scaleX(-1);
31
+ .k-rtl,
32
+ [dir="rtl"] {
33
+ .k-i-indent-increase,
34
+ .k-i-indent-decrease,
35
+ .k-i-caret-alt-right,
36
+ .k-i-caret-alt-left,
37
+ .k-svg-i-caret-alt-right,
38
+ .k-svg-i-caret-alt-left {
39
+ transform: scaleX(-1);
40
+ }
38
41
  }
39
42
 
40
43
  .k-icon-action {
@@ -36,8 +36,8 @@
36
36
  box-sizing: border-box;
37
37
  }
38
38
 
39
- .k-input,
40
- .k-picker {
39
+ > .k-input,
40
+ > .k-picker {
41
41
  border-width: 0 !important; // sass-lint:disable-line no-important
42
42
  color: inherit;
43
43
  background: none;
@@ -226,14 +226,15 @@
226
226
  .k-input-prefix > .k-svg-icon,
227
227
  .k-input-suffix > .k-icon,
228
228
  .k-input-suffix > .k-svg-icon {
229
- width: var( --INTERNAL--kendo-input-icon-size, min-content );
230
- height: var( --INTERNAL--kendo-input-icon-size, min-content );
229
+ padding-inline: var( --INTERNAL--kendo-input-padding-y, #{$kendo-input-md-padding-y} );
230
+ padding-block: var( --INTERNAL--kendo-input-padding-y, #{$kendo-input-md-padding-y} );
231
231
  flex: none;
232
232
  align-self: center;
233
233
  display: inline-flex;
234
234
  flex-flow: row nowrap;
235
235
  align-items: center;
236
236
  justify-content: center;
237
+ box-sizing: content-box;
237
238
  }
238
239
 
239
240
  // Input with SVG icon