@progress/kendo-theme-fluent 7.0.3-dev.2 → 7.1.0-dev.0

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.
@@ -3,7 +3,7 @@
3
3
  "name": "All",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "7.0.3-dev.2",
6
+ "version": "7.1.0-dev.0",
7
7
  "api": "modern",
8
8
  "previewColors": [
9
9
  "#ffffff",
@@ -3,7 +3,7 @@
3
3
  "name": "Fluent Main",
4
4
  "product": "kendo",
5
5
  "base": "@progress/kendo-theme-fluent",
6
- "version": "7.0.3-dev.2",
6
+ "version": "7.1.0-dev.0",
7
7
  "api": "modern",
8
8
  "previewColors": [
9
9
  "#ffffff",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-fluent",
3
3
  "description": "A css variables based theme for Kendo UI that follows the Fluent design system guidelines.",
4
- "version": "7.0.3-dev.2",
4
+ "version": "7.1.0-dev.0",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -53,12 +53,12 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@progress/kendo-svg-icons": "2.0.0",
56
- "@progress/kendo-theme-core": "7.0.3-dev.2",
57
- "@progress/kendo-theme-utils": "7.0.3-dev.2"
56
+ "@progress/kendo-theme-core": "7.1.0-dev.0",
57
+ "@progress/kendo-theme-utils": "7.1.0-dev.0"
58
58
  },
59
59
  "directories": {
60
60
  "doc": "docs",
61
61
  "lib": "lib"
62
62
  },
63
- "gitHead": "00fbdd430c74d792dadbb35dc7f15107c8973d09"
63
+ "gitHead": "e0a0885fdf92926065f788aab0ad62453b875258"
64
64
  }
@@ -2,45 +2,45 @@
2
2
  @use "sass:math";
3
3
  @use "../core/" as *;
4
4
 
5
- /// Spacer of the captcha.
5
+ /// The spacer of the Captcha.
6
6
  /// @group captcha
7
7
  $kendo-captcha-spacer: map.get( $kendo-spacing, 2 ) !default;
8
8
 
9
- /// Default width of the captcha.
9
+ /// The width of the Captcha.
10
10
  /// @group captcha
11
11
  $kendo-captcha-width: 280px !default;
12
- /// Font family of the captcha.
12
+ /// The font family of the Captcha.
13
13
  /// @group captcha
14
14
  $kendo-captcha-font-family: var( --kendo-font-family, inherit ) !default;
15
- /// Font size of the captcha.
15
+ /// The font size of the Captcha.
16
16
  /// @group captcha
17
17
  $kendo-captcha-font-size: var( --kendo-font-size, inherit ) !default;
18
- /// Line height of the captcha.
18
+ /// The line height of the Captcha.
19
19
  /// @group captcha
20
20
  $kendo-captcha-line-height: var( --kendo-line-height, normal ) !default;
21
- /// Spacing of the captcha.
21
+ /// The spacing of the Captcha.
22
22
  /// @group captcha
23
23
  $kendo-captcha-spacing: $kendo-captcha-spacer !default;
24
- /// Background color of the captcha.
24
+ /// The background color of the Captcha.
25
25
  /// @group captcha
26
26
  $kendo-captcha-bg: var( --kendo-component-bg, initial ) !default;
27
- /// Text color of the captcha.
27
+ /// The text color of the Captcha.
28
28
  /// @group captcha
29
29
  $kendo-captcha-text: var( --kendo-component-text, initial ) !default;
30
- /// Border color of the captcha.
30
+ /// The border color of the Captcha.
31
31
  /// @group captcha
32
32
  $kendo-captcha-border: var( --kendo-component-border, initial ) !default;
33
33
 
34
- /// Spacing of the captcha image wrapper.
34
+ /// The spacing of the Captcha image wrapper.
35
35
  /// @group captcha
36
36
  $kendo-captcha-image-wrap-spacing: $kendo-captcha-spacer !default;
37
- /// Spacing of the captcha image controls.
37
+ /// The spacing of the Captcha image controls.
38
38
  /// @group captcha
