@progress/kendo-theme-bootstrap 5.2.1-dev.6 → 5.3.2-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 +129 -9
- package/dist/all.scss +90 -12
- 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 +3 -3
- package/scss/button/_variables.scss +1 -1
- package/scss/scheduler/_variables.scss +2 -0
- package/scss/utils/_aspect-ratio.scss +1 -0
- package/scss/utils/_index.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -1416,6 +1416,22 @@ kendo-sortable {
|
|
|
1416
1416
|
background-color: #f8f9fa;
|
|
1417
1417
|
}
|
|
1418
1418
|
|
|
1419
|
+
.k-aspect-ratio-auto {
|
|
1420
|
+
aspect-ratio: auto;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
.\!k-aspect-ratio-auto {
|
|
1424
|
+
aspect-ratio: auto !important;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.k-aspect-ratio-1 {
|
|
1428
|
+
aspect-ratio: 1;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
.\!k-aspect-ratio-1 {
|
|
1432
|
+
aspect-ratio: 1 !important;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1419
1435
|
.k-border {
|
|
1420
1436
|
border-width: 1px !important;
|
|
1421
1437
|
}
|
|
@@ -6095,6 +6111,10 @@ kendo-sortable {
|
|
|
6095
6111
|
}
|
|
6096
6112
|
|
|
6097
6113
|
.k-text-nowrap {
|
|
6114
|
+
white-space: nowrap;
|
|
6115
|
+
}
|
|
6116
|
+
|
|
6117
|
+
.\!k-text-nowrap {
|
|
6098
6118
|
white-space: nowrap !important;
|
|
6099
6119
|
}
|
|
6100
6120
|
|
|
@@ -6104,51 +6124,147 @@ kendo-sortable {
|
|
|
6104
6124
|
text-overflow: ellipsis;
|
|
6105
6125
|
}
|
|
6106
6126
|
|
|
6127
|
+
.k-white-space-normal {
|
|
6128
|
+
white-space: normal;
|
|
6129
|
+
}
|
|
6130
|
+
|
|
6131
|
+
.\!k-white-space-normal {
|
|
6132
|
+
white-space: normal !important;
|
|
6133
|
+
}
|
|
6134
|
+
|
|
6135
|
+
.k-white-space-nowrap {
|
|
6136
|
+
white-space: nowrap;
|
|
6137
|
+
}
|
|
6138
|
+
|
|
6139
|
+
.\!k-white-space-nowrap {
|
|
6140
|
+
white-space: nowrap !important;
|
|
6141
|
+
}
|
|
6142
|
+
|
|
6143
|
+
.k-white-space-pre {
|
|
6144
|
+
white-space: pre;
|
|
6145
|
+
}
|
|
6146
|
+
|
|
6147
|
+
.\!k-white-space-pre {
|
|
6148
|
+
white-space: pre !important;
|
|
6149
|
+
}
|
|
6150
|
+
|
|
6151
|
+
.k-white-space-pre-wrap {
|
|
6152
|
+
white-space: pre-wrap;
|
|
6153
|
+
}
|
|
6154
|
+
|
|
6155
|
+
.\!k-white-space-pre-wrap {
|
|
6156
|
+
white-space: pre-wrap !important;
|
|
6157
|
+
}
|
|
6158
|
+
|
|
6159
|
+
.k-white-space-pre-line {
|
|
6160
|
+
white-space: pre-line;
|
|
6161
|
+
}
|
|
6162
|
+
|
|
6163
|
+
.\!k-white-space-pre-line {
|
|
6164
|
+
white-space: pre-line !important;
|
|
6165
|
+
}
|
|
6166
|
+
|
|
6167
|
+
.k-white-space-break-spaces {
|
|
6168
|
+
white-space: break-spaces;
|
|
6169
|
+
}
|
|
6170
|
+
|
|
6171
|
+
.\!k-white-space-break-spaces {
|
|
6172
|
+
white-space: break-spaces !important;
|
|
6173
|
+
}
|
|
6174
|
+
|
|
6107
6175
|
.k-text-left {
|
|
6176
|
+
text-align: left;
|
|
6177
|
+
}
|
|
6178
|
+
|
|
6179
|
+
.\!k-text-left {
|
|
6108
6180
|
text-align: left !important;
|
|
6109
6181
|
}
|
|
6110
6182
|
|
|
6111
6183
|
.k-text-right {
|
|
6184
|
+
text-align: right;
|
|
6185
|
+
}
|
|
6186
|
+
|
|
6187
|
+
.\!k-text-right {
|
|
6112
6188
|
text-align: right !important;
|
|
6113
6189
|
}
|
|
6114
6190
|
|
|
6115
6191
|
.k-text-center {
|
|
6192
|
+
text-align: center;
|
|
6193
|
+
}
|
|
6194
|
+
|
|
6195
|
+
.\!k-text-center {
|
|
6116
6196
|
text-align: center !important;
|
|
6117
6197
|
}
|
|
6118
6198
|
|
|
6119
6199
|
.k-text-justify {
|
|
6200
|
+
text-align: justify;
|
|
6201
|
+
}
|
|
6202
|
+
|
|
6203
|
+
.\!k-text-justify {
|
|
6120
6204
|
text-align: justify !important;
|
|
6121
6205
|
}
|
|
6122
6206
|
|
|
6123
6207
|
.k-text-lowercase {
|
|
6208
|
+
text-transform: lowercase;
|
|
6209
|
+
}
|
|
6210
|
+
|
|
6211
|
+
.\!k-text-lowercase {
|
|
6124
6212
|
text-transform: lowercase !important;
|
|
6125
6213
|
}
|
|
6126
6214
|
|
|
6127
6215
|
.k-text-uppercase {
|
|
6216
|
+
text-transform: uppercase;
|
|
6217
|
+
}
|
|
6218
|
+
|
|
6219
|
+
.\!k-text-uppercase {
|
|
6128
6220
|
text-transform: uppercase !important;
|
|
6129
6221
|
}
|
|
6130
6222
|
|
|
6131
6223
|
.k-text-capitalize {
|
|
6224
|
+
text-transform: capitalize;
|
|
6225
|
+
}
|
|
6226
|
+
|
|
6227
|
+
.\!k-text-capitalize {
|
|
6132
6228
|
text-transform: capitalize !important;
|
|
6133
6229
|
}
|
|
6134
6230
|
|
|
6135
6231
|
.k-fs-xs {
|
|
6232
|
+
font-size: 0.75rem;
|
|
6233
|
+
}
|
|
6234
|
+
|
|
6235
|
+
.\!k-fs-xs {
|
|
6136
6236
|
font-size: 0.75rem !important;
|
|
6137
6237
|
}
|
|
6138
6238
|
|
|
6139
6239
|
.k-fs-sm {
|
|
6240
|
+
font-size: 0.875rem;
|
|
6241
|
+
}
|
|
6242
|
+
|
|
6243
|
+
.\!k-fs-sm {
|
|
6140
6244
|
font-size: 0.875rem !important;
|
|
6141
6245
|
}
|
|
6142
6246
|
|
|
6143
6247
|
.k-fs-md {
|
|
6248
|
+
font-size: 1rem;
|
|
6249
|
+
}
|
|
6250
|
+
|
|
6251
|
+
.\!k-fs-md {
|
|
6144
6252
|
font-size: 1rem !important;
|
|
6145
6253
|
}
|
|
6146
6254
|
|
|
6147
6255
|
.k-fs-lg {
|
|
6256
|
+
font-size: 1.25rem;
|
|
6257
|
+
}
|
|
6258
|
+
|
|
6259
|
+
.\!k-fs-lg {
|
|
6148
6260
|
font-size: 1.25rem !important;
|
|
6149
6261
|
}
|
|
6150
6262
|
|
|
6151
6263
|
.k-fs-xl {
|
|
6264
|
+
font-size: 1.5rem;
|
|
6265
|
+
}
|
|
6266
|
+
|
|
6267
|
+
.\!k-fs-xl {
|
|
6152
6268
|
font-size: 1.5rem !important;
|
|
6153
6269
|
}
|
|
6154
6270
|
|
|
@@ -12060,7 +12176,6 @@ kendo-badge-container {
|
|
|
12060
12176
|
}
|
|
12061
12177
|
|
|
12062
12178
|
.k-icon-button {
|
|
12063
|
-
aspect-ratio: 1;
|
|
12064
12179
|
gap: 0;
|
|
12065
12180
|
}
|
|
12066
12181
|
|
|
@@ -14034,11 +14149,12 @@ textarea.k-input-inner {
|
|
|
14034
14149
|
transform: scale(1);
|
|
14035
14150
|
}
|
|
14036
14151
|
|
|
14037
|
-
.k-floating-label-container.k-state-empty:not(.k-state-focused) :-ms-input-placeholder {
|
|
14152
|
+
.k-floating-label-container.k-state-empty:not(.k-state-focused) :-ms-input-placeholder, .k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) :-ms-input-placeholder {
|
|
14038
14153
|
color: transparent;
|
|
14039
14154
|
}
|
|
14040
14155
|
|
|
14041
|
-
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder
|
|
14156
|
+
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
14157
|
+
.k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
14042
14158
|
color: transparent;
|
|
14043
14159
|
}
|
|
14044
14160
|
|
|
@@ -18997,7 +19113,7 @@ kendo-label > .k-label {
|
|
|
18997
19113
|
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
|
|
18998
19114
|
}
|
|
18999
19115
|
|
|
19000
|
-
.k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover {
|
|
19116
|
+
.k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover, .k-colorpalette-tile.k-selected, .k-colorpalette-tile.k-selected:hover {
|
|
19001
19117
|
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px white;
|
|
19002
19118
|
}
|
|
19003
19119
|
|
|
@@ -23273,6 +23389,7 @@ kendo-card-footer {
|
|
|
23273
23389
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
23274
23390
|
font-size: 1rem;
|
|
23275
23391
|
line-height: 1.5;
|
|
23392
|
+
white-space: nowrap;
|
|
23276
23393
|
display: flex;
|
|
23277
23394
|
align-items: center;
|
|
23278
23395
|
position: relative;
|
|
@@ -26128,7 +26245,7 @@ kendo-card-footer {
|
|
|
26128
26245
|
padding: 0;
|
|
26129
26246
|
width: auto;
|
|
26130
26247
|
height: auto;
|
|
26131
|
-
opacity: .5;
|
|
26248
|
+
opacity: 0.5;
|
|
26132
26249
|
}
|
|
26133
26250
|
|
|
26134
26251
|
.k-group-indicator .k-button-flat::before, .k-group-indicator .k-button-flat::after {
|
|
@@ -26548,8 +26665,7 @@ div.k-grid-footer {
|
|
|
26548
26665
|
}
|
|
26549
26666
|
|
|
26550
26667
|
.k-grid-content,
|
|
26551
|
-
.k-grid-content-locked
|
|
26552
|
-
.k-pager-wrap {
|
|
26668
|
+
.k-grid-content-locked {
|
|
26553
26669
|
white-space: normal;
|
|
26554
26670
|
}
|
|
26555
26671
|
|
|
@@ -31261,8 +31377,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31261
31377
|
|
|
31262
31378
|
.k-gantt .k-treelist-scrollable .k-task-summary {
|
|
31263
31379
|
height: 15px;
|
|
31264
|
-
|
|
31265
|
-
clip-path: polygon(-20px 0, calc(100% + 20px) 0, calc(100% + 20px) 100%, 100% 100%, calc(100% - 8px) calc(100% - 5px), 8px calc(100% - 5px), 0 100%, -20px 100%);
|
|
31380
|
+
clip-path: polygon(-20px 0, calc(100% + 20px) 0, calc(100% + 20px) 100%, 100% 100%, calc(100% - 8px) calc(100% - 5px), 8px calc(100% - 5px), 0 100%, -20px 100%);
|
|
31266
31381
|
}
|
|
31267
31382
|
|
|
31268
31383
|
.k-gantt .k-treelist-scrollable .k-task-summary-complete {
|
|
@@ -33309,6 +33424,10 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
33309
33424
|
color: black;
|
|
33310
33425
|
}
|
|
33311
33426
|
|
|
33427
|
+
.k-event-ongoing {
|
|
33428
|
+
box-shadow: inset 0px 0px 0px 1px #ff0000;
|
|
33429
|
+
}
|
|
33430
|
+
|
|
33312
33431
|
.k-scheduler-marquee::before,
|
|
33313
33432
|
.k-scheduler-marquee::after {
|
|
33314
33433
|
border-color: #0d6efd;
|
|
@@ -33508,6 +33627,7 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
33508
33627
|
border-style: solid;
|
|
33509
33628
|
line-height: 1.25;
|
|
33510
33629
|
word-wrap: break-word;
|
|
33630
|
+
white-space: pre-wrap;
|
|
33511
33631
|
}
|
|
33512
33632
|
|
|
33513
33633
|
.k-chat .k-bubble a {
|
package/dist/all.scss
CHANGED
|
@@ -5332,6 +5332,39 @@ $display4-letter-spacing: null !default;
|
|
|
5332
5332
|
|
|
5333
5333
|
|
|
5334
5334
|
// Component
|
|
5335
|
+
// #region @import "_aspect-ratio.scss"; -> packages/bootstrap/scss/utils/_aspect-ratio.scss
|
|
5336
|
+
// #region @import "~@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss
|
|
5337
|
+
@include exports( "utils/aspect-ratio" ) {
|
|
5338
|
+
|
|
5339
|
+
// Aspect-ratio documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio.
|
|
5340
|
+
|
|
5341
|
+
// @name k-aspect-ratio-auto
|
|
5342
|
+
// @description This is equivalent to `aspect-ratio: auto;`. Replaced elements with an intrinsic aspect ratio use that aspect ratio, otherwise the box has no preferred aspect ratio. Size calculations involving intrinsic aspect ratio always work with the content box dimensions.
|
|
5343
|
+
// @group aspect-ratio
|
|
5344
|
+
|
|
5345
|
+
// @name k-aspect-ratio-1
|
|
5346
|
+
// @description This is equivalent to `aspect-ratio: 1;`. The box's preferred aspect ratio is the specified ratio of 1. Size calculations involving preferred aspect ratio work with the dimensions of the box specified by box-sizing.
|
|
5347
|
+
// @group aspect-ratio
|
|
5348
|
+
|
|
5349
|
+
$utils-aspect-ratio: (
|
|
5350
|
+
auto,
|
|
5351
|
+
1
|
|
5352
|
+
) !default;
|
|
5353
|
+
|
|
5354
|
+
@if $utils-aspect-ratio {
|
|
5355
|
+
@each $aspect-ratio in $utils-aspect-ratio {
|
|
5356
|
+
.k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio; }
|
|
5357
|
+
|
|
5358
|
+
// sass-lint:disable-block no-important
|
|
5359
|
+
.\!k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio !important; }
|
|
5360
|
+
}
|
|
5361
|
+
}
|
|
5362
|
+
|
|
5363
|
+
}
|
|
5364
|
+
|
|
5365
|
+
// #endregion
|
|
5366
|
+
|
|
5367
|
+
// #endregion
|
|
5335
5368
|
// #region @import "_border.scss"; -> packages/bootstrap/scss/utils/_border.scss
|
|
5336
5369
|
$utils-border-radius: (
|
|
5337
5370
|
default: $kendo-border-radius-md,
|
|
@@ -6408,6 +6441,7 @@ $utils-border-radius: (
|
|
|
6408
6441
|
@include exports( "utils/text" ) {
|
|
6409
6442
|
|
|
6410
6443
|
// stylelint-disable block-opening-brace-space-before
|
|
6444
|
+
// sass-lint:disable class-name-format
|
|
6411
6445
|
|
|
6412
6446
|
// White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
|
|
6413
6447
|
// Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
|
|
@@ -6415,6 +6449,7 @@ $utils-border-radius: (
|
|
|
6415
6449
|
|
|
6416
6450
|
$text-align: ( left, right, center, justify ) !default;
|
|
6417
6451
|
$text-transform: ( lowercase, uppercase, capitalize ) !default;
|
|
6452
|
+
$white-space: ( normal, nowrap, pre, pre-wrap, pre-line, break-spaces ) !default;
|
|
6418
6453
|
|
|
6419
6454
|
$kendo-font-sizes: (
|
|
6420
6455
|
xs: $font-size-xs,
|
|
@@ -6429,12 +6464,42 @@ $utils-border-radius: (
|
|
|
6429
6464
|
/// @name k-text-nowrap
|
|
6430
6465
|
/// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
6431
6466
|
/// @group text
|
|
6432
|
-
.k-text-nowrap { white-space: nowrap
|
|
6467
|
+
.k-text-nowrap { white-space: nowrap; }
|
|
6468
|
+
.\!k-text-nowrap { white-space: nowrap !important; } // sass-lint:disable-line no-important
|
|
6433
6469
|
/// @name k-text-ellipsis
|
|
6434
6470
|
/// @description This is equivalent to `white-space: nowrap; overflow: hidden; text-overflow: ellipsis;`.
|
|
6435
6471
|
/// @group text
|
|
6436
6472
|
.k-text-ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } // sass-lint:disable-line one-declaration-per-line
|
|
6437
6473
|
|
|
6474
|
+
/// @name k-white-space-normal
|
|
6475
|
+
/// @description This is equivalent to `white-space: normal;`. Sequences of white space are collapsed. Newline characters in the source are handled the same as other white space. Lines are broken as necessary to fill line boxes.
|
|
6476
|
+
/// @group text
|
|
6477
|
+
|
|
6478
|
+
/// @name k-white-space-nowrap
|
|
6479
|
+
/// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
6480
|
+
/// @group text
|
|
6481
|
+
|
|
6482
|
+
/// @name k-white-space-pre
|
|
6483
|
+
/// @description This is equivalent to `white-space: pre;`. Sequences of white space are preserved. Lines are only broken at newline characters in the source and at <br> elements.
|
|
6484
|
+
/// @group text
|
|
6485
|
+
|
|
6486
|
+
/// @name k-white-space-pre-wrap
|
|
6487
|
+
/// @description This is equivalent to `white-space: pre-wrap;`. Sequences of white space are preserved. Lines are broken at newline characters, at <br>, and as necessary to fill line boxes.
|
|
6488
|
+
/// @group text
|
|
6489
|
+
|
|
6490
|
+
/// @name k-white-space-pre-line
|
|
6491
|
+
/// @description This is equivalent to `white-space: pre-line;`. Sequences of white space are collapsed. Lines are broken at newline characters, at <br>, and as necessary to fill line boxes.
|
|
6492
|
+
/// @group text
|
|
6493
|
+
|
|
6494
|
+
/// @name k-white-space-break-spaces
|
|
6495
|
+
/// @description This is equivalent to `white-space: break-spaces;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
6496
|
+
/// @group text
|
|
6497
|
+
|
|
6498
|
+
@each $wrap in $white-space {
|
|
6499
|
+
.k-white-space-#{$wrap} { white-space: $wrap; }
|
|
6500
|
+
.\!k-white-space-#{$wrap} { white-space: $wrap !important; } // sass-lint:disable-line no-important
|
|
6501
|
+
}
|
|
6502
|
+
|
|
6438
6503
|
|
|
6439
6504
|
// Align
|
|
6440
6505
|
|
|
@@ -6455,7 +6520,8 @@ $utils-border-radius: (
|
|
|
6455
6520
|
/// @group text
|
|
6456
6521
|
|
|
6457
6522
|
@each $align in $text-align {
|
|
6458
|
-
.k-text-#{$align} { text-align: $align
|
|
6523
|
+
.k-text-#{$align} { text-align: $align; }
|
|
6524
|
+
.\!k-text-#{$align} { text-align: $align !important; } // sass-lint:disable-line no-important
|
|
6459
6525
|
}
|
|
6460
6526
|
|
|
6461
6527
|
|
|
@@ -6474,12 +6540,14 @@ $utils-border-radius: (
|
|
|
6474
6540
|
/// @group text
|
|
6475
6541
|
|
|
6476
6542
|
@each $transform in $text-transform {
|
|
6477
|
-
.k-text-#{$transform} { text-transform: $transform
|
|
6543
|
+
.k-text-#{$transform} { text-transform: $transform; }
|
|
6544
|
+
.\!k-text-#{$transform} { text-transform: $transform !important; } // sass-lint:disable-line no-important
|
|
6478
6545
|
}
|
|
6479
6546
|
|
|
6480
6547
|
// Font Size
|
|
6481
6548
|
@each $name, $size in $kendo-font-sizes {
|
|
6482
|
-
.k-fs-#{$name}
|
|
6549
|
+
.k-fs-#{$name} { font-size: $size; }
|
|
6550
|
+
.\!k-fs-#{$name} { font-size: $size !important; } // sass-lint:disable-line no-important
|
|
6483
6551
|
}
|
|
6484
6552
|
|
|
6485
6553
|
// Named font-weight
|
|
@@ -10250,7 +10318,7 @@ $kendo-button-disabled-shadow: null !default;
|
|
|
10250
10318
|
|
|
10251
10319
|
// Solid button
|
|
10252
10320
|
$kendo-solid-button-gradient: null !default;
|
|
10253
|
-
$kendo-solid-button-shade-function: "try-darken";
|
|
10321
|
+
$kendo-solid-button-shade-function: "try-darken" !default;
|
|
10254
10322
|
$kendo-solid-button-shade-text-amount: 0 !default;
|
|
10255
10323
|
$kendo-solid-button-shade-bg-amount: 0 !default;
|
|
10256
10324
|
$kendo-solid-button-shade-border-amount: 0 !default;
|
|
@@ -10353,7 +10421,6 @@ $kendo-button-transition: $transition !default;
|
|
|
10353
10421
|
|
|
10354
10422
|
// Icon Button
|
|
10355
10423
|
.k-icon-button {
|
|
10356
|
-
aspect-ratio: 1;
|
|
10357
10424
|
gap: 0;
|
|
10358
10425
|
|
|
10359
10426
|
.k-icon {
|
|
@@ -11869,7 +11936,8 @@ $floating-label-focus-text: null !default;
|
|
|
11869
11936
|
transform: scale( $floating-label-focus-scale );
|
|
11870
11937
|
}
|
|
11871
11938
|
|
|
11872
|
-
&.k-state-empty:not(.k-state-focused) ::placeholder
|
|
11939
|
+
&.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
11940
|
+
&.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
11873
11941
|
color: transparent;
|
|
11874
11942
|
}
|
|
11875
11943
|
|
|
@@ -19730,7 +19798,9 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
19730
19798
|
}
|
|
19731
19799
|
|
|
19732
19800
|
&.k-state-selected,
|
|
19733
|
-
&.k-state-selected:hover
|
|
19801
|
+
&.k-state-selected:hover,
|
|
19802
|
+
&.k-selected,
|
|
19803
|
+
&.k-selected:hover {
|
|
19734
19804
|
@include box-shadow( $colorpalette-tile-selected-shadow );
|
|
19735
19805
|
}
|
|
19736
19806
|
|
|
@@ -26674,6 +26744,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
26674
26744
|
font-family: $pager-font-family;
|
|
26675
26745
|
font-size: $pager-font-size;
|
|
26676
26746
|
line-height: $pager-line-height;
|
|
26747
|
+
white-space: nowrap;
|
|
26677
26748
|
display: flex;
|
|
26678
26749
|
align-items: center;
|
|
26679
26750
|
position: relative;
|
|
@@ -30474,6 +30545,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30474
30545
|
|
|
30475
30546
|
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
30476
30547
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
30548
|
+
$grid-group-indicator-button-opacity: $kendo-input-clear-value-opacity !default;
|
|
30549
|
+
$grid-group-indicator-button-hover-opacity: $kendo-input-clear-value-hover-opacity !default;
|
|
30477
30550
|
|
|
30478
30551
|
$grid-grouping-row-border-top: 1px !default;
|
|
30479
30552
|
$grid-group-footer-border-y: 1px !default;
|
|
@@ -30942,7 +31015,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30942
31015
|
padding: 0;
|
|
30943
31016
|
width: auto;
|
|
30944
31017
|
height: auto;
|
|
30945
|
-
opacity:
|
|
31018
|
+
opacity: $grid-group-indicator-button-opacity;
|
|
30946
31019
|
|
|
30947
31020
|
&::before,
|
|
30948
31021
|
&::after {
|
|
@@ -30950,7 +31023,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30950
31023
|
}
|
|
30951
31024
|
|
|
30952
31025
|
&:hover {
|
|
30953
|
-
opacity:
|
|
31026
|
+
opacity: $grid-group-indicator-button-hover-opacity;
|
|
30954
31027
|
}
|
|
30955
31028
|
}
|
|
30956
31029
|
}
|
|
@@ -31374,8 +31447,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31374
31447
|
}
|
|
31375
31448
|
|
|
31376
31449
|
.k-grid-content,
|
|
31377
|
-
.k-grid-content-locked
|
|
31378
|
-
.k-pager-wrap {
|
|
31450
|
+
.k-grid-content-locked {
|
|
31379
31451
|
white-space: normal;
|
|
31380
31452
|
}
|
|
31381
31453
|
|
|
@@ -38944,6 +39016,8 @@ $scheduler-event-selected-border: null !default;
|
|
|
38944
39016
|
$scheduler-event-selected-gradient: null !default;
|
|
38945
39017
|
$scheduler-event-selected-shadow: inset 0 0 0 3px rgba(255, 255, 255, .5) !default;
|
|
38946
39018
|
|
|
39019
|
+
$scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
39020
|
+
|
|
38947
39021
|
$scheduler-cell-padding-x: map-get( $spacing, 3 ) !default;
|
|
38948
39022
|
$scheduler-cell-padding-y: map-get( $spacing, 3 ) !default;
|
|
38949
39023
|
$scheduler-cell-height: $line-height-em !default;
|
|
@@ -40262,6 +40336,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40262
40336
|
.k-event-inverse {
|
|
40263
40337
|
color: contrast-wcag( $scheduler-event-text );
|
|
40264
40338
|
}
|
|
40339
|
+
.k-event-ongoing {
|
|
40340
|
+
@include box-shadow( $scheduler-event-ongoing-shadow );
|
|
40341
|
+
}
|
|
40265
40342
|
|
|
40266
40343
|
|
|
40267
40344
|
// Drag hint
|
|
@@ -40649,6 +40726,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
40649
40726
|
border-style: solid;
|
|
40650
40727
|
line-height: $chat-bubble-line-height;
|
|
40651
40728
|
word-wrap: break-word;
|
|
40729
|
+
white-space: pre-wrap;
|
|
40652
40730
|
|
|
40653
40731
|
a {
|
|
40654
40732
|
color: inherit;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "5.2
|
|
4
|
+
"version": "5.3.2-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for bootstrap theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.2
|
|
52
|
+
"@progress/kendo-theme-default": "^5.3.2-dev.0",
|
|
53
53
|
"bootstrap": "^5.1.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "32946c0dfe2496ff8c6ff8661391c0376b85c7b7"
|
|
56
56
|
}
|
|
@@ -167,7 +167,7 @@ $kendo-button-disabled-shadow: null !default;
|
|
|
167
167
|
|
|
168
168
|
// Solid button
|
|
169
169
|
$kendo-solid-button-gradient: null !default;
|
|
170
|
-
$kendo-solid-button-shade-function: "try-darken";
|
|
170
|
+
$kendo-solid-button-shade-function: "try-darken" !default;
|
|
171
171
|
$kendo-solid-button-shade-text-amount: 0 !default;
|
|
172
172
|
$kendo-solid-button-shade-bg-amount: 0 !default;
|
|
173
173
|
$kendo-solid-button-shade-border-amount: 0 !default;
|
|
@@ -40,6 +40,8 @@ $scheduler-event-selected-border: null !default;
|
|
|
40
40
|
$scheduler-event-selected-gradient: null !default;
|
|
41
41
|
$scheduler-event-selected-shadow: inset 0 0 0 3px rgba(255, 255, 255, .5) !default;
|
|
42
42
|
|
|
43
|
+
$scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
44
|
+
|
|
43
45
|
$scheduler-cell-padding-x: map-get( $spacing, 3 ) !default;
|
|
44
46
|
$scheduler-cell-padding-y: map-get( $spacing, 3 ) !default;
|
|
45
47
|
$scheduler-cell-height: $line-height-em !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss";
|