@progress/kendo-theme-classic 13.2.0-dev.4 → 14.0.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +1 -1
- package/dist/classic-green-dark.css +1 -1
- package/dist/classic-green.css +1 -1
- package/dist/classic-lavender-dark.css +1 -1
- package/dist/classic-lavender.css +1 -1
- package/dist/classic-main-dark.css +1 -1
- package/dist/classic-main.css +1 -1
- package/dist/classic-metro-dark.css +1 -1
- package/dist/classic-metro.css +1 -1
- package/dist/classic-moonlight.css +1 -1
- package/dist/classic-opal-dark.css +1 -1
- package/dist/classic-opal.css +1 -1
- package/dist/classic-silver-dark.css +1 -1
- package/dist/classic-silver.css +1 -1
- package/dist/classic-uniform.css +1 -1
- package/dist/meta/sassdoc-data.json +12342 -8886
- package/dist/meta/sassdoc-raw-data.json +5895 -4295
- package/dist/meta/variables.json +274 -2
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.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/_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
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
/// The border width of the MediaPlayer.
|
|
6
6
|
/// @group mediaplayer
|
|
7
7
|
$kendo-media-player-border-width: 1px !default;
|
|
8
|
+
/// The border radius of the MediaPlayer.
|
|
9
|
+
/// @group mediaplayer
|
|
10
|
+
$kendo-media-player-border-radius: null !default;
|
|
8
11
|
/// The font family of the MediaPlayer.
|
|
9
12
|
/// @group mediaplayer
|
|
10
13
|
$kendo-media-player-font-family: var(--kendo-font-family) !default;
|
|
@@ -31,6 +34,15 @@ $kendo-media-player-titlebar-padding-x: k-spacing(2) !default;
|
|
|
31
34
|
/// The vertical padding of the MediaPlayer title.
|
|
32
35
|
/// @group mediaplayer
|
|
33
36
|
$kendo-media-player-titlebar-padding-y: k-spacing(2) !default;
|
|
37
|
+
/// The font size of the MediaPlayer title.
|
|
38
|
+
/// @group mediaplayer
|
|
39
|
+
$kendo-media-player-titlebar-font-size: null !default;
|
|
40
|
+
/// The font weight of the MediaPlayer title.
|
|
41
|
+
/// @group mediaplayer
|
|
42
|
+
$kendo-media-player-titlebar-font-weight: null !default;
|
|
43
|
+
/// The line height of the MediaPlayer title.
|
|
44
|
+
/// @group mediaplayer
|
|
45
|
+
$kendo-media-player-titlebar-line-height: null !default;
|
|
34
46
|
/// The text color of the MediaPlayer title.
|
|
35
47
|
/// @group mediaplayer
|
|
36
48
|
$kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
|
|
@@ -41,6 +53,7 @@ $kendo-media-player-titlebar-gradient: color-mix(in srgb, k-color(on-app-surface
|
|
|
41
53
|
|
|
42
54
|
@forward "@progress/kendo-theme-core/scss/components/mediaplayer/_variables.scss" with (
|
|
43
55
|
$kendo-media-player-border-width: $kendo-media-player-border-width,
|
|
56
|
+
$kendo-media-player-border-radius: $kendo-media-player-border-radius,
|
|
44
57
|
$kendo-media-player-font-family: $kendo-media-player-font-family,
|
|
45
58
|
$kendo-media-player-font-size: $kendo-media-player-font-size,
|
|
46
59
|
$kendo-media-player-line-height: $kendo-media-player-line-height,
|
|
@@ -49,6 +62,9 @@ $kendo-media-player-titlebar-gradient: color-mix(in srgb, k-color(on-app-surface
|
|
|
49
62
|
$kendo-media-player-border: $kendo-media-player-border,
|
|
50
63
|
$kendo-media-player-titlebar-padding-x: $kendo-media-player-titlebar-padding-x,
|
|
51
64
|
$kendo-media-player-titlebar-padding-y: $kendo-media-player-titlebar-padding-y,
|
|
65
|
+
$kendo-media-player-titlebar-font-size: $kendo-media-player-titlebar-font-size,
|
|
66
|
+
$kendo-media-player-titlebar-font-weight: $kendo-media-player-titlebar-font-weight,
|
|
67
|
+
$kendo-media-player-titlebar-line-height: $kendo-media-player-titlebar-line-height,
|
|
52
68
|
$kendo-media-player-titlebar-text: $kendo-media-player-titlebar-text,
|
|
53
69
|
$kendo-media-player-titlebar-gradient: $kendo-media-player-titlebar-gradient
|
|
54
70
|
);
|
|
@@ -19,6 +19,9 @@ $kendo-message-box-padding-y: k-spacing(1) !default;
|
|
|
19
19
|
/// The width of the border around the MessageBox.
|
|
20
20
|
/// @group messagebox
|
|
21
21
|
$kendo-message-box-border-width: 0 0 0 4px !default;
|
|
22
|
+
/// The border radius of the MessageBox.
|
|
23
|
+
/// @group messagebox
|
|
24
|
+
$kendo-message-box-border-radius: null !default;
|
|
22
25
|
|
|
23
26
|
/// The font size of the MessageBox.
|
|
24
27
|
/// @group messagebox
|
|
@@ -51,6 +54,7 @@ $kendo-message-box-link-text-decoration: underline !default;
|
|
|
51
54
|
$kendo-message-box-padding-x: $kendo-message-box-padding-x,
|
|
52
55
|
$kendo-message-box-padding-y: $kendo-message-box-padding-y,
|
|
53
56
|
$kendo-message-box-border-width: $kendo-message-box-border-width,
|
|
57
|
+
$kendo-message-box-border-radius: $kendo-message-box-border-radius,
|
|
54
58
|
$kendo-message-box-font-size: $kendo-message-box-font-size,
|
|
55
59
|
$kendo-message-box-line-height: $kendo-message-box-line-height,
|
|
56
60
|
$kendo-message-box-bg-level: $kendo-message-box-bg-level,
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
/// The border width of the PDFViewer.
|
|
9
9
|
/// @group pdf-viewer
|
|
10
10
|
$kendo-pdf-viewer-border-width: 1px !default;
|
|
11
|
+
/// The border radius of the PDFViewer.
|
|
12
|
+
/// @group pdf-viewer
|
|
13
|
+
$kendo-pdf-viewer-border-radius: null !default;
|
|
11
14
|
/// The font family of the PDFViewer.
|
|
12
15
|
/// @group pdf-viewer
|
|
13
16
|
$kendo-pdf-viewer-font-family: var(--kendo-font-family) !default;
|
|
@@ -140,6 +143,7 @@ $kendo-pdf-viewer-free-text-annotation-text: k-color(primary-on-subtle) !default
|
|
|
140
143
|
|
|
141
144
|
@forward "@progress/kendo-theme-core/scss/components/pdf-viewer/_variables.scss" with (
|
|
142
145
|
$kendo-pdf-viewer-border-width: $kendo-pdf-viewer-border-width,
|
|
146
|
+
$kendo-pdf-viewer-border-radius: $kendo-pdf-viewer-border-radius,
|
|
143
147
|
$kendo-pdf-viewer-font-family: $kendo-pdf-viewer-font-family,
|
|
144
148
|
$kendo-pdf-viewer-font-size: $kendo-pdf-viewer-font-size,
|
|
145
149
|
$kendo-pdf-viewer-line-height: $kendo-pdf-viewer-line-height,
|
|
@@ -26,6 +26,9 @@ $kendo-pivotgrid-line-height: var(--kendo-line-height) !default;
|
|
|
26
26
|
/// The border width of the PivotGrid.
|
|
27
27
|
/// @group pivotgrid
|
|
28
28
|
$kendo-pivotgrid-border-width: 1px !default;
|
|
29
|
+
/// The border radius of the PivotGrid.
|
|
30
|
+
/// @group pivotgrid
|
|
31
|
+
$kendo-pivotgrid-border-radius: null !default;
|
|
29
32
|
/// The icon spacing of the PivotGrid.
|
|
30
33
|
/// @group pivotgrid
|
|
31
34
|
$kendo-pivotgrid-icon-spacing: k-spacing(1) !default;
|
|
@@ -268,6 +271,7 @@ $kendo-pivotgrid-row-headers-bg: k-color(base) !default;
|
|
|
268
271
|
$kendo-pivotgrid-font-size: $kendo-pivotgrid-font-size,
|
|
269
272
|
$kendo-pivotgrid-line-height: $kendo-pivotgrid-line-height,
|
|
270
273
|
$kendo-pivotgrid-border-width: $kendo-pivotgrid-border-width,
|
|
274
|
+
$kendo-pivotgrid-border-radius: $kendo-pivotgrid-border-radius,
|
|
271
275
|
$kendo-pivotgrid-icon-spacing: $kendo-pivotgrid-icon-spacing,
|
|
272
276
|
$kendo-pivotgrid-row-header-width: $kendo-pivotgrid-row-header-width,
|
|
273
277
|
$kendo-pivotgrid-column-header-height: $kendo-pivotgrid-column-header-height,
|
|
@@ -61,6 +61,11 @@ $kendo-progressbar-indeterminate-text: $kendo-progressbar-text !default;
|
|
|
61
61
|
/// @group progressbar
|
|
62
62
|
$kendo-progressbar-indeterminate-border: $kendo-progressbar-border !default;
|
|
63
63
|
|
|
64
|
+
// Chunk Progressbar
|
|
65
|
+
/// The border radius of the chunk ProgressBar chunks.
|
|
66
|
+
/// @group progressbar
|
|
67
|
+
$kendo-progressbar-chunk-border-radius: null !default;
|
|
68
|
+
|
|
64
69
|
// Circular Progressbar
|
|
65
70
|
/// The arc stroke color of the circular ProgressBar.
|
|
66
71
|
/// @group progressbar
|
|
@@ -89,6 +94,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
89
94
|
$kendo-progressbar-indeterminate-bg: $kendo-progressbar-indeterminate-bg,
|
|
90
95
|
$kendo-progressbar-indeterminate-text: $kendo-progressbar-indeterminate-text,
|
|
91
96
|
$kendo-progressbar-indeterminate-border: $kendo-progressbar-indeterminate-border,
|
|
97
|
+
$kendo-progressbar-chunk-border-radius: $kendo-progressbar-chunk-border-radius,
|
|
92
98
|
$kendo-circular-progressbar-arc-stroke: $kendo-circular-progressbar-arc-stroke,
|
|
93
99
|
$kendo-circular-progressbar-scale-stroke: $kendo-circular-progressbar-scale-stroke
|
|
94
100
|
);
|
|
@@ -67,6 +67,16 @@ $kendo-prompt-suggestion-border: k-color(border) !default;
|
|
|
67
67
|
/// @group prompt
|
|
68
68
|
$kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
69
69
|
|
|
70
|
+
/// The text color of the AIPrompt footer.
|
|
71
|
+
/// @group prompt
|
|
72
|
+
$kendo-prompt-footer-text: null !default;
|
|
73
|
+
/// The background color of the AIPrompt footer.
|
|
74
|
+
/// @group prompt
|
|
75
|
+
$kendo-prompt-footer-bg: null !default;
|
|
76
|
+
/// The border color of the AIPrompt footer.
|
|
77
|
+
/// @group prompt
|
|
78
|
+
$kendo-prompt-footer-border: null !default;
|
|
79
|
+
|
|
70
80
|
|
|
71
81
|
@forward "@progress/kendo-theme-core/scss/components/prompt/_variables.scss" with (
|
|
72
82
|
$kendo-prompt-text: $kendo-prompt-text,
|
|
@@ -88,5 +98,8 @@ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
|
88
98
|
$kendo-prompt-suggestion-text: $kendo-prompt-suggestion-text,
|
|
89
99
|
$kendo-prompt-suggestion-bg: $kendo-prompt-suggestion-bg,
|
|
90
100
|
$kendo-prompt-suggestion-border: $kendo-prompt-suggestion-border,
|
|
91
|
-
$kendo-prompt-suggestion-shadow: $kendo-prompt-suggestion-shadow
|
|
101
|
+
$kendo-prompt-suggestion-shadow: $kendo-prompt-suggestion-shadow,
|
|
102
|
+
$kendo-prompt-footer-text: $kendo-prompt-footer-text,
|
|
103
|
+
$kendo-prompt-footer-bg: $kendo-prompt-footer-bg,
|
|
104
|
+
$kendo-prompt-footer-border: $kendo-prompt-footer-border
|
|
92
105
|
);
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
/// The width of the border around the Scheduler.
|
|
9
9
|
/// @group scheduler
|
|
10
10
|
$kendo-scheduler-border-width: 1px !default;
|
|
11
|
+
/// The border radius of the Scheduler.
|
|
12
|
+
/// @group scheduler
|
|
13
|
+
$kendo-scheduler-border-radius: null !default;
|
|
11
14
|
/// The font family of the Scheduler.
|
|
12
15
|
/// @group scheduler
|
|
13
16
|
$kendo-scheduler-font-family: var(--kendo-font-family) !default;
|
|
@@ -268,6 +271,7 @@ $kendo-scheduler-header-bg: k-color(surface) !default;
|
|
|
268
271
|
|
|
269
272
|
@forward "@progress/kendo-theme-core/scss/components/scheduler/_variables.scss" with (
|
|
270
273
|
$kendo-scheduler-border-width: $kendo-scheduler-border-width,
|
|
274
|
+
$kendo-scheduler-border-radius: $kendo-scheduler-border-radius,
|
|
271
275
|
$kendo-scheduler-font-family: $kendo-scheduler-font-family,
|
|
272
276
|
$kendo-scheduler-font-size: $kendo-scheduler-font-size,
|
|
273
277
|
$kendo-scheduler-line-height: $kendo-scheduler-line-height,
|
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
/// The width of the border around the ScrollView.
|
|
8
8
|
/// @group scrollview
|
|
9
9
|
$kendo-scrollview-border-width: 1px !default;
|
|
10
|
+
/// The border radius of the ScrollView.
|
|
11
|
+
/// @group scrollview
|
|
12
|
+
$kendo-scrollview-border-radius: null !default;
|
|
10
13
|
/// The font family of the ScrollView.
|
|
11
14
|
/// @group scrollview
|
|
12
15
|
$kendo-scrollview-font-family: var(--kendo-font-family) !default;
|
|
@@ -45,6 +48,9 @@ $kendo-scrollview-pagebutton-primary-border: k-color(primary) !default;
|
|
|
45
48
|
/// The box shadow of the ScrollView page button.
|
|
46
49
|
/// @group scrollview
|
|
47
50
|
$kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
51
|
+
/// The box shadow of the selected ScrollView page button.
|
|
52
|
+
/// @group scrollview
|
|
53
|
+
$kendo-scrollview-pagebutton-primary-shadow: null !default;
|
|
48
54
|
|
|
49
55
|
/// The offset of the ScrollView pager.
|
|
50
56
|
/// @group scrollview
|
|
@@ -91,6 +97,7 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
91
97
|
|
|
92
98
|
@forward "@progress/kendo-theme-core/scss/components/scrollview/_variables.scss" with (
|
|
93
99
|
$kendo-scrollview-border-width: $kendo-scrollview-border-width,
|
|
100
|
+
$kendo-scrollview-border-radius: $kendo-scrollview-border-radius,
|
|
94
101
|
$kendo-scrollview-font-family: $kendo-scrollview-font-family,
|
|
95
102
|
$kendo-scrollview-font-size: $kendo-scrollview-font-size,
|
|
96
103
|
$kendo-scrollview-line-height: $kendo-scrollview-line-height,
|
|
@@ -103,6 +110,7 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
103
110
|
$kendo-scrollview-pagebutton-primary-bg: $kendo-scrollview-pagebutton-primary-bg,
|
|
104
111
|
$kendo-scrollview-pagebutton-primary-border: $kendo-scrollview-pagebutton-primary-border,
|
|
105
112
|
$kendo-scrollview-pagebutton-shadow: $kendo-scrollview-pagebutton-shadow,
|
|
113
|
+
$kendo-scrollview-pagebutton-primary-shadow: $kendo-scrollview-pagebutton-primary-shadow,
|
|
106
114
|
$kendo-scrollview-pager-offset: $kendo-scrollview-pager-offset,
|
|
107
115
|
$kendo-scrollview-pager-item-spacing: $kendo-scrollview-pager-item-spacing,
|
|
108
116
|
$kendo-scrollview-pager-item-border-width: $kendo-scrollview-pager-item-border-width,
|
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
/// The width of the border around the Spreadsheet.
|
|
8
8
|
/// @group spreadsheet
|
|
9
9
|
$kendo-spreadsheet-border-width: 1px !default;
|
|
10
|
+
/// The border radius of the Spreadsheet.
|
|
11
|
+
/// @group spreadsheet
|
|
12
|
+
$kendo-spreadsheet-border-radius: null !default;
|
|
10
13
|
/// The font family of the Spreadsheet.
|
|
11
14
|
/// @group spreadsheet
|
|
12
15
|
$kendo-spreadsheet-font-family: var(--kendo-font-family) !default;
|
|
@@ -284,6 +287,7 @@ $kendo-spreadsheet-filter-menu-icon-margin: 0 k-spacing(1) 0 calc(-1 * ( #{$kend
|
|
|
284
287
|
|
|
285
288
|
@forward "@progress/kendo-theme-core/scss/components/spreadsheet/_variables.scss" with (
|
|
286
289
|
$kendo-spreadsheet-border-width: $kendo-spreadsheet-border-width,
|
|
290
|
+
$kendo-spreadsheet-border-radius: $kendo-spreadsheet-border-radius,
|
|
287
291
|
$kendo-spreadsheet-font-family: $kendo-spreadsheet-font-family,
|
|
288
292
|
$kendo-spreadsheet-font-size: $kendo-spreadsheet-font-size,
|
|
289
293
|
$kendo-spreadsheet-line-height: $kendo-spreadsheet-line-height,
|
|
@@ -190,6 +190,9 @@ $kendo-stepper-label-hover-text: unset !default;
|
|
|
190
190
|
/// The text color of the disabled Stepper label.
|
|
191
191
|
/// @group stepper
|
|
192
192
|
$kendo-stepper-label-disabled-text: color-mix(in srgb, k-color(on-app-surface) 60%, transparent) !default;
|
|
193
|
+
/// The font weight of the current Stepper label.
|
|
194
|
+
/// @group stepper
|
|
195
|
+
$kendo-stepper-label-current-font-weight: var(--kendo-font-weight-semibold) !default;
|
|
193
196
|
|
|
194
197
|
/// The text color of the optional Stepper label.
|
|
195
198
|
/// @group stepper
|
|
@@ -289,6 +292,7 @@ $kendo-stepper-content-transition-timing-function: k-easing(standard) !default;
|
|
|
289
292
|
$kendo-stepper-label-error-text: $kendo-stepper-label-error-text,
|
|
290
293
|
$kendo-stepper-label-hover-text: $kendo-stepper-label-hover-text,
|
|
291
294
|
$kendo-stepper-label-disabled-text: $kendo-stepper-label-disabled-text,
|
|
295
|
+
$kendo-stepper-label-current-font-weight: $kendo-stepper-label-current-font-weight,
|
|
292
296
|
$kendo-stepper-optional-label-text: $kendo-stepper-optional-label-text,
|
|
293
297
|
$kendo-stepper-optional-label-opacity: $kendo-stepper-optional-label-opacity,
|
|
294
298
|
$kendo-stepper-optional-label-font-size: $kendo-stepper-optional-label-font-size,
|
|
@@ -24,6 +24,9 @@ $kendo-suggestion-font-size: var(--kendo-font-size) !default;
|
|
|
24
24
|
/// The line height of the Suggestion.
|
|
25
25
|
/// @group suggestion
|
|
26
26
|
$kendo-suggestion-line-height: var(--kendo-line-height-lg) !default;
|
|
27
|
+
/// The font weight of the Suggestion.
|
|
28
|
+
/// @group suggestion
|
|
29
|
+
$kendo-suggestion-font-weight: null !default;
|
|
27
30
|
/// The border radius of the Suggestion.
|
|
28
31
|
/// @group suggestion
|
|
29
32
|
$kendo-suggestion-border-radius: k-border-radius(full) !default;
|
|
@@ -55,6 +58,7 @@ $kendo-suggestion-scroll-gradient: rgba(255, 255, 255, 0.00) 0%, k-color(app-sur
|
|
|
55
58
|
$kendo-suggestion-border-style: $kendo-suggestion-border-style,
|
|
56
59
|
$kendo-suggestion-font-size: $kendo-suggestion-font-size,
|
|
57
60
|
$kendo-suggestion-line-height: $kendo-suggestion-line-height,
|
|
61
|
+
$kendo-suggestion-font-weight: $kendo-suggestion-font-weight,
|
|
58
62
|
$kendo-suggestion-border-radius: $kendo-suggestion-border-radius,
|
|
59
63
|
$kendo-suggestion-focus-shadow-blur: $kendo-suggestion-focus-shadow-blur,
|
|
60
64
|
$kendo-suggestion-focus-shadow-spread: $kendo-suggestion-focus-shadow-spread,
|
|
@@ -48,6 +48,27 @@ $kendo-table-lg-cell-padding-x: k-spacing(2) !default;
|
|
|
48
48
|
/// @group table
|
|
49
49
|
$kendo-table-lg-cell-padding-y: k-spacing(2.5) !default;
|
|
50
50
|
|
|
51
|
+
/// The font size of the Table for small size.
|
|
52
|
+
/// @group table
|
|
53
|
+
$kendo-table-sm-font-size: var(--kendo-font-size) !default;
|
|
54
|
+
/// The line height of the Table for small size.
|
|
55
|
+
/// @group table
|
|
56
|
+
$kendo-table-sm-line-height: var(--kendo-line-height) !default;
|
|
57
|
+
|
|
58
|
+
/// The font size of the Table for medium size.
|
|
59
|
+
/// @group table
|
|
60
|
+
$kendo-table-md-font-size: var(--kendo-font-size) !default;
|
|
61
|
+
/// The line height of the Table for medium size.
|
|
62
|
+
/// @group table
|
|
63
|
+
$kendo-table-md-line-height: var(--kendo-line-height) !default;
|
|
64
|
+
|
|
65
|
+
/// The font size of the Table for large size.
|
|
66
|
+
/// @group table
|
|
67
|
+
$kendo-table-lg-font-size: var(--kendo-font-size) !default;
|
|
68
|
+
/// The line height of the Table for large size.
|
|
69
|
+
/// @group table
|
|
70
|
+
$kendo-table-lg-line-height: var(--kendo-line-height) !default;
|
|
71
|
+
|
|
51
72
|
/// Background color of tables.
|
|
52
73
|
/// @group table
|
|
53
74
|
$kendo-table-bg: k-color(surface-alt) !default;
|
|
@@ -170,6 +191,12 @@ $kendo-table-cell-row-span-shadow: inset 0 0 0 1px $kendo-table-border !default;
|
|
|
170
191
|
$kendo-table-md-cell-padding-y: $kendo-table-md-cell-padding-y,
|
|
171
192
|
$kendo-table-lg-cell-padding-x: $kendo-table-lg-cell-padding-x,
|
|
172
193
|
$kendo-table-lg-cell-padding-y: $kendo-table-lg-cell-padding-y,
|
|
194
|
+
$kendo-table-sm-font-size: $kendo-table-sm-font-size,
|
|
195
|
+
$kendo-table-sm-line-height: $kendo-table-sm-line-height,
|
|
196
|
+
$kendo-table-md-font-size: $kendo-table-md-font-size,
|
|
197
|
+
$kendo-table-md-line-height: $kendo-table-md-line-height,
|
|
198
|
+
$kendo-table-lg-font-size: $kendo-table-lg-font-size,
|
|
199
|
+
$kendo-table-lg-line-height: $kendo-table-lg-line-height,
|
|
173
200
|
$kendo-table-bg: $kendo-table-bg,
|
|
174
201
|
$kendo-table-text: $kendo-table-text,
|
|
175
202
|
$kendo-table-border: $kendo-table-border,
|
|
@@ -137,6 +137,9 @@ $kendo-taskboard-pane-padding-x: null !default;
|
|
|
137
137
|
/// The border width of the TaskBoard pane.
|
|
138
138
|
/// @group taskboard
|
|
139
139
|
$kendo-taskboard-pane-border-width: 1px !default;
|
|
140
|
+
/// The border radius of the TaskBoard pane.
|
|
141
|
+
/// @group taskboard
|
|
142
|
+
$kendo-taskboard-pane-border-radius: null !default;
|
|
140
143
|
/// The background color of the TaskBoard pane.
|
|
141
144
|
/// @group taskboard
|
|
142
145
|
$kendo-taskboard-pane-bg: k-color(surface-alt) !default;
|
|
@@ -289,6 +292,7 @@ $kendo-taskboard-drag-placeholder-border: k-color(border) !default;
|
|
|
289
292
|
$kendo-taskboard-pane-padding-y: $kendo-taskboard-pane-padding-y,
|
|
290
293
|
$kendo-taskboard-pane-padding-x: $kendo-taskboard-pane-padding-x,
|
|
291
294
|
$kendo-taskboard-pane-border-width: $kendo-taskboard-pane-border-width,
|
|
295
|
+
$kendo-taskboard-pane-border-radius: $kendo-taskboard-pane-border-radius,
|
|
292
296
|
$kendo-taskboard-pane-bg: $kendo-taskboard-pane-bg,
|
|
293
297
|
$kendo-taskboard-pane-text: $kendo-taskboard-pane-text,
|
|
294
298
|
$kendo-taskboard-pane-border: $kendo-taskboard-pane-border,
|
|
@@ -166,6 +166,10 @@ $kendo-timeline-event-height: 600px !default;
|
|
|
166
166
|
/// @group timeline
|
|
167
167
|
$kendo-timeline-event-min-height-calc: calc(2 * (#{$kendo-timeline-track-event-offset} - #{$kendo-card-border-width})) !default;
|
|
168
168
|
|
|
169
|
+
/// The shadow of the Timeline card.
|
|
170
|
+
/// @group timeline
|
|
171
|
+
$kendo-timeline-card-shadow: $kendo-card-shadow !default;
|
|
172
|
+
|
|
169
173
|
|
|
170
174
|
@forward "@progress/kendo-theme-core/scss/components/timeline/_variables.scss" with (
|
|
171
175
|
$kendo-timeline-spacing-x: $kendo-timeline-spacing-x,
|
|
@@ -216,5 +220,6 @@ $kendo-timeline-event-min-height-calc: calc(2 * (#{$kendo-timeline-track-event-o
|
|
|
216
220
|
$kendo-timeline-circle-bg: $kendo-timeline-circle-bg,
|
|
217
221
|
$kendo-timeline-event-width: $kendo-timeline-event-width,
|
|
218
222
|
$kendo-timeline-event-height: $kendo-timeline-event-height,
|
|
223
|
+
$kendo-timeline-card-shadow: $kendo-timeline-card-shadow,
|
|
219
224
|
$kendo-timeline-event-min-height-calc: $kendo-timeline-event-min-height-calc
|
|
220
225
|
);
|
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
/// The width of the border around the Upload.
|
|
7
7
|
/// @group upload
|
|
8
8
|
$kendo-upload-border-width: 1px !default;
|
|
9
|
+
/// The border radius of the Upload.
|
|
10
|
+
/// @group upload
|
|
11
|
+
$kendo-upload-border-radius: null !default;
|
|
9
12
|
/// The font family of the Upload.
|
|
10
13
|
/// @group upload
|
|
11
14
|
$kendo-upload-font-family: var(--kendo-font-family) !default;
|
|
@@ -114,6 +117,7 @@ $kendo-upload-file-info-margin: k-spacing(2) !default;
|
|
|
114
117
|
|
|
115
118
|
@forward "@progress/kendo-theme-core/scss/components/upload/_variables.scss" with (
|
|
116
119
|
$kendo-upload-border-width: $kendo-upload-border-width,
|
|
120
|
+
$kendo-upload-border-radius: $kendo-upload-border-radius,
|
|
117
121
|
$kendo-upload-font-family: $kendo-upload-font-family,
|
|
118
122
|
$kendo-upload-font-size: $kendo-upload-font-size,
|
|
119
123
|
$kendo-upload-line-height: $kendo-upload-line-height,
|