@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
|
@@ -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(5) !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
|
|
@@ -50,6 +53,7 @@ $kendo-message-box-link-text-decoration: underline !default;
|
|
|
50
53
|
$kendo-message-box-padding-x: $kendo-message-box-padding-x,
|
|
51
54
|
$kendo-message-box-padding-y: $kendo-message-box-padding-y,
|
|
52
55
|
$kendo-message-box-border-width: $kendo-message-box-border-width,
|
|
56
|
+
$kendo-message-box-border-radius: $kendo-message-box-border-radius,
|
|
53
57
|
$kendo-message-box-font-size: $kendo-message-box-font-size,
|
|
54
58
|
$kendo-message-box-line-height: $kendo-message-box-line-height,
|
|
55
59
|
$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,
|
|
@@ -27,6 +27,9 @@ $kendo-pivotgrid-line-height: var(--kendo-line-height) !default;
|
|
|
27
27
|
/// The border width of the PivotGrid.
|
|
28
28
|
/// @group pivotgrid
|
|
29
29
|
$kendo-pivotgrid-border-width: 1px !default;
|
|
30
|
+
/// The border radius of the PivotGrid.
|
|
31
|
+
/// @group pivotgrid
|
|
32
|
+
$kendo-pivotgrid-border-radius: null !default;
|
|
30
33
|
/// The icon spacing of the PivotGrid.
|
|
31
34
|
/// @group pivotgrid
|
|
32
35
|
$kendo-pivotgrid-icon-spacing: k-spacing(1) !default;
|
|
@@ -269,6 +272,7 @@ $kendo-pivotgrid-row-headers-bg: k-color(base-subtle) !default;
|
|
|
269
272
|
$kendo-pivotgrid-font-size: $kendo-pivotgrid-font-size,
|
|
270
273
|
$kendo-pivotgrid-line-height: $kendo-pivotgrid-line-height,
|
|
271
274
|
$kendo-pivotgrid-border-width: $kendo-pivotgrid-border-width,
|
|
275
|
+
$kendo-pivotgrid-border-radius: $kendo-pivotgrid-border-radius,
|
|
272
276
|
$kendo-pivotgrid-icon-spacing: $kendo-pivotgrid-icon-spacing,
|
|
273
277
|
$kendo-pivotgrid-row-header-width: $kendo-pivotgrid-row-header-width,
|
|
274
278
|
$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
|
);
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
/// The width of the border around the Scheduler.
|
|
11
11
|
/// @group scheduler
|
|
12
12
|
$kendo-scheduler-border-width: 1px !default;
|
|
13
|
+
/// The border radius of the Scheduler.
|
|
14
|
+
/// @group scheduler
|
|
15
|
+
$kendo-scheduler-border-radius: null !default;
|
|
13
16
|
/// The font family of the Scheduler.
|
|
14
17
|
/// @group scheduler
|
|
15
18
|
$kendo-scheduler-font-family: var(--kendo-font-family) !default;
|
|
@@ -266,6 +269,7 @@ $kendo-scheduler-header-bg: k-color(surface) !default;
|
|
|
266
269
|
|
|
267
270
|
@forward "@progress/kendo-theme-core/scss/components/scheduler/_variables.scss" with (
|
|
268
271
|
$kendo-scheduler-border-width: $kendo-scheduler-border-width,
|
|
272
|
+
$kendo-scheduler-border-radius: $kendo-scheduler-border-radius,
|
|
269
273
|
$kendo-scheduler-font-family: $kendo-scheduler-font-family,
|
|
270
274
|
$kendo-scheduler-font-size: $kendo-scheduler-font-size,
|
|
271
275
|
$kendo-scheduler-line-height: $kendo-scheduler-line-height,
|
|
@@ -5,86 +5,21 @@
|
|
|
5
5
|
|
|
6
6
|
@mixin kendo-scrollview--theme() {
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
.k-scrollview {
|
|
10
|
-
@include fill(
|
|
11
|
-
$kendo-scrollview-text,
|
|
12
|
-
$kendo-scrollview-bg,
|
|
13
|
-
$kendo-scrollview-border
|
|
14
|
-
);
|
|
15
|
-
|
|
16
|
-
&.k-scrollview-dark {
|
|
17
|
-
kendo-scrollview-pager,
|
|
18
|
-
.k-scrollview-nav-wrap {
|
|
19
|
-
background-color: $kendo-scrollview-dark-bg;
|
|
20
|
-
}
|
|
21
|
-
.k-scrollview-next,
|
|
22
|
-
.k-scrollview-prev {
|
|
23
|
-
color: $kendo-scrollview-dark-bg;
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
&.k-scrollview-light {
|
|
29
|
-
kendo-scrollview-pager,
|
|
30
|
-
.k-scrollview-nav-wrap {
|
|
31
|
-
background-color: $kendo-scrollview-light-bg;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.k-scrollview:focus,
|
|
38
|
-
.k-scrollview-wrap:focus {
|
|
39
|
-
outline: none;
|
|
40
|
-
|
|
41
|
-
}
|
|
8
|
+
@include kendo-scrollview--theme-base();
|
|
42
9
|
|
|
10
|
+
// Bootstrap overrides
|
|
43
11
|
.k-scrollview-next,
|
|
44
12
|
.k-scrollview-prev {
|
|
45
|
-
color: $kendo-scrollview-navigation-color;
|
|
46
|
-
background-color: $kendo-scrollview-navigation-bg;
|
|
47
|
-
opacity: $kendo-scrollview-navigation-default-opacity;
|
|
48
|
-
outline-width: 0;
|
|
49
|
-
-webkit-tap-highlight-color: $kendo-scrollview-arrow-tap-highlight-color;
|
|
50
|
-
|
|
51
13
|
&:focus,
|
|
52
14
|
&.k-focus {
|
|
53
|
-
color: $kendo-scrollview-navigation-color;
|
|
54
|
-
opacity: $kendo-scrollview-navigation-hover-opacity;
|
|
55
15
|
.k-icon::before {
|
|
56
|
-
box-shadow: $kendo-scrollview-pagebutton-shadow;
|
|
57
16
|
background-color: $kendo-scrollview-navigation-hover-span-bg;
|
|
58
17
|
}
|
|
59
18
|
}
|
|
60
|
-
|
|
61
|
-
&:hover,
|
|
62
|
-
&.k-hover {
|
|
63
|
-
color: $kendo-scrollview-navigation-color;
|
|
64
|
-
opacity: $kendo-scrollview-navigation-hover-opacity;
|
|
65
|
-
|
|
66
|
-
}
|
|
67
19
|
}
|
|
68
20
|
|
|
69
|
-
|
|
70
21
|
.k-scrollview-nav > .k-link {
|
|
71
22
|
background-color: $kendo-scrollview-pagebutton-bg;
|
|
72
23
|
border-color: $kendo-scrollview-pagebutton-border;
|
|
73
|
-
|
|
74
|
-
&.k-primary {
|
|
75
|
-
background: $kendo-scrollview-pagebutton-primary-bg;
|
|
76
|
-
border: $kendo-scrollview-pagebutton-primary-border;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
&:focus,
|
|
81
|
-
&.k-focus {
|
|
82
|
-
box-shadow: $kendo-scrollview-pagebutton-shadow;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
&:hover,
|
|
86
|
-
&.k-hover {
|
|
87
|
-
box-shadow: $kendo-scrollview-pagebutton-shadow;
|
|
88
|
-
}
|
|
89
24
|
}
|
|
90
25
|
}
|
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
/// The width of the border around the ScrollView.
|
|
7
7
|
/// @group scrollview
|
|
8
8
|
$kendo-scrollview-border-width: 1px !default;
|
|
9
|
+
/// The border radius of the ScrollView.
|
|
10
|
+
/// @group scrollview
|
|
11
|
+
$kendo-scrollview-border-radius: null !default;
|
|
9
12
|
/// The font family of the ScrollView.
|
|
10
13
|
/// @group scrollview
|
|
11
14
|
$kendo-scrollview-font-family: var(--kendo-font-family) !default;
|
|
@@ -44,6 +47,9 @@ $kendo-scrollview-pagebutton-primary-border: k-color(primary) !default;
|
|
|
44
47
|
/// The box shadow of the ScrollView page button.
|
|
45
48
|
/// @group scrollview
|
|
46
49
|
$kendo-scrollview-pagebutton-shadow: 0 0 0 2px color-mix(in srgb, k-color(inverse) 13%, transparent) !default;
|
|
50
|
+
/// The box shadow of the selected ScrollView page button.
|
|
51
|
+
/// @group scrollview
|
|
52
|
+
$kendo-scrollview-pagebutton-primary-shadow: null !default;
|
|
47
53
|
|
|
48
54
|
/// The offset of the ScrollView pager.
|
|
49
55
|
/// @group scrollview
|
|
@@ -94,6 +100,7 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
94
100
|
|
|
95
101
|
@forward "@progress/kendo-theme-core/scss/components/scrollview/_variables.scss" with (
|
|
96
102
|
$kendo-scrollview-border-width: $kendo-scrollview-border-width,
|
|
103
|
+
$kendo-scrollview-border-radius: $kendo-scrollview-border-radius,
|
|
97
104
|
$kendo-scrollview-font-family: $kendo-scrollview-font-family,
|
|
98
105
|
$kendo-scrollview-font-size: $kendo-scrollview-font-size,
|
|
99
106
|
$kendo-scrollview-line-height: $kendo-scrollview-line-height,
|
|
@@ -106,6 +113,7 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
|
|
|
106
113
|
$kendo-scrollview-pagebutton-primary-bg: $kendo-scrollview-pagebutton-primary-bg,
|
|
107
114
|
$kendo-scrollview-pagebutton-primary-border: $kendo-scrollview-pagebutton-primary-border,
|
|
108
115
|
$kendo-scrollview-pagebutton-shadow: $kendo-scrollview-pagebutton-shadow,
|
|
116
|
+
$kendo-scrollview-pagebutton-primary-shadow: $kendo-scrollview-pagebutton-primary-shadow,
|
|
109
117
|
$kendo-scrollview-pager-offset: $kendo-scrollview-pager-offset,
|
|
110
118
|
$kendo-scrollview-pager-item-spacing: $kendo-scrollview-pager-item-spacing,
|
|
111
119
|
$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(2) 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) 65%, 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) !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,
|
|
@@ -47,6 +47,27 @@ $kendo-table-lg-cell-padding-x: k-spacing(2) !default;
|
|
|
47
47
|
/// @group table
|
|
48
48
|
$kendo-table-lg-cell-padding-y: k-spacing(2.5) !default;
|
|
49
49
|
|
|
50
|
+
/// The font size of the Table for small size.
|
|
51
|
+
/// @group table
|
|
52
|
+
$kendo-table-sm-font-size: var(--kendo-font-size) !default;
|
|
53
|
+
/// The line height of the Table for small size.
|
|
54
|
+
/// @group table
|
|
55
|
+
$kendo-table-sm-line-height: var(--kendo-line-height) !default;
|
|
56
|
+
|
|
57
|
+
/// The font size of the Table for medium size.
|
|
58
|
+
/// @group table
|
|
59
|
+
$kendo-table-md-font-size: var(--kendo-font-size) !default;
|
|
60
|
+
/// The line height of the Table for medium size.
|
|
61
|
+
/// @group table
|
|
62
|
+
$kendo-table-md-line-height: var(--kendo-line-height) !default;
|
|
63
|
+
|
|
64
|
+
/// The font size of the Table for large size.
|
|
65
|
+
/// @group table
|
|
66
|
+
$kendo-table-lg-font-size: var(--kendo-font-size) !default;
|
|
67
|
+
/// The line height of the Table for large size.
|
|
68
|
+
/// @group table
|
|
69
|
+
$kendo-table-lg-line-height: var(--kendo-line-height) !default;
|
|
70
|
+
|
|
50
71
|
/// Background color of tables.
|
|
51
72
|
/// @group table
|
|
52
73
|
$kendo-table-bg: k-color(surface-alt) !default;
|
|
@@ -169,6 +190,12 @@ $kendo-table-cell-row-span-shadow: inset 0 0 0 1px $kendo-table-border !default;
|
|
|
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,
|
|
@@ -138,6 +138,9 @@ $kendo-taskboard-pane-padding-x: null !default;
|
|
|
138
138
|
/// The border width of the TaskBoard pane.
|
|
139
139
|
/// @group taskboard
|
|
140
140
|
$kendo-taskboard-pane-border-width: 1px !default;
|
|
141
|
+
/// The border radius of the TaskBoard pane.
|
|
142
|
+
/// @group taskboard
|
|
143
|
+
$kendo-taskboard-pane-border-radius: null !default;
|
|
141
144
|
/// The background color of the TaskBoard pane.
|
|
142
145
|
/// @group taskboard
|
|
143
146
|
$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,
|
|
@@ -167,6 +167,10 @@ $kendo-timeline-event-height: 600px !default;
|
|
|
167
167
|
/// @group timeline
|
|
168
168
|
$kendo-timeline-event-min-height-calc: calc(2 * (#{$kendo-timeline-track-event-offset} - #{$kendo-card-border-width})) !default;
|
|
169
169
|
|
|
170
|
+
/// The shadow of the Timeline card.
|
|
171
|
+
/// @group timeline
|
|
172
|
+
$kendo-timeline-card-shadow: $kendo-card-shadow !default;
|
|
173
|
+
|
|
170
174
|
|
|
171
175
|
@forward "@progress/kendo-theme-core/scss/components/timeline/_variables.scss" with (
|
|
172
176
|
$kendo-timeline-spacing-x: $kendo-timeline-spacing-x,
|
|
@@ -217,5 +221,6 @@ $kendo-timeline-event-min-height-calc: calc(2 * (#{$kendo-timeline-track-event-o
|
|
|
217
221
|
$kendo-timeline-circle-bg: $kendo-timeline-circle-bg,
|
|
218
222
|
$kendo-timeline-event-width: $kendo-timeline-event-width,
|
|
219
223
|
$kendo-timeline-event-height: $kendo-timeline-event-height,
|
|
224
|
+
$kendo-timeline-card-shadow: $kendo-timeline-card-shadow,
|
|
220
225
|
$kendo-timeline-event-min-height-calc: $kendo-timeline-event-min-height-calc
|
|
221
226
|
);
|
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
/// The width of the border around the Upload.
|
|
8
8
|
/// @group upload
|
|
9
9
|
$kendo-upload-border-width: 1px !default;
|
|
10
|
+
/// The border radius of the Upload.
|
|
11
|
+
/// @group upload
|
|
12
|
+
$kendo-upload-border-radius: null !default;
|
|
10
13
|
/// The font family of the Upload.
|
|
11
14
|
/// @group upload
|
|
12
15
|
$kendo-upload-font-family: var(--kendo-font-family) !default;
|
|
@@ -115,6 +118,7 @@ $kendo-upload-file-info-margin: k-spacing(4) !default;
|
|
|
115
118
|
|
|
116
119
|
@forward "@progress/kendo-theme-core/scss/components/upload/_variables.scss" with (
|
|
117
120
|
$kendo-upload-border-width: $kendo-upload-border-width,
|
|
121
|
+
$kendo-upload-border-radius: $kendo-upload-border-radius,
|
|
118
122
|
$kendo-upload-font-family: $kendo-upload-font-family,
|
|
119
123
|
$kendo-upload-font-size: $kendo-upload-font-size,
|
|
120
124
|
$kendo-upload-line-height: $kendo-upload-line-height,
|