@progress/kendo-theme-bootstrap 7.1.0-dev.9 → 7.1.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 +32 -17
- package/dist/all.scss +53 -37
- 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
|
@@ -32293,17 +32293,22 @@ textarea.k-input-inner {
|
|
|
32293
32293
|
margin: 0;
|
|
32294
32294
|
border-style: solid;
|
|
32295
32295
|
border-color: inherit;
|
|
32296
|
-
|
|
32297
|
-
|
|
32296
|
+
border-width: 0 0 0 1px;
|
|
32297
|
+
height: 16px;
|
|
32298
|
+
align-self: center;
|
|
32298
32299
|
}
|
|
32299
32300
|
|
|
32300
32301
|
.k-input-separator-horizontal {
|
|
32302
|
+
height: auto;
|
|
32301
32303
|
margin-inline: 0.375rem;
|
|
32304
|
+
align-self: stretch;
|
|
32302
32305
|
border-width: 1px 0 0;
|
|
32303
32306
|
}
|
|
32304
32307
|
|
|
32305
32308
|
.k-input-separator-vertical {
|
|
32309
|
+
height: auto;
|
|
32306
32310
|
margin-block: 0.375rem;
|
|
32311
|
+
align-self: stretch;
|
|
32307
32312
|
border-width: 0 0 0 1px;
|
|
32308
32313
|
}
|
|
32309
32314
|
|
|
@@ -32780,20 +32785,20 @@ select.k-picker-lg {
|
|
|
32780
32785
|
.k-input-solid {
|
|
32781
32786
|
border-color: #ced4da;
|
|
32782
32787
|
color: #212529;
|
|
32783
|
-
background-color: #
|
|
32788
|
+
background-color: #ffffff;
|
|
32784
32789
|
}
|
|
32785
32790
|
|
|
32786
32791
|
.k-input-solid:focus, .k-input-solid.k-focus {
|
|
32787
32792
|
border-color: #86b7fe;
|
|
32788
32793
|
color: #212529;
|
|
32789
|
-
background-color: #
|
|
32794
|
+
background-color: #ffffff;
|
|
32790
32795
|
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
|
32791
32796
|
}
|
|
32792
32797
|
|
|
32793
32798
|
.k-input-solid:focus-within {
|
|
32794
32799
|
border-color: #86b7fe;
|
|
32795
32800
|
color: #212529;
|
|
32796
|
-
background-color: #
|
|
32801
|
+
background-color: #ffffff;
|
|
32797
32802
|
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
|
|
32798
32803
|
}
|
|
32799
32804
|
|
|
@@ -33150,8 +33155,8 @@ select.k-picker-lg {
|
|
|
33150
33155
|
white-space: nowrap;
|
|
33151
33156
|
text-overflow: ellipsis;
|
|
33152
33157
|
position: absolute;
|
|
33153
|
-
top: calc(1.875rem + 1px);
|
|
33154
|
-
left: calc(0.75rem + 1px);
|
|
33158
|
+
top: var(--kendo-floating-label-offset-y, calc(1.875rem + 1px));
|
|
33159
|
+
left: var(--kendo-floating-label-offset-x, calc(0.75rem + 1px));
|
|
33155
33160
|
overflow: hidden;
|
|
33156
33161
|
cursor: text;
|
|
33157
33162
|
transform-origin: left center;
|
|
@@ -33164,22 +33169,22 @@ select.k-picker-lg {
|
|
|
33164
33169
|
}
|
|
33165
33170
|
|
|
33166
33171
|
.k-floating-label-container.k-empty > .k-label {
|
|
33167
|
-
top: calc(1.875rem + 1px);
|
|
33168
|
-
left: calc(0.75rem + 1px);
|
|
33172
|
+
top: var(--kendo-floating-label-offset-y, calc(1.875rem + 1px));
|
|
33173
|
+
left: var(--kendo-floating-label-offset-x, calc(0.75rem + 1px));
|
|
33169
33174
|
transform: scale(1);
|
|
33170
33175
|
pointer-events: none;
|
|
33171
33176
|
}
|
|
33172
33177
|
|
|
33173
33178
|
.k-floating-label-container > .k-label,
|
|
33174
33179
|
.k-floating-label-container.k-focus > .k-label {
|
|
33175
|
-
top: 0;
|
|
33176
|
-
left: 0;
|
|
33180
|
+
top: var(--kendo-floating-label-focus-offset-y, 0);
|
|
33181
|
+
left: var(--kendo-floating-label-focus-offset-x, 0);
|
|
33177
33182
|
transform: scale(1);
|
|
33178
33183
|
}
|
|
33179
33184
|
|
|
33180
33185
|
.k-floating-label-container:focus-within > .k-label {
|
|
33181
|
-
top: 0;
|
|
33182
|
-
left: 0;
|
|
33186
|
+
top: var(--kendo-floating-label-focus-offset-y, 0);
|
|
33187
|
+
left: var(--kendo-floating-label-focus-offset-x, 0);
|
|
33183
33188
|
transform: scale(1);
|
|
33184
33189
|
}
|
|
33185
33190
|
|
|
@@ -33200,7 +33205,7 @@ select.k-picker-lg {
|
|
|
33200
33205
|
[dir="rtl"] .k-floating-label-container.k-empty > .k-label,
|
|
33201
33206
|
.k-rtl .k-floating-label-container.k-empty > .k-label, .k-floating-label-container[dir="rtl"].k-empty > .k-label {
|
|
33202
33207
|
left: auto;
|
|
33203
|
-
right: calc(0.75rem + 1px);
|
|
33208
|
+
right: var(--kendo-floating-label-offset-x, calc(0.75rem + 1px));
|
|
33204
33209
|
}
|
|
33205
33210
|
|
|
33206
33211
|
[dir="rtl"] .k-floating-label-container > .k-label,
|
|
@@ -33209,13 +33214,13 @@ select.k-picker-lg {
|
|
|
33209
33214
|
.k-rtl .k-floating-label-container.k-focus > .k-label, .k-floating-label-container[dir="rtl"] > .k-label,
|
|
33210
33215
|
.k-floating-label-container[dir="rtl"].k-focus > .k-label {
|
|
33211
33216
|
left: auto;
|
|
33212
|
-
right: 0;
|
|
33217
|
+
right: var(--kendo-floating-label-focus-offset-x, 0);
|
|
33213
33218
|
}
|
|
33214
33219
|
|
|
33215
33220
|
[dir="rtl"] .k-floating-label-container:focus-within > .k-label,
|
|
33216
33221
|
.k-rtl .k-floating-label-container:focus-within > .k-label, .k-floating-label-container[dir="rtl"]:focus-within > .k-label {
|
|
33217
33222
|
left: auto;
|
|
33218
|
-
right: 0;
|
|
33223
|
+
right: var(--kendo-floating-label-focus-offset-x, 0);
|
|
33219
33224
|
}
|
|
33220
33225
|
|
|
33221
33226
|
.k-floating-label-container.k-invalid > .k-label,
|
|
@@ -33283,6 +33288,10 @@ select.k-picker-lg {
|
|
|
33283
33288
|
margin-inline-end: -0.375rem;
|
|
33284
33289
|
}
|
|
33285
33290
|
|
|
33291
|
+
.k-textarea:has(.k-input-inner[style*="width"]) {
|
|
33292
|
+
width: max-content;
|
|
33293
|
+
}
|
|
33294
|
+
|
|
33286
33295
|
.k-listbox {
|
|
33287
33296
|
width: 10em;
|
|
33288
33297
|
height: 200px;
|
|
@@ -47971,6 +47980,12 @@ kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
|
47971
47980
|
display: flex;
|
|
47972
47981
|
}
|
|
47973
47982
|
|
|
47983
|
+
.k-gantt-timeline-pane .k-gantt-timeline *,
|
|
47984
|
+
.k-gantt-timeline-pane .k-gantt-timeline *::before,
|
|
47985
|
+
.k-gantt-timeline-pane .k-gantt-timeline *::after, .k-gantt-timeline-pane .k-gantt-timeline::before, .k-gantt-timeline-pane .k-gantt-timeline::after {
|
|
47986
|
+
box-sizing: border-box;
|
|
47987
|
+
}
|
|
47988
|
+
|
|
47974
47989
|
.k-gantt-timeline-pane .k-grid-content {
|
|
47975
47990
|
overflow-x: scroll;
|
|
47976
47991
|
}
|
|
@@ -51527,7 +51542,7 @@ kendo-scrollview.k-scrollview .k-scrollview-nav {
|
|
|
51527
51542
|
display: flex;
|
|
51528
51543
|
flex-direction: column;
|
|
51529
51544
|
flex: 1;
|
|
51530
|
-
align-items: start;
|
|
51545
|
+
align-items: flex-start;
|
|
51531
51546
|
gap: 0.5rem;
|
|
51532
51547
|
}
|
|
51533
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.
|
|
@@ -27289,16 +27290,21 @@ $_kendo-module-meta: (
|
|
|
27289
27290
|
margin: 0;
|
|
27290
27291
|
border-style: solid;
|
|
27291
27292
|
border-color: inherit;
|
|
27292
|
-
|
|
27293
|
-
|
|
27293
|
+
border-width: 0 0 0 1px;
|
|
27294
|
+
height: $kendo-icon-size;
|
|
27295
|
+
align-self: center;
|
|
27294
27296
|
|
|
27295
27297
|
&-horizontal {
|
|
27298
|
+
height: auto;
|
|
27296
27299
|
margin-inline: $kendo-input-md-padding-y;
|
|
27300
|
+
align-self: stretch;
|
|
27297
27301
|
border-width: 1px 0 0;
|
|
27298
27302
|
}
|
|
27299
27303
|
|
|
27300
27304
|
&-vertical {
|
|
27305
|
+
height: auto;
|
|
27301
27306
|
margin-block: $kendo-input-md-padding-y;
|
|
27307
|
+
align-self: stretch;
|
|
27302
27308
|
border-width: 0 0 0 1px;
|
|
27303
27309
|
}
|
|
27304
27310
|
}
|
|
@@ -28351,8 +28357,8 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
28351
28357
|
white-space: nowrap;
|
|
28352
28358
|
text-overflow: ellipsis;
|
|
28353
28359
|
position: absolute;
|
|
28354
|
-
top: $kendo-floating-label-offset-y;
|
|
28355
|
-
left: $kendo-floating-label-offset-x;
|
|
28360
|
+
top: var(--kendo-floating-label-offset-y, #{$kendo-floating-label-offset-y});
|
|
28361
|
+
left: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
|
|
28356
28362
|
overflow: hidden;
|
|
28357
28363
|
cursor: text;
|
|
28358
28364
|
transform-origin: left center;
|
|
@@ -28366,8 +28372,8 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
28366
28372
|
|
|
28367
28373
|
&.k-empty {
|
|
28368
28374
|
> .k-label {
|
|
28369
|
-
top: $kendo-floating-label-offset-y;
|
|
28370
|
-
left: $kendo-floating-label-offset-x;
|
|
28375
|
+
top: var(--kendo-floating-label-offset-y, #{$kendo-floating-label-offset-y});
|
|
28376
|
+
left: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
|
|
28371
28377
|
transform: scale( $kendo-floating-label-scale );
|
|
28372
28378
|
pointer-events: none;
|
|
28373
28379
|
}
|
|
@@ -28375,13 +28381,13 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
28375
28381
|
|
|
28376
28382
|
> .k-label,
|
|
28377
28383
|
&.k-focus > .k-label {
|
|
28378
|
-
top: $kendo-floating-label-focus-offset-y;
|
|
28379
|
-
left: $kendo-floating-label-focus-offset-x;
|
|
28384
|
+
top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
|
|
28385
|
+
left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
28380
28386
|
transform: scale( $kendo-floating-label-focus-scale );
|
|
28381
28387
|
}
|
|
28382
28388
|
&:focus-within > .k-label {
|
|
28383
|
-
top: $kendo-floating-label-focus-offset-y;
|
|
28384
|
-
left: $kendo-floating-label-focus-offset-x;
|
|
28389
|
+
top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
|
|
28390
|
+
left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
28385
28391
|
transform: scale( $kendo-floating-label-focus-scale );
|
|
28386
28392
|
}
|
|
28387
28393
|
|
|
@@ -28401,18 +28407,18 @@ $kendo-floating-label-focus-text: null !default;
|
|
|
28401
28407
|
&.k-empty {
|
|
28402
28408
|
> .k-label {
|
|
28403
28409
|
left: auto;
|
|
28404
|
-
right: $kendo-floating-label-offset-x;
|
|
28410
|
+
right: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
|
|
28405
28411
|
}
|
|
28406
28412
|
}
|
|
28407
28413
|
|
|
28408
28414
|
> .k-label,
|
|
28409
28415
|
&.k-focus > .k-label {
|
|
28410
28416
|
left: auto;
|
|
28411
|
-
right: $kendo-floating-label-focus-offset-x;
|
|
28417
|
+
right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
28412
28418
|
}
|
|
28413
28419
|
&:focus-within > .k-label {
|
|
28414
28420
|
left: auto;
|
|
28415
|
-
right: $kendo-floating-label-focus-offset-x;
|
|
28421
|
+
right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
|
|
28416
28422
|
}
|
|
28417
28423
|
}
|
|
28418
28424
|
}
|
|
@@ -28937,7 +28943,9 @@ $_kendo-module-meta: (
|
|
|
28937
28943
|
@mixin kendo-textarea--layout-base() {
|
|
28938
28944
|
|
|
28939
28945
|
// Textarea
|
|
28940
|
-
.k-textarea {
|
|
28946
|
+
.k-textarea:has(.k-input-inner[style*="width"]) {
|
|
28947
|
+
width: max-content;
|
|
28948
|
+
}
|
|
28941
28949
|
|
|
28942
28950
|
}
|
|
28943
28951
|
|
|
@@ -56278,6 +56286,14 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
|
|
|
56278
56286
|
height: 100%;
|
|
56279
56287
|
border-width: 0;
|
|
56280
56288
|
display: flex;
|
|
56289
|
+
|
|
56290
|
+
*,
|
|
56291
|
+
*::before,
|
|
56292
|
+
*::after,
|
|
56293
|
+
&::before,
|
|
56294
|
+
&::after {
|
|
56295
|
+
box-sizing: border-box;
|
|
56296
|
+
}
|
|
56281
56297
|
}
|
|
56282
56298
|
.k-grid-header {}
|
|
56283
56299
|
.k-grid-content {
|
|
@@ -61584,7 +61600,7 @@ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
|
|
|
61584
61600
|
display: flex;
|
|
61585
61601
|
flex-direction: column;
|
|
61586
61602
|
flex: 1;
|
|
61587
|
-
align-items: start;
|
|
61603
|
+
align-items: flex-start;
|
|
61588
61604
|
gap: $kendo-prompt-expander-spacing;
|
|
61589
61605
|
}
|
|
61590
61606
|
|