@progress/kendo-theme-default 8.0.0-dev.1 → 8.0.0-dev.10
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 +3776 -366
- package/dist/all.scss +546 -196
- package/dist/meta/sassdoc-data.json +47375 -33689
- package/dist/meta/sassdoc-raw-data.json +13233 -6461
- package/dist/meta/variables.json +31 -27
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +5 -5
- package/scss/badge/_theme.scss +1 -1
- package/scss/button/_theme.scss +15 -11
- package/scss/calendar/_layout.scss +30 -16
- package/scss/calendar/_theme.scss +0 -5
- package/scss/calendar/_variables.scss +35 -3
- package/scss/chip/_theme.scss +4 -4
- package/scss/chip/_variables.scss +1 -1
- package/scss/dataviz/_layout.scss +4 -1
- package/scss/dataviz/_variables.scss +1 -1
- package/scss/drawer/_layout.scss +2 -0
- package/scss/drawer/_variables.scss +13 -2
- package/scss/listview/_layout.scss +1 -0
- package/scss/loader/_layout.scss +1 -1
- package/scss/scheduler/_variables.scss +144 -1
- package/scss/scrollview/_layout.scss +2 -2
- package/scss/slider/_variables.scss +1 -1
- package/scss/spreadsheet/_layout.scss +1 -1
- package/scss/tabstrip/_variables.scss +69 -28
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/typography/_variables.scss +166 -10
|
@@ -3,8 +3,15 @@
|
|
|
3
3
|
/// The width of the border around the Calendar.
|
|
4
4
|
/// @group calendar
|
|
5
5
|
$kendo-calendar-border-width: 1px !default;
|
|
6
|
+
|
|
7
|
+
/// The font family of the Calendar.
|
|
8
|
+
/// @group calendar
|
|
6
9
|
$kendo-calendar-font-family: var( --kendo-font-family, inherit ) !default;
|
|
10
|
+
/// The font size of the Calendar.
|
|
11
|
+
/// @group calendar
|
|
7
12
|
$kendo-calendar-font-size: var( --kendo-font-size, inherit ) !default;
|
|
13
|
+
/// The line height of the Calendar.
|
|
14
|
+
/// @group calendar
|
|
8
15
|
$kendo-calendar-line-height: var( --kendo-line-height, normal ) !default;
|
|
9
16
|
|
|
10
17
|
/// The size of the cells in the Calendar.
|
|
@@ -87,7 +94,11 @@ $kendo-calendar-header-cell-width: $kendo-calendar-cell-size !default;
|
|
|
87
94
|
/// The height of the header cells in the Calendar.
|
|
88
95
|
/// @group calendar
|
|
89
96
|
$kendo-calendar-header-cell-height: $kendo-calendar-cell-size !default;
|
|
97
|
+
/// The font size of the header cells in the Calendar.
|
|
98
|
+
/// @group calendar
|
|
90
99
|
$kendo-calendar-header-cell-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
100
|
+
/// The line height of the header cells in the Calendar.
|
|
101
|
+
/// @group calendar
|
|
91
102
|
$kendo-calendar-header-cell-line-height: 2 !default;
|
|
92
103
|
|
|
93
104
|
/// The background color of the header cells in the Calendar.
|
|
@@ -115,6 +126,8 @@ $kendo-calendar-caption-font-size: null !default;
|
|
|
115
126
|
/// The line height of the caption in the Calendar.
|
|
116
127
|
/// @group calendar
|
|
117
128
|
$kendo-calendar-caption-line-height: null !default;
|
|
129
|
+
/// The font weight of the caption in the Calendar.
|
|
130
|
+
/// @group calendar
|
|
118
131
|
$kendo-calendar-caption-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
119
132
|
|
|
120
133
|
/// The font size of the week number cells in the Calendar.
|
|
@@ -262,12 +275,21 @@ $kendo-infinite-calendar-view-height: ( $kendo-calendar-cell-size * 9 ) !default
|
|
|
262
275
|
|
|
263
276
|
// Multiview calendar
|
|
264
277
|
|
|
278
|
+
/// The border radius of the range cells in the Multiview Calendar.
|
|
279
|
+
/// @group calendar
|
|
280
|
+
$kendo-calendar-range-cell-border-radius: k-border-radius(lg) !default;
|
|
265
281
|
|
|
266
282
|
// Calendar sizes
|
|
283
|
+
|
|
284
|
+
/// The font size of the small Calendar.
|
|
285
|
+
/// @group calendar
|
|
267
286
|
$kendo-calendar-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
287
|
+
/// The line height of the small Calendar.
|
|
288
|
+
/// @group calendar
|
|
268
289
|
$kendo-calendar-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
290
|
+
/// The size of the cells in the small Calendar.
|
|
291
|
+
/// @group calendar
|
|
269
292
|
$kendo-calendar-sm-cell-size: 28px !default;
|
|
270
|
-
|
|
271
293
|
/// The horizontal padding of the cells in the small Calendar.
|
|
272
294
|
/// @group calendar
|
|
273
295
|
$kendo-calendar-sm-cell-padding-x: k-spacing(0.5) !default;
|
|
@@ -275,10 +297,15 @@ $kendo-calendar-sm-cell-padding-x: k-spacing(0.5) !default;
|
|
|
275
297
|
/// @group calendar
|
|
276
298
|
$kendo-calendar-sm-cell-padding-y: k-spacing(0.5) !default;
|
|
277
299
|
|
|
300
|
+
/// The font size of the medium Calendar.
|
|
301
|
+
/// @group calendar
|
|
278
302
|
$kendo-calendar-md-font-size: var( --kendo-font-size, inherit ) !default;
|
|
303
|
+
/// The line height of the medium Calendar.
|
|
304
|
+
/// @group calendar
|
|
279
305
|
$kendo-calendar-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
306
|
+
/// The size of the cells in the medium Calendar.
|
|
307
|
+
/// @group calendar
|
|
280
308
|
$kendo-calendar-md-cell-size: 32px !default;
|
|
281
|
-
|
|
282
309
|
/// The horizontal padding of the cells in the medium Calendar.
|
|
283
310
|
/// @group calendar
|
|
284
311
|
$kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
|
|
@@ -286,10 +313,15 @@ $kendo-calendar-md-cell-padding-x: k-spacing(1) !default;
|
|
|
286
313
|
/// @group calendar
|
|
287
314
|
$kendo-calendar-md-cell-padding-y: k-spacing(1) !default;
|
|
288
315
|
|
|
316
|
+
/// The font size of the large Calendar.
|
|
317
|
+
/// @group calendar
|
|
289
318
|
$kendo-calendar-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
319
|
+
/// The line height of the large Calendar.
|
|
320
|
+
/// @group calendar
|
|
290
321
|
$kendo-calendar-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
|
|
322
|
+
/// The size of the cells in the large Calendar.
|
|
323
|
+
/// @group calendar
|
|
291
324
|
$kendo-calendar-lg-cell-size: 40px !default;
|
|
292
|
-
|
|
293
325
|
/// The horizontal padding of the cells in the large Calendar.
|
|
294
326
|
/// @group calendar
|
|
295
327
|
$kendo-calendar-lg-cell-padding-x: k-spacing(2) !default;
|
package/scss/chip/_theme.scss
CHANGED
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
@if ($name == "base") {
|
|
59
59
|
@include fill(
|
|
60
60
|
$kendo-chip-outline-text,
|
|
61
|
-
|
|
61
|
+
transparent,
|
|
62
62
|
$kendo-chip-outline-border
|
|
63
63
|
);
|
|
64
64
|
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
}
|
|
84
84
|
} @else if ($name == "warning") {
|
|
85
85
|
@include fill(
|
|
86
|
-
if($kendo-enable-color-system,
|
|
87
|
-
if($kendo-enable-color-system,
|
|
86
|
+
if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
|
|
87
|
+
if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
|
|
88
88
|
if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
|
|
89
89
|
);
|
|
90
90
|
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
} @else {
|
|
111
111
|
@include fill(
|
|
112
112
|
if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% )),
|
|
113
|
-
if($kendo-enable-color-system,
|
|
113
|
+
if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
|
|
114
114
|
if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% ))
|
|
115
115
|
);
|
|
116
116
|
|
|
@@ -146,7 +146,7 @@ $kendo-chip-solid-selected-text: null !default;
|
|
|
146
146
|
$kendo-chip-outline-bg: $kendo-component-bg !default;
|
|
147
147
|
/// The base text color of the outline Chip.
|
|
148
148
|
/// @group chip
|
|
149
|
-
$kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
149
|
+
$kendo-chip-outline-text: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-chip-solid-text) !default;
|
|
150
150
|
/// The base border color of the outline Chip.
|
|
151
151
|
/// @group chip
|
|
152
152
|
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
@@ -92,7 +92,7 @@ $kendo-chart-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
92
92
|
$kendo-chart-sm-font-size: 11px !default;
|
|
93
93
|
$kendo-chart-md-font-size: 12px !default;
|
|
94
94
|
$kendo-chart-lg-font-size: 16px !default;
|
|
95
|
-
$kendo-chart-tooltip-font-size: calc(
|
|
95
|
+
$kendo-chart-tooltip-font-size: calc( #{$kendo-font-size} * .929) !default;
|
|
96
96
|
$kendo-chart-label-font-size: .857em !default;
|
|
97
97
|
$kendo-chart-title-font-size: 1.143em !default;
|
|
98
98
|
$kendo-chart-pane-title-font-size: $kendo-chart-label-font-size !default;
|
package/scss/drawer/_layout.scss
CHANGED
|
@@ -12,13 +12,24 @@ $kendo-drawer-border: $kendo-component-border !default;
|
|
|
12
12
|
/// The border width of the Drawer.
|
|
13
13
|
/// @group drawer
|
|
14
14
|
$kendo-drawer-border-width: 1px !default;
|
|
15
|
+
|
|
16
|
+
/// The font family of the Drawer.
|
|
17
|
+
/// @group drawer
|
|
15
18
|
$kendo-drawer-font-family: var( --kendo-font-family, inherit ) !default;
|
|
19
|
+
/// The font size of the Drawer.
|
|
20
|
+
/// @group drawer
|
|
16
21
|
$kendo-drawer-font-size: var( --kendo-font-size, inherit ) !default;
|
|
22
|
+
/// The line height of the Drawer.
|
|
23
|
+
/// @group drawer
|
|
17
24
|
$kendo-drawer-line-height: var( --kendo-line-height, normal ) !default;
|
|
18
|
-
|
|
25
|
+
|
|
26
|
+
/// The horizontal padding of the Drawer content.
|
|
27
|
+
/// @group drawer
|
|
28
|
+
$kendo-drawer-content-padding-x: null !default;
|
|
29
|
+
|
|
19
30
|
/// The vertical padding of the Drawer content.
|
|
20
31
|
/// @group drawer
|
|
21
|
-
$kendo-drawer-content-padding-y:
|
|
32
|
+
$kendo-drawer-content-padding-y: null !default;
|
|
22
33
|
|
|
23
34
|
/// The width of the Drawer scrollbar.
|
|
24
35
|
/// @group drawer
|
package/scss/loader/_layout.scss
CHANGED
|
@@ -1,92 +1,235 @@
|
|
|
1
1
|
// Scheduler
|
|
2
|
+
|
|
3
|
+
/// The width of the border around the Scheduler.
|
|
4
|
+
/// @group scheduler
|
|
2
5
|
$kendo-scheduler-border-width: 1px !default;
|
|
6
|
+
/// The font family of the Scheduler.
|
|
7
|
+
/// @group scheduler
|
|
3
8
|
$kendo-scheduler-font-family: var( --kendo-font-family, inherit ) !default;
|
|
9
|
+
/// The font size of the Scheduler.
|
|
10
|
+
/// @group scheduler
|
|
4
11
|
$kendo-scheduler-font-size: var( --kendo-font-size, inherit ) !default;
|
|
12
|
+
/// The line height of the Scheduler.
|
|
13
|
+
/// @group scheduler
|
|
5
14
|
$kendo-scheduler-line-height: var( --kendo-line-height, normal ) !default;
|
|
6
15
|
|
|
16
|
+
/// The background color of the Scheduler.
|
|
17
|
+
/// @group scheduler
|
|
7
18
|
$kendo-scheduler-bg: $kendo-component-bg !default;
|
|
19
|
+
/// The text color of the Scheduler.
|
|
20
|
+
/// @group scheduler
|
|
8
21
|
$kendo-scheduler-text: $kendo-component-text !default;
|
|
22
|
+
/// The border color of the Scheduler.
|
|
23
|
+
/// @group scheduler
|
|
9
24
|
$kendo-scheduler-border: $kendo-component-border !default;
|
|
10
25
|
|
|
26
|
+
/// The background color of the Scheduler ToolBar.
|
|
27
|
+
/// @group scheduler
|
|
11
28
|
$kendo-scheduler-toolbar-bg: $kendo-toolbar-bg !default;
|
|
29
|
+
/// The text color of the Scheduler ToolBar.
|
|
30
|
+
/// @group scheduler
|
|
12
31
|
$kendo-scheduler-toolbar-text: $kendo-toolbar-text !default;
|
|
32
|
+
/// The border color of the Scheduler ToolBar.
|
|
33
|
+
/// @group scheduler
|
|
13
34
|
$kendo-scheduler-toolbar-border: $kendo-toolbar-border !default;
|
|
35
|
+
/// The gradient of the Scheduler ToolBar.
|
|
36
|
+
/// @group scheduler
|
|
14
37
|
$kendo-scheduler-toolbar-gradient: $kendo-toolbar-gradient !default;
|
|
15
38
|
|
|
39
|
+
/// The background color of the Scheduler footer.
|
|
40
|
+
/// @group scheduler
|
|
16
41
|
$kendo-scheduler-footer-bg: $kendo-toolbar-bg !default;
|
|
42
|
+
/// The text color of the Scheduler footer.
|
|
43
|
+
/// @group scheduler
|
|
17
44
|
$kendo-scheduler-footer-text: $kendo-toolbar-text !default;
|
|
45
|
+
/// The border color of the Scheduler footer.
|
|
46
|
+
/// @group scheduler
|
|
18
47
|
$kendo-scheduler-footer-border: $kendo-toolbar-border !default;
|
|
48
|
+
/// The gradient of the Scheduler footer.
|
|
49
|
+
/// @group scheduler
|
|
19
50
|
$kendo-scheduler-footer-gradient: $kendo-toolbar-gradient !default;
|
|
20
51
|
|
|
52
|
+
/// The minimum height of the Scheduler event.
|
|
53
|
+
/// @group scheduler
|
|
21
54
|
$kendo-scheduler-event-min-height: 25px !default;
|
|
55
|
+
/// The border radius of the Scheduler event.
|
|
56
|
+
/// @group scheduler
|
|
22
57
|
$kendo-scheduler-event-border-radius: k-border-radius(md) !default;
|
|
58
|
+
/// The line height of the Scheduler event.
|
|
59
|
+
/// @group scheduler
|
|
23
60
|
$kendo-scheduler-event-line-height: calc( #{$kendo-scheduler-event-min-height} - (2 * #{$kendo-padding-md-y}) ) !default;
|
|
24
61
|
|
|
62
|
+
/// The background color of the Scheduler event.
|
|
63
|
+
/// @group scheduler
|
|
25
64
|
$kendo-scheduler-event-bg: if($kendo-enable-color-system, k-color( primary ), k-color-tint( $kendo-selected-bg, 2 )) !default;
|
|
65
|
+
/// The text color of the Scheduler event.
|
|
66
|
+
/// @group scheduler
|
|
26
67
|
$kendo-scheduler-event-text: $kendo-selected-text !default;
|
|
68
|
+
/// The border color of the Scheduler event.
|
|
69
|
+
/// @group scheduler
|
|
27
70
|
$kendo-scheduler-event-border: null !default;
|
|
71
|
+
/// The gradient of the Scheduler event.
|
|
72
|
+
/// @group scheduler
|
|
28
73
|
$kendo-scheduler-event-gradient: null !default;
|
|
74
|
+
/// The shadow of the Scheduler event.
|
|
75
|
+
/// @group scheduler
|
|
29
76
|
$kendo-scheduler-event-shadow: null !default;
|
|
30
77
|
|
|
78
|
+
/// The background color of the hovered Scheduler event.
|
|
79
|
+
/// @group scheduler
|
|
31
80
|
$kendo-scheduler-event-hover-bg: null !default;
|
|
81
|
+
/// The text color of the hovered Scheduler event.
|
|
82
|
+
/// @group scheduler
|
|
32
83
|
$kendo-scheduler-event-hover-text: null !default;
|
|
84
|
+
/// The border color of the hovered Scheduler event.
|
|
85
|
+
/// @group scheduler
|
|
33
86
|
$kendo-scheduler-event-hover-border: null !default;
|
|
87
|
+
/// The gradient of the hovered Scheduler event.
|
|
88
|
+
/// @group scheduler
|
|
34
89
|
$kendo-scheduler-event-hover-gradient: null !default;
|
|
90
|
+
/// The shadow of the hovered Scheduler event.
|
|
91
|
+
/// @group scheduler
|
|
35
92
|
$kendo-scheduler-event-hover-shadow: null !default;
|
|
36
93
|
|
|
94
|
+
/// The background color of the selected Scheduler event.
|
|
95
|
+
/// @group scheduler
|
|
37
96
|
$kendo-scheduler-event-selected-bg: if($kendo-enable-color-system, k-color( primary-active ), $kendo-selected-bg) !default;
|
|
97
|
+
/// The text color of the selected Scheduler event.
|
|
98
|
+
/// @group scheduler
|
|
38
99
|
$kendo-scheduler-event-selected-text: $kendo-selected-text !default;
|
|
100
|
+
/// The border color of the selected Scheduler event.
|
|
101
|
+
/// @group scheduler
|
|
39
102
|
$kendo-scheduler-event-selected-border: null !default;
|
|
103
|
+
/// The gradient of the selected Scheduler event.
|
|
104
|
+
/// @group scheduler
|
|
40
105
|
$kendo-scheduler-event-selected-gradient: null !default;
|
|
106
|
+
/// The shadow of the selected Scheduler event.
|
|
107
|
+
/// @group scheduler
|
|
41
108
|
$kendo-scheduler-event-selected-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
42
109
|
|
|
110
|
+
/// The shadow of the ongoing Scheduler event.
|
|
111
|
+
/// @group scheduler
|
|
43
112
|
$kendo-scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
44
113
|
|
|
114
|
+
/// The horizontal padding of the Scheduler cell.
|
|
115
|
+
/// @group scheduler
|
|
45
116
|
$kendo-scheduler-cell-padding-x: k-spacing(2) !default;
|
|
117
|
+
/// The vertical padding of the Scheduler cell.
|
|
118
|
+
/// @group scheduler
|
|
46
119
|
$kendo-scheduler-cell-padding-y: k-spacing(2) !default;
|
|
120
|
+
/// The height of the Scheduler cell.
|
|
121
|
+
/// @group scheduler
|
|
47
122
|
$kendo-scheduler-cell-height: $kendo-line-height-em !default;
|
|
123
|
+
/// The width of the Scheduler date column.
|
|
124
|
+
/// @group scheduler
|
|
48
125
|
$kendo-scheduler-datecolumn-width: 12em !default;
|
|
126
|
+
/// The width of the Scheduler time column.
|
|
127
|
+
/// @group scheduler
|
|
49
128
|
$kendo-scheduler-timecolumn-width: 11em !default;
|
|
50
129
|
|
|
130
|
+
/// The background color of the non-working hours in the Scheduler.
|
|
131
|
+
/// @group scheduler
|
|
51
132
|
$kendo-scheduler-nonwork-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
|
|
133
|
+
/// The text color of the non-working hours in the Scheduler.
|
|
134
|
+
/// @group scheduler
|
|
52
135
|
$kendo-scheduler-nonwork-text: null !default;
|
|
53
136
|
|
|
137
|
+
/// The background color of the weekends in the Scheduler.
|
|
138
|
+
/// @group scheduler
|
|
54
139
|
$kendo-scheduler-weekend-bg: null !default;
|
|
140
|
+
/// The text color of the weekends in the Scheduler.
|
|
141
|
+
/// @group scheduler
|
|
55
142
|
$kendo-scheduler-weekend-text: null !default;
|
|
56
143
|
|
|
144
|
+
/// The background color of the preceding/subsequent month cells in the Calendar.
|
|
145
|
+
/// @group scheduler
|
|
57
146
|
$kendo-scheduler-othermonth-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
|
|
147
|
+
/// The text color of the preceding/subsequent month cells in the Calendar.
|
|
148
|
+
/// @group scheduler
|
|
58
149
|
$kendo-scheduler-othermonth-text: null !default;
|
|
59
150
|
|
|
151
|
+
/// The horizontal padding of the year view in the Scheduler.
|
|
152
|
+
/// @group scheduler
|
|
60
153
|
$kendo-scheduler-yearview-padding-x: k-spacing(3) !default;
|
|
154
|
+
/// The vertical padding of the year view in the Scheduler.
|
|
155
|
+
/// @group scheduler
|
|
61
156
|
$kendo-scheduler-yearview-padding-y: $kendo-scheduler-yearview-padding-x !default;
|
|
62
157
|
|
|
158
|
+
/// The spacing between the calendars of the year view in the Scheduler.
|
|
159
|
+
/// @group scheduler
|
|
63
160
|
$kendo-scheduler-yearview-calendar-gap: k-spacing(3) !default;
|
|
64
161
|
|
|
162
|
+
/// The days with events indicator size of the year view in the Scheduler.
|
|
163
|
+
/// @group scheduler
|
|
65
164
|
$kendo-scheduler-yearview-indicator-size: 3px !default;
|
|
165
|
+
/// The top position of the days with events indicator of the year view in the Scheduler.
|
|
166
|
+
/// @group scheduler
|
|
66
167
|
$kendo-scheduler-yearview-indicator-calc-offset-top: calc( #{$kendo-calendar-cell-size} - (#{$kendo-calendar-cell-padding-y} * 2)) !default;
|
|
168
|
+
/// The left position of the days with events indicator of the year view in the Scheduler.
|
|
169
|
+
/// @group scheduler
|
|
67
170
|
$kendo-scheduler-yearview-indicator-calc-offset-left: calc( 50% - #{k-math-div( $kendo-scheduler-yearview-indicator-size, 2 )} ) !default;
|
|
171
|
+
/// The border radius of the days with events indicator of the year view in the Scheduler.
|
|
172
|
+
/// @group scheduler
|
|
68
173
|
$kendo-scheduler-yearview-indicator-border-radius: 50% !default;
|
|
174
|
+
/// The background color of the days with events indicator of the year view in the Scheduler.
|
|
175
|
+
/// @group scheduler
|
|
69
176
|
$kendo-scheduler-yearview-indicator-bg: $kendo-color-primary !default;
|
|
177
|
+
/// The background color of the selected days with events indicator of the year view in the Scheduler.
|
|
178
|
+
/// @group scheduler
|
|
70
179
|
$kendo-scheduler-yearview-indicator-selected-bg: $kendo-color-primary-contrast !default;
|
|
71
180
|
|
|
181
|
+
/// The horizontal padding of the Scheduler Tooltip.
|
|
182
|
+
/// @group scheduler
|
|
72
183
|
$kendo-scheduler-tooltip-padding-x: k-spacing(2) !default;
|
|
184
|
+
/// The vertical padding of the Scheduler Tooltip.
|
|
185
|
+
/// @group scheduler
|
|
73
186
|
$kendo-scheduler-tooltip-padding-y: k-spacing(2) !default;
|
|
187
|
+
/// The width of the border of the Scheduler Tooltip.
|
|
188
|
+
/// @group scheduler
|
|
74
189
|
$kendo-scheduler-tooltip-border-width: 0 !default;
|
|
190
|
+
/// The background color of the Scheduler Tooltip.
|
|
191
|
+
/// @group scheduler
|
|
75
192
|
$kendo-scheduler-tooltip-bg: $kendo-color-primary-contrast !default;
|
|
193
|
+
/// The text color of the Scheduler Tooltip.
|
|
194
|
+
/// @group scheduler
|
|
76
195
|
$kendo-scheduler-tooltip-text: $kendo-base-text !default;
|
|
196
|
+
/// The border color of the Scheduler Tooltip.
|
|
197
|
+
/// @group scheduler
|
|
77
198
|
$kendo-scheduler-tooltip-border: null !default;
|
|
199
|
+
/// The shadow of the Scheduler Tooltip.
|
|
200
|
+
/// @group scheduler
|
|
78
201
|
$kendo-scheduler-tooltip-shadow: k-elevation(2) !default;
|
|
79
202
|
|
|
203
|
+
/// The vertical margin of the Scheduler Tooltip title.
|
|
204
|
+
/// @group scheduler
|
|
80
205
|
$kendo-scheduler-tooltip-title-margin-y: k-spacing(3) !default;
|
|
206
|
+
/// The font size of the month inside the Scheduler Tooltip.
|
|
207
|
+
/// @group scheduler
|
|
81
208
|
$kendo-scheduler-tooltip-month-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
82
|
-
|
|
209
|
+
/// The font size of the day inside the Scheduler Tooltip.
|
|
210
|
+
/// @group scheduler
|
|
211
|
+
$kendo-scheduler-tooltip-day-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 2 ) !default;
|
|
83
212
|
|
|
213
|
+
/// The max height of the events inside the Scheduler Tooltip.
|
|
214
|
+
/// @group scheduler
|
|
84
215
|
$kendo-scheduler-tooltip-events-max-height: 250px !default;
|
|
216
|
+
/// The spacing between the events inside the Scheduler Tooltip.
|
|
217
|
+
/// @group scheduler
|
|
85
218
|
$kendo-scheduler-tooltip-events-gap: k-spacing(1) !default;
|
|
86
219
|
|
|
220
|
+
/// The horizontal padding of the events inside the Scheduler Tooltip.
|
|
221
|
+
/// @group scheduler
|
|
87
222
|
$kendo-scheduler-tooltip-event-padding-x: k-spacing(2) !default;
|
|
223
|
+
/// The vertical padding of the events inside the Scheduler Tooltip.
|
|
224
|
+
/// @group scheduler
|
|
88
225
|
$kendo-scheduler-tooltip-event-padding-y: k-spacing(1) !default;
|
|
226
|
+
/// The border radius of the events inside the Scheduler Tooltip.
|
|
227
|
+
/// @group scheduler
|
|
89
228
|
$kendo-scheduler-tooltip-event-border-radius: k-border-radius(md) !default;
|
|
229
|
+
/// The spacing between the events items inside the Scheduler Tooltip.
|
|
230
|
+
/// @group scheduler
|
|
90
231
|
$kendo-scheduler-tooltip-event-gap: k-spacing(1) !default;
|
|
91
232
|
|
|
233
|
+
/// The color of the Scheduler Tooltip callout.
|
|
234
|
+
/// @group scheduler
|
|
92
235
|
$kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
@@ -114,8 +114,8 @@
|
|
|
114
114
|
|
|
115
115
|
&::before {
|
|
116
116
|
content: "";
|
|
117
|
-
width: ($kendo-scrollview-pagebutton-size + $kendo-scrollview-pager-item-spacing);
|
|
118
|
-
height: ($kendo-scrollview-pagebutton-size + $kendo-scrollview-pager-item-spacing);
|
|
117
|
+
width: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-spacing} );
|
|
118
|
+
height: calc( #{$kendo-scrollview-pagebutton-size} + #{$kendo-scrollview-pager-item-spacing} );
|
|
119
119
|
display: block;
|
|
120
120
|
position: absolute;
|
|
121
121
|
top: 50%;
|
|
@@ -110,7 +110,7 @@ $kendo-slider-draghandle-transition-function: cubic-bezier(.25, .8, .25, 1) !def
|
|
|
110
110
|
|
|
111
111
|
/// The background color of the Slider track.
|
|
112
112
|
/// @group slider
|
|
113
|
-
$kendo-slider-track-bg: if($kendo-enable-color-system, k-color( base-
|
|
113
|
+
$kendo-slider-track-bg: if($kendo-enable-color-system, k-color( base-emphasis ), k-try-shade( $kendo-component-bg, 1 )) !default;
|
|
114
114
|
/// The background color of the Slider's track selection.
|
|
115
115
|
/// @group slider
|
|
116
116
|
$kendo-slider-selection-bg: $kendo-color-primary !default;
|