@progress/kendo-theme-fluent 14.4.0-dev.3 → 14.4.0-dev.4
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.
- package/dist/all.css +1 -1
- package/dist/fluent-1-dark.css +1 -1
- package/dist/fluent-1.css +1 -1
- package/dist/fluent-main-dark.css +1 -1
- package/dist/fluent-main.css +1 -1
- package/dist/meta/sassdoc-data.json +6650 -6488
- package/dist/meta/sassdoc-raw-data.json +3275 -3200
- package/dist/meta/variables.json +134 -55
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-1-dark.json +1 -1
- package/lib/swatches/fluent-1.json +1 -1
- package/lib/swatches/fluent-main-dark.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/bottom-navigation/_variables.scss +2 -1
- package/scss/button/_layout.scss +15 -14
- package/scss/color-preview/_layout.scss +1 -1
- package/scss/drawer/_variables.scss +2 -1
- package/scss/filemanager/_variables.scss +5 -0
- package/scss/grid/_layout.scss +2 -1
- package/scss/grid/_variables.scss +9 -4
- package/scss/icons/_variables.scss +0 -41
- package/scss/input/_variables.scss +4 -3
- package/scss/map/_variables.scss +2 -1
- package/scss/menu/_variables.scss +13 -7
- package/scss/panelbar/_variables.scss +8 -2
- package/scss/pdf-viewer/_variables.scss +2 -1
- package/scss/pivotgrid/_layout.scss +3 -2
- package/scss/scheduler/_variables.scss +5 -0
- package/scss/spreadsheet/_variables.scss +2 -1
- package/scss/stepper/_variables.scss +5 -0
- package/scss/tabstrip/_variables.scss +5 -0
- package/scss/toolbar/_variables.scss +5 -0
- package/scss/tooltip/_variables.scss +5 -0
- package/scss/treelist/_layout.scss +2 -1
- package/scss/treeview/_layout.scss +4 -3
- package/scss/treeview/_variables.scss +5 -0
- package/scss/upload/_variables.scss +2 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../icons/_variables.scss" as *;
|
|
3
4
|
@use "../core/spacing/_index.scss" as *;
|
|
4
5
|
|
|
5
6
|
/// The background color of the Drawer.
|
|
@@ -86,7 +87,7 @@ $kendo-drawer-icon-padding-y: var( --kendo-drawer-icon-padding-y, k-spacing(1) )
|
|
|
86
87
|
|
|
87
88
|
/// The initial width of the mini Drawer.
|
|
88
89
|
/// @group drawer
|
|
89
|
-
$kendo-drawer-mini-initial-width: calc( 2 * #{$kendo-drawer-item-padding-x} + 2 * #{$kendo-drawer-items-padding-x} +
|
|
90
|
+
$kendo-drawer-mini-initial-width: calc( 2 * #{$kendo-drawer-item-padding-x} + 2 * #{$kendo-drawer-items-padding-x} + #{$kendo-icon-size} ) !default;
|
|
90
91
|
|
|
91
92
|
/// The border width of the Drawer item ripple.
|
|
92
93
|
/// @group drawer
|
|
@@ -164,6 +164,10 @@ $kendo-file-manager-preview-spacing: $kendo-file-manager-spacer !default;
|
|
|
164
164
|
/// The gap between the columns in the FileManager preview.
|
|
165
165
|
/// @group file-manager
|
|
166
166
|
$kendo-file-manager-preview-column-gap: var( --kendo-file-manager-preview-column-gap, #{k-spacing(1)} ) !default;
|
|
167
|
+
|
|
168
|
+
/// The icon spacing in FileManager items.
|
|
169
|
+
/// @group file-manager
|
|
170
|
+
$kendo-file-manager-icon-spacing: var( --kendo-file-manager-icon-spacing, #{k-spacing(2)} ) !default;
|
|
167
171
|
/// The background color of the FileManager preview.
|
|
168
172
|
/// @group file-manager
|
|
169
173
|
$kendo-file-manager-preview-bg: var( --kendo-file-manager-preview-bg, transparent ) !default;
|
|
@@ -230,6 +234,7 @@ $kendo-file-manager-preview-icon-border: var( --kendo-file-manager-preview-icon-
|
|
|
230
234
|
$kendo-file-manager-preview-border-width: $kendo-file-manager-preview-border-width,
|
|
231
235
|
$kendo-file-manager-preview-spacing: $kendo-file-manager-preview-spacing,
|
|
232
236
|
$kendo-file-manager-preview-column-gap: $kendo-file-manager-preview-column-gap,
|
|
237
|
+
$kendo-file-manager-icon-spacing: $kendo-file-manager-icon-spacing,
|
|
233
238
|
$kendo-file-manager-preview-bg: $kendo-file-manager-preview-bg,
|
|
234
239
|
$kendo-file-manager-preview-text: $kendo-file-manager-preview-text,
|
|
235
240
|
$kendo-file-manager-preview-border: $kendo-file-manager-preview-border,
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use "sass:math";
|
|
3
3
|
@use "../core/_index.scss" as *;
|
|
4
4
|
@use "../core/functions/index.scss" as *;
|
|
5
|
+
@use "../icons/_variables.scss" as *;
|
|
5
6
|
@use "../button/_variables.scss" as *;
|
|
6
7
|
@use "../chip/_variables.scss" as *;
|
|
7
8
|
@use "../forms/_variables.scss" as *;
|
|
@@ -145,7 +146,7 @@
|
|
|
145
146
|
}
|
|
146
147
|
|
|
147
148
|
.k-sort-order {
|
|
148
|
-
height:
|
|
149
|
+
height: $ki-icon-size;
|
|
149
150
|
font-size: $kendo-grid-sort-index-font-size;
|
|
150
151
|
margin-inline-start: $kendo-grid-sort-index-spacing-x;
|
|
151
152
|
}
|
|
@@ -245,7 +245,7 @@ $kendo-grid-header-font-size: var( --kendo-grid-header-font-size, inherit ) !def
|
|
|
245
245
|
$kendo-grid-header-font-weight: var( --kendo-grid-header-font-weight, var(--kendo-font-weight-normal) ) !default;
|
|
246
246
|
/// The menu spacing of the Grid header.
|
|
247
247
|
/// @group grid
|
|
248
|
-
$kendo-grid-header-menu-spacing: var( --kendo-grid-header-menu-spacing,
|
|
248
|
+
$kendo-grid-header-menu-spacing: var( --kendo-grid-header-menu-spacing, #{$kendo-icon-spacing} ) !default;
|
|
249
249
|
/// The border width of the first cell in the Grid header.
|
|
250
250
|
/// @group grid
|
|
251
251
|
$kendo-grid-header-first-border-width: var( --kendo-grid-header-first-border-width, #{$kendo-grid-border-width} ) !default;
|
|
@@ -356,7 +356,7 @@ $kendo-grid-sort-index-font-size: var( --kendo-grid-sort-index-font-size, var(--
|
|
|
356
356
|
$kendo-grid-sort-index-spacing-x: var( --kendo-grid-sort-index-spacing-x, #{k-spacing(0.5)} ) !default;
|
|
357
357
|
/// The spacing of the Grid sort icon.
|
|
358
358
|
/// @group grid
|
|
359
|
-
$kendo-grid-sort-icon-spacing: var( --kendo-grid-sort-icon-spacing,
|
|
359
|
+
$kendo-grid-sort-icon-spacing: var( --kendo-grid-sort-icon-spacing, #{$kendo-icon-spacing} ) !default;
|
|
360
360
|
/// The text color of the Grid sort indicator.
|
|
361
361
|
/// @group grid
|
|
362
362
|
$kendo-grid-sort-indicator-text: var( --kendo-grid-sort-indicator-text, k-color(on-app-surface) ) !default;
|
|
@@ -443,6 +443,10 @@ $kendo-grid-column-menu-max-width: var( --kendo-grid-column-menu-max-width, 320p
|
|
|
443
443
|
/// The spacing of the Grid column menu.
|
|
444
444
|
/// @group grid
|
|
445
445
|
$kendo-grid-column-menu-spacing: var( --kendo-grid-column-menu-spacing, #{k-spacing(2)} ) !default;
|
|
446
|
+
|
|
447
|
+
/// The spacing between icon and text in Grid column menu items.
|
|
448
|
+
/// @group grid
|
|
449
|
+
$kendo-grid-column-menu-icon-spacing: var( --kendo-grid-column-menu-icon-spacing, #{k-spacing(2)} ) !default;
|
|
446
450
|
/// The focus shadow of the Grid column menu.
|
|
447
451
|
/// @group grid
|
|
448
452
|
$kendo-grid-column-menu-shadow: var( --kendo-grid-column-menu-shadow, k-elevation(4) ) !default;
|
|
@@ -538,10 +542,10 @@ $kendo-grid-column-menu-tabbed-bg: var( --kendo-grid-column-menu-tabbed-bg, k-co
|
|
|
538
542
|
|
|
539
543
|
/// The default width of the Grid drag cell.
|
|
540
544
|
/// @group grid
|
|
541
|
-
$kendo-grid-drag-cell-width: var( --kendo-grid-drag-cell-width, calc(
|
|
545
|
+
$kendo-grid-drag-cell-width: var( --kendo-grid-drag-cell-width, calc( #{$kendo-icon-size} * 2.25 ) ) !default;
|
|
542
546
|
/// The default width of the Grid hierarchy cell.
|
|
543
547
|
/// @group grid
|
|
544
|
-
$kendo-grid-hierarchy-col-width: var( --kendo-grid-hierarchy-col-width, calc(
|
|
548
|
+
$kendo-grid-hierarchy-col-width: var( --kendo-grid-hierarchy-col-width, calc( #{$kendo-icon-size} * 2 ) ) !default;
|
|
545
549
|
|
|
546
550
|
/// The background color of the Grid row resize indicator.
|
|
547
551
|
/// @group grid
|
|
@@ -650,6 +654,7 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-semibold) !defaul
|
|
|
650
654
|
$kendo-grid-header-font-size: $kendo-grid-header-font-size,
|
|
651
655
|
$kendo-grid-header-first-border: $kendo-grid-header-first-border-width,
|
|
652
656
|
$kendo-grid-header-menu-icon-spacing: $kendo-grid-header-menu-spacing,
|
|
657
|
+
$kendo-grid-column-menu-icon-spacing: $kendo-grid-column-menu-icon-spacing,
|
|
653
658
|
$kendo-grid-toolbar-border-width: $kendo-grid-toolbar-border-width,
|
|
654
659
|
$kendo-grid-bg: $kendo-grid-bg,
|
|
655
660
|
$kendo-grid-text: $kendo-grid-text,
|
|
@@ -9,27 +9,6 @@ $kendo-icon-default-size: "md" !default;
|
|
|
9
9
|
/// The default size of the Icons.
|
|
10
10
|
/// @group icon
|
|
11
11
|
$kendo-icon-size: 1rem !default;
|
|
12
|
-
/// The xs size of the Icon.
|
|
13
|
-
/// @group icon
|
|
14
|
-
$kendo-icon-size-xs: calc( var( --kendo-icon-size, 1rem ) * .75 ) !default;
|
|
15
|
-
/// The sm size of the Icon.
|
|
16
|
-
/// @group icon
|
|
17
|
-
$kendo-icon-size-sm: calc( var( --kendo-icon-size-sm, 1rem ) * .875 ) !default;
|
|
18
|
-
/// The md size of the Icon.
|
|
19
|
-
/// @group icon
|
|
20
|
-
$kendo-icon-size-md: 1rem !default;
|
|
21
|
-
/// The lg size of the Icon.
|
|
22
|
-
/// @group icon
|
|
23
|
-
$kendo-icon-size-lg: calc( var( --kendo-icon-size-lg, 1rem ) * 1.25 ) !default;
|
|
24
|
-
/// The xl size of the Icon.
|
|
25
|
-
/// @group icon
|
|
26
|
-
$kendo-icon-size-xl: calc( var( --kendo-icon-size, 1rem ) * 1.5 ) !default;
|
|
27
|
-
/// The xxl size of the Icon.
|
|
28
|
-
/// @group icon
|
|
29
|
-
$kendo-icon-size-xxl: calc( var( --kendo-icon-size-xxl, 1rem ) * 2 ) !default;
|
|
30
|
-
/// The xxxl size of the Icon.
|
|
31
|
-
/// @group icon
|
|
32
|
-
$kendo-icon-size-xxxl: calc( var( --kendo-icon-size-xxxl, 1rem ) * 3 ) !default;
|
|
33
12
|
|
|
34
13
|
/// The spacing around the Icons.
|
|
35
14
|
/// @group icon
|
|
@@ -48,28 +27,8 @@ $kendo-action-icon-color: var( --kendo-action-icon-color, #{k-color( primary-on-
|
|
|
48
27
|
@forward "@progress/kendo-theme-core/scss/components/icons/_variables.scss" with (
|
|
49
28
|
$kendo-icon-default-size: $kendo-icon-default-size,
|
|
50
29
|
$kendo-icon-size: $kendo-icon-size,
|
|
51
|
-
$kendo-icon-size-xs: $kendo-icon-size-xs,
|
|
52
|
-
$kendo-icon-size-sm: $kendo-icon-size-sm,
|
|
53
|
-
$kendo-icon-size-md: $kendo-icon-size-md,
|
|
54
|
-
$kendo-icon-size-lg: $kendo-icon-size-lg,
|
|
55
|
-
$kendo-icon-size-xl: $kendo-icon-size-xl,
|
|
56
|
-
$kendo-icon-size-xxl: $kendo-icon-size-xxl,
|
|
57
|
-
$kendo-icon-size-xxxl: $kendo-icon-size-xxxl,
|
|
58
30
|
$kendo-icon-spacing: $kendo-icon-spacing,
|
|
59
31
|
$kendo-icon-padding: $kendo-icon-padding,
|
|
60
32
|
$kendo-accent-icon-color: $kendo-accent-icon-color,
|
|
61
33
|
$kendo-action-icon-color: $kendo-action-icon-color
|
|
62
34
|
);
|
|
63
|
-
|
|
64
|
-
:root {
|
|
65
|
-
--kendo-icon-size: var( --kendo-icon-size, 1rem );
|
|
66
|
-
--kendo-icon-size-xs: #{$kendo-icon-size-xs};
|
|
67
|
-
--kendo-icon-size-sm: #{$kendo-icon-size-sm};
|
|
68
|
-
--kendo-icon-size-md: #{$kendo-icon-size-md};
|
|
69
|
-
--kendo-icon-size-lg: #{$kendo-icon-size-lg};
|
|
70
|
-
--kendo-icon-size-xl: #{$kendo-icon-size-xl};
|
|
71
|
-
--kendo-icon-size-xxl: #{$kendo-icon-size-xxl};
|
|
72
|
-
--kendo-icon-size-xxxl: #{$kendo-icon-size-xxxl};
|
|
73
|
-
--kendo-icon-spacing: #{$kendo-icon-spacing};
|
|
74
|
-
--kendo-icon-padding: #{$kendo-icon-padding};
|
|
75
|
-
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../icons/_variables.scss" as *;
|
|
3
4
|
@use "../button/_variables.scss"as *;
|
|
4
5
|
|
|
5
6
|
/// The default fill mode of the Input.
|
|
@@ -441,7 +442,7 @@ $kendo-input-sizes: (
|
|
|
441
442
|
padding-y: $kendo-input-sm-padding-y,
|
|
442
443
|
font-size: $kendo-input-sm-font-size,
|
|
443
444
|
line-height: $kendo-input-sm-line-height,
|
|
444
|
-
icon-size: calc(
|
|
445
|
+
icon-size: calc( #{$kendo-icon-size} + calc( #{$kendo-input-md-padding-y} * 2 ) ),
|
|
445
446
|
button-padding-x: $kendo-input-sm-padding-y,
|
|
446
447
|
button-padding-y: $kendo-input-sm-padding-y,
|
|
447
448
|
button-width: $kendo-input-sm-button-width
|
|
@@ -451,7 +452,7 @@ $kendo-input-sizes: (
|
|
|
451
452
|
padding-y: $kendo-input-md-padding-y,
|
|
452
453
|
font-size: $kendo-input-md-font-size,
|
|
453
454
|
line-height: $kendo-input-md-line-height,
|
|
454
|
-
icon-size: calc(
|
|
455
|
+
icon-size: calc( #{$kendo-icon-size} + calc( #{$kendo-input-sm-padding-y} * 2 ) ),
|
|
455
456
|
button-padding-x: $kendo-input-md-padding-y,
|
|
456
457
|
button-padding-y: $kendo-input-md-padding-y,
|
|
457
458
|
button-width: $kendo-input-md-button-width
|
|
@@ -461,7 +462,7 @@ $kendo-input-sizes: (
|
|
|
461
462
|
padding-y: $kendo-input-lg-padding-y,
|
|
462
463
|
font-size: $kendo-input-lg-font-size,
|
|
463
464
|
line-height: $kendo-input-lg-line-height,
|
|
464
|
-
icon-size: calc(
|
|
465
|
+
icon-size: calc( #{$kendo-icon-size} + calc( #{$kendo-input-lg-padding-y} * 2 ) ),
|
|
465
466
|
button-padding-x: $kendo-input-lg-padding-y,
|
|
466
467
|
button-padding-y: $kendo-input-lg-padding-y,
|
|
467
468
|
button-width: $kendo-input-lg-button-width
|
package/scss/map/_variables.scss
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../icons/_variables.scss" as *;
|
|
3
4
|
@use "../button/_variables.scss" as *;
|
|
4
5
|
@use "../core/spacing/_index.scss" as *;
|
|
5
6
|
|
|
@@ -41,7 +42,7 @@ $kendo-map-navigator-margin-y: var( --kendo-map-navigator-margin-y, k-spacing(4)
|
|
|
41
42
|
$kendo-map-navigator-padding: var( --kendo-map-navigator-padding, k-spacing(0.5) ) !default;
|
|
42
43
|
/// The width of the Map navigator.
|
|
43
44
|
/// @group map
|
|
44
|
-
$kendo-map-navigator-width: var( --kendo-map-navigator-width, calc(
|
|
45
|
+
$kendo-map-navigator-width: var( --kendo-map-navigator-width, calc( #{$kendo-icon-size} * 3 + calc( #{$kendo-map-navigator-padding} * 2) ) ) !default;
|
|
45
46
|
/// The border width of the Map navigator.
|
|
46
47
|
/// @group map
|
|
47
48
|
$kendo-map-navigator-border-width: var( --kendo-map-navigator-border-width, 1px ) !default;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../icons/_variables.scss" as *;
|
|
3
4
|
@use "../list/_variables.scss"as *;
|
|
4
5
|
@use "../popup/_variables.scss"as *;
|
|
5
6
|
|
|
@@ -50,7 +51,11 @@ $kendo-menu-item-padding-y: var( --kendo-menu-item-padding-y, #{k-spacing(3)} )
|
|
|
50
51
|
$kendo-menu-item-spacing: var( --kendo-menu-item-spacing, #{k-spacing(0)} ) !default;
|
|
51
52
|
/// The spacing between the Menu item text and icons.
|
|
52
53
|
/// @group menu
|
|
53
|
-
$kendo-menu-item-icon-spacing: var( --kendo-menu-item-icon-spacing,
|
|
54
|
+
$kendo-menu-item-icon-spacing: var( --kendo-menu-item-icon-spacing, #{$kendo-icon-spacing} ) !default;
|
|
55
|
+
|
|
56
|
+
/// The spacing used for the menu expand arrow negative offset.
|
|
57
|
+
/// @group menu
|
|
58
|
+
$kendo-menu-expand-arrow-spacing: var( --kendo-menu-expand-arrow-spacing, #{k-spacing(2)} ) !default;
|
|
54
59
|
|
|
55
60
|
/// The font weight of the selected Menu item.
|
|
56
61
|
/// @group menu
|
|
@@ -191,13 +196,13 @@ $kendo-menu-popup-md-item-padding-y: var( --kendo-menu-popup-md-item-padding-y,
|
|
|
191
196
|
$kendo-menu-popup-lg-item-padding-y: var( --kendo-menu-popup-lg-item-padding-y, #{$kendo-list-lg-item-padding-y} ) !default;
|
|
192
197
|
/// The end padding of the small Menu popup item.
|
|
193
198
|
/// @group menu
|
|
194
|
-
$kendo-menu-popup-sm-item-padding-end: calc( calc( #{$kendo-menu-popup-sm-item-padding-x} * 2 ) +
|
|
199
|
+
$kendo-menu-popup-sm-item-padding-end: calc( calc( #{$kendo-menu-popup-sm-item-padding-x} * 2 ) + #{$kendo-icon-size} ) !default;
|
|
195
200
|
/// The end padding of the medium Menu popup item.
|
|
196
201
|
/// @group menu
|
|
197
|
-
$kendo-menu-popup-md-item-padding-end: calc( calc( #{$kendo-menu-popup-md-item-padding-x} * 2 ) +
|
|
202
|
+
$kendo-menu-popup-md-item-padding-end: calc( calc( #{$kendo-menu-popup-md-item-padding-x} * 2 ) + #{$kendo-icon-size} ) !default;
|
|
198
203
|
/// The end padding of the large Menu popup item.
|
|
199
204
|
/// @group menu
|
|
200
|
-
$kendo-menu-popup-lg-item-padding-end: calc( calc( #{$kendo-menu-popup-lg-item-padding-x} * 2 ) +
|
|
205
|
+
$kendo-menu-popup-lg-item-padding-end: calc( calc( #{$kendo-menu-popup-lg-item-padding-x} * 2 ) + #{$kendo-icon-size} ) !default;
|
|
201
206
|
|
|
202
207
|
/// The start margin of the small Menu popup item expand icon.
|
|
203
208
|
/// @group menu
|
|
@@ -210,13 +215,13 @@ $kendo-menu-popup-item-icon-md-margin-start: k-spacing(0) !default;
|
|
|
210
215
|
$kendo-menu-popup-lg-item-icon-margin-start: k-spacing(0) !default;
|
|
211
216
|
/// The end margin of the small Menu popup item expand icon.
|
|
212
217
|
/// @group menu
|
|
213
|
-
$kendo-menu-popup-sm-item-icon-margin-end: calc( -1 * (
|
|
218
|
+
$kendo-menu-popup-sm-item-icon-margin-end: calc( -1 * (#{$kendo-icon-size} + #{$kendo-menu-popup-sm-item-padding-x}) ) !default;
|
|
214
219
|
/// The end margin of the medium Menu popup item expand icon.
|
|
215
220
|
/// @group menu
|
|
216
|
-
$kendo-menu-popup-item-icon-md-margin-end: calc( -1 * (
|
|
221
|
+
$kendo-menu-popup-item-icon-md-margin-end: calc( -1 * (#{$kendo-icon-size} + #{$kendo-menu-popup-md-item-padding-x}) ) !default;
|
|
217
222
|
/// The end margin of the large Menu popup item expand icon.
|
|
218
223
|
/// @group menu
|
|
219
|
-
$kendo-menu-popup-lg-item-icon-margin-end: calc( -1 * (
|
|
224
|
+
$kendo-menu-popup-lg-item-icon-margin-end: calc( -1 * (#{$kendo-icon-size} + #{$kendo-menu-popup-lg-item-padding-x}) ) !default;
|
|
220
225
|
|
|
221
226
|
/// The spacing between the Menu items in popup.
|
|
222
227
|
/// @group menu
|
|
@@ -285,6 +290,7 @@ $kendo-menu-icon-color: var( --kendo-menu-icon-color, #{k-color(primary)} ) !def
|
|
|
285
290
|
$kendo-menu-item-padding-y: $kendo-menu-item-padding-y,
|
|
286
291
|
$kendo-menu-item-spacing: $kendo-menu-item-spacing,
|
|
287
292
|
$kendo-menu-item-icon-spacing: $kendo-menu-item-icon-spacing,
|
|
293
|
+
$kendo-menu-expand-arrow-spacing: $kendo-menu-expand-arrow-spacing,
|
|
288
294
|
$kendo-menu-item-selected-font-weight: $kendo-menu-item-selected-font-weight,
|
|
289
295
|
$kendo-menu-item-bg: $kendo-menu-item-bg,
|
|
290
296
|
$kendo-menu-item-text: $kendo-menu-item-text,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../icons/_variables.scss" as *;
|
|
3
4
|
@use "../list/_variables.scss" as *;
|
|
4
5
|
|
|
5
6
|
/// The font family of the PanelBar.
|
|
@@ -31,7 +32,7 @@ $kendo-panelbar-icon-spacing: var( --kendo-panelbar-icon-spacing, #{k-spacing(2.
|
|
|
31
32
|
|
|
32
33
|
/// The horizontal start padding of the PanelBar header.
|
|
33
34
|
/// @group panelbar
|
|
34
|
-
$kendo-panelbar-header-padding-x-start: var( --kendo-panelbar-header-padding-x-start, calc( #{$kendo-panelbar-icon-spacing} * 2 +
|
|
35
|
+
$kendo-panelbar-header-padding-x-start: var( --kendo-panelbar-header-padding-x-start, calc( #{$kendo-panelbar-icon-spacing} * 2 + #{$kendo-icon-size} ) ) !default;
|
|
35
36
|
|
|
36
37
|
/// The horizontal end padding of the PanelBar header.
|
|
37
38
|
/// @group panelbar
|
|
@@ -42,7 +43,7 @@ $kendo-panelbar-header-padding-y: var( --kendo-panelbar-header-padding-y, #{k-sp
|
|
|
42
43
|
|
|
43
44
|
/// The horizontal padding of the PanelBar items.
|
|
44
45
|
/// @group panelbar
|
|
45
|
-
$kendo-panelbar-item-padding-x-start: calc( #{$kendo-panelbar-icon-spacing} * 2 +
|
|
46
|
+
$kendo-panelbar-item-padding-x-start: calc( #{$kendo-panelbar-icon-spacing} * 2 + #{$kendo-icon-size} ) !default;
|
|
46
47
|
|
|
47
48
|
/// The horizontal end padding of the PanelBar items.
|
|
48
49
|
/// @group panelbar
|
|
@@ -51,6 +52,10 @@ $kendo-panelbar-item-padding-x-end: var( --kendo-panelbar-item-padding-x-end, #{
|
|
|
51
52
|
/// @group panelbar
|
|
52
53
|
$kendo-panelbar-item-padding-y: var( --kendo-panelbar-item-padding-y, #{k-spacing(2.5)} ) !default;
|
|
53
54
|
|
|
55
|
+
/// The spacing between icon and text in PanelBar items.
|
|
56
|
+
/// @group panelbar
|
|
57
|
+
$kendo-panelbar-item-icon-spacing: var( --kendo-panelbar-item-icon-spacing, #{k-spacing(2)} ) !default;
|
|
58
|
+
|
|
54
59
|
/// The maximum nesting of the PanelBar items.
|
|
55
60
|
/// @group panelbar
|
|
56
61
|
$kendo-panelbar-item-level-count: 4 !default;
|
|
@@ -241,6 +246,7 @@ $kendo-panelbar-item-selected-hover-focus-border: var( --kendo-panelbar-item-sel
|
|
|
241
246
|
$kendo-panelbar-item-border-style: $kendo-panelbar-item-border-style,
|
|
242
247
|
$kendo-panelbar-header-padding-y: $kendo-panelbar-header-padding-y,
|
|
243
248
|
$kendo-panelbar-item-padding-y: $kendo-panelbar-item-padding-y,
|
|
249
|
+
$kendo-panelbar-item-icon-spacing: $kendo-panelbar-item-icon-spacing,
|
|
244
250
|
$kendo-panelbar-item-level-count: $kendo-panelbar-item-level-count,
|
|
245
251
|
$kendo-panelbar-bg: $kendo-panelbar-bg,
|
|
246
252
|
$kendo-panelbar-text: $kendo-panelbar-text,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../icons/_variables.scss" as *;
|
|
3
4
|
@use "../button/_variables.scss" as *;
|
|
4
5
|
@use "../dropzone/_variables.scss" as *;
|
|
5
6
|
|
|
@@ -83,7 +84,7 @@ $kendo-pdf-viewer-search-panel-border: var( --kendo-pdf-viewer-search-panel-bord
|
|
|
83
84
|
$kendo-pdf-viewer-search-panel-shadow: var( --kendo-pdf-viewer-search-panel-shadow, none ) !default;
|
|
84
85
|
/// The spacing of the matches container in the PDFViewer search panel.
|
|
85
86
|
/// @group pdf-viewer
|
|
86
|
-
$kendo-pdf-viewer-search-panel-matches-spacing: var( --kendo-pdf-viewer-search-panel-matches-spacing,
|
|
87
|
+
$kendo-pdf-viewer-search-panel-matches-spacing: var( --kendo-pdf-viewer-search-panel-matches-spacing, #{$kendo-icon-spacing} ) !default;
|
|
87
88
|
/// The vertical margin of the PDFViewer search panel.
|
|
88
89
|
/// @group pdf-viewer
|
|
89
90
|
$kendo-pdf-viewer-search-panel-margin-y: var( --kendo-pdf-viewer-search-panel-margin-y ,calc( ( #{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-panel-padding-y} ) ) * -1 )) !default;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../icons/_variables.scss" as *;
|
|
3
4
|
@use "./_variables.scss" as *;
|
|
4
5
|
@use "@progress/kendo-theme-core/scss/components/pivotgrid/_layout.scss" as *;
|
|
5
6
|
|
|
@@ -109,7 +110,7 @@
|
|
|
109
110
|
}
|
|
110
111
|
|
|
111
112
|
.k-pivotgrid-toggle {
|
|
112
|
-
margin-block: calc(
|
|
113
|
-
padding:
|
|
113
|
+
margin-block: calc( #{k-spacing(1)} * -1 );
|
|
114
|
+
padding: k-spacing(1);
|
|
114
115
|
}
|
|
115
116
|
}
|
|
@@ -260,6 +260,10 @@ $kendo-scheduler-more-btn-height: var( --kendo-scheduler-more-btn-height, 13px )
|
|
|
260
260
|
/// The color of the Scheduler marquee.
|
|
261
261
|
/// @group scheduler
|
|
262
262
|
$kendo-scheduler-marquee-color: var( --kendo-scheduler-marquee-color, k-color(primary) ) !default;
|
|
263
|
+
|
|
264
|
+
/// The spacing between icon and text in Scheduler navigation items.
|
|
265
|
+
/// @group scheduler
|
|
266
|
+
$kendo-scheduler-nav-item-icon-spacing: var( --kendo-scheduler-nav-item-icon-spacing, #{k-spacing(2)} ) !default;
|
|
263
267
|
// Adaptive
|
|
264
268
|
$kendo-scheduler-adaptive-bg: var( --kendo-scheduler-adaptive-bg, #{k-color(surface-alt)} ) !default;
|
|
265
269
|
$kendo-scheduler-adaptive-text: var( --kendo-scheduler-adaptive-text, #{k-color(on-app-surface)} ) !default;
|
|
@@ -349,6 +353,7 @@ $kendo-scheduler-adaptive-subtle-text: var( --kendo-scheduler-adaptive-subtle-te
|
|
|
349
353
|
$kendo-scheduler-tooltip-event-border-radius: $kendo-scheduler-tooltip-event-border-radius,
|
|
350
354
|
$kendo-scheduler-tooltip-event-gap: $kendo-scheduler-tooltip-event-gap,
|
|
351
355
|
$kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-callout-color,
|
|
356
|
+
$kendo-scheduler-nav-item-icon-spacing: $kendo-scheduler-nav-item-icon-spacing,
|
|
352
357
|
$kendo-scheduler-adaptive-bg: $kendo-scheduler-adaptive-bg,
|
|
353
358
|
$kendo-scheduler-adaptive-text: $kendo-scheduler-adaptive-text,
|
|
354
359
|
$kendo-scheduler-adaptive-border: $kendo-scheduler-adaptive-border,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "sass:color";
|
|
2
2
|
@use "sass:map";
|
|
3
3
|
@use "../core/_index.scss" as *;
|
|
4
|
+
@use "../icons/_variables.scss" as *;
|
|
4
5
|
@use "../table/_variables.scss" as *;
|
|
5
6
|
@use "../input/_variables.scss" as *;
|
|
6
7
|
@use "../core/spacing/_index.scss" as *;
|
|
@@ -210,7 +211,7 @@ $kendo-spreadsheet-sheets-remove-inline-end: var( --kendo-spreadsheet-sheets-rem
|
|
|
210
211
|
|
|
211
212
|
/// The left padding of the Spreadsheet sheets menu.
|
|
212
213
|
/// @group spreadsheet
|
|
213
|
-
$kendo-filter-menu-padding-left: var( --kendo-filter-menu-padding-left, calc(
|
|
214
|
+
$kendo-filter-menu-padding-left: var( --kendo-filter-menu-padding-left, calc( #{$kendo-icon-size} + 2 * k-spacing(1) ) ) !default;
|
|
214
215
|
|
|
215
216
|
/// The padding of the Spreadsheet filter.
|
|
216
217
|
/// @group spreadsheet
|
|
@@ -37,6 +37,10 @@ $kendo-stepper-label-padding-y: var( --kendo-stepper-label-padding-y, k-spacing(
|
|
|
37
37
|
/// @group stepper
|
|
38
38
|
$kendo-stepper-label-border-radius: var( --kendo-stepper-label-border-radius, k-border-radius(xxl) ) !default;
|
|
39
39
|
|
|
40
|
+
/// The spacing between icon and text in Stepper labels.
|
|
41
|
+
/// @group stepper
|
|
42
|
+
$kendo-stepper-label-icon-spacing: var( --kendo-stepper-label-icon-spacing, #{k-spacing(2)} ) !default;
|
|
43
|
+
|
|
40
44
|
/// The horizontal padding of the Stepper content.
|
|
41
45
|
/// @group stepper
|
|
42
46
|
$kendo-stepper-inline-content-padding-x: var( --kendo-stepper-inline-content-padding-x, k-spacing(5) ) !default;
|
|
@@ -208,6 +212,7 @@ $kendo-stepper-content-transition-timing-function: var( --kendo-stepper-content-
|
|
|
208
212
|
$kendo-stepper-label-padding-x: $kendo-stepper-label-padding-x,
|
|
209
213
|
$kendo-stepper-label-padding-y: $kendo-stepper-label-padding-y,
|
|
210
214
|
$kendo-stepper-label-border-radius: $kendo-stepper-label-border-radius,
|
|
215
|
+
$kendo-stepper-label-icon-spacing: $kendo-stepper-label-icon-spacing,
|
|
211
216
|
$kendo-stepper-border-width: $kendo-stepper-border-width,
|
|
212
217
|
$kendo-stepper-inline-content-padding-x: $kendo-stepper-inline-content-padding-x,
|
|
213
218
|
$kendo-stepper-inline-content-padding-y: $kendo-stepper-inline-content-padding-y,
|
|
@@ -79,6 +79,10 @@ $kendo-tabstrip-item-border-radius: var( --kendo-tabstrip-item-border-radius, #{
|
|
|
79
79
|
/// @group tabstrip
|
|
80
80
|
$kendo-tabstrip-item-gap: var( --kendo-tabstrip-item-gap, #{k-spacing(2)} ) !default;
|
|
81
81
|
|
|
82
|
+
/// The spacing between icon and text in TabStrip tab items.
|
|
83
|
+
/// @group tabstrip
|
|
84
|
+
$kendo-tabstrip-item-icon-spacing: var( --kendo-tabstrip-item-icon-spacing, #{k-spacing(2)} ) !default;
|
|
85
|
+
|
|
82
86
|
/// The horizontal spacing of the TabStrip items.
|
|
83
87
|
/// @group tabstrip
|
|
84
88
|
$kendo-tabstrip-item-spacing-x: var( --kendo-tabstrip-item-spacing-x, #{k-spacing(1)} ) !default;
|
|
@@ -219,6 +223,7 @@ $kendo-tabstrip-scroll-button-spacing: var( --kendo-tabstrip-scroll-button-spaci
|
|
|
219
223
|
$kendo-tabstrip-item-border-width: $kendo-tabstrip-item-border-width,
|
|
220
224
|
$kendo-tabstrip-item-border-radius: $kendo-tabstrip-item-border-radius,
|
|
221
225
|
$kendo-tabstrip-item-gap: $kendo-tabstrip-item-gap,
|
|
226
|
+
$kendo-tabstrip-item-icon-spacing: $kendo-tabstrip-item-icon-spacing,
|
|
222
227
|
$kendo-tabstrip-item-spacing-x: $kendo-tabstrip-item-spacing-x,
|
|
223
228
|
$kendo-tabstrip-sm-item-padding-x: $kendo-tabstrip-sm-item-padding-x,
|
|
224
229
|
$kendo-tabstrip-sm-item-padding-y: $kendo-tabstrip-sm-item-padding-y,
|
|
@@ -41,6 +41,10 @@ $kendo-toolbar-md-spacing: var( --kendo-toolbar-md-spacing, #{k-spacing(3)} ) !d
|
|
|
41
41
|
/// @group toolbar
|
|
42
42
|
$kendo-toolbar-lg-spacing: var( --kendo-toolbar-lg-spacing, #{k-spacing(3)} ) !default;
|
|
43
43
|
|
|
44
|
+
/// The spacing between icon and text in Toolbar items.
|
|
45
|
+
/// @group toolbar
|
|
46
|
+
$kendo-toolbar-item-icon-spacing: var( --kendo-toolbar-item-icon-spacing, #{k-spacing(2)} ) !default;
|
|
47
|
+
|
|
44
48
|
/// The height of the small Toolbar button separator.
|
|
45
49
|
/// @group toolbar
|
|
46
50
|
$kendo-toolbar-sm-separator-height: var( --kendo-toolbar-sm-separator-height, #{$kendo-button-sm-calc-size} ) !default;
|
|
@@ -141,6 +145,7 @@ $kendo-floating-toolbar-border-radius: var( --kendo-floating-toolbar-border-radi
|
|
|
141
145
|
$kendo-toolbar-sm-spacing: $kendo-toolbar-sm-spacing,
|
|
142
146
|
$kendo-toolbar-md-spacing: $kendo-toolbar-md-spacing,
|
|
143
147
|
$kendo-toolbar-lg-spacing: $kendo-toolbar-lg-spacing,
|
|
148
|
+
$kendo-toolbar-item-icon-spacing: $kendo-toolbar-item-icon-spacing,
|
|
144
149
|
$kendo-toolbar-sm-separator-height: $kendo-toolbar-sm-separator-height,
|
|
145
150
|
$kendo-toolbar-md-separator-height: $kendo-toolbar-md-separator-height,
|
|
146
151
|
$kendo-toolbar-lg-separator-height: $kendo-toolbar-lg-separator-height,
|
|
@@ -8,6 +8,10 @@ $kendo-tooltip-border-radius: var( --kendo-tooltip-border-radius, #{k-border-rad
|
|
|
8
8
|
/// The horizontal padding of the Tooltip.
|
|
9
9
|
/// @group tooltip
|
|
10
10
|
$kendo-tooltip-padding-x: var( --kendo-tooltip-padding-x, #{k-spacing(3)} ) !default;
|
|
11
|
+
|
|
12
|
+
/// The spacing between icon and tooltip text/button.
|
|
13
|
+
/// @group tooltip
|
|
14
|
+
$kendo-tooltip-icon-spacing: var( --kendo-tooltip-icon-spacing, #{k-spacing(2)} ) !default;
|
|
11
15
|
/// The vertical padding of the Tooltip.
|
|
12
16
|
/// @group tooltip
|
|
13
17
|
$kendo-tooltip-padding-y: var( --kendo-tooltip-padding-y, #{k-spacing(1.5)} ) !default;
|
|
@@ -66,6 +70,7 @@ $kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
|
|
|
66
70
|
@forward "@progress/kendo-theme-core/scss/components/tooltip/_variables.scss" with (
|
|
67
71
|
$kendo-tooltip-padding-y: $kendo-tooltip-padding-y,
|
|
68
72
|
$kendo-tooltip-padding-x: $kendo-tooltip-padding-x,
|
|
73
|
+
$kendo-tooltip-icon-spacing: $kendo-tooltip-icon-spacing,
|
|
69
74
|
$kendo-tooltip-border-width: $kendo-tooltip-border-width,
|
|
70
75
|
$kendo-tooltip-border-radius: $kendo-tooltip-border-radius,
|
|
71
76
|
$kendo-tooltip-font-family: $kendo-tooltip-font-family,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../icons/_variables.scss" as *;
|
|
3
4
|
@use "./_variables.scss" as *;
|
|
4
5
|
@use "@progress/kendo-theme-core/scss/components/treelist/_layout.scss" as *;
|
|
5
6
|
|
|
@@ -22,6 +23,6 @@
|
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
.k-treelist-toggle {
|
|
25
|
-
padding:
|
|
26
|
+
padding: k-spacing(1);
|
|
26
27
|
}
|
|
27
28
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../icons/_variables.scss" as *;
|
|
3
4
|
@use "./_variables.scss" as *;
|
|
4
5
|
@use "@progress/kendo-theme-core/scss/components/treeview/_layout.scss" as *;
|
|
5
6
|
|
|
@@ -12,18 +13,18 @@
|
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
.k-treeview-toggle .k-icon {
|
|
15
|
-
padding:
|
|
16
|
+
padding: k-spacing(1);
|
|
16
17
|
}
|
|
17
18
|
|
|
18
19
|
.k-treeview-loading {
|
|
19
|
-
margin-inline-end:
|
|
20
|
+
margin-inline-end: $kendo-treeview-item-icon-spacing;
|
|
20
21
|
}
|
|
21
22
|
|
|
22
23
|
.k-treeview-leaf {
|
|
23
24
|
.k-icon,
|
|
24
25
|
.k-image,
|
|
25
26
|
.k-sprite {
|
|
26
|
-
margin-inline-end:
|
|
27
|
+
margin-inline-end: $kendo-treeview-item-icon-spacing;
|
|
27
28
|
}
|
|
28
29
|
}
|
|
29
30
|
}
|
|
@@ -8,6 +8,10 @@ $kendo-treeview-default-size: "md" !default;
|
|
|
8
8
|
/// The gap of the TreeView.
|
|
9
9
|
/// @group treeview
|
|
10
10
|
$kendo-treeview-gap: var( --kendo-treeview-gap, k-spacing(0.5) ) !default;
|
|
11
|
+
|
|
12
|
+
/// The spacing between icon and text in TreeView items.
|
|
13
|
+
/// @group treeview
|
|
14
|
+
$kendo-treeview-item-icon-spacing: var( --kendo-treeview-item-icon-spacing, #{k-spacing(2)} ) !default;
|
|
11
15
|
/// The border radius of the TreeView.
|
|
12
16
|
/// @group treeview
|
|
13
17
|
$kendo-treeview-border-radius: var( --kendo-treeview-border-radius, k-border-radius(md) ) !default;
|
|
@@ -184,6 +188,7 @@ $kendo-treeview-loadmore-focus-shadow: var( --kendo-treeview-loadmore-focus-shad
|
|
|
184
188
|
@forward "@progress/kendo-theme-core/scss/components/treeview/_variables.scss" with (
|
|
185
189
|
$kendo-treeview-default-size: $kendo-treeview-default-size,
|
|
186
190
|
$kendo-treeview-gap: $kendo-treeview-gap,
|
|
191
|
+
$kendo-treeview-item-icon-spacing: $kendo-treeview-item-icon-spacing,
|
|
187
192
|
$kendo-treeview-border-radius: $kendo-treeview-border-radius,
|
|
188
193
|
$kendo-treeview-font-family: $kendo-treeview-font-family,
|
|
189
194
|
$kendo-treeview-sm-font-size: $kendo-treeview-sm-font-size,
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "../icons/_variables.scss" as *;
|
|
3
4
|
|
|
4
5
|
/// The width of the border around the Upload.
|
|
5
6
|
/// @group upload
|
|
@@ -72,7 +73,7 @@ $kendo-upload-multiple-items-spacing: var( --kendo-upload-multiple-items-spacing
|
|
|
72
73
|
$kendo-upload-validation-font-size: var( --kendo-upload-validation-font-size, var(--kendo-font-size-xs) ) !default;
|
|
73
74
|
/// The horizontal spacing of the Upload status icon.
|
|
74
75
|
/// @group upload
|
|
75
|
-
$kendo-upload-icon-spacing: var( --kendo-upload-icon-spacing,
|
|
76
|
+
$kendo-upload-icon-spacing: var( --kendo-upload-icon-spacing, #{$kendo-icon-spacing} ) !default;
|
|
76
77
|
/// The color of the uploaded items icon.
|
|
77
78
|
/// @group upload
|
|
78
79
|
$kendo-upload-icon-color: var( --kendo-upload-icon-color, k-color(subtle) ) !default;
|