@progress/kendo-theme-default 5.2.1-dev.4 → 5.3.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.
Files changed (36) hide show
  1. package/dist/all.css +148 -20
  2. package/dist/all.scss +108 -23
  3. package/dist/default-ocean-blue.scss +44 -0
  4. package/lib/swatches/default-blue.json +1 -1
  5. package/lib/swatches/default-dataviz-v4.json +1 -1
  6. package/lib/swatches/default-green.json +1 -1
  7. package/lib/swatches/default-main-dark.json +1 -1
  8. package/lib/swatches/default-main.json +1 -1
  9. package/lib/swatches/default-nordic.json +1 -1
  10. package/lib/swatches/default-ocean-blue.json +272 -0
  11. package/lib/swatches/default-orange.json +1 -1
  12. package/lib/swatches/default-purple.json +1 -1
  13. package/lib/swatches/default-turquoise.json +1 -1
  14. package/lib/swatches/default-urban.json +1 -1
  15. package/lib/swatches/index.js +1 -0
  16. package/package.json +2 -2
  17. package/scss/action-sheet/_layout.scss +0 -1
  18. package/scss/action-sheet/_theme.scss +6 -0
  19. package/scss/action-sheet/_variables.scss +2 -1
  20. package/scss/button/_layout.scss +0 -1
  21. package/scss/button/_variables.scss +1 -1
  22. package/scss/chat/_layout.scss +1 -0
  23. package/scss/colorgradient/_variables.scss +1 -1
  24. package/scss/colorpalette/_theme.scss +3 -1
  25. package/scss/dropzone/_variables.scss +1 -1
  26. package/scss/expansion-panel/_theme.scss +1 -1
  27. package/scss/expansion-panel/_variables.scss +1 -1
  28. package/scss/floating-label/_layout.scss +10 -5
  29. package/scss/grid/_layout.scss +5 -4
  30. package/scss/pager/_layout.scss +1 -0
  31. package/scss/scheduler/_theme.scss +3 -0
  32. package/scss/scheduler/_variables.scss +2 -0
  33. package/scss/taskboard/_variables.scss +1 -1
  34. package/scss/utils/_aspect-ratio.scss +27 -0
  35. package/scss/utils/_index.scss +1 -0
  36. package/scss/utils/_text.scss +39 -4
package/dist/all.css CHANGED
@@ -1411,6 +1411,22 @@ kendo-sortable {
1411
1411
  background-color: #fafafa;
1412
1412
  }
1413
1413
 
1414
+ .k-aspect-ratio-auto {
1415
+ aspect-ratio: auto;
1416
+ }
1417
+
1418
+ .\!k-aspect-ratio-auto {
1419
+ aspect-ratio: auto !important;
1420
+ }
1421
+
1422
+ .k-aspect-ratio-1 {
1423
+ aspect-ratio: 1;
1424
+ }
1425
+
1426
+ .\!k-aspect-ratio-1 {
1427
+ aspect-ratio: 1 !important;
1428
+ }
1429
+
1414
1430
  .k-border {
1415
1431
  border-width: 1px !important;
1416
1432
  }
@@ -6090,6 +6106,10 @@ kendo-sortable {
6090
6106
  }
6091
6107
 
6092
6108
  .k-text-nowrap {
6109
+ white-space: nowrap;
6110
+ }
6111
+
6112
+ .\!k-text-nowrap {
6093
6113
  white-space: nowrap !important;
6094
6114
  }
6095
6115
 
@@ -6099,51 +6119,147 @@ kendo-sortable {
6099
6119
  text-overflow: ellipsis;
6100
6120
  }
6101
6121
 
