@progress/kendo-theme-bootstrap 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/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 +4694 -2996
- package/dist/meta/sassdoc-raw-data.json +2237 -1462
- package/dist/meta/variables.json +249 -37
- 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 +5 -0
- package/scss/button/_variables.scss +4 -0
- package/scss/calendar/_variables.scss +20 -1
- package/scss/chip/_theme.scss +2 -2
- package/scss/chip/_variables.scss +19 -0
- package/scss/colorgradient/_variables.scss +2 -32
- package/scss/dialog/_variables.scss +5 -0
- package/scss/drawer/_variables.scss +26 -1
- package/scss/list/_variables.scss +80 -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 +35 -1
- package/scss/timeselector/_variables.scss +6 -0
|
@@ -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,
|