39
39
  $kendo-captcha-image-controls-spacing: math.div( $kendo-captcha-spacer, 2 ) !default;
40
40
 
41
- /// Offset of the captcha validation text.
41
+ /// The offset of the Captcha validation message.
42
42
  /// @group captcha
43
43
  $kendo-captcha-validation-offset-y: math.div( $kendo-captcha-spacer, 2 ) !default;
44
- /// Font-size of the captcha validation text.
44
+ /// The font size of the Captcha validation message.
45
45
  /// @group captcha
46
46
  $kendo-captcha-validation-font-size: var( --kendo-font-size-sm, inherit ) !default;
@@ -36,6 +36,15 @@
36
36
  *::after {
37
37
  box-sizing: border-box;
38
38
  }
39
+
40
+ // Card avatar
41
+ .k-card-avatar,
42
+ .k-avatar {
43
+ margin-inline-end: var( --kendo-card-avatar-spacing, #{$kendo-card-avatar-spacing} );
44
+ width: var( --kendo-card-avatar-size, #{$kendo-card-avatar-size} );
45
+ height: var( --kendo-card-avatar-size, #{$kendo-card-avatar-size} );
46
+ flex-basis: var( --kendo-card-avatar-size, #{$kendo-card-avatar-size} );
47
+ }
39
48
  }
40
49
  .k-card > .k-card-inner {
41
50
  @include border-radius( var( --kendo-card-inner-border-radius, #{$kendo-card-inner-border-radius} ) );
@@ -45,11 +54,9 @@
45
54
  position: relative;
46
55
  }
47
56
 
48
-
49
57
  // Card orientation
50
- .k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
51
- .k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
52
-
58
+ .k-card-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
59
+ .k-card-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
53
60
 
54
61
  // Card title
55
62
  .k-card-title {
@@ -131,30 +138,13 @@
131
138
  }
132
139
  }
133
140
 
134
-
135
- // Card avatar
136
- .k-card-avatar,
137
- .k-card .k-avatar {
138
- margin-inline-end: var( --kendo-card-avatar-spacing, #{$kendo-card-avatar-spacing} );
139
- width: var( --kendo-card-avatar-size, #{$kendo-card-avatar-size} );
140
- height: var( --kendo-card-avatar-size, #{$kendo-card-avatar-size} );
141
- flex-basis: var( --kendo-card-avatar-size, #{$kendo-card-avatar-size} );
142
- }
143
-
144
-
145
- // Card image
146
- .k-card-image,
141
+ // Card media
147
142
  .k-card-media {
148
143
  border: 0;
149
144
  max-width: 100%;
150
145
  flex-shrink: 0;
151
146
  overflow: hidden;
152
147
 
153
- > img {
154
- border: 0;
155
- max-width: 100%;
156
- }
157
-
158
148
  .k-card-horizontal & {
159
149
  max-width: var( --kendo-card-img-max-width, #{$kendo-card-img-max-width} );
160
150
  object-fit: cover;
@@ -172,23 +162,22 @@
172
162
  align-self: stretch;
173
163
  }
174
164
 
175
- .k-card-separator.k-separator-vertical,
176
- .k-card-horizontal > .k-card-separator {
177
- border-left-width: 1px;
178
- }
179
-
180
165
  .k-card-separator.k-separator-horizontal,
181
166
  .k-card-vertical > .k-card-separator {
182
167
  border-top-width: 1px;
183
168
  }
184
169
 
170
+ .k-card-separator.k-separator-vertical,
171
+ .k-card-horizontal > .k-card-separator {
172
+ border-left-width: 1px;
173
+ }
174
+
185
175
  .k-card > .k-hr {
186
176
  margin: 0;
187
177
  flex: 0 0 auto;
188
178
  border-color: inherit;
189
179
  }
190
180
 
191
-
192
181
  // Card actions
193
182
  .k-card-actions {
194
183
  padding-inline: var( --kendo-card-actions-padding-x, #{$kendo-card-actions-padding-x} );
@@ -203,33 +192,6 @@
203
192
  gap: var( --kendo-card-actions-gap, #{$kendo-card-actions-gap} );
204
193
  }
205
194
 
206
-
207
- // Actions align
208
- .k-card-actions-start { justify-content: flex-start; } // stylelint-disable-line block-opening-brace-space-before
209
- .k-card-actions-end { justify-content: flex-end; } // stylelint-disable-line block-opening-brace-space-before
210
- .k-card-actions-center { justify-content: center; } // stylelint-disable-line block-opening-brace-space-before
211
-
212
-
213
- // Actions orientation
214
- .k-card-actions-horizontal { flex-flow: row nowrap; } // stylelint-disable-line block-opening-brace-space-before
215
- .k-card-actions-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
216
-
217
-
218
- // Stretched actions
219
- .k-card-actions-stretched > * {
220
- flex: 1 1 auto;
221
- }
222
-
223
-
224
- // Card action
225
- .k-card-action {
226
- border-width: 0;
227
- border-style: solid;
228
- border-color: inherit;
229
- display: inline-flex;
230
- }
231
-
232
-
233
195
  // List
234
196
  .k-card-list {
235
197
  display: flex;
@@ -119,7 +119,6 @@
119
119
  z-index: auto;
120
120
  }
121
121
 
122
- .k-slider-wrap,
123
122
  .k-slider-track-wrap {
124
123
  z-index: 1;
125
124
  }
@@ -32,18 +32,6 @@
32
32
  height: 0;
33
33
  border-width: var( --kendo-dock-manager-border-width, #{$kendo-dock-manager-border-width} ) 0 0;
34
34
  }
35
-
36
- // Needed because of a bug in Chrome - Issue 1473554
37
- // A fix will be shipped likely in milestone 118 and then we can revisit this
38
- @supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance:none)) {
39
- .k-toolbar-button {
40
- padding-block: var(--INTERNAL--kendo-button-padding-x, 0 );
41
- padding-inline: var(--INTERNAL--kendo-button-padding-y, 0 );
42
- }
43
- .k-toolbar-button .k-button-text {
44
- writing-mode: vertical-lr;
45
- }
46
- }
47
35
  }
48
36
 
49
37
  // Panes
@@ -2,71 +2,71 @@
2
2
  @use "../core/" as *;
3
3
  @use "../icon/_variables.scss" as *;
4
4
 
5
- /// Horizontal padding of the dropzone.
5
+ /// The horizontal padding of the DropZone.
6
6
  /// @group dropzone
7
7
  $kendo-dropzone-padding-x: map.get( $kendo-spacing, 2 ) !default;
8
- /// Vertical padding of the dropzone.
8
+ /// The vertical padding of the DropZone.
9
9
  /// @group dropzone
10
10
  $kendo-dropzone-padding-y: map.get( $kendo-spacing, 2 ) !default;
11
- /// Border width of the dropzone.
11
+ /// The border width of the DropZone.
12
12
  /// @group dropzone
13
13
  $kendo-dropzone-border-width: 1px !default;
14
- /// Min height of the dropzone.
14
+ /// The minimum height of the DropZone.
15
15
  /// @group dropzone
16
16
  $kendo-dropzone-min-height: 220px !default;
17
17
 
18
- /// Font family of the dropzone.
18
+ /// The font family of the DropZone.
19
19
  /// @group dropzone
20
20
  $kendo-dropzone-font-family: var( --kendo-font-family, inherit ) !default;
21
- /// Font size of the dropzone.
21
+ /// The font size of the DropZone.
22
22
  /// @group dropzone
23
23
  $kendo-dropzone-font-size: var( --kendo-font-size, inherit ) !default;
24
- /// Line height of the dropzone.
24
+ /// The line height of the DropZone.
25
25
  /// @group dropzone
26
26
  $kendo-dropzone-line-height: var( --kendo-line-height, normal ) !default;
27
27
 
28
- /// Background color of the dropzone.
28
+ /// The background color of the DropZone.
29
29
  /// @group dropzone
30
30
  $kendo-dropzone-bg: k-get-theme-color-var( neutral-10 ) !default;
31
- /// Text color of the dropzone.
31
+ /// The text color of the DropZone.
32
32
  /// @group dropzone
33
33
  $kendo-dropzone-text: var( --kendo-component-text, inherit ) !default;
34
- /// Border color of the dropzone.
34
+ /// The border color of the DropZone.
35
35
  /// @group dropzone
36
36
  $kendo-dropzone-border: var( --kendo-component-border, initial ) !default;
37
37
 
38
- /// Spacing below the icon.
38
+ /// The spacing below the DropZone icon.
39
39
  /// @group dropzone
40
40
  $kendo-dropzone-icon-spacing: map.get( $kendo-spacing, 6 ) !default;
41
- /// Text color of the icon.
41
+ /// The text color of the DropZone icon.
42
42
  /// @group dropzone
43
43
  $kendo-dropzone-icon-text: k-get-theme-color-var( neutral-90 ) !default;
44
- /// Text color of the icon when the dropzone is hovered.
44
+ /// The text color of the hovered DropZone icon.
45
45
  /// @group dropzone
46
46
  $kendo-dropzone-icon-hover-text: k-get-theme-color-var( primary-100 ) !default;
47
47
 
48
- /// Font size of the hint.
48
+ /// The font size of the DropZone hint.
49
49
  /// @group dropzone
50
50
  $kendo-dropzone-hint-font-size: inherit !default;
51
- /// Font weight of the hint.
51
+ /// The font weight of the DropZone hint.
52
52
  /// @group dropzone
53
53
  $kendo-dropzone-hint-font-weight: var( --kendo-font-weight-bold, bold ) !default;
54
- /// Spacing below the hint.
54
+ /// The spacing below the DropZone hint.
55
55
  /// @group dropzone
56
56
  $kendo-dropzone-hint-spacing: map.get( $kendo-spacing, 2 ) !default;
57
- /// Text color of the hint.
57
+ /// The text color of the DropZone hint.
58
58
  /// @group dropzone
59
59
  $kendo-dropzone-hint-text: $kendo-dropzone-text !default;
60
60
 
61
- /// Font size of the note.
61
+ /// The font size of the DropZone note.
62
62
  /// @group dropzone
63
63
  $kendo-dropzone-note-font-size: var( --kendo-font-size-sm, inherit ) !default;
64
- /// Font weight of the note.
64
+ /// The font weight of the DropZone note.
65
65
  /// @group dropzone
66
66
  $kendo-dropzone-note-font-weight: inherit !default;
67
- /// Spacing below the note.
67
+ /// The spacing below the DropZone note.
68
68
  /// @group dropzone
69
69
  $kendo-dropzone-note-spacing: 0 !default;
70
- /// Text color of the note.
70
+ /// The text color of the DropZone note.
71
71
  /// @group dropzone
72
72
  $kendo-dropzone-note-text: var( --kendo-subtle-text, inherit ) !default;
@@ -3,180 +3,180 @@
3
3
  @use "../toolbar/_variables.scss" as *;
4
4
  @use "../icon/_variables.scss" as *;
5
5
 
6
- /// The space between the filemanger items.
7
- /// @group filemanger
6
+ /// The space between the FileManager items.
7
+ /// @group filemanager
8
8
  $kendo-file-manager-spacer: map.get( $kendo-spacing, 4 ) !default;
9
- /// Border width of the filemanger.
10
- /// @group filemanger
9
+ /// The border width of the FileManager.
10
+ /// @group filemanager
11
11
  $kendo-file-manager-border-width: 1px !default;
12
- /// Font family of the filemanger.
13
- /// @group filemanger
12
+ /// The font family of the FileManager.
13
+ /// @group filemanager
14
14
  $kendo-file-manager-font-family: var( --kendo-font-family, normal ) !default;
15
- /// Font size of the filemanger.
16
- /// @group filemanger
15
+ /// The font size of the FileManager.
16
+ /// @group filemanager
17
17
  $kendo-file-manager-font-size: var( --kendo-font-size, inherit ) !default;
18
- /// Line height of the filemanger.
19
- /// @group filemanger
18
+ /// The line height of the FileManager.
19
+ /// @group filemanager
20
20
  $kendo-file-manager-line-height: var( --kendo-line-height, normal ) !default;
21
- /// Background color of the filemanager component.
21
+ /// The background color of the FileManager.
22
22
  /// @group filemanager
23
23
  $kendo-file-manager-bg: var( --kendo-component-bg, transparent ) !default;
24
- /// Text color of the filemanager component.
24
+ /// The text color of the FileManager.
25
25
  /// @group filemanager
26
26
  $kendo-file-manager-text: var( --kendo-component-text, inherit ) !default;
27
- /// Border color of the filemanager component.
27
+ /// The border color of the FileManager.
28
28
  /// @group filemanager
29
29
  $kendo-file-manager-border: var( --kendo-component-border, inherit ) !default;
30
30
 
31
- /// Border width of the toolbar.
32
- /// @group filemanger
31
+ /// The border width of the FileManager Toolbar.
32
+ /// @group filemanager
33
33
  $kendo-file-manager-toolbar-border-width: $kendo-file-manager-border-width !default;
34
- /// Background color of the toolbar.
34
+ /// The background color of the FileManager Toolbar.
35
35
  /// @group filemanager
36
36
  $kendo-file-manager-toolbar-bg: $kendo-toolbar-bg !default;
37
- /// Text color of the toolbar.
37
+ /// The text color of the FileManager Toolbar.
38
38
  /// @group filemanager
39
39
  $kendo-file-manager-toolbar-text: $kendo-toolbar-text !default;
40
- /// Border color of the toolbar.
40
+ /// The border color of the FileManager Toolbar.
41
41
  /// @group filemanager
42
42
  $kendo-file-manager-toolbar-border: $kendo-toolbar-border !default;
43
43
 
44
- /// Horizontal padding of the navigation.
44
+ /// The horizontal padding of the FileManager Navigation.
45
45
  /// @group filemanager
46
46
  $kendo-file-manager-navigation-padding-x: $kendo-file-manager-spacer !default;
47
- /// Vertical padding of the navigation.
47
+ /// The vertical padding of the FileManager Navigation.
48
48
  /// @group filemanager
49
49
  $kendo-file-manager-navigation-padding-y: $kendo-file-manager-spacer !default;
50
- /// Width of the navigation.
50
+ /// The width of the FileManager Navigation.
51
51
  /// @group filemanager
52
52
  $kendo-file-manager-navigation-width: 20% !default;
53
- /// Border width of the navigation.
53
+ /// The border width of the FileManager Navigation.
54
54
  /// @group filemanager
55
55
  $kendo-file-manager-navigation-border-width: $kendo-file-manager-border-width !default;
56
- /// Background color of the navigation.
56
+ /// The background color of the FileManager Navigation.
57
57
  /// @group filemanager
58
58
  $kendo-file-manager-navigation-bg: transparent !default;
59
- /// Text color of the navigation.
59
+ /// The text color of the FileManager Navigation.
60
60
  /// @group filemanager
61
61
  $kendo-file-manager-navigation-text: inherit !default;
62
- /// Border color of the navigation.
62
+ /// The border color of the FileManager Navigation.
63
63
  /// @group filemanager
64
64
  $kendo-file-manager-navigation-border: inherit !default;
65
65
 
66
- /// Horizontal padding of the breadcrumb.
66
+ /// The horizontal padding of the FileManager Breadcrumb.
67
67
  /// @group filemanager
68
68
  $kendo-file-manager-breadcrumb-padding-x: map.get( $kendo-spacing, 2 ) !default;
69
- /// Vertical padding of the breadcrumb.
69
+ /// The vertical padding of the FileManager Breadcrumb.
70
70
  /// @group filemanager
71
71
  $kendo-file-manager-breadcrumb-padding-y: map.get( $kendo-spacing, 2 ) !default;
72
- /// Border width of the breadcrumb.
72
+ /// The border width of the FileManager Breadcrumb.
73
73
  /// @group filemanager
74
74
  $kendo-file-manager-breadcrumb-border-width: $kendo-file-manager-border-width !default;
75
- /// Background color of the breadcrumb.
75
+ /// The background color of the FileManager Breadcrumb.
76
76
  /// @group filemanager
77
77
  $kendo-file-manager-breadcrumb-bg: $kendo-toolbar-bg !default;
78
- /// Text color of the breadcrumb.
78
+ /// The text color of the FileManager Breadcrumb.
79
79
  /// @group filemanager
80
80
  $kendo-file-manager-breadcrumb-text: inherit !default;
81
- /// Border color of the breadcrumb.
81
+ /// The border color of the FileManager Breadcrumb.
82
82
  /// @group filemanager
83
83
  $kendo-file-manager-breadcrumb-border: inherit !default;
84
84
 
85
- /// Background color of the listview.
85
+ /// The background color of the FileManager ListView.
86
86
  /// @group filemanager
87
87
  $kendo-file-manager-listview-bg: transparent !default;
88
- /// Text color of the listview.
88
+ /// The text color of the FileManager ListView.
89
89
  /// @group filemanager
90
90
  $kendo-file-manager-listview-text: inherit !default;
91
- /// Border color of the listview.
91
+ /// The border color of the FileManager ListView.
92
92
  /// @group filemanager
93
93
  $kendo-file-manager-listview-border: inherit !default;
94
94
 
95
- /// Horizontal padding of the listview item.
95
+ /// The horizontal padding of the FileManager ListView item.
96
96
  /// @group filemanager
97
97
  $kendo-file-manager-listview-item-padding-x: map.get( $kendo-spacing, 4 ) !default;
98
- /// Vertical padding of the listview item.
98
+ /// The vertical padding of the FileManager ListView item.
99
99
  /// @group filemanager
100
100
  $kendo-file-manager-listview-item-padding-y: map.get( $kendo-spacing, 4 ) !default;
101
- /// Width of the listview item.
101
+ /// The width of the FileManager ListView item.
102
102
  /// @group filemanager
103
103
  $kendo-file-manager-listview-item-width: 120px !default;
104
- /// Height of the listview item.
104
+ /// The height of the FileManager ListView item.
105
105
  /// @group filemanager
106
106
  $kendo-file-manager-listview-item-height: 120px !default;
107
107
 
108
- /// Background color of the listview item icon.
108
+ /// The background color of the FileManager ListView item icon.
109
109
  /// @group filemanager
110
110
  $kendo-file-manager-listview-item-icon-bg: transparent !default;
111
- /// Text color of the listview item icon.
111
+ /// The text color of the FileManager ListView item icon.
112
112
  /// @group filemanager
113
113
  $kendo-file-manager-listview-item-icon-text: var( --kendo-subtle-text, inherit ) !default;
114
- /// Border color of the listview item icon.
114
+ /// The border color of the FileManager ListView item icon.
115
115
  /// @group filemanager
116
116
  $kendo-file-manager-listview-item-icon-border: inherit !default;
117
- /// Background color of the focused listview item icon.
117
+ /// The background color of the FileManager focused ListView item icon.
118
118
  /// @group filemanager
119
119
  $kendo-file-manager-listview-item-icon-focus-bg: transparent !default;
120
- /// Text color of the focused listview item icon.
120
+ /// The text color of the FileManager focused ListView item icon.
121
121
  /// @group filemanager
122
122
  $kendo-file-manager-listview-item-icon-focus-text: inherit !default;
123
- /// Border color of the focused listview item icon.
123
+ /// The border color of the FileManager focused ListView item icon.
124
124
  /// @group filemanager
125
125
  $kendo-file-manager-listview-item-icon-focus-border: inherit !default;
126
- /// Background color of the selected listview item icon.
126
+ /// Background color of the FileManager selected ListView item icon.
127
127
  /// @group filemanager
128
128
  $kendo-file-manager-listview-item-icon-selected-bg: transparent !default;
129
- /// Text color of the selected listview item icon.
129
+ /// Text color of the FileManager selected ListView item icon.
130
130
  /// @group filemanager
131
131
  $kendo-file-manager-listview-item-icon-selected-text: inherit !default;
132
- /// Border color of the selected listview item icon.
132
+ /// Border color of the FileManager selected ListView item icon.
133
133
  /// @group filemanager
134
134
  $kendo-file-manager-listview-item-icon-selected-border: inherit !default;
135
135
 
136
- /// Background color of the grid.
136
+ /// The background color of the FileManager Grid.
137
137
  /// @group filemanager
138
138
  $kendo-file-manager-grid-bg: transparent !default;
139
- /// Text color of the grid.
139
+ /// The text color of the FileManager Grid.
140
140
  /// @group filemanager
141
141
  $kendo-file-manager-grid-text: inherit !default;
142
- /// Border color of the grid.
142
+ /// The border color of the FileManager Grid.
143
143
  /// @group filemanager
144
144
  $kendo-file-manager-grid-border: inherit !default;
145
145
 
146
- /// Horizontal padding of the preview.
146
+ /// The horizontal padding of the FileManager preview.
147
147
  /// @group filemanager
148
148
  $kendo-file-manager-preview-padding-x: $kendo-file-manager-spacer !default;
149
- /// Vertical padding of the preview.
149
+ /// The vertical padding of the FileManager preview.
150
150
  /// @group filemanager
151
151
  $kendo-file-manager-preview-padding-y: $kendo-file-manager-spacer !default;
152
- /// Width of the preview.
152
+ /// The width of the FileManager preview.
153
153
  /// @group filemanager
154
154
  $kendo-file-manager-preview-width: 20% !default;
155
- /// Border width of the preview.
155
+ /// The border width of the FileManager preview.
156
156
  /// @group filemanager
157
157
  $kendo-file-manager-preview-border-width: $kendo-file-manager-border-width !default;
158
- /// Spacing of the preview.
158
+ /// The spacing of the FileManager preview.
159
159
  /// @group filemanager
160
160
  $kendo-file-manager-preview-spacing: $kendo-file-manager-spacer !default;
161
- /// Spacing of the preview.
161
+ /// The gap between the columns in the FileManager preview.
162
162
  /// @group filemanager
163
163
  $kendo-file-manager-preview-column-gap: map.get( $kendo-spacing, 1 ) !default;
164
- /// Background color of the preview.
164
+ /// The background color of the FileManager preview.
165
165
  /// @group filemanager
166
166
  $kendo-file-manager-preview-bg: transparent !default;
167
- /// Text color of the preview.
167
+ /// The text color of the FileManager preview.
168
168
  /// @group filemanager
169
169
  $kendo-file-manager-preview-text: inherit !default;
170
- /// Border color of the preview.
170
+ /// The border color of the FileManager preview.
171
171
  /// @group filemanager
172
172
  $kendo-file-manager-preview-border: inherit !default;
173
173
 
174
- /// Background color of the preview icon.
174
+ /// The background color of the FileManager preview icon.
175
175
  /// @group filemanager
176
176
  $kendo-file-manager-preview-icon-bg: transparent !default;
177
- /// Text color of the preview icon.
177
+ /// The text color of the FileManager preview icon.
178
178
  /// @group filemanager
179
179
  $kendo-file-manager-preview-icon-text: var( --kendo-subtle-text, inherit ) !default;
180
- /// Border color of the preview icon.
180
+ /// The border color of the FileManager preview icon.
181
181
  /// @group filemanager
182
182
  $kendo-file-manager-preview-icon-border: inherit !default;
@@ -1002,6 +1002,7 @@
1002
1002
  $_selection-aggregates-padding-x: map.get( $size-props, selection-aggregates-padding-x );
1003
1003
  $_selection-aggregates-padding-y: map.get( $size-props, selection-aggregates-padding-y );
1004
1004
 
1005
+ .k-grid .k-grid-#{$size},
1005
1006
  .k-grid-#{$size} {
1006
1007
  --INTERNAL--kendo-grid-header-padding-x: var( --kendo-grid-header-padding-x-#{$size}, #{$_header-padding-x} );
1007
1008
  --INTERNAL--kendo-grid-header-padding-y: var( --kendo-grid-header-padding-y-#{$size}, #{$_header-padding-y} );