@progress/kendo-theme-default 12.2.0-dev.2 → 12.2.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/default-blue.css +1 -1
- package/dist/default-dataviz-v4.css +1 -1
- package/dist/default-green.css +1 -1
- package/dist/default-main-dark.css +1 -1
- package/dist/default-main.css +1 -1
- package/dist/default-nordic.css +1 -1
- package/dist/default-ocean-blue-a11y.css +1 -1
- package/dist/default-ocean-blue.css +1 -1
- package/dist/default-orange.css +1 -1
- package/dist/default-purple.css +1 -1
- package/dist/default-turquoise.css +1 -1
- package/dist/default-urban.css +1 -1
- package/dist/meta/sassdoc-data.json +91605 -60575
- package/dist/meta/sassdoc-raw-data.json +35717 -21592
- package/dist/meta/variables.json +1 -113
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/action-buttons/_variables.scss +19 -0
- package/scss/action-sheet/_variables.scss +146 -0
- package/scss/adaptive/_variables.scss +36 -0
- package/scss/appbar/_variables.scss +2 -0
- package/scss/badge/_variables.scss +2 -0
- package/scss/bottom-navigation/_variables.scss +2 -0
- package/scss/button/_variables.scss +28 -24
- package/scss/card/_variables.scss +2 -0
- package/scss/chat/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +2 -0
- package/scss/chip/_variables.scss +0 -2
- package/scss/color-preview/_variables.scss +18 -0
- package/scss/column-menu/_variables.scss +40 -0
- package/scss/dataviz/_variables.scss +202 -0
- package/scss/daterangepicker/_variables.scss +2 -0
- package/scss/draggable/_variables.scss +40 -0
- package/scss/editor/_variables.scss +6 -0
- package/scss/grid/_variables.scss +178 -18
- package/scss/imageeditor/_variables.scss +62 -0
- package/scss/input/_variables.scss +0 -4
- package/scss/list/_variables.scss +126 -30
- package/scss/listgroup/_variables.scss +20 -0
- package/scss/loader/_variables.scss +2 -0
- package/scss/marquee/_variables.scss +6 -0
- package/scss/menu/_variables.scss +37 -5
- package/scss/messagebox/_variables.scss +24 -0
- package/scss/otp/_variables.scss +2 -0
- package/scss/overlay/_variables.scss +6 -0
- package/scss/pivotgrid/_variables.scss +9 -21
- package/scss/scheduler/_variables.scss +2 -0
- package/scss/signature/_variables.scss +42 -0
- package/scss/skeleton/_variables.scss +4 -0
- package/scss/spreadsheet/_variables.scss +4 -0
- package/scss/stepper/_variables.scss +3 -3
- package/scss/suggestion/_variables.scss +2 -0
- package/scss/table/_variables.scss +12 -0
- package/scss/timeselector/_variables.scss +86 -0
- package/scss/upload/_variables.scss +4 -0
|
@@ -1,31 +1,69 @@
|
|
|
1
1
|
@use "../core/_index.scss" as *;
|
|
2
2
|
|
|
3
|
+
/// The width of the Signature.
|
|
4
|
+
/// @group signature
|
|
3
5
|
$kendo-signature-width: 250px !default;
|
|
6
|
+
/// The height of the Signature.
|
|
7
|
+
/// @group signature
|
|
4
8
|
$kendo-signature-height: 84px !default;
|
|
5
9
|
|
|
10
|
+
/// The minimum height of the large Signature.
|
|
11
|
+
/// @group signature
|
|
6
12
|
$kendo-signature-lg-min-height: 110px !default;
|
|
7
13
|
|
|
14
|
+
/// The width of the maximized Signature.
|
|
15
|
+
/// @group signature
|
|
8
16
|
$kendo-signature-maximized-width: 750px !default;
|
|
17
|
+
/// The height of the maximized Signature.
|
|
18
|
+
/// @group signature
|
|
9
19
|
$kendo-signature-maximized-height: 252px !default;
|
|
10
20
|
|
|
21
|
+
/// The horizontal padding of the small Signature.
|
|
22
|
+
/// @group signature
|
|
11
23
|
$kendo-signature-sm-padding-x: k-spacing(0.5) !default;
|
|
24
|
+
/// The horizontal padding of the medium Signature.
|
|
25
|
+
/// @group signature
|
|
12
26
|
$kendo-signature-md-padding-x: k-spacing(1) !default;
|
|
27
|
+
/// The horizontal padding of the large Signature.
|
|
28
|
+
/// @group signature
|
|
13
29
|
$kendo-signature-lg-padding-x: k-spacing(2) !default;
|
|
14
30
|
|
|
31
|
+
/// The vertical padding of the small Signature.
|
|
32
|
+
/// @group signature
|
|
15
33
|
$kendo-signature-sm-padding-y: $kendo-signature-sm-padding-x !default;
|
|
34
|
+
/// The vertical padding of the medium Signature.
|
|
35
|
+
/// @group signature
|
|
16
36
|
$kendo-signature-md-padding-y: $kendo-signature-md-padding-x !default;
|
|
37
|
+
/// The vertical padding of the large Signature.
|
|
38
|
+
/// @group signature
|
|
17
39
|
$kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
|
|
18
40
|
|
|
41
|
+
/// The width of the Signature line.
|
|
42
|
+
/// @group signature
|
|
19
43
|
$kendo-signature-line-width: 1px !default;
|
|
44
|
+
/// The style of the Signature line.
|
|
45
|
+
/// @group signature
|
|
20
46
|
$kendo-signature-line-style: dashed !default;
|
|
47
|
+
/// The color of the Signature line.
|
|
48
|
+
/// @group signature
|
|
21
49
|
$kendo-signature-line-color: color-mix(in srgb, k-color(info) 24%, transparent) !default;
|
|
22
50
|
|
|
51
|
+
/// The size of the small Signature line.
|
|
52
|
+
/// @group signature
|
|
23
53
|
$kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
|
|
54
|
+
/// The size of the medium Signature line.
|
|
55
|
+
/// @group signature
|
|
24
56
|
$kendo-signature-md-line-size: calc( 100% - 2 * #{$kendo-signature-md-padding-x} ) !default;
|
|
57
|
+
/// The size of the large Signature line.
|
|
58
|
+
/// @group signature
|
|
25
59
|
$kendo-signature-lg-line-size: calc( 100% - 2 * #{$kendo-signature-lg-padding-x} ) !default;
|
|
26
60
|
|
|
61
|
+
/// The bottom offset of the Signature line.
|
|
62
|
+
/// @group signature
|
|
27
63
|
$kendo-signature-line-bottom-offset: 33% !default;
|
|
28
64
|
|
|
65
|
+
/// The sizes map for the Signature.
|
|
66
|
+
/// @group signature
|
|
29
67
|
$kendo-signature-sizes: (
|
|
30
68
|
sm: (
|
|
31
69
|
padding-x: $kendo-signature-sm-padding-x,
|
|
@@ -44,7 +82,11 @@ $kendo-signature-sizes: (
|
|
|
44
82
|
)
|
|
45
83
|
) !default;
|
|
46
84
|
|
|
85
|
+
/// The gap between the Signature actions.
|
|
86
|
+
/// @group signature
|
|
47
87
|
$kendo-signature-actions-gap: k-spacing(1) !default;
|
|
88
|
+
/// The line width of the maximized Signature.
|
|
89
|
+
/// @group signature
|
|
48
90
|
$kendo-signature-maximized-line-width: 3px !default;
|
|
49
91
|
|
|
50
92
|
@forward "@progress/kendo-theme-core/scss/components/signature/_variables.scss" with (
|
|
@@ -16,8 +16,12 @@ $kendo-skeleton-rect-border-radius: 0 !default;
|
|
|
16
16
|
/// @group skeleton
|
|
17
17
|
$kendo-skeleton-circle-border-radius: 9999px !default;
|
|
18
18
|
|
|
19
|
+
/// The background color of the Skeleton item.
|
|
20
|
+
/// @group skeleton
|
|
19
21
|
$kendo-skeleton-item-bg: color-mix(in srgb, k-color(on-app-surface) 20%, transparent) !default;
|
|
20
22
|
|
|
23
|
+
/// The background color of the Skeleton.
|
|
24
|
+
/// @group skeleton
|
|
21
25
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
22
26
|
|
|
23
27
|
@forward "@progress/kendo-theme-core/scss/components/skeleton/_variables.scss" with (
|
|
@@ -272,8 +272,12 @@ $kendo-spreadsheet-dropzone-spacing-y: k-spacing(4) !default;
|
|
|
272
272
|
$kendo-spreadsheet-filter-padding: k-spacing(1) !default;
|
|
273
273
|
|
|
274
274
|
|
|
275
|
+
/// The horizontal padding of the Spreadsheet filter menu link.
|
|
276
|
+
/// @group spreadsheet
|
|
275
277
|
$kendo-spreadsheet-filter-menu-link-padding-x: calc( #{$kendo-icon-size} + calc( 2 * #{k-spacing(1)} ) ) !default;
|
|
276
278
|
|
|
279
|
+
/// The margin of the Spreadsheet filter menu icon.
|
|
280
|
+
/// @group spreadsheet
|
|
277
281
|
$kendo-spreadsheet-filter-menu-icon-margin: 0 k-spacing(1) 0 calc(-1 * ( #{$kendo-icon-size} + #{k-spacing(1)} ) ) !default;
|
|
278
282
|
|
|
279
283
|
@forward "@progress/kendo-theme-core/scss/components/spreadsheet/_variables.scss" with (
|
|
@@ -39,13 +39,13 @@ $kendo-stepper-inline-content-padding-x: k-spacing(5) !default;
|
|
|
39
39
|
/// @group stepper
|
|
40
40
|
$kendo-stepper-inline-content-padding-y: k-spacing(2.5) !default;
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
/// The font size of the Stepper.
|
|
43
43
|
/// @group stepper
|
|
44
44
|
$kendo-stepper-font-size: var( --kendo-font-size, inherit ) !default;
|
|
45
|
-
|
|
45
|
+
/// The line height of the Stepper.
|
|
46
46
|
/// @group stepper
|
|
47
47
|
$kendo-stepper-line-height: var( --kendo-line-height, normal ) !default;
|
|
48
|
-
|
|
48
|
+
/// The font family of the Stepper.
|
|
49
49
|
/// @group stepper
|
|
50
50
|
$kendo-stepper-font-family: var( --kendo-font-family, inherit ) !default;
|
|
51
51
|
|
|
@@ -64,6 +64,8 @@ $kendo-suggestion-focus-shadow-spread: 2px !default;
|
|
|
64
64
|
/// @group suggestion
|
|
65
65
|
$kendo-suggestion-focus-shadow-color: color-mix(in srgb, k-color(on-app-surface) 8%, transparent) !default;
|
|
66
66
|
|
|
67
|
+
/// The theme colors map of the Suggestion.
|
|
68
|
+
/// @group suggestion
|
|
67
69
|
$kendo-suggestion-theme-colors: (
|
|
68
70
|
"primary": k-color(primary),
|
|
69
71
|
"secondary": k-color(secondary)
|
|
@@ -22,13 +22,25 @@ $kendo-table-font-size: null !default;
|
|
|
22
22
|
/// @group table
|
|
23
23
|
$kendo-table-line-height: null !default;
|
|
24
24
|
|
|
25
|
+
/// The horizontal padding of the Table cell.
|
|
26
|
+
/// @group table
|
|
25
27
|
$kendo-table-sm-cell-padding-x: k-spacing(2) !default;
|
|
28
|
+
/// The vertical padding of the Table cell.
|
|
29
|
+
/// @group table
|
|
26
30
|
$kendo-table-sm-cell-padding-y: k-spacing(1) !default;
|
|
27
31
|
|
|
32
|
+
/// The horizontal padding of the Table cell.
|
|
33
|
+
/// @group table
|
|
28
34
|
$kendo-table-md-cell-padding-x: k-spacing(3) !default;
|
|
35
|
+
/// The vertical padding of the Table cell.
|
|
36
|
+
/// @group table
|
|
29
37
|
$kendo-table-md-cell-padding-y: k-spacing(2) !default;
|
|
30
38
|
|
|
39
|
+
/// The horizontal padding of the Table cell.
|
|
40
|
+
/// @group table
|
|
31
41
|
$kendo-table-lg-cell-padding-x: k-spacing(2) !default;
|
|
42
|
+
/// The vertical padding of the Table cell.
|
|
43
|
+
/// @group table
|
|
32
44
|
$kendo-table-lg-cell-padding-y: k-spacing(2.5) !default;
|
|
33
45
|
|
|
34
46
|
/// The sizes of the table.
|
|
@@ -4,60 +4,142 @@
|
|
|
4
4
|
|
|
5
5
|
// Time selector
|
|
6
6
|
|
|
7
|
+
/// The width of the border around the TimeSelector.
|
|
8
|
+
/// @group time-selector
|
|
7
9
|
$kendo-time-selector-border-width: 1px !default;
|
|
10
|
+
/// The font family of the TimeSelector.
|
|
11
|
+
/// @group time-selector
|
|
8
12
|
$kendo-time-selector-font-family: var( --kendo-font-family, inherit ) !default;
|
|
13
|
+
/// The font size of the TimeSelector.
|
|
14
|
+
/// @group time-selector
|
|
9
15
|
$kendo-time-selector-font-size: var( --kendo-font-size, inherit ) !default;
|
|
16
|
+
/// The line height of the TimeSelector.
|
|
17
|
+
/// @group time-selector
|
|
10
18
|
$kendo-time-selector-line-height: var( --kendo-line-height, normal ) !default;
|
|
11
19
|
|
|
20
|
+
/// The background color of the TimeSelector.
|
|
21
|
+
/// @group time-selector
|
|
12
22
|
$kendo-time-selector-bg: k-color(surface-alt) !default;
|
|
23
|
+
/// The text color of the TimeSelector.
|
|
24
|
+
/// @group time-selector
|
|
13
25
|
$kendo-time-selector-text: k-color(on-app-surface) !default;
|
|
26
|
+
/// The border color of the TimeSelector.
|
|
27
|
+
/// @group time-selector
|
|
14
28
|
$kendo-time-selector-border: k-color(border) !default;
|
|
15
29
|
|
|
30
|
+
/// The horizontal padding of the TimeSelector header.
|
|
31
|
+
/// @group time-selector
|
|
16
32
|
$kendo-time-selector-header-padding-x: $kendo-actions-padding-x !default;
|
|
33
|
+
/// The vertical padding of the TimeSelector header.
|
|
34
|
+
/// @group time-selector
|
|
17
35
|
$kendo-time-selector-header-padding-y: $kendo-actions-padding-y !default;
|
|
36
|
+
/// The width of the border around the TimeSelector header.
|
|
37
|
+
/// @group time-selector
|
|
18
38
|
$kendo-time-selector-header-border-width: 0px !default;
|
|
39
|
+
/// The text color of the TimeSelector header title.
|
|
40
|
+
/// @group time-selector
|
|
19
41
|
$kendo-time-selector-header-title-text: unset !default;
|
|
42
|
+
/// The text color of the TimeSelector header current time indicator.
|
|
43
|
+
/// @group time-selector
|
|
20
44
|
$kendo-time-selector-header-time-now-text: k-color(primary) !default;
|
|
45
|
+
/// The text color of the hovered TimeSelector header current time indicator.
|
|
46
|
+
/// @group time-selector
|
|
21
47
|
$kendo-time-selector-header-time-now-hover-text: k-color(primary-hover) !default;
|
|
22
48
|
|
|
49
|
+
/// The gap of the TimeSelector fast selection.
|
|
50
|
+
/// @group time-selector
|
|
23
51
|
$kendo-time-selector-fast-selection-gap: null !default;
|
|
24
52
|
|
|
53
|
+
/// The width of the TimeSelector list.
|
|
54
|
+
/// @group time-selector
|
|
25
55
|
$kendo-time-list-width: 4em !default;
|
|
56
|
+
/// The height of the TimeSelector list.
|
|
57
|
+
/// @group time-selector
|
|
26
58
|
$kendo-time-list-height: 240px !default;
|
|
27
59
|
|
|
60
|
+
/// The font size of the TimeSelector list title.
|
|
61
|
+
/// @group time-selector
|
|
28
62
|
$kendo-time-list-title-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
63
|
+
/// The line height of the TimeSelector list title.
|
|
64
|
+
/// @group time-selector
|
|
29
65
|
$kendo-time-list-title-line-height: var( --kendo-line-height-lg, normal ) !default;
|
|
66
|
+
/// The height of the TimeSelector list title.
|
|
67
|
+
/// @group time-selector
|
|
30
68
|
$kendo-time-list-title-height: calc( ( #{$kendo-time-list-title-font-size} ) * ( #{$kendo-time-list-title-line-height} ) ) !default;
|
|
69
|
+
/// The text color of the TimeSelector list title.
|
|
70
|
+
/// @group time-selector
|
|
31
71
|
$kendo-time-list-title-text: k-color(subtle) !default;
|
|
72
|
+
/// The text color of the focused TimeSelector list title.
|
|
73
|
+
/// @group time-selector
|
|
32
74
|
$kendo-time-list-title-focus-text: k-color(on-app-surface) !default;
|
|
33
75
|
|
|
76
|
+
/// The horizontal padding of the TimeSelector list item.
|
|
77
|
+
/// @group time-selector
|
|
34
78
|
$kendo-time-list-item-padding-x: $kendo-list-md-item-padding-x !default;
|
|
79
|
+
/// The vertical padding of the TimeSelector list item.
|
|
80
|
+
/// @group time-selector
|
|
35
81
|
$kendo-time-list-item-padding-y: $kendo-list-md-item-padding-y !default;
|
|
36
82
|
|
|
83
|
+
/// The width of the border around the TimeSelector list highlight.
|
|
84
|
+
/// @group time-selector
|
|
37
85
|
$kendo-time-list-highlight-border-width: 1px 0px !default;
|
|
86
|
+
/// The height of the TimeSelector list highlight.
|
|
87
|
+
/// @group time-selector
|
|
38
88
|
$kendo-time-list-highlight-height: calc( calc( #{$kendo-time-selector-font-size} * #{$kendo-time-selector-line-height} ) + calc( #{$kendo-time-list-item-padding-y} * 2 ) ) !default;
|
|
89
|
+
/// The background color of the TimeSelector list highlight.
|
|
90
|
+
/// @group time-selector
|
|
39
91
|
$kendo-time-list-highlight-bg: k-color(surface-alt) !default;
|
|
92
|
+
/// The border color of the TimeSelector list highlight.
|
|
93
|
+
/// @group time-selector
|
|
40
94
|
$kendo-time-list-highlight-border: k-color(border) !default;
|
|
41
95
|
|
|
96
|
+
/// The background color of the focused TimeSelector list.
|
|
97
|
+
/// @group time-selector
|
|
42
98
|
$kendo-time-list-focus-bg: rgba(0, 0, 0, .04) !default;
|
|
43
99
|
|
|
44
100
|
|
|
45
101
|
// Time selector sizes
|
|
102
|
+
/// The font size of the small TimeSelector.
|
|
103
|
+
/// @group time-selector
|
|
46
104
|
$kendo-time-selector-sm-font-size: $kendo-list-sm-font-size !default;
|
|
105
|
+
/// The line height of the small TimeSelector.
|
|
106
|
+
/// @group time-selector
|
|
47
107
|
$kendo-time-selector-sm-line-height: $kendo-list-sm-line-height !default;
|
|
108
|
+
/// The horizontal padding of the small TimeSelector list item.
|
|
109
|
+
/// @group time-selector
|
|
48
110
|
$kendo-time-selector-sm-list-item-padding-x: $kendo-list-sm-item-padding-x !default;
|
|
111
|
+
/// The vertical padding of the small TimeSelector list item.
|
|
112
|
+
/// @group time-selector
|
|
49
113
|
$kendo-time-selector-sm-list-item-padding-y: $kendo-list-sm-item-padding-y !default;
|
|
50
114
|
|
|
115
|
+
/// The font size of the medium TimeSelector.
|
|
116
|
+
/// @group time-selector
|
|
51
117
|
$kendo-time-selector-md-font-size: $kendo-list-md-font-size !default;
|
|
118
|
+
/// The line height of the medium TimeSelector.
|
|
119
|
+
/// @group time-selector
|
|
52
120
|
$kendo-time-selector-md-line-height: $kendo-list-md-line-height !default;
|
|
121
|
+
/// The horizontal padding of the medium TimeSelector list item.
|
|
122
|
+
/// @group time-selector
|
|
53
123
|
$kendo-time-selector-md-list-item-padding-x: $kendo-list-md-item-padding-x !default;
|
|
124
|
+
/// The vertical padding of the medium TimeSelector list item.
|
|
125
|
+
/// @group time-selector
|
|
54
126
|
$kendo-time-selector-md-list-item-padding-y: $kendo-list-md-item-padding-y !default;
|
|
55
127
|
|
|
128
|
+
/// The font size of the large TimeSelector.
|
|
129
|
+
/// @group time-selector
|
|
56
130
|
$kendo-time-selector-lg-font-size: $kendo-list-lg-font-size !default;
|
|
131
|
+
/// The line height of the large TimeSelector.
|
|
132
|
+
/// @group time-selector
|
|
57
133
|
$kendo-time-selector-lg-line-height: $kendo-list-lg-line-height !default;
|
|
134
|
+
/// The horizontal padding of the large TimeSelector list item.
|
|
135
|
+
/// @group time-selector
|
|
58
136
|
$kendo-time-selector-lg-list-item-padding-x: $kendo-list-lg-item-padding-x !default;
|
|
137
|
+
/// The vertical padding of the large TimeSelector list item.
|
|
138
|
+
/// @group time-selector
|
|
59
139
|
$kendo-time-selector-lg-list-item-padding-y: $kendo-list-lg-item-padding-y !default;
|
|
60
140
|
|
|
141
|
+
/// The sizes map for the TimeSelector.
|
|
142
|
+
/// @group time-selector
|
|
61
143
|
$kendo-time-selector-sizes: (
|
|
62
144
|
sm: (
|
|
63
145
|
font-size: $kendo-time-selector-sm-font-size,
|
|
@@ -79,7 +161,11 @@ $kendo-time-selector-sizes: (
|
|
|
79
161
|
)
|
|
80
162
|
) !default;
|
|
81
163
|
|
|
164
|
+
/// The text color of the TimeSelector button.
|
|
165
|
+
/// @group time-selector
|
|
82
166
|
$kendo-time-selector-now-button-text: k-color(primary) !default;
|
|
167
|
+
/// The text color of the hovered TimeSelector button.
|
|
168
|
+
/// @group time-selector
|
|
83
169
|
$kendo-time-selector-now-button-hover-text: k-color(primary-hover) !default;
|
|
84
170
|
|
|
85
171
|
@forward "@progress/kendo-theme-core/scss/components/timeselector/_variables.scss" with (
|
|
@@ -104,8 +104,12 @@ $kendo-upload-error-bg: k-color(error) !default;
|
|
|
104
104
|
/// @group upload
|
|
105
105
|
$kendo-upload-focus-shadow: 0 0 0 2px k-color(border-alt) !default;
|
|
106
106
|
|
|
107
|
+
/// The margin of the Upload list.
|
|
108
|
+
/// @group upload
|
|
107
109
|
$kendo-upload-files-list-margin: calc( -1 * #{k-spacing(1)} ) !default;
|
|
108
110
|
|
|
111
|
+
/// The margin of the Upload.
|
|
112
|
+
/// @group upload
|
|
109
113
|
$kendo-upload-file-info-margin: k-spacing(2) !default;
|
|
110
114
|
|
|
111
115
|
@forward "@progress/kendo-theme-core/scss/components/upload/_variables.scss" with (
|