@progress/kendo-theme-classic 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/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.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
|
@@ -1412,6 +1412,22 @@ kendo-sortable {
|
|
|
1412
1412
|
background-color: #f0f0f0;
|
|
1413
1413
|
}
|
|
1414
1414
|
|
|
1415
|
+
.k-aspect-ratio-auto {
|
|
1416
|
+
aspect-ratio: auto;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
.\!k-aspect-ratio-auto {
|
|
1420
|
+
aspect-ratio: auto !important;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
.k-aspect-ratio-1 {
|
|
1424
|
+
aspect-ratio: 1;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.\!k-aspect-ratio-1 {
|
|
1428
|
+
aspect-ratio: 1 !important;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1415
1431
|
.k-border {
|
|
1416
1432
|
border-width: 1px !important;
|
|
1417
1433
|
}
|
|
@@ -6091,6 +6107,10 @@ kendo-sortable {
|
|
|
6091
6107
|
}
|
|
6092
6108
|
|
|
6093
6109
|
.k-text-nowrap {
|
|
6110
|
+
white-space: nowrap;
|
|
6111
|
+
}
|
|
6112
|
+
|
|
6113
|
+
.\!k-text-nowrap {
|
|
6094
6114
|
white-space: nowrap !important;
|
|
6095
6115
|
}
|
|
6096
6116
|
|
|
@@ -6100,51 +6120,147 @@ kendo-sortable {
|
|
|
6100
6120
|
text-overflow: ellipsis;
|
|
6101
6121
|
}
|
|
6102
6122
|
|
|
6123
|
+
.k-white-space-normal {
|
|
6124
|
+
white-space: normal;
|
|
6125
|
+
}
|
|
6126
|
+
|
|
6127
|
+
.\!k-white-space-normal {
|
|
6128
|
+
white-space: normal !important;
|
|
6129
|
+
}
|
|
6130
|
+
|
|
6131
|
+
.k-white-space-nowrap {
|
|
6132
|
+
white-space: nowrap;
|
|
6133
|
+
}
|
|
6134
|
+
|
|
6135
|
+
.\!k-white-space-nowrap {
|
|
6136
|
+
white-space: nowrap !important;
|
|
6137
|
+
}
|
|
6138
|
+
|
|
6139
|
+
.k-white-space-pre {
|
|
6140
|
+
white-space: pre;
|
|
6141
|
+
}
|
|
6142
|
+
|
|
6143
|
+
.\!k-white-space-pre {
|
|
6144
|
+
white-space: pre !important;
|
|
6145
|
+
}
|
|
6146
|
+
|
|
6147
|
+
.k-white-space-pre-wrap {
|
|
6148
|
+
white-space: pre-wrap;
|
|
6149
|
+
}
|
|
6150
|
+
|
|
6151
|
+
.\!k-white-space-pre-wrap {
|
|
6152
|
+
white-space: pre-wrap !important;
|
|
6153
|
+
}
|
|
6154
|
+
|
|
6155
|
+
.k-white-space-pre-line {
|
|
6156
|
+
white-space: pre-line;
|
|
6157
|
+
}
|
|
6158
|
+
|
|
6159
|
+
.\!k-white-space-pre-line {
|
|
6160
|
+
white-space: pre-line !important;
|
|
6161
|
+
}
|
|
6162
|
+
|
|
6163
|
+
.k-white-space-break-spaces {
|
|
6164
|
+
white-space: break-spaces;
|
|
6165
|
+
}
|
|
6166
|
+
|
|
6167
|
+
.\!k-white-space-break-spaces {
|
|
6168
|
+
white-space: break-spaces !important;
|
|
6169
|
+
}
|
|
6170
|
+
|
|
6103
6171
|
.k-text-left {
|
|
6172
|
+
text-align: left;
|
|
6173
|
+
}
|
|
6174
|
+
|
|
6175
|
+
.\!k-text-left {
|
|
6104
6176
|
text-align: left !important;
|
|
6105
6177
|
}
|
|
6106
6178
|
|
|
6107
6179
|
.k-text-right {
|
|
6180
|
+
text-align: right;
|
|
6181
|
+
}
|
|
6182
|
+
|
|
6183
|
+
.\!k-text-right {
|
|
6108
6184
|
text-align: right !important;
|
|
6109
6185
|
}
|
|
6110
6186
|
|
|
6111
6187
|
.k-text-center {
|
|
6188
|
+
text-align: center;
|
|
6189
|
+
}
|
|
6190
|
+
|
|
6191
|
+
.\!k-text-center {
|
|
6112
6192
|
text-align: center !important;
|
|
6113
6193
|
}
|
|
6114
6194
|
|
|
6115
6195
|
.k-text-justify {
|
|
6196
|
+
text-align: justify;
|
|
6197
|
+
}
|
|
6198
|
+
|
|
6199
|
+
.\!k-text-justify {
|
|
6116
6200
|
text-align: justify !important;
|
|
6117
6201
|
}
|
|
6118
6202
|
|
|
6119
6203
|
.k-text-lowercase {
|
|
6204
|
+
text-transform: lowercase;
|
|
6205
|
+
}
|
|
6206
|
+
|
|
6207
|
+
.\!k-text-lowercase {
|
|
6120
6208
|
text-transform: lowercase !important;
|
|
6121
6209
|
}
|
|
6122
6210
|
|
|
6123
6211
|
.k-text-uppercase {
|
|
6212
|
+
text-transform: uppercase;
|
|
6213
|
+
}
|
|
6214
|
+
|
|
6215
|
+
.\!k-text-uppercase {
|
|
6124
6216
|
text-transform: uppercase !important;
|
|
6125
6217
|
}
|
|
6126
6218
|
|
|
6127
6219
|
.k-text-capitalize {
|
|
6220
|
+
text-transform: capitalize;
|
|
6221
|
+
}
|
|
6222
|
+
|
|
6223
|
+
.\!k-text-capitalize {
|
|
6128
6224
|
text-transform: capitalize !important;
|
|
6129
6225
|
}
|
|
6130
6226
|
|
|
6131
6227
|
.k-fs-xs {
|
|
6228
|
+
font-size: 10px;
|
|
6229
|
+
}
|
|
6230
|
+
|
|
6231
|
+
.\!k-fs-xs {
|
|
6132
6232
|
font-size: 10px !important;
|
|
6133
6233
|
}
|
|
6134
6234
|
|
|
6135
6235
|
.k-fs-sm {
|
|
6236
|
+
font-size: 12px;
|
|
6237
|
+
}
|
|
6238
|
+
|
|
6239
|
+
.\!k-fs-sm {
|
|
6136
6240
|
font-size: 12px !important;
|
|
6137
6241
|
}
|
|
6138
6242
|
|
|
6139
6243
|
.k-fs-md {
|
|
6244
|
+
font-size: 14px;
|
|
6245
|
+
}
|
|
6246
|
+
|
|
6247
|
+
.\!k-fs-md {
|
|
6140
6248
|
font-size: 14px !important;
|
|
6141
6249
|
}
|
|
6142
6250
|
|
|
6143
6251
|
.k-fs-lg {
|
|
6252
|
+
font-size: 16px;
|
|
6253
|
+
}
|
|
6254
|
+
|
|
6255
|
+
.\!k-fs-lg {
|
|
6144
6256
|
font-size: 16px !important;
|
|
6145
6257
|
}
|
|
6146
6258
|
|
|
6147
6259
|
.k-fs-xl {
|
|
6260
|
+
font-size: 20px;
|
|
6261
|
+
}
|
|
6262
|
+
|
|
6263
|
+
.\!k-fs-xl {
|
|
6148
6264
|
font-size: 20px !important;
|
|
6149
6265
|
}
|
|
6150
6266
|
|
|
@@ -12046,7 +12162,6 @@ kendo-badge-container {
|
|
|
12046
12162
|
}
|
|
12047
12163
|
|
|
12048
12164
|
.k-icon-button {
|
|
12049
|
-
aspect-ratio: 1;
|
|
12050
12165
|
gap: 0;
|
|
12051
12166
|
}
|
|
12052
12167
|
|
|
@@ -14016,11 +14131,12 @@ textarea.k-input-inner {
|
|
|
14016
14131
|
transform: scale(1);
|
|
14017
14132
|
}
|
|
14018
14133
|
|
|
14019
|
-
.k-floating-label-container.k-state-empty:not(.k-state-focused) :-ms-input-placeholder {
|
|
14134
|
+
.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 {
|
|
14020
14135
|
color: transparent;
|
|
14021
14136
|
}
|
|
14022
14137
|
|
|
14023
|
-
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder
|
|
14138
|
+
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
14139
|
+
.k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
14024
14140
|
color: transparent;
|
|
14025
14141
|
}
|
|
14026
14142
|
|
|
@@ -18908,7 +19024,7 @@ kendo-label > .k-label {
|
|
|
18908
19024
|
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
|
|
18909
19025
|
}
|
|
18910
19026
|
|
|
18911
|
-
.k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover {
|
|
19027
|
+
.k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover, .k-colorpalette-tile.k-selected, .k-colorpalette-tile.k-selected:hover {
|
|
18912
19028
|
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px white;
|
|
18913
19029
|
}
|
|
18914
19030
|
|
|
@@ -23162,6 +23278,7 @@ kendo-card-footer {
|
|
|
23162
23278
|
font-family: inherit;
|
|
23163
23279
|
font-size: 14px;
|
|
23164
23280
|
line-height: 1.4285714286;
|
|
23281
|
+
white-space: nowrap;
|
|
23165
23282
|
display: flex;
|
|
23166
23283
|
align-items: center;
|
|
23167
23284
|
position: relative;
|
|
@@ -25927,7 +26044,7 @@ kendo-card-footer {
|
|
|
25927
26044
|
padding: 0;
|
|
25928
26045
|
width: auto;
|
|
25929
26046
|
height: auto;
|
|
25930
|
-
opacity: .5;
|
|
26047
|
+
opacity: 0.5;
|
|
25931
26048
|
}
|
|
25932
26049
|
|
|
25933
26050
|
.k-group-indicator .k-button-flat::before, .k-group-indicator .k-button-flat::after {
|
|
@@ -26347,8 +26464,7 @@ div.k-grid-footer {
|
|
|
26347
26464
|
}
|
|
26348
26465
|
|
|
26349
26466
|
.k-grid-content,
|
|
26350
|
-
.k-grid-content-locked
|
|
26351
|
-
.k-pager-wrap {
|
|
26467
|
+
.k-grid-content-locked {
|
|
26352
26468
|
white-space: normal;
|
|
26353
26469
|
}
|
|
26354
26470
|
|
|
@@ -31037,8 +31153,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31037
31153
|
|
|
31038
31154
|
.k-gantt .k-treelist-scrollable .k-task-summary {
|
|
31039
31155
|
height: 15px;
|
|
31040
|
-
|
|
31041
|
-
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%);
|
|
31156
|
+
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%);
|
|
31042
31157
|
}
|
|
31043
31158
|
|
|
31044
31159
|
.k-gantt .k-treelist-scrollable .k-task-summary-complete {
|
|
@@ -33060,6 +33175,10 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33060
33175
|
color: black;
|
|
33061
33176
|
}
|
|
33062
33177
|
|
|
33178
|
+
.k-event-ongoing {
|
|
33179
|
+
box-shadow: inset 0px 0px 0px 1px #ff0000;
|
|
33180
|
+
}
|
|
33181
|
+
|
|
33063
33182
|
.k-scheduler-marquee::before,
|
|
33064
33183
|
.k-scheduler-marquee::after {
|
|
33065
33184
|
border-color: #f35800;
|
|
@@ -33260,6 +33379,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33260
33379
|
border-style: solid;
|
|
33261
33380
|
line-height: 18px;
|
|
33262
33381
|
word-wrap: break-word;
|
|
33382
|
+
white-space: pre-wrap;
|
|
33263
33383
|
}
|
|
33264
33384
|
|
|
33265
33385
|
.k-chat .k-bubble a {
|
package/dist/all.scss
CHANGED
|
@@ -3300,6 +3300,39 @@ $display4-letter-spacing: null !default;
|
|
|
3300
3300
|
|
|
3301
3301
|
|
|
3302
3302
|
// Component
|
|
3303
|
+
// #region @import "_aspect-ratio.scss"; -> packages/classic/scss/utils/_aspect-ratio.scss
|
|
3304
|
+
// #region @import "~@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss
|
|
3305
|
+
@include exports( "utils/aspect-ratio" ) {
|
|
3306
|
+
|
|
3307
|
+
// Aspect-ratio documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio.
|
|
3308
|
+
|
|
3309
|
+
// @name k-aspect-ratio-auto
|
|
3310
|
+
// @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.
|
|
3311
|
+
// @group aspect-ratio
|
|
3312
|
+
|
|
3313
|
+
// @name k-aspect-ratio-1
|
|
3314
|
+
// @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.
|
|
3315
|
+
// @group aspect-ratio
|
|
3316
|
+
|
|
3317
|
+
$utils-aspect-ratio: (
|
|
3318
|
+
auto,
|
|
3319
|
+
1
|
|
3320
|
+
) !default;
|
|
3321
|
+
|
|
3322
|
+
@if $utils-aspect-ratio {
|
|
3323
|
+
@each $aspect-ratio in $utils-aspect-ratio {
|
|
3324
|
+
.k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio; }
|
|
3325
|
+
|
|
3326
|
+
// sass-lint:disable-block no-important
|
|
3327
|
+
.\!k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio !important; }
|
|
3328
|
+
}
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3333
|
+
// #endregion
|
|
3334
|
+
|
|
3335
|
+
// #endregion
|
|
3303
3336
|
// #region @import "_border.scss"; -> packages/classic/scss/utils/_border.scss
|
|
3304
3337
|
$utils-border-radius: (
|
|
3305
3338
|
default: $kendo-border-radius-md,
|
|
@@ -4376,6 +4409,7 @@ $utils-border-radius: (
|
|
|
4376
4409
|
@include exports( "utils/text" ) {
|
|
4377
4410
|
|
|
4378
4411
|
// stylelint-disable block-opening-brace-space-before
|
|
4412
|
+
// sass-lint:disable class-name-format
|
|
4379
4413
|
|
|
4380
4414
|
// White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
|
|
4381
4415
|
// Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
|
|
@@ -4383,6 +4417,7 @@ $utils-border-radius: (
|
|
|
4383
4417
|
|
|
4384
4418
|
$text-align: ( left, right, center, justify ) !default;
|
|
4385
4419
|
$text-transform: ( lowercase, uppercase, capitalize ) !default;
|
|
4420
|
+
$white-space: ( normal, nowrap, pre, pre-wrap, pre-line, break-spaces ) !default;
|
|
4386
4421
|
|
|
4387
4422
|
$kendo-font-sizes: (
|
|
4388
4423
|
xs: $font-size-xs,
|
|
@@ -4397,12 +4432,42 @@ $utils-border-radius: (
|
|
|
4397
4432
|
/// @name k-text-nowrap
|
|
4398
4433
|
/// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
4399
4434
|
/// @group text
|
|
4400
|
-
.k-text-nowrap { white-space: nowrap
|
|
4435
|
+
.k-text-nowrap { white-space: nowrap; }
|
|
4436
|
+
.\!k-text-nowrap { white-space: nowrap !important; } // sass-lint:disable-line no-important
|
|
4401
4437
|
/// @name k-text-ellipsis
|
|
4402
4438
|
/// @description This is equivalent to `white-space: nowrap; overflow: hidden; text-overflow: ellipsis;`.
|
|
4403
4439
|
/// @group text
|
|
4404
4440
|
.k-text-ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } // sass-lint:disable-line one-declaration-per-line
|
|
4405
4441
|
|
|
4442
|
+
/// @name k-white-space-normal
|
|
4443
|
+
/// @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.
|
|
4444
|
+
/// @group text
|
|
4445
|
+
|
|
4446
|
+
/// @name k-white-space-nowrap
|
|
4447
|
+
/// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
4448
|
+
/// @group text
|
|
4449
|
+
|
|
4450
|
+
/// @name k-white-space-pre
|
|
4451
|
+
/// @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.
|
|
4452
|
+
/// @group text
|
|
4453
|
+
|
|
4454
|
+
/// @name k-white-space-pre-wrap
|
|
4455
|
+
/// @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.
|
|
4456
|
+
/// @group text
|
|
4457
|
+
|
|
4458
|
+
/// @name k-white-space-pre-line
|
|
4459
|
+
/// @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.
|
|
4460
|
+
/// @group text
|
|
4461
|
+
|
|
4462
|
+
/// @name k-white-space-break-spaces
|
|
4463
|
+
/// @description This is equivalent to `white-space: break-spaces;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
4464
|
+
/// @group text
|
|
4465
|
+
|
|
4466
|
+
@each $wrap in $white-space {
|
|
4467
|
+
.k-white-space-#{$wrap} { white-space: $wrap; }
|
|
4468
|
+
.\!k-white-space-#{$wrap} { white-space: $wrap !important; } // sass-lint:disable-line no-important
|
|
4469
|
+
}
|
|
4470
|
+
|
|
4406
4471
|
|
|
4407
4472
|
// Align
|
|
4408
4473
|
|
|
@@ -4423,7 +4488,8 @@ $utils-border-radius: (
|
|
|
4423
4488
|
/// @group text
|
|
4424
4489
|
|
|
4425
4490
|
@each $align in $text-align {
|
|
4426
|
-
.k-text-#{$align} { text-align: $align
|
|
4491
|
+
.k-text-#{$align} { text-align: $align; }
|
|
4492
|
+
.\!k-text-#{$align} { text-align: $align !important; } // sass-lint:disable-line no-important
|
|
4427
4493
|
}
|
|
4428
4494
|
|
|
4429
4495
|
|
|
@@ -4442,12 +4508,14 @@ $utils-border-radius: (
|
|
|
4442
4508
|
/// @group text
|
|
4443
4509
|
|
|
4444
4510
|
@each $transform in $text-transform {
|
|
4445
|
-
.k-text-#{$transform} { text-transform: $transform
|
|
4511
|
+
.k-text-#{$transform} { text-transform: $transform; }
|
|
4512
|
+
.\!k-text-#{$transform} { text-transform: $transform !important; } // sass-lint:disable-line no-important
|
|
4446
4513
|
}
|
|
4447
4514
|
|
|
4448
4515
|
// Font Size
|
|
4449
4516
|
@each $name, $size in $kendo-font-sizes {
|
|
4450
|
-
.k-fs-#{$name}
|
|
4517
|
+
.k-fs-#{$name} { font-size: $size; }
|
|
4518
|
+
.\!k-fs-#{$name} { font-size: $size !important; } // sass-lint:disable-line no-important
|
|
4451
4519
|
}
|
|
4452
4520
|
|
|
4453
4521
|
// Named font-weight
|
|
@@ -8204,7 +8272,7 @@ $kendo-button-disabled-shadow: null !default;
|
|
|
8204
8272
|
|
|
8205
8273
|
// Solid button
|
|
8206
8274
|
$kendo-solid-button-gradient: $base-gradient !default;
|
|
8207
|
-
$kendo-solid-button-shade-function: "try-shade";
|
|
8275
|
+
$kendo-solid-button-shade-function: "try-shade" !default;
|
|
8208
8276
|
$kendo-solid-button-shade-text-amount: 0 !default;
|
|
8209
8277
|
$kendo-solid-button-shade-bg-amount: 0 !default;
|
|
8210
8278
|
$kendo-solid-button-shade-border-amount: 2 !default;
|
|
@@ -8307,7 +8375,6 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
8307
8375
|
|
|
8308
8376
|
// Icon Button
|
|
8309
8377
|
.k-icon-button {
|
|
8310
|
-
aspect-ratio: 1;
|
|
8311
8378
|
gap: 0;
|
|
8312
8379
|
|
|
8313
8380
|
.k-icon {
|
|
@@ -9814,7 +9881,8 @@ $floating-label-focus-text: null !default;
|
|
|
9814
9881
|
transform: scale( $floating-label-focus-scale );
|
|
9815
9882
|
}
|
|
9816
9883
|
|
|
9817
|
-
&.k-state-empty:not(.k-state-focused) ::placeholder
|
|
9884
|
+
&.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
9885
|
+
&.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
9818
9886
|
color: transparent;
|
|
9819
9887
|
}
|
|
9820
9888
|
|
|
@@ -17591,7 +17659,9 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
17591
17659
|
}
|
|
17592
17660
|
|
|
17593
17661
|
&.k-state-selected,
|
|
17594
|
-
&.k-state-selected:hover
|
|
17662
|
+
&.k-state-selected:hover,
|
|
17663
|
+
&.k-selected,
|
|
17664
|
+
&.k-selected:hover {
|
|
17595
17665
|
@include box-shadow( $colorpalette-tile-selected-shadow );
|
|
17596
17666
|
}
|
|
17597
17667
|
|
|
@@ -24449,6 +24519,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
24449
24519
|
font-family: $pager-font-family;
|
|
24450
24520
|
font-size: $pager-font-size;
|
|
24451
24521
|
line-height: $pager-line-height;
|
|
24522
|
+
white-space: nowrap;
|
|
24452
24523
|
display: flex;
|
|
24453
24524
|
align-items: center;
|
|
24454
24525
|
position: relative;
|
|
@@ -28158,6 +28229,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28158
28229
|
|
|
28159
28230
|
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
28160
28231
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
28232
|
+
$grid-group-indicator-button-opacity: $kendo-input-clear-value-opacity !default;
|
|
28233
|
+
$grid-group-indicator-button-hover-opacity: $kendo-input-clear-value-hover-opacity !default;
|
|
28161
28234
|
|
|
28162
28235
|
$grid-grouping-row-border-top: 1px !default;
|
|
28163
28236
|
$grid-group-footer-border-y: 1px !default;
|
|
@@ -28626,7 +28699,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28626
28699
|
padding: 0;
|
|
28627
28700
|
width: auto;
|
|
28628
28701
|
height: auto;
|
|
28629
|
-
opacity:
|
|
28702
|
+
opacity: $grid-group-indicator-button-opacity;
|
|
28630
28703
|
|
|
28631
28704
|
&::before,
|
|
28632
28705
|
&::after {
|
|
@@ -28634,7 +28707,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28634
28707
|
}
|
|
28635
28708
|
|
|
28636
28709
|
&:hover {
|
|
28637
|
-
opacity:
|
|
28710
|
+
opacity: $grid-group-indicator-button-hover-opacity;
|
|
28638
28711
|
}
|
|
28639
28712
|
}
|
|
28640
28713
|
}
|
|
@@ -29058,8 +29131,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29058
29131
|
}
|
|
29059
29132
|
|
|
29060
29133
|
.k-grid-content,
|
|
29061
|
-
.k-grid-content-locked
|
|
29062
|
-
.k-pager-wrap {
|
|
29134
|
+
.k-grid-content-locked {
|
|
29063
29135
|
white-space: normal;
|
|
29064
29136
|
}
|
|
29065
29137
|
|
|
@@ -36591,6 +36663,8 @@ $scheduler-event-selected-border: null !default;
|
|
|
36591
36663
|
$scheduler-event-selected-gradient: null !default;
|
|
36592
36664
|
$scheduler-event-selected-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
36593
36665
|
|
|
36666
|
+
$scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
36667
|
+
|
|
36594
36668
|
$scheduler-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
36595
36669
|
$scheduler-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
36596
36670
|
$scheduler-cell-height: $line-height-em !default;
|
|
@@ -37879,6 +37953,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
37879
37953
|
.k-event-inverse {
|
|
37880
37954
|
color: contrast-wcag( $scheduler-event-text );
|
|
37881
37955
|
}
|
|
37956
|
+
.k-event-ongoing {
|
|
37957
|
+
@include box-shadow( $scheduler-event-ongoing-shadow );
|
|
37958
|
+
}
|
|
37882
37959
|
|
|
37883
37960
|
|
|
37884
37961
|
// Drag hint
|
|
@@ -38266,6 +38343,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
38266
38343
|
border-style: solid;
|
|
38267
38344
|
line-height: $chat-bubble-line-height;
|
|
38268
38345
|
word-wrap: break-word;
|
|
38346
|
+
white-space: pre-wrap;
|
|
38269
38347
|
|
|
38270
38348
|
a {
|
|
38271
38349
|
color: inherit;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-classic",
|
|
3
3
|
"description": "Sass port of less based themes for Kendo UI theme",
|
|
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,7 +49,7 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for classic 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
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "32946c0dfe2496ff8c6ff8661391c0376b85c7b7"
|
|
55
55
|
}
|
|
@@ -167,7 +167,7 @@ $kendo-button-disabled-shadow: null !default;
|
|
|
167
167
|
|
|
168
168
|
// Solid button
|
|
169
169
|
$kendo-solid-button-gradient: $base-gradient !default;
|
|
170
|
-
$kendo-solid-button-shade-function: "try-shade";
|
|
170
|
+
$kendo-solid-button-shade-function: "try-shade" !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: 2 !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 2px rgba(0, 0, 0, .13) !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, 2 ) !default;
|
|
44
46
|
$scheduler-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
45
47
|
$scheduler-cell-height: $line-height-em !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss";
|