@progress/kendo-theme-fluent 13.2.0-dev.3 → 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/fluent-1-dark.css +1 -1
- package/dist/fluent-1-dark.scss +0 -20
- package/dist/fluent-1.css +1 -1
- package/dist/fluent-1.scss +0 -20
- package/dist/fluent-main-dark.css +1 -1
- package/dist/fluent-main-dark.scss +0 -20
- package/dist/fluent-main.css +1 -1
- package/dist/meta/sassdoc-data.json +12852 -10712
- package/dist/meta/sassdoc-raw-data.json +6166 -5135
- package/dist/meta/variables.json +306 -173
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-1-dark.json +1 -101
- package/lib/swatches/fluent-1.json +1 -101
- package/lib/swatches/fluent-main-dark.json +1 -101
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/action-sheet/_variables.scss +8 -0
- package/scss/appbar/_variables.scss +5 -19
- package/scss/bottom-navigation/_theme.scss +1 -1
- package/scss/button/_theme.scss +0 -16
- package/scss/button/_variables.scss +5 -0
- package/scss/card/_variables.scss +0 -6
- 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/core/color-system/_swatch.scss +0 -56
- package/scss/dataviz/_variables.scss +8 -0
- package/scss/dialog/_variables.scss +0 -6
- 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/fab/_theme.scss +2 -3
- 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/_theme.scss +0 -9
- package/scss/grid/_variables.scss +7 -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 +1 -0
- package/scss/notification/_variables.scss +1 -1
- package/scss/overlay/_variables.scss +4 -8
- package/scss/pdf-viewer/_variables.scss +4 -0
- package/scss/pivotgrid/_variables.scss +4 -0
- package/scss/progressbar/_variables.scss +5 -0
- package/scss/prompt/_variables.scss +14 -1
- package/scss/scheduler/_variables.scss +4 -0
- package/scss/scrollview/_theme.scss +0 -16
- package/scss/scrollview/_variables.scss +10 -0
- package/scss/spreadsheet/_variables.scss +4 -0
- package/scss/stepper/_layout.scss +0 -4
- package/scss/stepper/_variables.scss +3 -2
- 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/tooltip/_functions.scss +1 -1
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/upload/_variables.scss +4 -0
- package/scss/window/_variables.scss +0 -6
|
@@ -66,6 +66,16 @@ $kendo-prompt-suggestion-border: var( --kendo-prompt-suggestion-border, color-mi
|
|
|
66
66
|
/// @group prompt
|
|
67
67
|
$kendo-prompt-suggestion-shadow: var( --kendo-prompt-suggestion-shadow, null ) !default;
|
|
68
68
|
|
|
69
|
+
/// The text color of the AIPrompt footer.
|
|
70
|
+
/// @group prompt
|
|
71
|
+
$kendo-prompt-footer-text: var( --kendo-prompt-footer-text, null ) !default;
|
|
72
|
+
/// The background color of the AIPrompt footer.
|
|
73
|
+
/// @group prompt
|
|
74
|
+
$kendo-prompt-footer-bg: var( --kendo-prompt-footer-bg, null ) !default;
|
|
75
|
+
/// The border color of the AIPrompt footer.
|
|
76
|
+
/// @group prompt
|
|
77
|
+
$kendo-prompt-footer-border: var( --kendo-prompt-footer-border, null ) !default;
|
|
78
|
+
|
|
69
79
|
@forward "@progress/kendo-theme-core/scss/components/prompt/_variables.scss" with (
|
|
70
80
|
$kendo-prompt-text: $kendo-prompt-text,
|
|
71
81
|
$kendo-prompt-bg: $kendo-prompt-bg,
|
|
@@ -86,5 +96,8 @@ $kendo-prompt-suggestion-shadow: var( --kendo-prompt-suggestion-shadow, null ) !
|
|
|
86
96
|
$kendo-prompt-suggestion-text: $kendo-prompt-suggestion-text,
|
|
87
97
|
$kendo-prompt-suggestion-bg: $kendo-prompt-suggestion-bg,
|
|
88
98
|
$kendo-prompt-suggestion-border: $kendo-prompt-suggestion-border,
|
|
89
|
-
$kendo-prompt-suggestion-shadow: $kendo-prompt-suggestion-shadow
|
|
99
|
+
$kendo-prompt-suggestion-shadow: $kendo-prompt-suggestion-shadow,
|
|
100
|
+
$kendo-prompt-footer-text: $kendo-prompt-footer-text,
|
|
101
|
+
$kendo-prompt-footer-bg: $kendo-prompt-footer-bg,
|
|
102
|
+
$kendo-prompt-footer-border: $kendo-prompt-footer-border
|
|
90
103
|
);
|
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
/// The width of the border around the Scheduler.
|
|
7
7
|
/// @group scheduler
|
|
8
8
|
$kendo-scheduler-border-width: var( --kendo-scheduler-border-width, 1px ) !default;
|
|
9
|
+
/// The border radius of the Scheduler.
|
|
10
|
+
/// @group scheduler
|
|
11
|
+
$kendo-scheduler-border-radius: var( --kendo-scheduler-border-radius, null ) !default;
|
|
9
12
|
/// The font family of the Scheduler.
|
|
10
13
|
/// @group scheduler
|
|
11
14
|
$kendo-scheduler-font-family: var( --kendo-scheduler-font-family, var(--kendo-font-family) ) !default;
|
|
@@ -260,6 +263,7 @@ $kendo-scheduler-marquee-color: var( --kendo-scheduler-marquee-color, k-color(pr
|
|
|
260
263
|
|
|
261
264
|
@forward "@progress/kendo-theme-core/scss/components/scheduler/_variables.scss" with (
|
|
262
265
|
$kendo-scheduler-border-width: $kendo-scheduler-border-width,
|
|
266
|
+
$kendo-scheduler-border-radius: $kendo-scheduler-border-radius,
|
|
263
267
|
$kendo-scheduler-font-family: $kendo-scheduler-font-family,
|
|
264
268
|
$kendo-scheduler-font-size: $kendo-scheduler-font-size,
|
|
265
269
|
$kendo-scheduler-line-height: $kendo-scheduler-line-height,
|
|
@@ -5,22 +5,6 @@
|
|
|
5
5
|
@mixin kendo-scrollview--theme() {
|
|
6
6
|
@include kendo-scrollview--theme-base();
|
|
7
7
|
|
|
8
|
-
.k-scrollview {
|
|
9
|
-
&.k-scrollview-dark {
|
|
10
|
-
kendo-scrollview-pager,
|
|
11
|
-
.k-scrollview-nav-wrap {
|
|
12
|
-
background-color: $kendo-scrollview-pager-dark-bg;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
&.k-scrollview-light {
|
|
17
|
-
kendo-scrollview-pager,
|
|
18
|
-
.k-scrollview-nav-wrap {
|
|
19
|
-
background-color: $kendo-scrollview-pager-light-bg;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
8
|
.k-scrollview-next,
|
|
25
9
|
.k-scrollview-prev {
|
|
26
10
|
text-shadow: $kendo-scrollview-navigation-arrow-shadow;
|
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
/// The width of the border around the ScrollView.
|
|
5
5
|
/// @group scrollview
|
|
6
6
|
$kendo-scrollview-border-width: var( --kendo-scrollview-border-width, 0px ) !default;
|
|
7
|
+
/// The border radius of the ScrollView.
|
|
8
|
+
/// @group scrollview
|
|
9
|
+
$kendo-scrollview-border-radius: var( --kendo-scrollview-border-radius, null ) !default;
|
|
7
10
|
/// The font family of the ScrollView.
|
|
8
11
|
/// @group scrollview
|
|
9
12
|
$kendo-scrollview-font-family: var( --kendo-scrollview-font-family, var(--kendo-font-family) ) !default;
|
|
@@ -51,6 +54,9 @@ $kendo-scrollview-pagebutton-primary-hover-shadow: var( --kendo-scrollview-pageb
|
|
|
51
54
|
/// The primary focus box shadow of the ScrollView page button.
|
|
52
55
|
/// @group scrollview
|
|
53
56
|
$kendo-scrollview-pagebutton-primary-focus-shadow: var( --kendo-scrollview-pagebutton-primary-focus-shadow, 0 0 0 2px k-color(base-emphasis) ) !default;
|
|
57
|
+
/// The box shadow of the selected ScrollView page button.
|
|
58
|
+
/// @group scrollview
|
|
59
|
+
$kendo-scrollview-pagebutton-primary-shadow: null !default;
|
|
54
60
|
|
|
55
61
|
/// The offset of the ScrollView pager.
|
|
56
62
|
/// @group scrollview
|
|
@@ -97,6 +103,7 @@ $kendo-scrollview-transition-timing-function: var( --kendo-scrollview-transition
|
|
|
97
103
|
|
|
98
104
|
@forward "@progress/kendo-theme-core/scss/components/scrollview/_variables.scss" with (
|
|
99
105
|
$kendo-scrollview-border-width: $kendo-scrollview-border-width,
|
|
106
|
+
$kendo-scrollview-border-radius: $kendo-scrollview-border-radius,
|
|
100
107
|
$kendo-scrollview-font-family: $kendo-scrollview-font-family,
|
|
101
108
|
$kendo-scrollview-font-size: $kendo-scrollview-font-size,
|
|
102
109
|
$kendo-scrollview-line-height: $kendo-scrollview-line-height,
|
|
@@ -108,12 +115,15 @@ $kendo-scrollview-transition-timing-function: var( --kendo-scrollview-transition
|
|
|
108
115
|
$kendo-scrollview-pagebutton-border: $kendo-scrollview-pagebutton-border,
|
|
109
116
|
$kendo-scrollview-pagebutton-primary-bg: $kendo-scrollview-pagebutton-primary-bg,
|
|
110
117
|
$kendo-scrollview-pagebutton-primary-border: $kendo-scrollview-pagebutton-primary-border,
|
|
118
|
+
$kendo-scrollview-pagebutton-primary-shadow: $kendo-scrollview-pagebutton-primary-shadow,
|
|
111
119
|
$kendo-scrollview-pager-offset: $kendo-scrollview-pager-offset,
|
|
112
120
|
$kendo-scrollview-pager-item-spacing: $kendo-scrollview-pager-item-spacing,
|
|
113
121
|
$kendo-scrollview-pager-item-border-width: $kendo-scrollview-pager-item-border-width,
|
|
114
122
|
$kendo-scrollview-pager-height: $kendo-scrollview-pager-height,
|
|
115
123
|
$kendo-scrollview-navigation-color: $kendo-scrollview-navigation-color,
|
|
116
124
|
$kendo-scrollview-navigation-bg: $kendo-scrollview-navigation-bg,
|
|
125
|
+
$kendo-scrollview-light-bg: $kendo-scrollview-pager-light-bg,
|
|
126
|
+
$kendo-scrollview-dark-bg: $kendo-scrollview-pager-dark-bg,
|
|
117
127
|
$kendo-scrollview-transition-duration: $kendo-scrollview-transition-duration,
|
|
118
128
|
$kendo-scrollview-transition-timing-function: $kendo-scrollview-transition-timing-function
|
|
119
129
|
);
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
/// The width of the border around the Spreadsheet.
|
|
9
9
|
/// @group spreadsheet
|
|
10
10
|
$kendo-spreadsheet-border-width: var( --kendo-spreadsheet-border-width, 1px ) !default;
|
|
11
|
+
/// The border radius of the Spreadsheet.
|
|
12
|
+
/// @group spreadsheet
|
|
13
|
+
$kendo-spreadsheet-border-radius: null !default;
|
|
11
14
|
/// The font family of the Spreadsheet.
|
|
12
15
|
/// @group spreadsheet
|
|
13
16
|
$kendo-spreadsheet-font-family: var( --kendo-spreadsheet-font-family, var(--kendo-font-family) ) !default;
|
|
@@ -290,6 +293,7 @@ $kendo-spreadsheet-insert-image-dialog-img: url("data:image/png;base64,iVBORw0KG
|
|
|
290
293
|
|
|
291
294
|
@forward "@progress/kendo-theme-core/scss/components/spreadsheet/_variables.scss" with (
|
|
292
295
|
$kendo-spreadsheet-border-width: $kendo-spreadsheet-border-width,
|
|
296
|
+
$kendo-spreadsheet-border-radius: $kendo-spreadsheet-border-radius,
|
|
293
297
|
$kendo-spreadsheet-font-family: $kendo-spreadsheet-font-family,
|
|
294
298
|
$kendo-spreadsheet-font-size: $kendo-spreadsheet-font-size,
|
|
295
299
|
$kendo-spreadsheet-line-height: $kendo-spreadsheet-line-height,
|
|
@@ -5,10 +5,6 @@
|
|
|
5
5
|
@mixin kendo-stepper--layout() {
|
|
6
6
|
@include kendo-stepper--layout-base();
|
|
7
7
|
|
|
8
|
-
.k-step-current .k-step-label {
|
|
9
|
-
font-weight: $kendo-stepper-current-label-font-weight;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
8
|
.k-stepper .k-step-disabled,
|
|
13
9
|
.k-stepper .k-step.k-disabled {
|
|
14
10
|
.k-step-label {
|
|
@@ -175,9 +175,9 @@ $kendo-stepper-label-hover-text: var( --kendo-stepper-label-hover-text, $kendo-s
|
|
|
175
175
|
/// The text color of the disabled Stepper label.
|
|
176
176
|
/// @group stepper
|
|
177
177
|
$kendo-stepper-label-disabled-text: var( --kendo-stepper-label-disabled-text, color-mix(in srgb, k-color(on-app-surface) 46%, transparent) ) !default;
|
|
178
|
-
/// The font weight of the
|
|
178
|
+
/// The font weight of the current Stepper label.
|
|
179
179
|
/// @group stepper
|
|
180
|
-
$kendo-stepper-current-
|
|
180
|
+
$kendo-stepper-label-current-font-weight: var( --kendo-stepper-label-current-font-weight, var(--kendo-font-weight-semibold) ) !default;
|
|
181
181
|
|
|
182
182
|
/// The text color of the optional Stepper label.
|
|
183
183
|
/// @group stepper
|
|
@@ -257,6 +257,7 @@ $kendo-stepper-content-transition-timing-function: var( --kendo-stepper-content-
|
|
|
257
257
|
$kendo-stepper-label-error-text: $kendo-stepper-label-error-text,
|
|
258
258
|
$kendo-stepper-label-hover-text: $kendo-stepper-label-hover-text,
|
|
259
259
|
$kendo-stepper-label-disabled-text: $kendo-stepper-label-disabled-text,
|
|
260
|
+
$kendo-stepper-label-current-font-weight: $kendo-stepper-label-current-font-weight,
|
|
260
261
|
$kendo-stepper-optional-label-text: $kendo-stepper-optional-label-text,
|
|
261
262
|
$kendo-stepper-optional-label-font-size: $kendo-stepper-optional-label-font-size,
|
|
262
263
|
$kendo-stepper-optional-label-font-style: $kendo-stepper-optional-label-font-style,
|
|
@@ -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-suggestion-line-height, var(--kendo-line-height-lg) ) !default;
|
|
27
|
+
/// The font weight of the Suggestion.
|
|
28
|
+
/// @group suggestion
|
|
29
|
+
$kendo-suggestion-font-weight: var( --kendo-suggestion-font-weight, null ) !default;
|
|
27
30
|
/// The border radius of the Suggestion.
|
|
28
31
|
/// @group suggestion
|
|
29
32
|
$kendo-suggestion-border-radius: var( --kendo-suggestion-border-radius, #{k-border-radius(full)} ) !default;
|
|
@@ -55,6 +58,7 @@ $kendo-suggestion-scroll-gradient: var( --kendo-suggestion-scroll-gradient, rgba
|
|
|
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,
|
|
@@ -36,6 +36,27 @@ $kendo-table-lg-cell-padding-x: var( --kendo-table-lg-cell-padding-x, #{k-spacin
|
|
|
36
36
|
/// @group table
|
|
37
37
|
$kendo-table-lg-cell-padding-y: var( --kendo-table-lg-cell-padding-y, #{k-spacing(3)} ) !default;
|
|
38
38
|
|
|
39
|
+
/// The font size of the Table for small size.
|
|
40
|
+
/// @group table
|
|
41
|
+
$kendo-table-sm-font-size: var( --kendo-table-sm-font-size, var(--kendo-font-size) ) !default;
|
|
42
|
+
/// The line height of the Table for small size.
|
|
43
|
+
/// @group table
|
|
44
|
+
$kendo-table-sm-line-height: var( --kendo-table-sm-line-height, var(--kendo-line-height) ) !default;
|
|
45
|
+
|
|
46
|
+
/// The font size of the Table for medium size.
|
|
47
|
+
/// @group table
|
|
48
|
+
$kendo-table-md-font-size: var( --kendo-table-md-font-size, var(--kendo-font-size) ) !default;
|
|
49
|
+
/// The line height of the Table for medium size.
|
|
50
|
+
/// @group table
|
|
51
|
+
$kendo-table-md-line-height: var( --kendo-table-md-line-height, var(--kendo-line-height) ) !default;
|
|
52
|
+
|
|
53
|
+
/// The font size of the Table for large size.
|
|
54
|
+
/// @group table
|
|
55
|
+
$kendo-table-lg-font-size: var( --kendo-table-lg-font-size, var(--kendo-font-size) ) !default;
|
|
56
|
+
/// The line height of the Table for large size.
|
|
57
|
+
/// @group table
|
|
58
|
+
$kendo-table-lg-line-height: var( --kendo-table-lg-line-height, var(--kendo-line-height) ) !default;
|
|
59
|
+
|
|
39
60
|
/// Font weight of the table header cells.
|
|
40
61
|
/// @group table
|
|
41
62
|
$kendo-table-header-font-weight: var( --kendo-table-header-font-weight, var(--kendo-font-weight-normal) ) !default;
|
|
@@ -169,6 +190,12 @@ $kendo-table-cell-row-span-shadow: var( --kendo-table-cell-row-span-shadow, inse
|
|
|
169
190
|
$kendo-table-md-cell-padding-y: $kendo-table-md-cell-padding-y,
|
|
170
191
|
$kendo-table-lg-cell-padding-x: $kendo-table-lg-cell-padding-x,
|
|
171
192
|
$kendo-table-lg-cell-padding-y: $kendo-table-lg-cell-padding-y,
|
|
193
|
+
$kendo-table-sm-font-size: $kendo-table-sm-font-size,
|
|
194
|
+
$kendo-table-sm-line-height: $kendo-table-sm-line-height,
|
|
195
|
+
$kendo-table-md-font-size: $kendo-table-md-font-size,
|
|
196
|
+
$kendo-table-md-line-height: $kendo-table-md-line-height,
|
|
197
|
+
$kendo-table-lg-font-size: $kendo-table-lg-font-size,
|
|
198
|
+
$kendo-table-lg-line-height: $kendo-table-lg-line-height,
|
|
172
199
|
$kendo-table-bg: $kendo-table-bg,
|
|
173
200
|
$kendo-table-text: $kendo-table-text,
|
|
174
201
|
$kendo-table-border: $kendo-table-border,
|
|
@@ -127,6 +127,9 @@ $kendo-taskboard-pane-padding-x: var( --kendo-taskboard-pane-padding-x, #{k-spac
|
|
|
127
127
|
/// The border width of the TaskBoard pane.
|
|
128
128
|
/// @group taskboard
|
|
129
129
|
$kendo-taskboard-pane-border-width: var( --kendo-taskboard-pane-border-width, 1px ) !default;
|
|
130
|
+
/// The border radius of the TaskBoard pane.
|
|
131
|
+
/// @group taskboard
|
|
132
|
+
$kendo-taskboard-pane-border-radius: null !default;
|
|
130
133
|
/// The background color of the TaskBoard pane.
|
|
131
134
|
/// @group taskboard
|
|
132
135
|
$kendo-taskboard-pane-bg: var( --kendo-taskboard-pane-bg, #{k-color(surface-alt)} ) !default;
|
|
@@ -246,6 +249,7 @@ $kendo-taskboard-drag-placeholder-border: var( --kendo-taskboard-drag-placeholde
|
|
|
246
249
|
$kendo-taskboard-pane-padding-y: $kendo-taskboard-pane-padding-y,
|
|
247
250
|
$kendo-taskboard-pane-padding-x: $kendo-taskboard-pane-padding-x,
|
|
248
251
|
$kendo-taskboard-pane-border-width: $kendo-taskboard-pane-border-width,
|
|
252
|
+
$kendo-taskboard-pane-border-radius: $kendo-taskboard-pane-border-radius,
|
|
249
253
|
$kendo-taskboard-pane-bg: $kendo-taskboard-pane-bg,
|
|
250
254
|
$kendo-taskboard-pane-text: $kendo-taskboard-pane-text,
|
|
251
255
|
$kendo-taskboard-pane-border: $kendo-taskboard-pane-border,
|
|
@@ -189,6 +189,10 @@ $kendo-timeline-event-height: var( --kendo-timeline-event-height, 600px ) !defau
|
|
|
189
189
|
/// @group timeline
|
|
190
190
|
$kendo-timeline-event-min-height-calc: var( --kendo-timeline-event-min-height-calc, calc( 2 * ( #{ $kendo-timeline-track-event-offset } - #{ $kendo-card-border-width } ) ) ) !default;
|
|
191
191
|
|
|
192
|
+
/// The shadow of the Timeline card.
|
|
193
|
+
/// @group timeline
|
|
194
|
+
$kendo-timeline-card-shadow: var( --kendo-timeline-card-shadow, $kendo-card-shadow ) !default;
|
|
195
|
+
|
|
192
196
|
@forward "@progress/kendo-theme-core/scss/components/timeline/_variables.scss" with (
|
|
193
197
|
$kendo-timeline-spacing-x: $kendo-timeline-spacing-x,
|
|
194
198
|
$kendo-timeline-spacing-y: $kendo-timeline-spacing-y,
|
|
@@ -237,5 +241,6 @@ $kendo-timeline-event-min-height-calc: var( --kendo-timeline-event-min-height-ca
|
|
|
237
241
|
$kendo-timeline-circle-bg: $kendo-timeline-circle-bg,
|
|
238
242
|
$kendo-timeline-event-width: $kendo-timeline-event-width,
|
|
239
243
|
$kendo-timeline-event-height: $kendo-timeline-event-height,
|
|
244
|
+
$kendo-timeline-card-shadow: $kendo-timeline-card-shadow,
|
|
240
245
|
$kendo-timeline-event-min-height-calc: $kendo-timeline-event-min-height-calc
|
|
241
246
|
);
|
|
@@ -57,7 +57,7 @@ $kendo-tooltip-button-text: var( --kendo-tooltip-button-text, #{k-color(subtle)}
|
|
|
57
57
|
|
|
58
58
|
/// The theme colors map for the Tooltip.
|
|
59
59
|
/// @group tooltip
|
|
60
|
-
$kendo-tooltip-theme-colors: ("base", "
|
|
60
|
+
$kendo-tooltip-theme-colors: ("base", "info", "success", "warning", "error", "inverse") !default;
|
|
61
61
|
|
|
62
62
|
/// The generated theme colors map for the Tooltip.
|
|
63
63
|
/// @group tooltip
|
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
/// The width of the border around the Upload.
|
|
5
5
|
/// @group upload
|
|
6
6
|
$kendo-upload-border-width: var( --kendo-upload-border-width, 1px ) !default;
|
|
7
|
+
/// The border radius of the Upload.
|
|
8
|
+
/// @group upload
|
|
9
|
+
$kendo-upload-border-radius: null !default;
|
|
7
10
|
/// The font family of the Upload.
|
|
8
11
|
/// @group upload
|
|
9
12
|
$kendo-upload-font-family: var( --kendo-upload-font-family, var(--kendo-font-family) ) !default;
|
|
@@ -105,6 +108,7 @@ $kendo-upload-files-list-margin: calc( -1 * #{k-spacing(1)} ) !default;
|
|
|
105
108
|
|
|
106
109
|
@forward "@progress/kendo-theme-core/scss/components/upload/_variables.scss" with (
|
|
107
110
|
$kendo-upload-border-width: $kendo-upload-border-width,
|
|
111
|
+
$kendo-upload-border-radius: $kendo-upload-border-radius,
|
|
108
112
|
$kendo-upload-font-family: $kendo-upload-font-family,
|
|
109
113
|
$kendo-upload-font-size: $kendo-upload-font-size,
|
|
110
114
|
$kendo-upload-line-height: $kendo-upload-line-height,
|
|
@@ -6,11 +6,6 @@
|
|
|
6
6
|
/// @role default
|
|
7
7
|
$kendo-window-default-size: "auto" !default;
|
|
8
8
|
|
|
9
|
-
/// The default theme color of the Window.
|
|
10
|
-
/// @group window
|
|
11
|
-
/// @role default
|
|
12
|
-
$kendo-window-default-theme-color: null !default;
|
|
13
|
-
|
|
14
9
|
/// The width of the border around the Window.
|
|
15
10
|
/// @group window
|
|
16
11
|
$kendo-window-border-width: var(--kendo-window-border-width, 0) !default;
|
|
@@ -107,7 +102,6 @@ $kendo-window-titlebar-text: var( --kendo-window-titlebar-text, k-color(on-app-s
|
|
|
107
102
|
$kendo-window-titlebar-border: var( --kendo-window-titlebar-border, k-color(primary) ) !default;
|
|
108
103
|
|
|
109
104
|
@forward "@progress/kendo-theme-core/scss/components/window/_variables.scss" with (
|
|
110
|
-
$kendo-window-default-theme-color: $kendo-window-default-theme-color,
|
|
111
105
|
$kendo-window-border-width: $kendo-window-border-width,
|
|
112
106
|
$kendo-window-border-radius: $kendo-window-border-radius,
|
|
113
107
|
$kendo-window-font-family: $kendo-window-font-family,
|