@progress/kendo-theme-classic 8.0.0-dev.1 → 8.0.0-dev.11
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 +3782 -372
- package/dist/all.scss +545 -199
- package/dist/meta/sassdoc-data.json +46939 -33307
- package/dist/meta/sassdoc-raw-data.json +13078 -6331
- package/dist/meta/variables.json +36 -32
- 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 +6 -6
- package/scss/calendar/_variables.scss +33 -3
- package/scss/chip/_variables.scss +1 -1
- package/scss/dataviz/_variables.scss +1 -1
- package/scss/drawer/_variables.scss +12 -2
- package/scss/scheduler/_variables.scss +144 -1
- package/scss/slider/_variables.scss +1 -1
- package/scss/tabstrip/_variables.scss +70 -28
- package/scss/toolbar/_variables.scss +1 -1
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/typography/_variables.scss +166 -12
|
@@ -12,13 +12,23 @@ $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;
|
|
19
29
|
/// The vertical padding of the Drawer content.
|
|
20
30
|
/// @group drawer
|
|
21
|
-
$kendo-drawer-content-padding-y:
|
|
31
|
+
$kendo-drawer-content-padding-y: null !default;
|
|
22
32
|
|
|
23
33
|
/// The width of the Drawer scrollbar.
|
|
24
34
|
/// @group drawer
|
|
@@ -1,94 +1,237 @@
|
|
|
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: $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( black, .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-subtle ), 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-subtle ), 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
|
|
|
80
203
|
|
|
81
204
|
// TODO: use 3
|
|
205
|
+
/// The vertical margin of the Scheduler Tooltip title.
|
|
206
|
+
/// @group scheduler
|
|
82
207
|
$kendo-scheduler-tooltip-title-margin-y: k-spacing(1) !default;
|
|
208
|
+
/// The font size of the month inside the Scheduler Tooltip.
|
|
209
|
+
/// @group scheduler
|
|
83
210
|
$kendo-scheduler-tooltip-month-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
84
|
-
|
|
211
|
+
/// The font size of the day inside the Scheduler Tooltip.
|
|
212
|
+
/// @group scheduler
|
|
213
|
+
$kendo-scheduler-tooltip-day-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 2 ) !default;
|
|
85
214
|
|
|
215
|
+
/// The max height of the events inside the Scheduler Tooltip.
|
|
216
|
+
/// @group scheduler
|
|
86
217
|
$kendo-scheduler-tooltip-events-max-height: 250px !default;
|
|
218
|
+
/// The spacing between the events inside the Scheduler Tooltip.
|
|
219
|
+
/// @group scheduler
|
|
87
220
|
$kendo-scheduler-tooltip-events-gap: k-spacing(1) !default;
|
|
88
221
|
|
|
222
|
+
/// The horizontal padding of the events inside the Scheduler Tooltip.
|
|
223
|
+
/// @group scheduler
|
|
89
224
|
$kendo-scheduler-tooltip-event-padding-x: k-spacing(2) !default;
|
|
225
|
+
/// The vertical padding of the events inside the Scheduler Tooltip.
|
|
226
|
+
/// @group scheduler
|
|
90
227
|
$kendo-scheduler-tooltip-event-padding-y: k-spacing(1) !default;
|
|
228
|
+
/// The border radius of the events inside the Scheduler Tooltip.
|
|
229
|
+
/// @group scheduler
|
|
91
230
|
$kendo-scheduler-tooltip-event-border-radius: k-border-radius(md) !default;
|
|
231
|
+
/// The spacing between the events items inside the Scheduler Tooltip.
|
|
232
|
+
/// @group scheduler
|
|
92
233
|
$kendo-scheduler-tooltip-event-gap: k-spacing(1) !default;
|
|
93
234
|
|
|
235
|
+
/// The color of the Scheduler Tooltip callout.
|
|
236
|
+
/// @group scheduler
|
|
94
237
|
$kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
@@ -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 ), k-try-shade( $kendo-component-bg, 1 )) !default;
|
|
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;
|
|
@@ -1,115 +1,157 @@
|
|
|
1
|
-
//
|
|
1
|
+
// TabStrip
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
/// The horizontal padding of the TabStrip wrapper.
|
|
5
|
+
/// @group tabstrip
|
|
2
6
|
$kendo-tabstrip-wrapper-padding-x: k-spacing(0) !default;
|
|
7
|
+
/// The vertical padding of the TabStrip wrapper.
|
|
8
|
+
/// @group tabstrip
|
|
3
9
|
$kendo-tabstrip-wrapper-padding-y: k-spacing(0) !default;
|
|
10
|
+
/// The border width around the TabStrip wrapper.
|
|
11
|
+
/// @group tabstrip
|
|
4
12
|
$kendo-tabstrip-wrapper-border-width: 0px !default;
|
|
5
13
|
|
|
14
|
+
/// The font family of the TabStrip.
|
|
15
|
+
/// @group tabstrip
|
|
6
16
|
$kendo-tabstrip-font-family: var( --kendo-font-family, inherit ) !default;
|
|
17
|
+
/// The font size of the TabStrip.
|
|
18
|
+
/// @group tabstrip
|
|
7
19
|
$kendo-tabstrip-font-size: var( --kendo-font-size, inherit ) !default;
|
|
20
|
+
/// The line height of the TabStrip.
|
|
21
|
+
/// @group tabstrip
|
|
8
22
|
$kendo-tabstrip-line-height: var( --kendo-line-height, normal )!default;
|
|
23
|
+
/// The border width around the TabStrip.
|
|
24
|
+
/// @group tabstrip
|
|
9
25
|
$kendo-tabstrip-border-width: 1px !default;
|
|
10
26
|
|
|
27
|
+
/// The background color of the TabStrip wrapper.
|
|
28
|
+
/// @group tabstrip
|
|
11
29
|
$kendo-tabstrip-wrapper-bg: null !default;
|
|
30
|
+
/// The text color of the TabStrip wrapper.
|
|
31
|
+
/// @group tabstrip
|
|
12
32
|
$kendo-tabstrip-wrapper-text: null !default;
|
|
33
|
+
/// The border color of the TabStrip wrapper.
|
|
34
|
+
/// @group tabstrip
|
|
13
35
|
$kendo-tabstrip-wrapper-border: null !default;
|
|
14
36
|
|
|
15
|
-
///
|
|
37
|
+
/// The background color of the TabStrip.
|
|
16
38
|
/// @group tabstrip
|
|
17
39
|
$kendo-tabstrip-bg: null !default;
|
|
18
|
-
///
|
|
40
|
+
/// The text color of the TabStrip.
|
|
19
41
|
/// @group tabstrip
|
|
20
42
|
$kendo-tabstrip-text: $kendo-component-text !default;
|
|
21
|
-
///
|
|
43
|
+
/// The border color of the TabStrip.
|
|
22
44
|
/// @group tabstrip
|
|
23
45
|
$kendo-tabstrip-border: $kendo-component-border !default;
|
|
24
46
|
|
|
25
|
-
///
|
|
47
|
+
/// The horizontal padding of the TabStrip items.
|
|
26
48
|
/// @group tabstrip
|
|
27
49
|
$kendo-tabstrip-item-padding-x: k-spacing(2) !default;
|
|
28
|
-
///
|
|
50
|
+
/// The vertical padding of the TabStrip items.
|
|
29
51
|
/// @group tabstrip
|
|
30
52
|
$kendo-tabstrip-item-padding-y: k-spacing(1) !default;
|
|
31
|
-
///
|
|
53
|
+
/// The border width around the TabStrip items.
|
|
32
54
|
/// @group tabstrip
|
|
33
55
|
$kendo-tabstrip-item-border-width: 1px !default;
|
|
34
|
-
///
|
|
56
|
+
/// The border radius of the TabStrip items.
|
|
35
57
|
/// @group tabstrip
|
|
36
58
|
$kendo-tabstrip-item-border-radius: k-border-radius(md) !default;
|
|
37
|
-
///
|
|
59
|
+
/// The gap between the TabStrip items.
|
|
38
60
|
/// @group tabstrip
|
|
39
61
|
$kendo-tabstrip-item-gap: k-spacing(0) !default;
|
|
40
62
|
|
|
41
|
-
///
|
|
63
|
+
/// The background color of the TabStrip items.
|
|
42
64
|
/// @group tabstrip
|
|
43
65
|
$kendo-tabstrip-item-bg: $kendo-base-bg !default;
|
|
44
|
-
///
|
|
66
|
+
/// The text color of the TabStrip items.
|
|
45
67
|
/// @group tabstrip
|
|
46
68
|
$kendo-tabstrip-item-text: $kendo-base-text !default;
|
|
47
|
-
///
|
|
69
|
+
/// The border color of the TabStrip items.
|
|
48
70
|
/// @group tabstrip
|
|
49
71
|
$kendo-tabstrip-item-border: $kendo-base-border !default;
|
|
50
|
-
///
|
|
72
|
+
/// The gradient of the TabStrip items.
|
|
51
73
|
/// @group tabstrip
|
|
52
74
|
$kendo-tabstrip-item-gradient: $kendo-base-gradient !default;
|
|
53
75
|
|
|
54
|
-
///
|
|
76
|
+
/// The background color of the hovered TabStrip items.
|
|
55
77
|
/// @group tabstrip
|
|
56
78
|
$kendo-tabstrip-item-hover-bg: $kendo-hover-bg !default;
|
|
57
|
-
///
|
|
79
|
+
/// The text color of the hovered TabStrip items.
|
|
58
80
|
/// @group tabstrip
|
|
59
81
|
$kendo-tabstrip-item-hover-text: $kendo-hover-text !default;
|
|
60
|
-
///
|
|
82
|
+
/// The border color of the hovered TabStrip items.
|
|
61
83
|
/// @group tabstrip
|
|
62
84
|
$kendo-tabstrip-item-hover-border: $kendo-hover-border !default;
|
|
63
|
-
///
|
|
85
|
+
/// The gradient of the hovered TabStrip items.
|
|
64
86
|
/// @group tabstrip
|
|
65
87
|
$kendo-tabstrip-item-hover-gradient: null !default;
|
|
66
88
|
|
|
67
|
-
///
|
|
89
|
+
/// The background color of the selected TabStrip items.
|
|
68
90
|
/// @group tabstrip
|
|
69
91
|
$kendo-tabstrip-item-selected-bg: $kendo-component-bg !default;
|
|
70
|
-
///
|
|
92
|
+
/// The text color of the selected TabStrip items.
|
|
71
93
|
/// @group tabstrip
|
|
72
94
|
$kendo-tabstrip-item-selected-text: $kendo-component-text !default;
|
|
73
|
-
///
|
|
95
|
+
/// The border color of the selected TabStrip items.
|
|
74
96
|
/// @group tabstrip
|
|
75
97
|
$kendo-tabstrip-item-selected-border: $kendo-component-border !default;
|
|
76
|
-
///
|
|
98
|
+
/// The gradient of the selected TabStrip items.
|
|
77
99
|
/// @group tabstrip
|
|
78
100
|
$kendo-tabstrip-item-selected-gradient: false !default;
|
|
79
101
|
|
|
102
|
+
/// The shadow of the focused TabStrip items.
|
|
103
|
+
/// @group tabstrip
|
|
80
104
|
$kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
81
105
|
|
|
106
|
+
/// The shadow of the dragged TabStrip items.
|
|
107
|
+
/// @group tabstrip
|
|
82
108
|
$kendo-tabstrip-item-dragging-shadow: k-elevation(3) !default;
|
|
83
109
|
|
|
110
|
+
/// The background color of the disabled TabStrip items.
|
|
111
|
+
/// @group tabstrip
|
|
84
112
|
$kendo-tabstrip-item-disabled-bg: null !default;
|
|
113
|
+
/// The text color of the disabled TabStrip items.
|
|
114
|
+
/// @group tabstrip
|
|
85
115
|
$kendo-tabstrip-item-disabled-text: null !default;
|
|
116
|
+
/// The border color of the disabled TabStrip items.
|
|
117
|
+
/// @group tabstrip
|
|
86
118
|
$kendo-tabstrip-item-disabled-border: null !default;
|
|
119
|
+
/// The gradient of the disabled TabStrip items.
|
|
120
|
+
/// @group tabstrip
|
|
87
121
|
$kendo-tabstrip-item-disabled-gradient: null !default;
|
|
122
|
+
/// The opacity of the disabled TabStrip items.
|
|
123
|
+
/// @group tabstrip
|
|
88
124
|
$kendo-tabstrip-item-disabled-opacity: null !default;
|
|
125
|
+
/// The filter of the disabled TabStrip items.
|
|
126
|
+
/// @group tabstrip
|
|
89
127
|
$kendo-tabstrip-item-disabled-filter: null !default;
|
|
90
128
|
|
|
129
|
+
/// The border width of the TabStrip indicator.
|
|
130
|
+
/// @group tabstrip
|
|
91
131
|
$kendo-tabstrip-indicator-size: null !default;
|
|
132
|
+
/// The border color of the TabStrip ripple.
|
|
133
|
+
/// @group tabstrip
|
|
92
134
|
$kendo-tabstrip-indicator-color: null !default;
|
|
93
135
|
|
|
94
|
-
///
|
|
136
|
+
/// The horizontal padding of the TabStrip content.
|
|
95
137
|
/// @group tabstrip
|
|
96
138
|
$kendo-tabstrip-content-padding-x: k-spacing(4) !default;
|
|
97
|
-
///
|
|
139
|
+
/// The vertical padding of the TabStrip content.
|
|
98
140
|
/// @group tabstrip
|
|
99
141
|
$kendo-tabstrip-content-padding-y: k-spacing(4) !default;
|
|
100
|
-
///
|
|
142
|
+
/// The border width around the TabStrip content.
|
|
101
143
|
/// @group tabstrip
|
|
102
144
|
$kendo-tabstrip-content-border-width: 1px !default;
|
|
103
145
|
|
|
104
|
-
///
|
|
146
|
+
/// The background color of the TabStrip content.
|
|
105
147
|
/// @group tabstrip
|
|
106
148
|
$kendo-tabstrip-content-bg: $kendo-component-bg !default;
|
|
107
|
-
///
|
|
149
|
+
/// The text color of the TabStrip content.
|
|
108
150
|
/// @group tabstrip
|
|
109
151
|
$kendo-tabstrip-content-text: $kendo-component-text !default;
|
|
110
|
-
///
|
|
152
|
+
/// The border color of the TabStrip content.
|
|
111
153
|
/// @group tabstrip
|
|
112
154
|
$kendo-tabstrip-content-border: $kendo-component-border !default;
|
|
113
|
-
///
|
|
155
|
+
/// The border color of the focused TabStrip content.
|
|
114
156
|
/// @group tabstrip
|
|
115
157
|
$kendo-tabstrip-content-focus-border: $kendo-component-text !default;
|
|
@@ -58,7 +58,7 @@ $kendo-toolbar-line-height: var( --kendo-line-height, normal ) !default;
|
|
|
58
58
|
|
|
59
59
|
/// The background color of the Toolbar.
|
|
60
60
|
/// @group toolbar
|
|
61
|
-
$kendo-toolbar-bg: $kendo-button-bg !default;
|
|
61
|
+
$kendo-toolbar-bg: if($kendo-enable-color-system, k-color( surface ), $kendo-button-bg) !default;
|
|
62
62
|
/// The text color of the Toolbar.
|
|
63
63
|
/// @group toolbar
|
|
64
64
|
$kendo-toolbar-text: $kendo-button-text !default;
|
|
@@ -25,7 +25,7 @@ $kendo-tooltip-line-height: 1.25 !default;
|
|
|
25
25
|
|
|
26
26
|
/// The font size of the Tooltip title.
|
|
27
27
|
/// @group tooltip
|
|
28
|
-
$kendo-tooltip-title-font-size: calc(
|
|
28
|
+
$kendo-tooltip-title-font-size: calc( var( --kendo-font-size, .875rem ) * 1.25 ) !default;
|
|
29
29
|
/// The line height of the Tooltip title.
|
|
30
30
|
/// @group tooltip
|
|
31
31
|
$kendo-tooltip-title-line-height: 1 !default;
|