6122
+ .k-white-space-normal {
6123
+ white-space: normal;
6124
+ }
6125
+
6126
+ .\!k-white-space-normal {
6127
+ white-space: normal !important;
6128
+ }
6129
+
6130
+ .k-white-space-nowrap {
6131
+ white-space: nowrap;
6132
+ }
6133
+
6134
+ .\!k-white-space-nowrap {
6135
+ white-space: nowrap !important;
6136
+ }
6137
+
6138
+ .k-white-space-pre {
6139
+ white-space: pre;
6140
+ }
6141
+
6142
+ .\!k-white-space-pre {
6143
+ white-space: pre !important;
6144
+ }
6145
+
6146
+ .k-white-space-pre-wrap {
6147
+ white-space: pre-wrap;
6148
+ }
6149
+
6150
+ .\!k-white-space-pre-wrap {
6151
+ white-space: pre-wrap !important;
6152
+ }
6153
+
6154
+ .k-white-space-pre-line {
6155
+ white-space: pre-line;
6156
+ }
6157
+
6158
+ .\!k-white-space-pre-line {
6159
+ white-space: pre-line !important;
6160
+ }
6161
+
6162
+ .k-white-space-break-spaces {
6163
+ white-space: break-spaces;
6164
+ }
6165
+
6166
+ .\!k-white-space-break-spaces {
6167
+ white-space: break-spaces !important;
6168
+ }
6169
+
6102
6170
  .k-text-left {
6171
+ text-align: left;
6172
+ }
6173
+
6174
+ .\!k-text-left {
6103
6175
  text-align: left !important;
6104
6176
  }
6105
6177
 
6106
6178
  .k-text-right {
6179
+ text-align: right;
6180
+ }
6181
+
6182
+ .\!k-text-right {
6107
6183
  text-align: right !important;
6108
6184
  }
6109
6185
 
6110
6186
  .k-text-center {
6187
+ text-align: center;
6188
+ }
6189
+
6190
+ .\!k-text-center {
6111
6191
  text-align: center !important;
6112
6192
  }
6113
6193
 
6114
6194
  .k-text-justify {
6195
+ text-align: justify;
6196
+ }
6197
+
6198
+ .\!k-text-justify {
6115
6199
  text-align: justify !important;
6116
6200
  }
6117
6201
 
6118
6202
  .k-text-lowercase {
6203
+ text-transform: lowercase;
6204
+ }
6205
+
6206
+ .\!k-text-lowercase {
6119
6207
  text-transform: lowercase !important;
6120
6208
  }
6121
6209
 
6122
6210
  .k-text-uppercase {
6211
+ text-transform: uppercase;
6212
+ }
6213
+
6214
+ .\!k-text-uppercase {
6123
6215
  text-transform: uppercase !important;
6124
6216
  }
6125
6217
 
6126
6218
  .k-text-capitalize {
6219
+ text-transform: capitalize;
6220
+ }
6221
+
6222
+ .\!k-text-capitalize {
6127
6223
  text-transform: capitalize !important;
6128
6224
  }
6129
6225
 
6130
6226
  .k-fs-xs {
6227
+ font-size: 10px;
6228
+ }
6229
+
6230
+ .\!k-fs-xs {
6131
6231
  font-size: 10px !important;
6132
6232
  }
6133
6233
 
6134
6234
  .k-fs-sm {
6235
+ font-size: 12px;
6236
+ }
6237
+
6238
+ .\!k-fs-sm {
6135
6239
  font-size: 12px !important;
6136
6240
  }
6137
6241
 
6138
6242
  .k-fs-md {
6243
+ font-size: 14px;
6244
+ }
6245
+
6246
+ .\!k-fs-md {
6139
6247
  font-size: 14px !important;
6140
6248
  }
6141
6249
 
6142
6250
  .k-fs-lg {
6251
+ font-size: 16px;
6252
+ }
6253
+
6254
+ .\!k-fs-lg {
6143
6255
  font-size: 16px !important;
6144
6256
  }
6145
6257
 
6146
6258
  .k-fs-xl {
6259
+ font-size: 20px;
6260
+ }
6261
+
6262
+ .\!k-fs-xl {
6147
6263
  font-size: 20px !important;
6148
6264
  }
6149
6265
 
@@ -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
 
@@ -13988,7 +14103,7 @@ textarea.k-input-inner {
13988
14103
  width: auto;
13989
14104
  }
13990
14105
 
