@progress/kendo-theme-bootstrap 9.1.0-dev.0 → 9.1.0-dev.2
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/all.scss +212 -129
- 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 +28848 -26634
- package/dist/meta/sassdoc-raw-data.json +1349 -324
- package/dist/meta/variables.json +52 -24
- 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 +6 -6
- package/scss/loader/_variables.scss +0 -4
- package/scss/menu/_variables.scss +141 -43
- package/scss/tabstrip/_variables.scss +4 -1
|
@@ -98,6 +98,9 @@ $kendo-tabstrip-item-selected-border: $kendo-component-border !default;
|
|
|
98
98
|
/// The gradient of the selected TabStrip items.
|
|
99
99
|
/// @group tabstrip
|
|
100
100
|
$kendo-tabstrip-item-selected-gradient: null !default;
|
|
101
|
+
/// The font weight of the selected TabStrip items.
|
|
102
|
+
/// @group tabstrip
|
|
103
|
+
$kendo-tabstrip-item-selected-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
101
104
|
|
|
102
105
|
/// The shadow of the focused TabStrip items.
|
|
103
106
|
/// @group tabstrip
|
|
@@ -112,7 +115,7 @@ $kendo-tabstrip-item-dragging-shadow: k-elevation(3) !default;
|
|
|
112
115
|
$kendo-tabstrip-item-disabled-bg: null !default;
|
|
113
116
|
/// The text color of the disabled TabStrip items.
|
|
114
117
|
/// @group tabstrip
|
|
115
|
-
$kendo-tabstrip-item-disabled-text:
|
|
118
|
+
$kendo-tabstrip-item-disabled-text: $kendo-component-text !default;
|
|
116
119
|
/// The border color of the disabled TabStrip items.
|
|
117
120
|
/// @group tabstrip
|
|
118
121
|
$kendo-tabstrip-item-disabled-border: null !default;
|