@progress/kendo-theme-bootstrap 6.5.0 → 6.5.1-dev.0
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 +3 -3
- package/dist/all.scss +25 -24
- package/dist/meta/sassdoc-data.json +292 -292
- package/dist/meta/sassdoc-raw-data.json +144 -144
- package/dist/meta/variables.json +44 -44
- 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 +5 -5
- package/scss/_bootstrap-overrides.scss +2 -2
- package/scss/_variables.scss +2 -1
- package/scss/core/_index.scss +0 -1
package/dist/all.css
CHANGED
|
@@ -36829,20 +36829,20 @@ select.k-picker-lg {
|
|
|
36829
36829
|
.k-input-solid {
|
|
36830
36830
|
border-color: #ced4da;
|
|
36831
36831
|
color: #212529;
|
|
36832
|
-
background-color: #
|
|
36832
|
+
background-color: #ffffff;
|
|
36833
36833
|
}
|
|
36834
36834
|
|
|
36835
36835
|
.k-input-solid:focus, .k-input-solid.k-focus {
|
|
36836
36836
|
border-color: #86b7fe;
|
|
36837
36837
|
color: #212529;
|
|
36838
|
-
background-color: #
|
|
36838
|
+
background-color: #ffffff;
|
|
36839
36839
|
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
|
36840
36840
|
}
|
|
36841
36841
|
|
|
36842
36842
|
.k-input-solid:focus-within {
|
|
36843
36843
|
border-color: #86b7fe;
|
|
36844
36844
|
color: #212529;
|
|
36845
|
-
background-color: #
|
|
36845
|
+
background-color: #ffffff;
|
|
36846
36846
|
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
|
36847
36847
|
}
|
|
36848
36848
|
|
package/dist/all.scss
CHANGED
|
@@ -1729,6 +1729,31 @@ $svg-escaped-characters: (
|
|
|
1729
1729
|
|
|
1730
1730
|
// #endregion
|
|
1731
1731
|
|
|
1732
|
+
// #endregion
|
|
1733
|
+
// #region @import "./_bootstrap-overrides.scss"; -> scss/_bootstrap-overrides.scss
|
|
1734
|
+
$kendo-is-dark-theme: false !default;
|
|
1735
|
+
|
|
1736
|
+
$gray-100: #f8f9fa !default;
|
|
1737
|
+
$gray-200: #e9ecef !default;
|
|
1738
|
+
$gray-300: #dee2e6 !default;
|
|
1739
|
+
$gray-400: #ced4da !default;
|
|
1740
|
+
$gray-500: #adb5bd !default;
|
|
1741
|
+
$gray-600: #6c757d !default;
|
|
1742
|
+
$gray-700: #495057 !default;
|
|
1743
|
+
$gray-800: #343a40 !default;
|
|
1744
|
+
$gray-900: #212529 !default;
|
|
1745
|
+
|
|
1746
|
+
$kendo-body-bg: #ffffff !default;
|
|
1747
|
+
|
|
1748
|
+
$kendo-component-bg: $kendo-body-bg !default;
|
|
1749
|
+
$kendo-component-text: k-contrast-color( $kendo-component-bg, $gray-900, $gray-100 ) !default;
|
|
1750
|
+
$kendo-component-border: if( k-is-light( $kendo-component-bg ), $gray-300, $gray-700 ) !default;
|
|
1751
|
+
|
|
1752
|
+
$input-bg: $kendo-component-bg !default;
|
|
1753
|
+
$input-color: k-contrast-color( $input-bg, $gray-900, $gray-300 ) !default;
|
|
1754
|
+
$input-border-color: if( k-is-light( $input-bg ), $gray-400, $gray-600 ) !default;
|
|
1755
|
+
$input-placeholder-color: k-contrast-color( $input-bg, $gray-600, $gray-400 ) !default;
|
|
1756
|
+
|
|
1732
1757
|
// #endregion
|
|
1733
1758
|
// #region @import "bootstrap/scss/_functions.scss"; -> node_modules/bootstrap/scss/_functions.scss
|
|
1734
1759
|
// Bootstrap functions
|
|
@@ -4041,30 +4066,6 @@ $kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
|
4041
4066
|
// Loading
|
|
4042
4067
|
$kendo-loading-opacity: .3 !default;
|
|
4043
4068
|
$kendo-zindex-loading: 100 !default;
|
|
4044
|
-
// #endregion
|
|
4045
|
-
// #region @import "../_bootstrap-overrides.scss"; -> scss/_bootstrap-overrides.scss
|
|
4046
|
-
$kendo-is-dark-theme: false !default;
|
|
4047
|
-
|
|
4048
|
-
$gray-100: #f8f9fa !default;
|
|
4049
|
-
$gray-200: #e9ecef !default;
|
|
4050
|
-
$gray-300: #dee2e6 !default;
|
|
4051
|
-
$gray-400: #ced4da !default;
|
|
4052
|
-
$gray-500: #adb5bd !default;
|
|
4053
|
-
$gray-600: #6c757d !default;
|
|
4054
|
-
$gray-700: #495057 !default;
|
|
4055
|
-
$gray-800: #343a40 !default;
|
|
4056
|
-
$gray-900: #212529 !default;
|
|
4057
|
-
|
|
4058
|
-
$kendo-body-bg: $kendo-color-white !default;
|
|
4059
|
-
|
|
4060
|
-
$kendo-component-bg: $kendo-body-bg !default;
|
|
4061
|
-
$kendo-component-text: k-contrast-color( $kendo-component-bg, $gray-900, $gray-100 ) !default;
|
|
4062
|
-
$kendo-component-border: if( k-is-light( $kendo-component-bg ), $gray-300, $gray-700 ) !default;
|
|
4063
|
-
|
|
4064
|
-
$input-bg: $kendo-component-bg !default;
|
|
4065
|
-
$input-color: k-contrast-color( $input-bg, $gray-700, $gray-300 ) !default;
|
|
4066
|
-
$input-border-color: if( k-is-light( $input-bg ), $gray-400, $gray-600 ) !default;
|
|
4067
|
-
$input-placeholder-color: k-contrast-color( $input-bg, $gray-600, $gray-400 ) !default;
|
|
4068
4069
|
|
|
4069
4070
|
// #endregion
|
|
4070
4071
|
|