@progress/kendo-theme-bootstrap 7.1.0 → 7.2.0-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 +8 -4
- package/dist/all.scss +28 -25
- package/dist/meta/sassdoc-data.json +244 -244
- package/dist/meta/sassdoc-raw-data.json +120 -120
- package/dist/meta/variables.json +41 -41
- 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 +20 -0
- package/scss/core/color-system/_swatch.scss +1 -22
package/dist/all.css
CHANGED
|
@@ -32785,20 +32785,20 @@ select.k-picker-lg {
|
|
|
32785
32785
|
.k-input-solid {
|
|
32786
32786
|
border-color: #ced4da;
|
|
32787
32787
|
color: #212529;
|
|
32788
|
-
background-color: #
|
|
32788
|
+
background-color: #ffffff;
|
|
32789
32789
|
}
|
|
32790
32790
|
|
|
32791
32791
|
.k-input-solid:focus, .k-input-solid.k-focus {
|
|
32792
32792
|
border-color: #86b7fe;
|
|
32793
32793
|
color: #212529;
|
|
32794
|
-
background-color: #
|
|
32794
|
+
background-color: #ffffff;
|
|
32795
32795
|
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
|
32796
32796
|
}
|
|
32797
32797
|
|
|
32798
32798
|
.k-input-solid:focus-within {
|
|
32799
32799
|
border-color: #86b7fe;
|
|
32800
32800
|
color: #212529;
|
|
32801
|
-
background-color: #
|
|
32801
|
+
background-color: #ffffff;
|
|
32802
32802
|
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
|
32803
32803
|
}
|
|
32804
32804
|
|
|
@@ -33288,6 +33288,10 @@ select.k-picker-lg {
|
|
|
33288
33288
|
margin-inline-end: -0.375rem;
|
|
33289
33289
|
}
|
|
33290
33290
|
|
|
33291
|
+
.k-textarea:has(.k-input-inner[style*="width"]) {
|
|
33292
|
+
width: max-content;
|
|
33293
|
+
}
|
|
33294
|
+
|
|
33291
33295
|
.k-listbox {
|
|
33292
33296
|
width: 10em;
|
|
33293
33297
|
height: 200px;
|
|
@@ -51538,7 +51542,7 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
51538
51542
|
display: flex;
|
|
51539
51543
|
flex-direction: column;
|
|
51540
51544
|
flex: 1;
|
|
51541
|
-
align-items: start;
|
|
51545
|
+
align-items: flex-start;
|
|
51542
51546
|
gap: 0.5rem;
|
|
51543
51547
|
}
|
|
51544
51548
|
|
package/dist/all.scss
CHANGED
|
@@ -1800,6 +1800,29 @@ $kendo-gradient-white-to-transparent: white, rgba(white, 0); // stylelint-disabl
|
|
|
1800
1800
|
/// @group color-system
|
|
1801
1801
|
$kendo-gradient-rainbow: #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000; // stylelint-disable-line scss/dollar-variable-default
|
|
1802
1802
|
|
|
1803
|
+
// #endregion
|
|
1804
|
+
// #region @import "../../_bootstrap-overrides.scss"; -> scss/_bootstrap-overrides.scss
|
|
1805
|
+
$gray-100: #f8f9fa !default;
|
|
1806
|
+
$gray-200: #e9ecef !default;
|
|
1807
|
+
$gray-300: #dee2e6 !default;
|
|
1808
|
+
$gray-400: #ced4da !default;
|
|
1809
|
+
$gray-500: #adb5bd !default;
|
|
1810
|
+
$gray-600: #6c757d !default;
|
|
1811
|
+
$gray-700: #495057 !default;
|
|
1812
|
+
$gray-800: #343a40 !default;
|
|
1813
|
+
$gray-900: #212529 !default;
|
|
1814
|
+
|
|
1815
|
+
$kendo-body-bg: #ffffff !default;
|
|
1816
|
+
|
|
1817
|
+
$kendo-component-bg: $kendo-body-bg !default;
|
|
1818
|
+
$kendo-component-text: k-contrast-color( $kendo-component-bg, $gray-900, $gray-100 ) !default;
|
|
1819
|
+
$kendo-component-border: if( k-is-light( $kendo-component-bg ), $gray-300, $gray-700 ) !default;
|
|
1820
|
+
|
|
1821
|
+
$input-bg: $kendo-component-bg !default;
|
|
1822
|
+
$input-color: k-contrast-color( $input-bg, $gray-900, $gray-300 ) !default;
|
|
1823
|
+
$input-border-color: if( k-is-light( $input-bg ), $gray-400, $gray-600 ) !default;
|
|
1824
|
+
$input-placeholder-color: k-contrast-color( $input-bg, $gray-600, $gray-400 ) !default;
|
|
1825
|
+
|
|
1803
1826
|
// #endregion
|
|
1804
1827
|
// #region @import "bootstrap/scss/_functions.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/bootstrap/scss/_functions.scss
|
|
1805
1828
|
// Bootstrap functions
|
|
@@ -4097,28 +4120,6 @@ $kendo-colors: $_default-colors !default;
|
|
|
4097
4120
|
|
|
4098
4121
|
$kendo-is-dark-theme: false !default;
|
|
4099
4122
|
|
|
4100
|
-
$gray-100: #f8f9fa !default;
|
|
4101
|
-
$gray-200: #e9ecef !default;
|
|
4102
|
-
$gray-300: #dee2e6 !default;
|
|
4103
|
-
$gray-400: #ced4da !default;
|
|
4104
|
-
$gray-500: #adb5bd !default;
|
|
4105
|
-
$gray-600: #6c757d !default;
|
|
4106
|
-
$gray-700: #495057 !default;
|
|
4107
|
-
$gray-800: #343a40 !default;
|
|
4108
|
-
$gray-900: #212529 !default;
|
|
4109
|
-
|
|
4110
|
-
$kendo-body-bg: #ffffff !default;
|
|
4111
|
-
|
|
4112
|
-
$kendo-component-bg: $kendo-body-bg !default;
|
|
4113
|
-
$kendo-component-text: k-contrast-color( $kendo-component-bg, $gray-900, $gray-100 ) !default;
|
|
4114
|
-
$kendo-component-border: if( k-is-light( $kendo-component-bg ), $gray-300, $gray-700 ) !default;
|
|
4115
|
-
|
|
4116
|
-
$input-bg: $kendo-component-bg !default;
|
|
4117
|
-
$input-color: k-contrast-color( $input-bg, $gray-900, $gray-300 ) !default;
|
|
4118
|
-
$input-border-color: if( k-is-light( $input-bg ), $gray-400, $gray-600 ) !default;
|
|
4119
|
-
$input-placeholder-color: k-contrast-color( $input-bg, $gray-600, $gray-400 ) !default;
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
4123
|
// Theme colors
|
|
4123
4124
|
/// The color that focuses the user attention.
|
|
4124
4125
|
/// Used for primary buttons and for elements of primary importance across the theme.
|
|
@@ -28942,7 +28943,9 @@ $_kendo-module-meta: (
|
|
|
28942
28943
|
@mixin kendo-textarea--layout-base() {
|
|
28943
28944
|
|
|
28944
28945
|
// Textarea
|
|
28945
|
-
.k-textarea {
|
|
28946
|
+
.k-textarea:has(.k-input-inner[style*="width"]) {
|
|
28947
|
+
width: max-content;
|
|
28948
|
+
}
|
|
28946
28949
|
|
|
28947
28950
|
}
|
|
28948
28951
|
|
|
@@ -30219,7 +30222,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
30219
30222
|
// Ripple
|
|
30220
30223
|
.k-ripple-container {
|
|
30221
30224
|
.k-radio::after {
|
|
30222
|
-
background: $kendo-radio-
|
|
30225
|
+
background: $kendo-radio-ripple-bg;
|
|
30223
30226
|
opacity: $kendo-radio-ripple-opacity;
|
|
30224
30227
|
}
|
|
30225
30228
|
}
|
|
@@ -61597,7 +61600,7 @@ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
|
61597
61600
|
display: flex;
|
|
61598
61601
|
flex-direction: column;
|
|
61599
61602
|
flex: 1;
|
|
61600
|
-
align-items: start;
|
|
61603
|
+
align-items: flex-start;
|
|
61601
61604
|
gap: $kendo-prompt-expander-spacing;
|
|
61602
61605
|
}
|
|
61603
61606
|
|