@progress/kendo-theme-bootstrap 13.2.0-dev.4 → 14.0.0-dev.1
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/bootstrap-3-dark.css +1 -1
- package/dist/bootstrap-3.css +1 -1
- package/dist/bootstrap-4-dark.css +1 -1
- package/dist/bootstrap-4.css +1 -1
- package/dist/bootstrap-dataviz-v4.css +1 -1
- package/dist/bootstrap-main-dark.css +1 -1
- package/dist/bootstrap-main.css +1 -1
- package/dist/bootstrap-nordic.css +1 -1
- package/dist/bootstrap-turquoise-dark.css +1 -1
- package/dist/bootstrap-turquoise.css +1 -1
- package/dist/bootstrap-urban.css +1 -1
- package/dist/bootstrap-vintage.css +1 -1
- package/dist/meta/sassdoc-data.json +12322 -8866
- package/dist/meta/sassdoc-raw-data.json +5897 -4297
- package/dist/meta/variables.json +274 -2
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +4 -4
- package/scss/action-sheet/_variables.scss +8 -0
- package/scss/appbar/_variables.scss +4 -0
- package/scss/button/_variables.scss +5 -0
- package/scss/chart-wizard/_variables.scss +17 -0
- package/scss/chat/_variables.scss +4 -0
- package/scss/column-menu/_variables.scss +11 -1
- package/scss/dataviz/_variables.scss +8 -0
- package/scss/dock-manager/_variables.scss +4 -0
- package/scss/dropzone/_variables.scss +4 -0
- package/scss/editor/_variables.scss +4 -0
- package/scss/expansion-panel/_variables.scss +12 -0
- package/scss/file-box/_variables.scss +9 -0
- package/scss/filemanager/_variables.scss +4 -0
- package/scss/filter/_variables.scss +5 -0
- package/scss/forms/_variables.scss +21 -0
- package/scss/gantt/_variables.scss +4 -0
- package/scss/grid/_variables.scss +17 -0
- package/scss/imageeditor/_variables.scss +4 -0
- package/scss/listbox/_variables.scss +14 -1
- package/scss/listview/_variables.scss +5 -1
- package/scss/mediaplayer/_variables.scss +16 -0
- package/scss/messagebox/_variables.scss +4 -0
- package/scss/pdf-viewer/_variables.scss +4 -0
- package/scss/pivotgrid/_variables.scss +4 -0
- package/scss/progressbar/_variables.scss +6 -0
- package/scss/prompt/_variables.scss +14 -1
- package/scss/scheduler/_variables.scss +4 -0
- package/scss/scrollview/_theme.scss +2 -67
- package/scss/scrollview/_variables.scss +8 -0
- package/scss/spreadsheet/_variables.scss +4 -0
- package/scss/stepper/_variables.scss +4 -0
- package/scss/suggestion/_variables.scss +4 -0
- package/scss/table/_variables.scss +27 -0
- package/scss/taskboard/_variables.scss +4 -0
- package/scss/timeline/_variables.scss +5 -0
- package/scss/upload/_variables.scss +4 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "14.0.0-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "^4.8.0",
|
|
57
|
-
"@progress/kendo-theme-core": "
|
|
58
|
-
"@progress/kendo-theme-utils": "
|
|
57
|
+
"@progress/kendo-theme-core": "14.0.0-dev.1",
|
|
58
|
+
"@progress/kendo-theme-utils": "14.0.0-dev.1"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
62
62
|
"lib": "lib"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "780438a25511afc7e4aef75ff1fd10a259b64356"
|
|
65
65
|
}
|
|
@@ -73,6 +73,9 @@ $kendo-actionsheet-titlebar-line-height: null !default;
|
|
|
73
73
|
/// The gap of the ActionSheet titlebar.
|
|
74
74
|
/// @group action-sheet
|
|
75
75
|
$kendo-actionsheet-titlebar-gap: k-spacing(4) !default;
|
|
76
|
+
/// The font weight of the ActionSheet titlebar.
|
|
77
|
+
/// @group action-sheet
|
|
78
|
+
$kendo-actionsheet-titlebar-font-weight: null !default;
|
|
76
79
|
|
|
77
80
|
/// The background color of the ActionSheet titlebar.
|
|
78
81
|
/// @group action-sheet
|
|
@@ -136,6 +139,9 @@ $kendo-actionsheet-item-border-width: 1px !default;
|
|
|
136
139
|
/// The spacing between the ActionSheet items.
|
|
137
140
|
/// @group action-sheet
|
|
138
141
|
$kendo-actionsheet-item-spacing: k-spacing(3) !default;
|
|
142
|
+
/// The border radius of the ActionSheet item.
|
|
143
|
+
/// @group action-sheet
|
|
144
|
+
$kendo-actionsheet-item-border-radius: null !default;
|
|
139
145
|
|
|
140
146
|
/// The font weight of the ActionSheet item title.
|
|
141
147
|
/// @group action-sheet
|
|
@@ -255,6 +261,7 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-spacing(4) !default;
|
|
|
255
261
|
$kendo-actionsheet-titlebar-font-size: $kendo-actionsheet-titlebar-font-size,
|
|
256
262
|
$kendo-actionsheet-titlebar-font-family: $kendo-actionsheet-titlebar-font-family,
|
|
257
263
|
$kendo-actionsheet-titlebar-line-height: $kendo-actionsheet-titlebar-line-height,
|
|
264
|
+
$kendo-actionsheet-titlebar-font-weight: $kendo-actionsheet-titlebar-font-weight,
|
|
258
265
|
$kendo-actionsheet-titlebar-gap: $kendo-actionsheet-titlebar-gap,
|
|
259
266
|
$kendo-actionsheet-titlebar-bg: $kendo-actionsheet-titlebar-bg,
|
|
260
267
|
$kendo-actionsheet-titlebar-text: $kendo-actionsheet-titlebar-text,
|
|
@@ -275,6 +282,7 @@ $kendo-adaptive-actionsheet-footer-padding-x: k-spacing(4) !default;
|
|
|
275
282
|
$kendo-actionsheet-item-padding-y: $kendo-actionsheet-item-padding-y,
|
|
276
283
|
$kendo-actionsheet-item-border-width: $kendo-actionsheet-item-border-width,
|
|
277
284
|
$kendo-actionsheet-item-spacing: $kendo-actionsheet-item-spacing,
|
|
285
|
+
$kendo-actionsheet-item-border-radius: $kendo-actionsheet-item-border-radius,
|
|
278
286
|
$kendo-actionsheet-item-title-font-weight: $kendo-actionsheet-item-title-font-weight,
|
|
279
287
|
$kendo-actionsheet-item-title-text-transform: $kendo-actionsheet-item-title-text-transform,
|
|
280
288
|
$kendo-actionsheet-item-description-font-size: $kendo-actionsheet-item-description-font-size,
|
|
@@ -24,6 +24,9 @@ $kendo-appbar-padding-y: k-spacing(2) !default;
|
|
|
24
24
|
/// The width of the border around the AppBar.
|
|
25
25
|
/// @group appbar
|
|
26
26
|
$kendo-appbar-border-width: 0px !default;
|
|
27
|
+
/// The border radius of the AppBar.
|
|
28
|
+
/// @group appbar
|
|
29
|
+
$kendo-appbar-border-radius: null !default;
|
|
27
30
|
/// The z-index of the AppBar.
|
|
28
31
|
/// @group appbar
|
|
29
32
|
$kendo-appbar-zindex: k-z-index("banner") !default;
|
|
@@ -54,6 +57,7 @@ $kendo-appbar-bottom-box-shadow: k-elevation(4) !default;
|
|
|
54
57
|
$kendo-appbar-padding-x: $kendo-appbar-padding-x,
|
|
55
58
|
$kendo-appbar-padding-y: $kendo-appbar-padding-y,
|
|
56
59
|
$kendo-appbar-border-width: $kendo-appbar-border-width,
|
|
60
|
+
$kendo-appbar-border-radius: $kendo-appbar-border-radius,
|
|
57
61
|
$kendo-appbar-zindex: $kendo-appbar-zindex,
|
|
58
62
|
$kendo-appbar-font-family: $kendo-appbar-font-family,
|
|
59
63
|
$kendo-appbar-font-size: $kendo-appbar-font-size,
|
|
@@ -29,6 +29,10 @@ $kendo-button-border-width: 1px !default;
|
|
|
29
29
|
/// @group button
|
|
30
30
|
$kendo-button-border-radius: null !default;
|
|
31
31
|
|
|
32
|
+
/// The spacing between icon and text inside the Button.
|
|
33
|
+
/// @group button
|
|
34
|
+
$kendo-button-gap: k-spacing(2) !default;
|
|
35
|
+
|
|
32
36
|
/// The horizontal padding of the xsmall Button.
|
|
33
37
|
/// @group button
|
|
34
38
|
$kendo-button-xs-padding-x: k-spacing(0.5) !default;
|
|
@@ -266,6 +270,7 @@ $kendo-button-transition: color k-transition(rapid), background-color k-transiti
|
|
|
266
270
|
@forward "@progress/kendo-theme-core/scss/components/button/_variables.scss" with (
|
|
267
271
|
$kendo-button-border-width: $kendo-button-border-width,
|
|
268
272
|
$kendo-button-border-radius: $kendo-button-border-radius,
|
|
273
|
+
$kendo-button-gap: $kendo-button-gap,
|
|
269
274
|
$kendo-button-xs-padding-x: $kendo-button-xs-padding-x,
|
|
270
275
|
$kendo-button-sm-padding-x: $kendo-button-sm-padding-x,
|
|
271
276
|
$kendo-button-md-padding-x: $kendo-button-md-padding-x,
|
|
@@ -15,6 +15,12 @@ $kendo-chart-wizard-icon-area-border-radius: k-border-radius(sm) !default;
|
|
|
15
15
|
/// The padding of the area around the chart type icon.
|
|
16
16
|
/// @group chart-wizard
|
|
17
17
|
$kendo-chart-wizard-icon-area-padding: k-spacing(4) !default;
|
|
18
|
+
/// The border width of the area around the chart type icon.
|
|
19
|
+
/// @group chart-wizard
|
|
20
|
+
$kendo-chart-wizard-icon-area-border-width: null !default;
|
|
21
|
+
/// The border color of the area around the chart type icon.
|
|
22
|
+
/// @group chart-wizard
|
|
23
|
+
$kendo-chart-wizard-icon-area-border-color: null !default;
|
|
18
24
|
/// The box shadow of the focused area around the chart type icon.
|
|
19
25
|
/// @group chart-wizard
|
|
20
26
|
$kendo-chart-wizard-icon-area-focus-shadow: inset 0 0 0 1px k-color(primary-emphasis) !default;
|
|
@@ -22,6 +28,13 @@ $kendo-chart-wizard-icon-area-focus-shadow: inset 0 0 0 1px k-color(primary-emph
|
|
|
22
28
|
/// @group chart-wizard
|
|
23
29
|
$kendo-chart-wizard-icon-area-selected-shadow: inset 0 0 0 1px $kendo-chart-wizard-icon-area-color !default;
|
|
24
30
|
|
|
31
|
+
/// The border color of the selected area around the chart type icon.
|
|
32
|
+
/// @group chart-wizard
|
|
33
|
+
$kendo-chart-wizard-icon-area-selected-border-color: null !default;
|
|
34
|
+
/// The background color of the selected area around the chart type icon.
|
|
35
|
+
/// @group chart-wizard
|
|
36
|
+
$kendo-chart-wizard-icon-area-selected-bg: null !default;
|
|
37
|
+
|
|
25
38
|
/// The color of the selected chart type items in the Property panel.
|
|
26
39
|
/// @group chart-wizard
|
|
27
40
|
$kendo-chart-wizard-chart-type-selected-color: k-color(primary) !default;
|
|
@@ -45,9 +58,13 @@ $kendo-chart-wizard-icon-text-gap: k-spacing(3) !default;
|
|
|
45
58
|
$kendo-chart-wizard-icon-area-color: $kendo-chart-wizard-icon-area-color,
|
|
46
59
|
$kendo-chart-wizard-icon-area-bg: $kendo-chart-wizard-icon-area-bg,
|
|
47
60
|
$kendo-chart-wizard-icon-area-border-radius: $kendo-chart-wizard-icon-area-border-radius,
|
|
61
|
+
$kendo-chart-wizard-icon-area-border-width: $kendo-chart-wizard-icon-area-border-width,
|
|
62
|
+
$kendo-chart-wizard-icon-area-border-color: $kendo-chart-wizard-icon-area-border-color,
|
|
48
63
|
$kendo-chart-wizard-icon-area-padding: $kendo-chart-wizard-icon-area-padding,
|
|
49
64
|
$kendo-chart-wizard-icon-area-focus-shadow: $kendo-chart-wizard-icon-area-focus-shadow,
|
|
50
65
|
$kendo-chart-wizard-icon-area-selected-shadow: $kendo-chart-wizard-icon-area-selected-shadow,
|
|
66
|
+
$kendo-chart-wizard-icon-area-selected-border-color: $kendo-chart-wizard-icon-area-selected-border-color,
|
|
67
|
+
$kendo-chart-wizard-icon-area-selected-bg: $kendo-chart-wizard-icon-area-selected-bg,
|
|
51
68
|
$kendo-chart-wizard-chart-type-selected-color: $kendo-chart-wizard-chart-type-selected-color,
|
|
52
69
|
$kendo-chart-wizard-preview-pane-padding: $kendo-chart-wizard-preview-pane-padding,
|
|
53
70
|
$kendo-chart-wizard-property-pane-padding: $kendo-chart-wizard-property-pane-padding,
|
|
@@ -20,6 +20,9 @@ $kendo-chat-height: 320px !default;
|
|
|
20
20
|
/// The border width of the Chat.
|
|
21
21
|
/// @group chat
|
|
22
22
|
$kendo-chat-border-width: 1px !default;
|
|
23
|
+
/// The border radius of the Chat.
|
|
24
|
+
/// @group chat
|
|
25
|
+
$kendo-chat-border-radius: null !default;
|
|
23
26
|
/// The font family of the Chat.
|
|
24
27
|
/// @group chat
|
|
25
28
|
$kendo-chat-font-family: var(--kendo-font-family) !default;
|
|
@@ -237,6 +240,7 @@ $kendo-chat-message-reference-marker-alt-bg: k-color(primary-emphasis) !default;
|
|
|
237
240
|
$kendo-chat-width: $kendo-chat-width,
|
|
238
241
|
$kendo-chat-height: $kendo-chat-height,
|
|
239
242
|
$kendo-chat-border-width: $kendo-chat-border-width,
|
|
243
|
+
$kendo-chat-border-radius: $kendo-chat-border-radius,
|
|
240
244
|
$kendo-chat-font-family: $kendo-chat-font-family,
|
|
241
245
|
$kendo-chat-font-size: $kendo-chat-font-size,
|
|
242
246
|
$kendo-chat-line-height: $kendo-chat-line-height,
|
|
@@ -27,6 +27,10 @@ $kendo-column-menu-item-lg-padding-x: k-spacing(4) !default;
|
|
|
27
27
|
/// @group column-menu
|
|
28
28
|
$kendo-column-menu-item-lg-padding-y: k-spacing(2) !default;
|
|
29
29
|
|
|
30
|
+
/// The vertical padding of the ColumnMenu item wrapper.
|
|
31
|
+
/// @group column-menu
|
|
32
|
+
$kendo-column-menu-item-wrapper-padding-y: null !default;
|
|
33
|
+
|
|
30
34
|
/// The font size of the ColumnMenu.
|
|
31
35
|
/// @group column-menu
|
|
32
36
|
$kendo-column-menu-font-size: var(--kendo-font-size) !default;
|
|
@@ -71,6 +75,10 @@ $kendo-group-menu-item-add-action-text: k-color(primary-on-surface) !default;
|
|
|
71
75
|
/// @group column-menu
|
|
72
76
|
$kendo-group-menu-item-border: k-color(border) !default;
|
|
73
77
|
|
|
78
|
+
/// The border radius of the ColumnMenu list item.
|
|
79
|
+
/// @group column-menu
|
|
80
|
+
$kendo-column-list-item-border-radius: null !default;
|
|
81
|
+
|
|
74
82
|
|
|
75
83
|
@forward "@progress/kendo-theme-core/scss/components/column-menu/_variables.scss" with (
|
|
76
84
|
$kendo-column-menu-default-size: $kendo-column-menu-default-size,
|
|
@@ -89,8 +97,10 @@ $kendo-group-menu-item-border: k-color(border) !default;
|
|
|
89
97
|
$kendo-column-menu-item-md-padding-y: $kendo-column-menu-item-md-padding-y,
|
|
90
98
|
$kendo-column-menu-item-lg-padding-x: $kendo-column-menu-item-lg-padding-x,
|
|
91
99
|
$kendo-column-menu-item-lg-padding-y: $kendo-column-menu-item-lg-padding-y,
|
|
100
|
+
$kendo-column-menu-item-wrapper-padding-y: $kendo-column-menu-item-wrapper-padding-y,
|
|
92
101
|
$kendo-group-menu-item-action-hover-bg: $kendo-group-menu-item-action-hover-bg,
|
|
93
102
|
$kendo-group-menu-item-action-selected-bg: $kendo-group-menu-item-action-selected-bg,
|
|
94
103
|
$kendo-group-menu-item-add-action-text: $kendo-group-menu-item-add-action-text,
|
|
95
|
-
$kendo-group-menu-item-border: $kendo-group-menu-item-border
|
|
104
|
+
$kendo-group-menu-item-border: $kendo-group-menu-item-border,
|
|
105
|
+
$kendo-column-list-item-border-radius: $kendo-column-list-item-border-radius
|
|
96
106
|
);
|
|
@@ -195,6 +195,9 @@ $kendo-series-30: $kendo-series-f-darker !default;
|
|
|
195
195
|
/// The border width of the Chart.
|
|
196
196
|
/// @group charts
|
|
197
197
|
$kendo-chart-border-width: 0px !default;
|
|
198
|
+
/// The border radius of the Chart.
|
|
199
|
+
/// @group charts
|
|
200
|
+
$kendo-chart-border-radius: null !default;
|
|
198
201
|
/// The font family of the Chart.
|
|
199
202
|
/// @group charts
|
|
200
203
|
$kendo-chart-font-family: var(--kendo-font-family) !default;
|
|
@@ -327,6 +330,9 @@ $kendo-treemap-padding-x: k-spacing(2) !default;
|
|
|
327
330
|
/// The vertical padding of the TreeMap.
|
|
328
331
|
/// @group charts
|
|
329
332
|
$kendo-treemap-padding-y: k-spacing(1) !default;
|
|
333
|
+
/// The border radius of the TreeMap.
|
|
334
|
+
/// @group charts
|
|
335
|
+
$kendo-treemap-border-radius: null !default;
|
|
330
336
|
|
|
331
337
|
/// The text color of the TreeMap.
|
|
332
338
|
/// @group charts
|
|
@@ -435,6 +441,7 @@ $kendo-gauge-track-bg: k-color(base-emphasis) !default;
|
|
|
435
441
|
$kendo-series-29: $kendo-series-29,
|
|
436
442
|
$kendo-series-30: $kendo-series-30,
|
|
437
443
|
$kendo-chart-border-width: $kendo-chart-border-width,
|
|
444
|
+
$kendo-chart-border-radius: $kendo-chart-border-radius,
|
|
438
445
|
$kendo-chart-font-family: $kendo-chart-font-family,
|
|
439
446
|
$kendo-chart-font-size: $kendo-chart-font-size,
|
|
440
447
|
$kendo-chart-line-height: $kendo-chart-line-height,
|
|
@@ -474,6 +481,7 @@ $kendo-gauge-track-bg: k-color(base-emphasis) !default;
|
|
|
474
481
|
$kendo-treemap-line-height: $kendo-treemap-line-height,
|
|
475
482
|
$kendo-treemap-padding-x: $kendo-treemap-padding-x,
|
|
476
483
|
$kendo-treemap-padding-y: $kendo-treemap-padding-y,
|
|
484
|
+
$kendo-treemap-border-radius: $kendo-treemap-border-radius,
|
|
477
485
|
$kendo-chart-overlay-bg: $kendo-chart-overlay-bg,
|
|
478
486
|
$kendo-chart-no-data-font-size: $kendo-chart-no-data-font-size,
|
|
479
487
|
$kendo-chart-no-data-font-weight: $kendo-chart-no-data-font-weight,
|
|
@@ -11,6 +11,9 @@ $kendo-dock-manager-border-style: solid !default;
|
|
|
11
11
|
/// The color of the border around the DockManager component.
|
|
12
12
|
/// @group dock-manager
|
|
13
13
|
$kendo-dock-manager-border: k-color(border) !default;
|
|
14
|
+
/// The border radius of the DockManager.
|
|
15
|
+
/// @group dock-manager
|
|
16
|
+
$kendo-dock-manager-border-radius: null !default;
|
|
14
17
|
|
|
15
18
|
/// The vertical padding of the pane header in the DockManager component.
|
|
16
19
|
/// @group dock-manager
|
|
@@ -121,6 +124,7 @@ $kendo-dock-manager-dock-preview-border: k-color(primary-on-surface) !default;
|
|
|
121
124
|
$kendo-dock-manager-border-width: $kendo-dock-manager-border-width,
|
|
122
125
|
$kendo-dock-manager-border-style: $kendo-dock-manager-border-style,
|
|
123
126
|
$kendo-dock-manager-border: $kendo-dock-manager-border,
|
|
127
|
+
$kendo-dock-manager-border-radius: $kendo-dock-manager-border-radius,
|
|
124
128
|
$kendo-dock-manager-pane-header-padding-y: $kendo-dock-manager-pane-header-padding-y,
|
|
125
129
|
$kendo-dock-manager-pane-header-padding-x: $kendo-dock-manager-pane-header-padding-x,
|
|
126
130
|
$kendo-dock-manager-pane-header-border-width: $kendo-dock-manager-pane-header-border-width,
|
|
@@ -13,6 +13,9 @@ $kendo-dropzone-padding-y: k-spacing(2) !default;
|
|
|
13
13
|
/// The border width of the DropZone.
|
|
14
14
|
/// @group dropzone
|
|
15
15
|
$kendo-dropzone-border-width: 1px !default;
|
|
16
|
+
/// The border radius of the DropZone.
|
|
17
|
+
/// @group dropzone
|
|
18
|
+
$kendo-dropzone-border-radius: null !default;
|
|
16
19
|
/// The minimum height of the DropZone.
|
|
17
20
|
/// @group dropzone
|
|
18
21
|
$kendo-dropzone-min-height: 220px !default;
|
|
@@ -72,6 +75,7 @@ $kendo-dropzone-note-text: k-color(subtle) !default;
|
|
|
72
75
|
$kendo-dropzone-padding-x: $kendo-dropzone-padding-x,
|
|
73
76
|
$kendo-dropzone-padding-y: $kendo-dropzone-padding-y,
|
|
74
77
|
$kendo-dropzone-border-width: $kendo-dropzone-border-width,
|
|
78
|
+
$kendo-dropzone-border-radius: $kendo-dropzone-border-radius,
|
|
75
79
|
$kendo-dropzone-min-height: $kendo-dropzone-min-height,
|
|
76
80
|
$kendo-dropzone-font-family: $kendo-dropzone-font-family,
|
|
77
81
|
$kendo-dropzone-font-size: $kendo-dropzone-font-size,
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
/// The width of the border around the Еditor.
|
|
9
9
|
/// @group editor
|
|
10
10
|
$kendo-editor-border-width: 1px !default;
|
|
11
|
+
/// The border radius of the Editor.
|
|
12
|
+
/// @group editor
|
|
13
|
+
$kendo-editor-border-radius: null !default;
|
|
11
14
|
/// The font family of the Еditor.
|
|
12
15
|
/// @group editor
|
|
13
16
|
$kendo-editor-font-family: var(--kendo-font-family) !default;
|
|
@@ -90,6 +93,7 @@ $kendo-editor-content-padding: k-spacing(4) !default;
|
|
|
90
93
|
|
|
91
94
|
@forward "@progress/kendo-theme-core/scss/components/editor/_variables.scss" with (
|
|
92
95
|
$kendo-editor-border-width: $kendo-editor-border-width,
|
|
96
|
+
$kendo-editor-border-radius: $kendo-editor-border-radius,
|
|
93
97
|
$kendo-editor-font-family: $kendo-editor-font-family,
|
|
94
98
|
$kendo-editor-font-size: $kendo-editor-font-size,
|
|
95
99
|
$kendo-editor-line-height: $kendo-editor-line-height,
|
|
@@ -9,6 +9,9 @@ $kendo-expander-spacing-y: k-spacing(3) !default;
|
|
|
9
9
|
/// The width of the border around the ExpansionPanel.
|
|
10
10
|
/// @group expander
|
|
11
11
|
$kendo-expander-border-width: 1px !default;
|
|
12
|
+
/// The border radius of the ExpansionPanel.
|
|
13
|
+
/// @group expander
|
|
14
|
+
$kendo-expander-border-radius: null !default;
|
|
12
15
|
/// The font family of the ExpansionPanel.
|
|
13
16
|
/// @group expander
|
|
14
17
|
$kendo-expander-font-family: var(--kendo-font-family) !default;
|
|
@@ -60,6 +63,12 @@ $kendo-expander-header-focus-bg: null !default;
|
|
|
60
63
|
/// @group expander
|
|
61
64
|
$kendo-expander-header-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
62
65
|
|
|
66
|
+
/// The font weight of the ExpansionPanel title.
|
|
67
|
+
/// @group expander
|
|
68
|
+
$kendo-expander-title-font-weight: 500 !default;
|
|
69
|
+
/// The text transform of the ExpansionPanel title.
|
|
70
|
+
/// @group expander
|
|
71
|
+
$kendo-expander-title-text-transform: uppercase !default;
|
|
63
72
|
/// The text color of the ExpansionPanel title.
|
|
64
73
|
/// @group expander
|
|
65
74
|
$kendo-expander-title-text: k-color(primary-on-surface) !default;
|
|
@@ -83,6 +92,7 @@ $kendo-expander-content-padding-y: k-spacing(6) !default;
|
|
|
83
92
|
@forward "@progress/kendo-theme-core/scss/components/expansion-panel/_variables.scss" with (
|
|
84
93
|
$kendo-expander-spacing-y: $kendo-expander-spacing-y,
|
|
85
94
|
$kendo-expander-border-width: $kendo-expander-border-width,
|
|
95
|
+
$kendo-expander-border-radius: $kendo-expander-border-radius,
|
|
86
96
|
$kendo-expander-font-family: $kendo-expander-font-family,
|
|
87
97
|
$kendo-expander-font-size: $kendo-expander-font-size,
|
|
88
98
|
$kendo-expander-line-height: $kendo-expander-line-height,
|
|
@@ -98,6 +108,8 @@ $kendo-expander-content-padding-y: k-spacing(6) !default;
|
|
|
98
108
|
$kendo-expander-header-hover-bg: $kendo-expander-header-hover-bg,
|
|
99
109
|
$kendo-expander-header-focus-bg: $kendo-expander-header-focus-bg,
|
|
100
110
|
$kendo-expander-header-focus-shadow: $kendo-expander-header-focus-shadow,
|
|
111
|
+
$kendo-expander-title-font-weight: $kendo-expander-title-font-weight,
|
|
112
|
+
$kendo-expander-title-text-transform: $kendo-expander-title-text-transform,
|
|
101
113
|
$kendo-expander-title-text: $kendo-expander-title-text,
|
|
102
114
|
$kendo-expander-header-sub-title-text: $kendo-expander-header-sub-title-text,
|
|
103
115
|
$kendo-expander-indicator-margin-x: $kendo-expander-indicator-margin-x,
|
|
@@ -11,6 +11,9 @@ $kendo-file-box-padding-y: k-spacing(1) !default;
|
|
|
11
11
|
/// The spacing between the elements of the File Box.
|
|
12
12
|
/// @group file-box
|
|
13
13
|
$kendo-file-box-gap: k-spacing(1) !default;
|
|
14
|
+
/// The spacing between the elements of the File Box info section.
|
|
15
|
+
/// @group file-box
|
|
16
|
+
$kendo-file-box-info-gap: null !default;
|
|
14
17
|
/// The minimum width of the File Box.
|
|
15
18
|
/// @group file-box
|
|
16
19
|
$kendo-file-box-min-width: 96px !default;
|
|
@@ -49,6 +52,10 @@ $kendo-file-box-text: k-color(base-on-subtle) !default;
|
|
|
49
52
|
/// @group file-box
|
|
50
53
|
$kendo-file-box-border: $kendo-file-box-bg !default;
|
|
51
54
|
|
|
55
|
+
/// The text color of the File Box file size.
|
|
56
|
+
/// @group file-box
|
|
57
|
+
$kendo-file-box-size-text: null !default;
|
|
58
|
+
|
|
52
59
|
/// The gradient used for the File Box wrapper scrolling indicator.
|
|
53
60
|
/// @group file-box
|
|
54
61
|
$kendo-file-box-wrapper-scroll-gradient: rgba(255, 255, 255, 0.00) 0%, k-color(app-surface) 100% !default;
|
|
@@ -57,6 +64,7 @@ $kendo-file-box-wrapper-scroll-gradient: rgba(255, 255, 255, 0.00) 0%, k-color(a
|
|
|
57
64
|
$kendo-file-box-padding-x: $kendo-file-box-padding-x,
|
|
58
65
|
$kendo-file-box-padding-y: $kendo-file-box-padding-y,
|
|
59
66
|
$kendo-file-box-gap: $kendo-file-box-gap,
|
|
67
|
+
$kendo-file-box-info-gap: $kendo-file-box-info-gap,
|
|
60
68
|
$kendo-file-box-min-width: $kendo-file-box-min-width,
|
|
61
69
|
$kendo-file-box-max-width: $kendo-file-box-max-width,
|
|
62
70
|
$kendo-file-box-border-width: $kendo-file-box-border-width,
|
|
@@ -69,5 +77,6 @@ $kendo-file-box-wrapper-scroll-gradient: rgba(255, 255, 255, 0.00) 0%, k-color(a
|
|
|
69
77
|
$kendo-file-box-bg: $kendo-file-box-bg,
|
|
70
78
|
$kendo-file-box-text: $kendo-file-box-text,
|
|
71
79
|
$kendo-file-box-border: $kendo-file-box-border,
|
|
80
|
+
$kendo-file-box-size-text: $kendo-file-box-size-text,
|
|
72
81
|
$kendo-file-box-wrapper-scroll-gradient: $kendo-file-box-wrapper-scroll-gradient
|
|
73
82
|
);
|
|
@@ -12,6 +12,9 @@ $kendo-file-manager-spacer: k-spacing(4) !default;
|
|
|
12
12
|
/// The border width of the FileManager.
|
|
13
13
|
/// @group file-manager
|
|
14
14
|
$kendo-file-manager-border-width: 1px !default;
|
|
15
|
+
/// The border radius of the FileManager.
|
|
16
|
+
/// @group file-manager
|
|
17
|
+
$kendo-file-manager-border-radius: null !default;
|
|
15
18
|
/// The font family of the FileManager.
|
|
16
19
|
/// @group file-manager
|
|
17
20
|
$kendo-file-manager-font-family: var(--kendo-font-family) !default;
|
|
@@ -182,6 +185,7 @@ $kendo-file-manager-preview-icon-border: null !default;
|
|
|
182
185
|
@forward "@progress/kendo-theme-core/scss/components/filemanager/_variables.scss" with (
|
|
183
186
|
$kendo-file-manager-spacer: $kendo-file-manager-spacer,
|
|
184
187
|
$kendo-file-manager-border-width: $kendo-file-manager-border-width,
|
|
188
|
+
$kendo-file-manager-border-radius: $kendo-file-manager-border-radius,
|
|
185
189
|
$kendo-file-manager-font-family: $kendo-file-manager-font-family,
|
|
186
190
|
$kendo-file-manager-font-size: $kendo-file-manager-font-size,
|
|
187
191
|
$kendo-file-manager-line-height: $kendo-file-manager-line-height,
|
|
@@ -9,6 +9,10 @@ $kendo-filter-padding-x: k-spacing(4) !default;
|
|
|
9
9
|
/// @group filter
|
|
10
10
|
$kendo-filter-padding-y: k-spacing(2) !default;
|
|
11
11
|
|
|
12
|
+
/// The border radius of the Filter.
|
|
13
|
+
/// @group filter
|
|
14
|
+
$kendo-filter-border-radius: null !default;
|
|
15
|
+
|
|
12
16
|
/// The bottom margin of the Filter.
|
|
13
17
|
/// @group filter
|
|
14
18
|
$kendo-filter-bottom-margin: 2.1em !default;
|
|
@@ -35,6 +39,7 @@ $kendo-filter-toolbar-focus-shadow: 0 0 0 .25rem color-mix(in srgb, k-color(prim
|
|
|
35
39
|
@forward "@progress/kendo-theme-core/scss/components/filter/_variables.scss" with (
|
|
36
40
|
$kendo-filter-padding-x: $kendo-filter-padding-x,
|
|
37
41
|
$kendo-filter-padding-y: $kendo-filter-padding-y,
|
|
42
|
+
$kendo-filter-border-radius: $kendo-filter-border-radius,
|
|
38
43
|
$kendo-filter-bottom-margin: $kendo-filter-bottom-margin,
|
|
39
44
|
$kendo-filter-line-size: $kendo-filter-line-size,
|
|
40
45
|
$kendo-filter-operator-dropdown-width: $kendo-filter-operator-dropdown-width,
|
|
@@ -49,6 +49,9 @@ $kendo-form-legend-width: 100% !default;
|
|
|
49
49
|
/// The font size of the Form legend.
|
|
50
50
|
/// @group form
|
|
51
51
|
$kendo-form-legend-font-size: var(--kendo-font-size-sm) !default;
|
|
52
|
+
/// The font weight of the Form legend.
|
|
53
|
+
/// @group form
|
|
54
|
+
$kendo-form-legend-font-weight: null !default;
|
|
52
55
|
/// The text capitalization of the Form legend.
|
|
53
56
|
/// @group form
|
|
54
57
|
$kendo-form-legend-text-transform: none !default;
|
|
@@ -57,6 +60,16 @@ $kendo-form-legend-text-transform: none !default;
|
|
|
57
60
|
/// @group form
|
|
58
61
|
$kendo-form-label-margin-bottom: k-spacing(2) !default;
|
|
59
62
|
|
|
63
|
+
/// The font size of the Form label.
|
|
64
|
+
/// @group form
|
|
65
|
+
$kendo-label-font-size: null !default;
|
|
66
|
+
/// The font weight of the Form label.
|
|
67
|
+
/// @group form
|
|
68
|
+
$kendo-label-font-weight: null !default;
|
|
69
|
+
/// The line height of the Form label.
|
|
70
|
+
/// @group form
|
|
71
|
+
$kendo-label-line-height: null !default;
|
|
72
|
+
|
|
60
73
|
/// The font size of the Form hint.
|
|
61
74
|
/// @group form
|
|
62
75
|
$kendo-form-hint-font-size: var(--kendo-font-size-xs) !default;
|
|
@@ -121,6 +134,9 @@ $kendo-label-optional-font-size: var(--kendo-font-size-xs) !default;
|
|
|
121
134
|
/// The font style of the optional label in the Form.
|
|
122
135
|
/// @group form
|
|
123
136
|
$kendo-label-optional-font-style: italic !default;
|
|
137
|
+
/// The font weight of the optional label in the Form.
|
|
138
|
+
/// @group form
|
|
139
|
+
$kendo-label-optional-font-weight: null !default;
|
|
124
140
|
|
|
125
141
|
|
|
126
142
|
/// The margin of the Form fieldset.
|
|
@@ -160,8 +176,12 @@ $kendo-fieldset-legend-text: unset !default;
|
|
|
160
176
|
$kendo-form-legend-border-color: $kendo-form-legend-border-color,
|
|
161
177
|
$kendo-form-legend-width: $kendo-form-legend-width,
|
|
162
178
|
$kendo-form-legend-font-size: $kendo-form-legend-font-size,
|
|
179
|
+
$kendo-form-legend-font-weight: $kendo-form-legend-font-weight,
|
|
163
180
|
$kendo-form-legend-text-transform: $kendo-form-legend-text-transform,
|
|
164
181
|
$kendo-form-label-margin-bottom: $kendo-form-label-margin-bottom,
|
|
182
|
+
$kendo-label-font-size: $kendo-label-font-size,
|
|
183
|
+
$kendo-label-font-weight: $kendo-label-font-weight,
|
|
184
|
+
$kendo-label-line-height: $kendo-label-line-height,
|
|
165
185
|
$kendo-form-hint-font-size: $kendo-form-hint-font-size,
|
|
166
186
|
$kendo-form-hint-font-style: $kendo-form-hint-font-style,
|
|
167
187
|
$kendo-form-hint-margin-top: $kendo-form-hint-margin-top,
|
|
@@ -181,6 +201,7 @@ $kendo-fieldset-legend-text: unset !default;
|
|
|
181
201
|
$kendo-label-optional-margin-x: $kendo-label-optional-margin-x,
|
|
182
202
|
$kendo-label-optional-font-size: $kendo-label-optional-font-size,
|
|
183
203
|
$kendo-label-optional-font-style: $kendo-label-optional-font-style,
|
|
204
|
+
$kendo-label-optional-font-weight: $kendo-label-optional-font-weight,
|
|
184
205
|
$kendo-fieldset-margin: $kendo-fieldset-margin,
|
|
185
206
|
$kendo-fieldset-legend-padding: $kendo-fieldset-legend-padding,
|
|
186
207
|
$kendo-fieldset-legend-margin: $kendo-fieldset-legend-margin,
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
/// The border width of the Gantt.
|
|
10
10
|
/// @group gantt
|
|
11
11
|
$kendo-gantt-border-width: 1px !default;
|
|
12
|
+
/// The border radius of the Gantt.
|
|
13
|
+
/// @group gantt
|
|
14
|
+
$kendo-gantt-border-radius: null !default;
|
|
12
15
|
/// The font family of the Gantt.
|
|
13
16
|
/// @group gantt
|
|
14
17
|
$kendo-gantt-font-family: var(--kendo-font-family) !default;
|
|
@@ -244,6 +247,7 @@ $kendo-gantt-task-tooltip-padding-y: k-spacing(2) !default;
|
|
|
244
247
|
|
|
245
248
|
@forward "@progress/kendo-theme-core/scss/components/gantt/_variables.scss" with (
|
|
246
249
|
$kendo-gantt-border-width: $kendo-gantt-border-width,
|
|
250
|
+
$kendo-gantt-border-radius: $kendo-gantt-border-radius,
|
|
247
251
|
$kendo-gantt-font-family: $kendo-gantt-font-family,
|
|
248
252
|
$kendo-gantt-font-size: $kendo-gantt-font-size,
|
|
249
253
|
$kendo-gantt-line-height: $kendo-gantt-line-height,
|
|
@@ -20,6 +20,9 @@ $kendo-grid-default-size: "md" !default;
|
|
|
20
20
|
/// The width of the border around the Grid.
|
|
21
21
|
/// @group grid
|
|
22
22
|
$kendo-grid-border-width: 1px !default;
|
|
23
|
+
/// The border radius of the Grid.
|
|
24
|
+
/// @group grid
|
|
25
|
+
$kendo-grid-border-radius: null !default;
|
|
23
26
|
/// The font family of the Grid.
|
|
24
27
|
/// @group grid
|
|
25
28
|
$kendo-grid-font-family: var(--kendo-font-family) !default;
|
|
@@ -284,6 +287,16 @@ $kendo-grid-selection-aggregates-font-weight: var(--kendo-font-weight-bold) !def
|
|
|
284
287
|
/// The background color of the Grid row.
|
|
285
288
|
/// @group grid
|
|
286
289
|
$kendo-grid-grouping-row-bg: k-color(surface) !default;
|
|
290
|
+
|
|
291
|
+
/// The background color of the Grid grouping header.
|
|
292
|
+
/// @group grid
|
|
293
|
+
$kendo-grid-grouping-header-bg: $kendo-grid-header-bg !default;
|
|
294
|
+
/// The text color of the Grid grouping header.
|
|
295
|
+
/// @group grid
|
|
296
|
+
$kendo-grid-grouping-header-text: $kendo-grid-header-text !default;
|
|
297
|
+
/// The border color of the Grid grouping header.
|
|
298
|
+
/// @group grid
|
|
299
|
+
$kendo-grid-grouping-header-border: $kendo-grid-header-border !default;
|
|
287
300
|
/// The text color of the Grid row.
|
|
288
301
|
/// @group grid
|
|
289
302
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
@@ -508,6 +521,7 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-bold) !default;
|
|
|
508
521
|
@forward "@progress/kendo-theme-core/scss/components/grid/_variables.scss" with (
|
|
509
522
|
$kendo-grid-default-size: $kendo-grid-default-size,
|
|
510
523
|
$kendo-grid-border-width: $kendo-grid-border-width,
|
|
524
|
+
$kendo-grid-border-radius: $kendo-grid-border-radius,
|
|
511
525
|
$kendo-grid-font-family: $kendo-grid-font-family,
|
|
512
526
|
$kendo-grid-font-size: $kendo-grid-font-size,
|
|
513
527
|
$kendo-grid-line-height: $kendo-grid-line-height,
|
|
@@ -517,6 +531,9 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-bold) !default;
|
|
|
517
531
|
$kendo-grid-header-padding-y: $kendo-grid-header-padding-y,
|
|
518
532
|
$kendo-grid-grouping-header-padding-x: $kendo-grid-grouping-header-padding-x,
|
|
519
533
|
$kendo-grid-grouping-header-padding-y: $kendo-grid-grouping-header-padding-y,
|
|
534
|
+
$kendo-grid-grouping-header-bg: $kendo-grid-grouping-header-bg,
|
|
535
|
+
$kendo-grid-grouping-header-text: $kendo-grid-grouping-header-text,
|
|
536
|
+
$kendo-grid-grouping-header-border: $kendo-grid-grouping-header-border,
|
|
520
537
|
$kendo-grid-cell-padding-x: $kendo-grid-cell-padding-x,
|
|
521
538
|
$kendo-grid-cell-padding-y: $kendo-grid-cell-padding-y,
|
|
522
539
|
$kendo-grid-filter-cell-padding-x: $kendo-grid-filter-cell-padding-x,
|
|
@@ -17,6 +17,9 @@ $kendo-image-editor-padding-x: null !default;
|
|
|
17
17
|
/// The width of the border around the ImageEditor.
|
|
18
18
|
/// @group image-editor
|
|
19
19
|
$kendo-image-editor-border-width: 1px !default;
|
|
20
|
+
/// The border radius of the ImageEditor.
|
|
21
|
+
/// @group image-editor
|
|
22
|
+
$kendo-image-editor-border-radius: null !default;
|
|
20
23
|
/// The font size of the ImageEditor.
|
|
21
24
|
/// @group image-editor
|
|
22
25
|
$kendo-image-editor-font-size: var(--kendo-font-size) !default;
|
|
@@ -112,6 +115,7 @@ $kendo-image-editor-crop-overlay-bg: color-mix(in srgb, k-color(inverse) 30%, tr
|
|
|
112
115
|
$kendo-image-editor-padding-y: $kendo-image-editor-padding-y,
|
|
113
116
|
$kendo-image-editor-padding-x: $kendo-image-editor-padding-x,
|
|
114
117
|
$kendo-image-editor-border-width: $kendo-image-editor-border-width,
|
|
118
|
+
$kendo-image-editor-border-radius: $kendo-image-editor-border-radius,
|
|
115
119
|
$kendo-image-editor-font-size: $kendo-image-editor-font-size,
|
|
116
120
|
$kendo-image-editor-line-height: $kendo-image-editor-line-height,
|
|
117
121
|
$kendo-image-editor-font-family: $kendo-image-editor-font-family,
|
|
@@ -41,6 +41,16 @@ $kendo-listbox-border: k-color(border) !default;
|
|
|
41
41
|
/// @group listbox
|
|
42
42
|
$kendo-listbox-drop-hint-width: 1px !default;
|
|
43
43
|
|
|
44
|
+
/// The horizontal padding of the ListBox scroller.
|
|
45
|
+
/// @group listbox
|
|
46
|
+
$kendo-listbox-scroller-padding-x: null !default;
|
|
47
|
+
/// The vertical padding of the ListBox scroller.
|
|
48
|
+
/// @group listbox
|
|
49
|
+
$kendo-listbox-scroller-padding-y: null !default;
|
|
50
|
+
/// The border radius of the ListBox.
|
|
51
|
+
/// @group listbox
|
|
52
|
+
$kendo-listbox-border-radius: null !default;
|
|
53
|
+
|
|
44
54
|
|
|
45
55
|
@forward "@progress/kendo-theme-core/scss/components/listbox/_variables.scss" with (
|
|
46
56
|
$kendo-listbox-spacing: $kendo-listbox-spacing,
|
|
@@ -54,5 +64,8 @@ $kendo-listbox-drop-hint-width: 1px !default;
|
|
|
54
64
|
$kendo-listbox-text: $kendo-listbox-text,
|
|
55
65
|
$kendo-listbox-bg: $kendo-listbox-bg,
|
|
56
66
|
$kendo-listbox-border: $kendo-listbox-border,
|
|
57
|
-
$kendo-listbox-drop-hint-width: $kendo-listbox-drop-hint-width
|
|
67
|
+
$kendo-listbox-drop-hint-width: $kendo-listbox-drop-hint-width,
|
|
68
|
+
$kendo-listbox-scroller-padding-x: $kendo-listbox-scroller-padding-x,
|
|
69
|
+
$kendo-listbox-scroller-padding-y: $kendo-listbox-scroller-padding-y,
|
|
70
|
+
$kendo-listbox-border-radius: $kendo-listbox-border-radius
|
|
58
71
|
);
|
|
@@ -60,6 +60,9 @@ $kendo-listview-item-focus-border: null !default;
|
|
|
60
60
|
/// The box shadow of the focused ListView items.
|
|
61
61
|
/// @group listview
|
|
62
62
|
$kendo-listview-item-focus-shadow: inset 0 0 0 3px color-mix(in srgb, k-color(on-app-surface) 15%, transparent) !default;
|
|
63
|
+
/// The border radius of the ListView items.
|
|
64
|
+
/// @group listview
|
|
65
|
+
$kendo-listview-item-border-radius: null !default;
|
|
63
66
|
|
|
64
67
|
|
|
65
68
|
@forward "@progress/kendo-theme-core/scss/components/listview/_variables.scss" with (
|
|
@@ -80,5 +83,6 @@ $kendo-listview-item-focus-shadow: inset 0 0 0 3px color-mix(in srgb, k-color(on
|
|
|
80
83
|
$kendo-listview-item-focus-text: $kendo-listview-item-focus-text,
|
|
81
84
|
$kendo-listview-item-focus-bg: $kendo-listview-item-focus-bg,
|
|
82
85
|
$kendo-listview-item-focus-border: $kendo-listview-item-focus-border,
|
|
83
|
-
$kendo-listview-item-focus-shadow: $kendo-listview-item-focus-shadow
|
|
86
|
+
$kendo-listview-item-focus-shadow: $kendo-listview-item-focus-shadow,
|
|
87
|
+
$kendo-listview-item-border-radius: $kendo-listview-item-border-radius
|
|
84
88
|
);
|