13991
- .k-floating-label-container.k-state-empty > .k-label {
14106
+ .k-floating-label-container.k-state-empty > .k-label, .k-floating-label-container.k-empty > .k-label {
13992
14107
  top: 25.0000000004px;
13993
14108
  left: 9px;
13994
14109
  transform: scale(1);
@@ -13996,7 +14111,8 @@ textarea.k-input-inner {
13996
14111
  }
13997
14112
 
13998
14113
  .k-floating-label-container > .k-label,
13999
- .k-floating-label-container.k-state-focused > .k-label {
14114
+ .k-floating-label-container.k-state-focused > .k-label,
14115
+ .k-floating-label-container.k-focus > .k-label {
14000
14116
  top: 0;
14001
14117
  left: 0;
14002
14118
  transform: scale(1);
@@ -14019,25 +14135,30 @@ textarea.k-input-inner {
14019
14135
  [dir="rtl"] .k-floating-label-container > .k-label,
14020
14136
  .k-rtl .k-floating-label-container > .k-label, .k-floating-label-container[dir="rtl"] > .k-label {
14021
14137
  transform-origin: right center;
14138
+ transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out, right 0.2s ease-out;
14022
14139
  }
14023
14140
 
14024
- [dir="rtl"] .k-floating-label-container.k-state-empty > .k-label,
14025
- .k-rtl .k-floating-label-container.k-state-empty > .k-label, .k-floating-label-container[dir="rtl"].k-state-empty > .k-label {
14141
+ [dir="rtl"] .k-floating-label-container.k-state-empty > .k-label, [dir="rtl"] .k-floating-label-container.k-empty > .k-label,
14142
+ .k-rtl .k-floating-label-container.k-state-empty > .k-label,
14143
+ .k-rtl .k-floating-label-container.k-empty > .k-label, .k-floating-label-container[dir="rtl"].k-state-empty > .k-label, .k-floating-label-container[dir="rtl"].k-empty > .k-label {
14026
14144
  left: auto;
14027
14145
  right: 9px;
14028
14146
  }
14029
14147
 
14030
14148
  [dir="rtl"] .k-floating-label-container > .k-label,
14031
14149
  [dir="rtl"] .k-floating-label-container.k-state-focused > .k-label,
14150
+ [dir="rtl"] .k-floating-label-container.k-focus > .k-label,
14032
14151
  .k-rtl .k-floating-label-container > .k-label,
14033
- .k-rtl .k-floating-label-container.k-state-focused > .k-label, .k-floating-label-container[dir="rtl"] > .k-label,
14034
- .k-floating-label-container[dir="rtl"].k-state-focused > .k-label {
14152
+ .k-rtl .k-floating-label-container.k-state-focused > .k-label,
14153
+ .k-rtl .k-floating-label-container.k-focus > .k-label, .k-floating-label-container[dir="rtl"] > .k-label,
14154
+ .k-floating-label-container[dir="rtl"].k-state-focused > .k-label,
14155
+ .k-floating-label-container[dir="rtl"].k-focus > .k-label {
14035
14156
  left: auto;
14036
14157
  right: 0;
14037
14158
  }
14038
14159
 
14039
- [dir="rtl"] .k-floating-label-container:focus-within,
14040
- .k-rtl .k-floating-label-container:focus-within, .k-floating-label-container[dir="rtl"]:focus-within {
14160
+ [dir="rtl"] .k-floating-label-container:focus-within > .k-label,
14161
+ .k-rtl .k-floating-label-container:focus-within > .k-label, .k-floating-label-container[dir="rtl"]:focus-within > .k-label {
14041
14162
  left: auto;
14042
14163
  right: 0;
14043
14164
  }
@@ -18902,7 +19023,7 @@ kendo-label > .k-label {
18902
19023
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
18903
19024
  }
18904
19025
 
18905
- .k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover {
19026
+ .k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover, .k-colorpalette-tile.k-selected, .k-colorpalette-tile.k-selected:hover {
18906
19027
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px white;
18907
19028
  }
18908
19029
 
@@ -19131,7 +19252,7 @@ kendo-label > .k-label {
19131
19252
  }
19132
19253
 
19133
19254
  .k-colorgradient-input-label {
19134
- color: #8f8f8f;
19255
+ color: #666666;
19135
19256
  }
19136
19257
 
19137
19258
  .k-rtl .k-colorgradient .k-hue-slider.k-slider-horizontal .k-slider-track,
@@ -19994,7 +20115,7 @@ kendo-label > .k-label {
19994
20115
  }
19995
20116
 
19996
20117
  .k-dropzone-inner .k-dropzone-note {
19997
- color: #7e7e7e;
20118
+ color: #666666;
19998
20119
  }
19999
20120
 
20000
20121
  .k-external-dropzone-hover .k-icon,
@@ -21317,7 +21438,6 @@ kendo-label > .k-label {
21317
21438
 
21318
21439
  .k-actionsheet-item-description {
21319
21440
  font-size: 0.875em;
21320
- opacity: 0.75;
21321
21441
  }
21322
21442
 
21323
21443
  .k-actionsheet > .k-hr {
@@ -21380,6 +21500,10 @@ kendo-label > .k-label {
21380
21500
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
21381
21501
  }
21382
21502
 
21503
+ .k-actionsheet-item-description {
21504
+ color: #666666;
21505
+ }
21506
+
21383
21507
  .k-actionsheet-action:hover, .k-actionsheet-action.k-state-hover {
21384
21508
  background-color: #f0f0f0;
21385
21509
  }
@@ -23157,6 +23281,7 @@ kendo-card-footer {
23157
23281
  font-family: inherit;
23158
23282
  font-size: 14px;
23159
23283
  line-height: 1.4285714286;
23284
+ white-space: nowrap;
23160
23285
  display: flex;
23161
23286
  align-items: center;
23162
23287
  position: relative;
@@ -24325,7 +24450,7 @@ kendo-card-footer {
24325
24450
  }
24326
24451
 
24327
24452
  .k-expander-sub-title {
24328
- opacity: 0.5;
24453
+ color: #666666;
24329
24454
  }
24330
24455
 
24331
24456
  .k-panelbar {
@@ -25915,7 +26040,7 @@ kendo-card-footer {
25915
26040
  padding: 0;
25916
26041
  width: auto;
25917
26042
  height: auto;
25918
- opacity: .5;
26043
+ opacity: 0.5;
25919
26044
  }
25920
26045
 
25921
26046
  .k-group-indicator .k-button-flat::before, .k-group-indicator .k-button-flat::after {
@@ -26335,8 +26460,7 @@ div.k-grid-footer {
26335
26460
  }
26336
26461
 
26337
26462
  .k-grid-content,
26338
- .k-grid-content-locked,
26339
- .k-pager-wrap {
26463
+ .k-grid-content-locked {
26340
26464
  white-space: normal;
26341
26465
  }
26342
26466
 
@@ -29960,7 +30084,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
29960
30084
  }
29961
30085
 
29962
30086
  .k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-state-hover {
29963
- color: #ff7c73;
30087
+ color: #d6534a;
29964
30088
  }
29965
30089
 
29966
30090
  .k-taskboard-card:focus, .k-taskboard-card.k-state-focus {
@@ -31023,8 +31147,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
31023
31147
 
31024
31148
  .k-gantt .k-treelist-scrollable .k-task-summary {
31025
31149
  height: 15px;
31026
- -webkit-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%);
31027
- 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%);
31150
+ 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%);
31028
31151
  }
31029
31152
 
31030
31153
  .k-gantt .k-treelist-scrollable .k-task-summary-complete {
@@ -33046,6 +33169,10 @@ kendo-scheduler .k-recurrence-editor {
33046
33169
  color: black;
33047
33170
  }
33048
33171
 
33172
+ .k-event-ongoing {
33173
+ box-shadow: inset 0px 0px 0px 1px #ff0000;
33174
+ }
33175
+
33049
33176
  .k-scheduler-marquee::before,
33050
33177
  .k-scheduler-marquee::after {
33051
33178
  border-color: #ff6358;
@@ -33246,6 +33373,7 @@ kendo-scheduler .k-recurrence-editor {
33246
33373
  border-style: solid;
33247
33374
  line-height: 18px;
33248
33375
  word-wrap: break-word;
33376
+ white-space: pre-wrap;
33249
33377
  }
33250
33378
 
33251
33379
  .k-chat .k-bubble a {
package/dist/all.scss CHANGED
@@ -3299,6 +3299,36 @@ $display4-letter-spacing: null !default;
3299
3299
 
3300
3300
 
3301
3301
  // Component
3302
+ // #region @import "_aspect-ratio.scss"; -> packages/default/scss/utils/_aspect-ratio.scss
3303
+ @include exports( "utils/aspect-ratio" ) {
3304
+
3305
+ // Aspect-ratio documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio.
3306
+
3307
+ // @name k-aspect-ratio-auto
3308
+ // @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.
3309
+ // @group aspect-ratio
3310
+
3311
+ // @name k-aspect-ratio-1
3312
+ // @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.
3313
+ // @group aspect-ratio
3314
+
3315
+ $utils-aspect-ratio: (
3316
+ auto,
3317
+ 1
3318
+ ) !default;
3319
+
3320
+ @if $utils-aspect-ratio {
3321
+ @each $aspect-ratio in $utils-aspect-ratio {
3322
+ .k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio; }
3323
+
3324
+ // sass-lint:disable-block no-important
3325
+ .\!k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio !important; }
3326
+ }
3327
+ }
3328
+
3329
+ }
3330
+
3331
+ // #endregion
3302
3332
  // #region @import "_border.scss"; -> packages/default/scss/utils/_border.scss
3303
3333
  @include exports( "utils/border" ) {
3304
3334
 
@@ -4326,6 +4356,7 @@ $display4-letter-spacing: null !default;
4326
4356
  @include exports( "utils/text" ) {
4327
4357
 
4328
4358
  // stylelint-disable block-opening-brace-space-before
4359
+ // sass-lint:disable class-name-format
4329
4360
 
4330
4361
  // White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
4331
4362
  // Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
@@ -4333,6 +4364,7 @@ $display4-letter-spacing: null !default;
4333
4364
 
4334
4365
  $text-align: ( left, right, center, justify ) !default;
4335
4366
  $text-transform: ( lowercase, uppercase, capitalize ) !default;
4367
+ $white-space: ( normal, nowrap, pre, pre-wrap, pre-line, break-spaces ) !default;
4336
4368
 
4337
4369
  $kendo-font-sizes: (
4338
4370
  xs: $font-size-xs,
@@ -4347,12 +4379,42 @@ $display4-letter-spacing: null !default;
4347
4379
  /// @name k-text-nowrap
4348
4380
  /// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
4349
4381
  /// @group text
4350
- .k-text-nowrap { white-space: nowrap !important; } // sass-lint:disable-line no-important
4382
+ .k-text-nowrap { white-space: nowrap; }
4383
+ .\!k-text-nowrap { white-space: nowrap !important; } // sass-lint:disable-line no-important
4351
4384
  /// @name k-text-ellipsis
4352
4385
  /// @description This is equivalent to `white-space: nowrap; overflow: hidden; text-overflow: ellipsis;`.
4353
4386
  /// @group text
4354
4387
  .k-text-ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } // sass-lint:disable-line one-declaration-per-line
4355
4388
 
4389
+ /// @name k-white-space-normal
4390
+ /// @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.
4391
+ /// @group text
4392
+
4393
+ /// @name k-white-space-nowrap
4394
+ /// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
4395
+ /// @group text
4396
+
4397
+ /// @name k-white-space-pre
4398
+ /// @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.
4399
+ /// @group text
4400
+
4401
+ /// @name k-white-space-pre-wrap
4402
+ /// @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.
4403
+ /// @group text
4404
+
4405
+ /// @name k-white-space-pre-line
4406
+ /// @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.
4407
+ /// @group text
4408
+
4409
+ /// @name k-white-space-break-spaces
4410
+ /// @description This is equivalent to `white-space: break-spaces;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
4411
+ /// @group text
4412
+
4413
+ @each $wrap in $white-space {
4414
+ .k-white-space-#{$wrap} { white-space: $wrap; }
4415
+ .\!k-white-space-#{$wrap} { white-space: $wrap !important; } // sass-lint:disable-line no-important
4416
+ }
4417
+
4356
4418
 
4357
4419
  // Align
4358
4420
 
@@ -4373,7 +4435,8 @@ $display4-letter-spacing: null !default;
4373
4435
  /// @group text
4374
4436
 
4375
4437
  @each $align in $text-align {
4376
- .k-text-#{$align} { text-align: $align !important; } // sass-lint:disable-line no-important
4438
+ .k-text-#{$align} { text-align: $align; }
4439
+ .\!k-text-#{$align} { text-align: $align !important; } // sass-lint:disable-line no-important
4377
4440
  }
4378
4441
 
4379
4442
 
@@ -4392,12 +4455,14 @@ $display4-letter-spacing: null !default;
4392
4455
  /// @group text
4393
4456
 
4394
4457
  @each $transform in $text-transform {
4395
- .k-text-#{$transform} { text-transform: $transform !important; } // sass-lint:disable-line no-important
4458
+ .k-text-#{$transform} { text-transform: $transform; }
4459
+ .\!k-text-#{$transform} { text-transform: $transform !important; } // sass-lint:disable-line no-important
4396
4460
  }
4397
4461
 
4398
4462
  // Font Size
4399
4463
  @each $name, $size in $kendo-font-sizes {
4400
- .k-fs-#{$name} { font-size: $size !important; } // sass-lint:disable-line no-important
4464
+ .k-fs-#{$name} { font-size: $size; }
4465
+ .\!k-fs-#{$name} { font-size: $size !important; } // sass-lint:disable-line no-important
4401
4466
  }
4402
4467
 
4403
4468
  // Named font-weight
@@ -8084,7 +8149,7 @@ $kendo-button-disabled-shadow: null !default;
8084
8149
 
8085
8150
  // Solid button
8086
8151
  $kendo-solid-button-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
8087
- $kendo-solid-button-shade-function: "try-shade";
8152
+ $kendo-solid-button-shade-function: "try-shade" !default;
8088
8153
  $kendo-solid-button-shade-text-amount: 0 !default;
8089
8154
  $kendo-solid-button-shade-bg-amount: 0 !default;
8090
8155
  $kendo-solid-button-shade-border-amount: 0 !default;
@@ -8186,7 +8251,6 @@ $kendo-button-transition: color .2s ease-in-out !default;
8186
8251
 
8187
8252
  // Icon Button
8188
8253
  .k-icon-button {
8189
- aspect-ratio: 1;
8190
8254
  gap: 0;
8191
8255
 
8192
8256
  .k-icon {
@@ -9657,7 +9721,8 @@ $floating-label-focus-text: null !default;
9657
9721
  width: auto;
9658
9722
  }
9659
9723
 
9660
- &.k-state-empty {
9724
+ &.k-state-empty,
9725
+ &.k-empty {
9661
9726
  > .k-label {
9662
9727
  top: $floating-label-offset-y;
9663
9728
  left: $floating-label-offset-x;
@@ -9668,7 +9733,8 @@ $floating-label-focus-text: null !default;
9668
9733
 
9669
9734
  > .k-label,
9670
9735
  // &:focus-within > .k-label,
9671
- &.k-state-focused > .k-label {
9736
+ &.k-state-focused > .k-label,
9737
+ &.k-focus > .k-label {
9672
9738
  top: $floating-label-focus-offset-y;
9673
9739
  left: $floating-label-focus-offset-x;
9674
9740
  transform: scale( $floating-label-focus-scale );
@@ -9689,9 +9755,11 @@ $floating-label-focus-text: null !default;
9689
9755
 
9690
9756
  > .k-label {
9691
9757
  transform-origin: right center;
9758
+ transition: transform $floating-label-transition, color $floating-label-transition, top $floating-label-transition, right $floating-label-transition;
9692
9759
  }
9693
9760
 
9694
- &.k-state-empty {
9761
+ &.k-state-empty,
9762
+ &.k-empty {
9695
9763
  > .k-label {
9696
9764
  left: auto;
9697
9765
  right: $floating-label-offset-x;
@@ -9700,11 +9768,12 @@ $floating-label-focus-text: null !default;
9700
9768
 
9701
9769
  > .k-label,
9702
9770
  // &:focus-within > .k-label,
9703
- &.k-state-focused > .k-label {
9771
+ &.k-state-focused > .k-label,
9772
+ &.k-focus > .k-label {
9704
9773
  left: auto;
9705
9774
  right: $floating-label-focus-offset-x;
9706
9775
  }
9707
- &:focus-within {
9776
+ &:focus-within > .k-label {
9708
9777
  left: auto;
9709
9778
  right: $floating-label-focus-offset-x;
9710
9779
  }
@@ -17299,7 +17368,9 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
17299
17368
  }
17300
17369
 
17301
17370
  &.k-state-selected,
17302
- &.k-state-selected:hover {
17371
+ &.k-state-selected:hover,
17372
+ &.k-selected,
17373
+ &.k-selected:hover {
17303
17374
  @include box-shadow( $colorpalette-tile-selected-shadow );
17304
17375
  }
17305
17376
 
@@ -17441,7 +17512,7 @@ $colorgradient-canvas-draghandle-margin-x: -( $colorgradient-draghandle-width /
17441
17512
  $colorgradient-input-width: 46px !default;
17442
17513
  $colorgradient-input-gap: ( $colorgradient-spacer / 1.5 ) !default;
17443
17514
  $colorgradient-input-label-gap: ( $colorgradient-spacer / 3 ) !default;
17444
- $colorgradient-input-label-text: $disabled-text !default;
17515
+ $colorgradient-input-label-text: $subtle-text !default;
17445
17516
 
17446
17517
  $colorgradient-contrast-ratio-font-weight: $font-weight-bold !default;
17447
17518
  $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
@@ -19832,7 +19903,7 @@ $dropzone-hint-text: null !default;
19832
19903
 
19833
19904
  $dropzone-note-font-size: $font-size-sm !default;
19834
19905
  $dropzone-note-spacing: null !default;
19835
- $dropzone-note-text: try-tint( $dropzone-text, 4 ) !default;
19906
+ $dropzone-note-text: $subtle-text !default;
19836
19907
 
19837
19908
  // #endregion
19838
19909
  // #region @import "_layout.scss"; -> packages/default/scss/dropzone/_layout.scss
@@ -21275,8 +21346,9 @@ $actionsheet-item-icon-size: null !default;
21275
21346
 
21276
21347
  $actionsheet-item-title-font-weight: null !default;
21277
21348
  $actionsheet-item-title-text-transform: null !default;
21349
+
21278
21350
  $actionsheet-item-description-font-size: .875em !default;
21279
- $actionsheet-item-description-opacity: .75 !default;
21351
+ $actionsheet-item-description-text: $subtle-text !default;
21280
21352
 
21281
21353
  $actionsheet-item-hover-bg: $hovered-bg !default;
21282
21354
  $actionsheet-item-hover-text: null !default;
@@ -21389,7 +21461,6 @@ $actionsheet-item-disabled-shadow: null !default;
21389
21461
  }
21390
21462
  .k-actionsheet-item-description {
21391
21463
  font-size: $actionsheet-item-description-font-size;
21392
- opacity: $actionsheet-item-description-opacity;
21393
21464
  }
21394
21465
 
21395
21466
 
@@ -21481,6 +21552,12 @@ $actionsheet-item-disabled-shadow: null !default;
21481
21552
  .k-actionsheet-item {}
21482
21553
 
21483
21554
 
21555
+ // Actionsheet item description
21556
+ .k-actionsheet-item-description {
21557
+ @include fill( $color: $actionsheet-item-description-text );
21558
+ }
21559
+
21560
+
21484
21561
  // Actionsheet action
21485
21562
  .k-actionsheet-action {
21486
21563
 
@@ -23956,6 +24033,7 @@ $pager-dropdown-width: 5em !default;
23956
24033
  font-family: $pager-font-family;
23957
24034
  font-size: $pager-font-size;
23958
24035
  line-height: $pager-line-height;
24036
+ white-space: nowrap;
23959
24037
  display: flex;
23960
24038
  align-items: center;
23961
24039
  position: relative;
@@ -25795,7 +25873,7 @@ $expander-header-focused-shadow: $kendo-list-item-focus-shadow !default;
25795
25873
 
25796
25874
  $expander-title-text: $primary !default;
25797
25875
 
25798
- $expander-header-sub-title-opacity: .5 !default;
25876
+ $expander-header-sub-title-text: $subtle-text !default;
25799
25877
 
25800
25878
  $expander-content-padding-x: $padding-x * 2 !default;
25801
25879
  $expander-content-padding-y: $padding-y * 4 !default;
@@ -25918,7 +25996,7 @@ $expander-content-padding-y: $padding-y * 4 !default;
25918
25996
  }
25919
25997
 
25920
25998
  .k-expander-sub-title {
25921
- opacity: $expander-header-sub-title-opacity;
25999
+ color: $expander-header-sub-title-text;
25922
26000
  }
25923
26001
  }
25924
26002
 
@@ -27610,6 +27688,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
27610
27688
 
27611
27689
  $grid-group-indicator-border-radius: $kendo-border-radius-md !default;
27612
27690
  $grid-group-indicator-gap: $table-cell-padding-y !default;
27691
+ $grid-group-indicator-button-opacity: $kendo-input-clear-value-opacity !default;
27692
+ $grid-group-indicator-button-hover-opacity: $kendo-input-clear-value-hover-opacity !default;
27613
27693
 
27614
27694
  $grid-grouping-row-border-top: 1px !default;
27615
27695
  $grid-group-footer-border-y: 1px !default;
@@ -28078,7 +28158,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
28078
28158
  padding: 0;
28079
28159
  width: auto;
28080
28160
  height: auto;
28081
- opacity: .5;
28161
+ opacity: $grid-group-indicator-button-opacity;
28082
28162
 
28083
28163
  &::before,
28084
28164
  &::after {
@@ -28086,7 +28166,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
28086
28166
  }
28087
28167
 
28088
28168
  &:hover {
28089
- opacity: 1;
28169
+ opacity: $grid-group-indicator-button-hover-opacity;
28090
28170
  }
28091
28171
  }
28092
28172
  }
@@ -28510,8 +28590,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
28510
28590
  }
28511
28591
 
28512
28592
  .k-grid-content,
28513
- .k-grid-content-locked,
28514
- .k-pager-wrap {
28593
+ .k-grid-content-locked {
28515
28594
  white-space: normal;
28516
28595
  }
28517
28596
 
@@ -33083,7 +33162,7 @@ $taskboard-card-selected-shadow: none !default;
33083
33162
 
33084
33163
  $taskboard-card-header-text: $primary !default;
33085
33164
  $taskboard-card-header-focus-text: $primary-darker !default;
33086
- $taskboard-card-header-hover-text: $primary-lighter !default;
33165
+ $taskboard-card-header-hover-text: $primary-darker !default;
33087
33166
 
33088
33167
  $taskboard-drag-placeholder-border-width: 1px !default;
33089
33168
  $taskboard-drag-placeholder-border-radius: $taskboard-card-border-radius !default;
@@ -35978,6 +36057,8 @@ $scheduler-event-selected-border: null !default;
35978
36057
  $scheduler-event-selected-gradient: null !default;
35979
36058
  $scheduler-event-selected-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
35980
36059
 
36060
+ $scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
36061
+
35981
36062
  $scheduler-cell-padding-x: map-get( $spacing, 2 ) !default;
35982
36063
  $scheduler-cell-padding-y: map-get( $spacing, 2 ) !default;
35983
36064
  $scheduler-cell-height: $line-height-em !default;
@@ -37262,6 +37343,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
37262
37343
  .k-event-inverse {
37263
37344
  color: contrast-wcag( $scheduler-event-text );
37264
37345
  }
37346
+ .k-event-ongoing {
37347
+ @include box-shadow( $scheduler-event-ongoing-shadow );
37348
+ }
37265
37349
 
37266
37350
 
37267
37351
  // Drag hint
@@ -37646,6 +37730,7 @@ $chat-quick-reply-hover-border: $primary !default;
37646
37730
  border-style: solid;
37647
37731
  line-height: $chat-bubble-line-height;
37648
37732
  word-wrap: break-word;
37733
+ white-space: pre-wrap;
37649
37734
 
37650
37735
  a {
37651
37736
  color: inherit;