@progress/kendo-theme-classic 11.0.0-dev.0 → 11.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/classic-green-dark.css +1 -1
- package/dist/classic-green.css +1 -1
- package/dist/classic-lavender-dark.css +1 -1
- package/dist/classic-lavender.css +1 -1
- package/dist/classic-main-dark.css +1 -1
- package/dist/classic-main.css +1 -1
- package/dist/classic-metro-dark.css +1 -1
- package/dist/classic-metro.css +1 -1
- package/dist/classic-moonlight.css +1 -1
- package/dist/classic-opal-dark.css +1 -1
- package/dist/classic-opal.css +1 -1
- package/dist/classic-silver-dark.css +1 -1
- package/dist/classic-silver.css +1 -1
- package/dist/classic-uniform.css +1 -1
- package/dist/meta/sassdoc-data.json +4704 -3006
- package/dist/meta/sassdoc-raw-data.json +2219 -1444
- package/dist/meta/variables.json +259 -47
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +4 -4
- package/scss/action-sheet/_variables.scss +4 -1
- package/scss/button/_variables.scss +4 -0
- package/scss/calendar/_variables.scss +21 -0
- package/scss/chip/_variables.scss +19 -0
- package/scss/coloreditor/_variables.scss +3 -3
- package/scss/colorgradient/_variables.scss +2 -33
- package/scss/dialog/_variables.scss +5 -0
- package/scss/drawer/_variables.scss +26 -1
- package/scss/list/_variables.scss +78 -3
- package/scss/menu/_variables.scss +8 -0
- package/scss/notification/_variables.scss +8 -0
- package/scss/slider/_variables.scss +9 -1
- package/scss/switch/_variables.scss +34 -1
- package/scss/timeselector/_variables.scss +6 -0
|
@@ -112,6 +112,19 @@ $kendo-switch-off-thumb-hover-border: $kendo-switch-off-thumb-border !default;
|
|
|
112
112
|
/// @group switch
|
|
113
113
|
$kendo-switch-off-thumb-hover-gradient: null !default;
|
|
114
114
|
|
|
115
|
+
/// The background of the thumb when the disabled Switch is not checked.
|
|
116
|
+
/// @group switch
|
|
117
|
+
$kendo-switch-off-thumb-disabled-bg: null !default;
|
|
118
|
+
/// The text color of the thumb when the disabled Switch is not checked.
|
|
119
|
+
/// @group switch
|
|
120
|
+
$kendo-switch-off-thumb-disabled-text: null !default;
|
|
121
|
+
/// The border color of the thumb when the disabled Switch is not checked.
|
|
122
|
+
/// @group switch
|
|
123
|
+
$kendo-switch-off-thumb-disabled-border: null !default;
|
|
124
|
+
/// The background gradient of the thumb when the disabled Switch is not checked.
|
|
125
|
+
/// @group switch
|
|
126
|
+
$kendo-switch-off-thumb-disabled-gradient: null !default;
|
|
127
|
+
|
|
115
128
|
|
|
116
129
|
/// The background of the track when the Switch is checked.
|
|
117
130
|
/// @group switch
|
|
@@ -194,6 +207,18 @@ $kendo-switch-on-thumb-hover-border: k-color(primary-hover) !default;
|
|
|
194
207
|
/// @group switch
|
|
195
208
|
$kendo-switch-on-thumb-hover-gradient: null !default;
|
|
196
209
|
|
|
210
|
+
/// The background of the thumb when the disabled Switch is checked.
|
|
211
|
+
/// @group switch
|
|
212
|
+
$kendo-switch-on-thumb-disabled-bg: null !default;
|
|
213
|
+
/// The text color of the thumb when the disabled Switch is checked.
|
|
214
|
+
/// @group switch
|
|
215
|
+
$kendo-switch-on-thumb-disabled-text: null !default;
|
|
216
|
+
/// The border color of the thumb when the disabled Switch is checked.
|
|
217
|
+
/// @group switch
|
|
218
|
+
$kendo-switch-on-thumb-disabled-border: null !default;
|
|
219
|
+
/// The background gradient of the thumb when the disabled Switch is checked.
|
|
220
|
+
/// @group switch
|
|
221
|
+
$kendo-switch-on-thumb-disabled-gradient: null !default;
|
|
197
222
|
|
|
198
223
|
@forward "@progress/kendo-theme-core/scss/components/switch/_variables.scss" with (
|
|
199
224
|
$kendo-switch-font-family: $kendo-switch-font-family,
|
|
@@ -227,6 +252,10 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
227
252
|
$kendo-switch-off-thumb-hover-text: $kendo-switch-off-thumb-hover-text,
|
|
228
253
|
$kendo-switch-off-thumb-hover-border: $kendo-switch-off-thumb-hover-border,
|
|
229
254
|
$kendo-switch-off-thumb-hover-gradient: $kendo-switch-off-thumb-hover-gradient,
|
|
255
|
+
$kendo-switch-off-thumb-disabled-bg: $kendo-switch-off-thumb-disabled-bg,
|
|
256
|
+
$kendo-switch-off-thumb-disabled-text: $kendo-switch-off-thumb-disabled-text,
|
|
257
|
+
$kendo-switch-off-thumb-disabled-border: $kendo-switch-off-track-disabled-border,
|
|
258
|
+
$kendo-switch-off-thumb-disabled-gradient: $kendo-switch-off-thumb-disabled-gradient,
|
|
230
259
|
$kendo-switch-on-track-bg: $kendo-switch-on-track-bg,
|
|
231
260
|
$kendo-switch-on-track-text: $kendo-switch-on-track-text,
|
|
232
261
|
$kendo-switch-on-track-border: $kendo-switch-on-track-border,
|
|
@@ -251,5 +280,9 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
251
280
|
$kendo-switch-on-thumb-hover-bg: $kendo-switch-on-thumb-hover-bg,
|
|
252
281
|
$kendo-switch-on-thumb-hover-text: $kendo-switch-on-thumb-hover-text,
|
|
253
282
|
$kendo-switch-on-thumb-hover-border: $kendo-switch-on-thumb-hover-border,
|
|
254
|
-
$kendo-switch-on-thumb-hover-gradient: $kendo-switch-on-thumb-hover-gradient
|
|
283
|
+
$kendo-switch-on-thumb-hover-gradient: $kendo-switch-on-thumb-hover-gradient,
|
|
284
|
+
$kendo-switch-on-thumb-disabled-bg: $kendo-switch-on-thumb-disabled-bg,
|
|
285
|
+
$kendo-switch-on-thumb-disabled-text: $kendo-switch-on-thumb-disabled-text,
|
|
286
|
+
$kendo-switch-on-thumb-disabled-border: $kendo-switch-on-track-disabled-border,
|
|
287
|
+
$kendo-switch-on-thumb-disabled-gradient: $kendo-switch-on-thumb-disabled-gradient,
|
|
255
288
|
);
|
|
@@ -16,6 +16,9 @@ $kendo-time-selector-border: k-color(border) !default;
|
|
|
16
16
|
$kendo-time-selector-header-padding-x: $kendo-actions-padding-x !default;
|
|
17
17
|
$kendo-time-selector-header-padding-y: $kendo-actions-padding-y !default;
|
|
18
18
|
$kendo-time-selector-header-border-width: 0px !default;
|
|
19
|
+
$kendo-time-selector-header-title-text: unset !default;
|
|
20
|
+
$kendo-time-selector-header-time-now-text: k-color(primary) !default;
|
|
21
|
+
$kendo-time-selector-header-time-now-hover-text: k-color(primary-hover) !default;
|
|
19
22
|
|
|
20
23
|
$kendo-time-list-width: 4em !default;
|
|
21
24
|
$kendo-time-list-height: 240px !default;
|
|
@@ -88,6 +91,9 @@ $kendo-time-selector-now-button-hover-text: k-color(primary-hover) !default;
|
|
|
88
91
|
$kendo-time-selector-header-padding-x: $kendo-time-selector-header-padding-x,
|
|
89
92
|
$kendo-time-selector-header-padding-y: $kendo-time-selector-header-padding-y,
|
|
90
93
|
$kendo-time-selector-header-border-width: $kendo-time-selector-header-border-width,
|
|
94
|
+
$kendo-time-selector-header-title-text: $kendo-time-selector-header-title-text,
|
|
95
|
+
$kendo-time-selector-header-time-now-text: $kendo-time-selector-header-time-now-text,
|
|
96
|
+
$kendo-time-selector-header-time-now-hover-text: $kendo-time-selector-header-time-now-hover-text,
|
|
91
97
|
$kendo-time-list-width: $kendo-time-list-width,
|
|
92
98
|
$kendo-time-list-height: $kendo-time-list-height,
|
|
93
99
|
$kendo-time-list-title-font-size: $kendo-time-list-title-font-size,
|