@progress/kendo-theme-material 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/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.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: white;
|
|
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: 10px;
|
|
6233
|
+
}
|
|
6234
|
+
|
|
6235
|
+
.\!k-fs-xs {
|
|
6136
6236
|
font-size: 10px !important;
|
|
6137
6237
|
}
|
|
6138
6238
|
|
|
6139
6239
|
.k-fs-sm {
|
|
6240
|
+
font-size: 12px;
|
|
6241
|
+
}
|
|
6242
|
+
|
|
6243
|
+
.\!k-fs-sm {
|
|
6140
6244
|
font-size: 12px !important;
|
|
6141
6245
|
}
|
|
6142
6246
|
|
|
6143
6247
|
.k-fs-md {
|
|
6248
|
+
font-size: 14px;
|
|
6249
|
+
}
|
|
6250
|
+
|
|
6251
|
+
.\!k-fs-md {
|
|
6144
6252
|
font-size: 14px !important;
|
|
6145
6253
|
}
|
|
6146
6254
|
|
|
6147
6255
|
.k-fs-lg {
|
|
6256
|
+
font-size: 16px;
|
|
6257
|
+
}
|
|
6258
|
+
|
|
6259
|
+
.\!k-fs-lg {
|
|
6148
6260
|
font-size: 16px !important;
|
|
6149
6261
|
}
|
|
6150
6262
|
|
|
6151
6263
|
.k-fs-xl {
|
|
6264
|
+
font-size: 20px;
|
|
6265
|
+
}
|
|
6266
|
+
|
|
6267
|
+
.\!k-fs-xl {
|
|
6152
6268
|
font-size: 20px !important;
|
|
6153
6269
|
}
|
|
6154
6270
|
|
|
@@ -12062,7 +12178,6 @@ kendo-badge-container {
|
|
|
12062
12178
|
}
|
|
12063
12179
|
|
|
12064
12180
|
.k-icon-button {
|
|
12065
|
-
aspect-ratio: 1;
|
|
12066
12181
|
gap: 0;
|
|
12067
12182
|
}
|
|
12068
12183
|
|
|
@@ -14467,11 +14582,12 @@ textarea.k-input-inner {
|
|
|
14467
14582
|
transform: scale(0.75);
|
|
14468
14583
|
}
|
|
14469
14584
|
|
|
14470
|
-
.k-floating-label-container.k-state-empty:not(.k-state-focused) :-ms-input-placeholder {
|
|
14585
|
+
.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 {
|
|
14471
14586
|
color: transparent;
|
|
14472
14587
|
}
|
|
14473
14588
|
|
|
14474
|
-
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder
|
|
14589
|
+
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
14590
|
+
.k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
14475
14591
|
color: transparent;
|
|
14476
14592
|
}
|
|
14477
14593
|
|
|
@@ -19860,7 +19976,7 @@ kendo-label > .k-label {
|
|
|
19860
19976
|
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
|
|
19861
19977
|
}
|
|
19862
19978
|
|
|
19863
|
-
.k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover {
|
|
19979
|
+
.k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover, .k-colorpalette-tile.k-selected, .k-colorpalette-tile.k-selected:hover {
|
|
19864
19980
|
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px white;
|
|
19865
19981
|
}
|
|
19866
19982
|
|
|
@@ -24151,6 +24267,7 @@ kendo-card-footer {
|
|
|
24151
24267
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
24152
24268
|
font-size: 14px;
|
|
24153
24269
|
line-height: 2;
|
|
24270
|
+
white-space: nowrap;
|
|
24154
24271
|
display: flex;
|
|
24155
24272
|
align-items: center;
|
|
24156
24273
|
position: relative;
|
|
@@ -27063,7 +27180,7 @@ kendo-card-footer {
|
|
|
27063
27180
|
padding: 0;
|
|
27064
27181
|
width: auto;
|
|
27065
27182
|
height: auto;
|
|
27066
|
-
opacity: .5;
|
|
27183
|
+
opacity: 0.5;
|
|
27067
27184
|
}
|
|
27068
27185
|
|
|
27069
27186
|
.k-group-indicator .k-button-flat::before, .k-group-indicator .k-button-flat::after {
|
|
@@ -27484,8 +27601,7 @@ div.k-grid-footer {
|
|
|
27484
27601
|
}
|
|
27485
27602
|
|
|
27486
27603
|
.k-grid-content,
|
|
27487
|
-
.k-grid-content-locked
|
|
27488
|
-
.k-pager-wrap {
|
|
27604
|
+
.k-grid-content-locked {
|
|
27489
27605
|
white-space: normal;
|
|
27490
27606
|
}
|
|
27491
27607
|
|
|
@@ -32643,8 +32759,7 @@ td.k-editor-content {
|
|
|
32643
32759
|
|
|
32644
32760
|
.k-gantt .k-treelist-scrollable .k-task-summary {
|
|
32645
32761
|
height: 15px;
|
|
32646
|
-
|
|
32647
|
-
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%);
|
|
32762
|
+
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%);
|
|
32648
32763
|
}
|
|
32649
32764
|
|
|
32650
32765
|
.k-gantt .k-treelist-scrollable .k-task-summary-complete {
|
|
@@ -34797,6 +34912,10 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
34797
34912
|
color: black;
|
|
34798
34913
|
}
|
|
34799
34914
|
|
|
34915
|
+
.k-event-ongoing {
|
|
34916
|
+
box-shadow: inset 0px 0px 0px 1px #ff0000;
|
|
34917
|
+
}
|
|
34918
|
+
|
|
34800
34919
|
.k-scheduler-marquee::before,
|
|
34801
34920
|
.k-scheduler-marquee::after {
|
|
34802
34921
|
border-color: #3f51b5;
|
|
@@ -35009,6 +35128,7 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
35009
35128
|
border-style: solid;
|
|
35010
35129
|
line-height: 1.25;
|
|
35011
35130
|
word-wrap: break-word;
|
|
35131
|
+
white-space: pre-wrap;
|
|
35012
35132
|
}
|
|
35013
35133
|
|
|
35014
35134
|
.k-chat .k-bubble a {
|
package/dist/all.scss
CHANGED
|
@@ -4152,6 +4152,39 @@ $display4-letter-spacing: null !default;
|
|
|
4152
4152
|
|
|
4153
4153
|
|
|
4154
4154
|
// Component
|
|
4155
|
+
// #region @import "_aspect-ratio.scss"; -> packages/material/scss/utils/_aspect-ratio.scss
|
|
4156
|
+
// #region @import "~@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss
|
|
4157
|
+
@include exports( "utils/aspect-ratio" ) {
|
|
4158
|
+
|
|
4159
|
+
// Aspect-ratio documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio.
|
|
4160
|
+
|
|
4161
|
+
// @name k-aspect-ratio-auto
|
|
4162
|
+
// @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.
|
|
4163
|
+
// @group aspect-ratio
|
|
4164
|
+
|
|
4165
|
+
// @name k-aspect-ratio-1
|
|
4166
|
+
// @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.
|
|
4167
|
+
// @group aspect-ratio
|
|
4168
|
+
|
|
4169
|
+
$utils-aspect-ratio: (
|
|
4170
|
+
auto,
|
|
4171
|
+
1
|
|
4172
|
+
) !default;
|
|
4173
|
+
|
|
4174
|
+
@if $utils-aspect-ratio {
|
|
4175
|
+
@each $aspect-ratio in $utils-aspect-ratio {
|
|
4176
|
+
.k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio; }
|
|
4177
|
+
|
|
4178
|
+
// sass-lint:disable-block no-important
|
|
4179
|
+
.\!k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio !important; }
|
|
4180
|
+
}
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
}
|
|
4184
|
+
|
|
4185
|
+
// #endregion
|
|
4186
|
+
|
|
4187
|
+
// #endregion
|
|
4155
4188
|
// #region @import "_border.scss"; -> packages/material/scss/utils/_border.scss
|
|
4156
4189
|
$utils-border-radius: (
|
|
4157
4190
|
default: $kendo-border-radius-md,
|
|
@@ -5228,6 +5261,7 @@ $utils-border-radius: (
|
|
|
5228
5261
|
@include exports( "utils/text" ) {
|
|
5229
5262
|
|
|
5230
5263
|
// stylelint-disable block-opening-brace-space-before
|
|
5264
|
+
// sass-lint:disable class-name-format
|
|
5231
5265
|
|
|
5232
5266
|
// White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
|
|
5233
5267
|
// Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
|
|
@@ -5235,6 +5269,7 @@ $utils-border-radius: (
|
|
|
5235
5269
|
|
|
5236
5270
|
$text-align: ( left, right, center, justify ) !default;
|
|
5237
5271
|
$text-transform: ( lowercase, uppercase, capitalize ) !default;
|
|
5272
|
+
$white-space: ( normal, nowrap, pre, pre-wrap, pre-line, break-spaces ) !default;
|
|
5238
5273
|
|
|
5239
5274
|
$kendo-font-sizes: (
|
|
5240
5275
|
xs: $font-size-xs,
|
|
@@ -5249,12 +5284,42 @@ $utils-border-radius: (
|
|
|
5249
5284
|
/// @name k-text-nowrap
|
|
5250
5285
|
/// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
5251
5286
|
/// @group text
|
|
5252
|
-
.k-text-nowrap { white-space: nowrap
|
|
5287
|
+
.k-text-nowrap { white-space: nowrap; }
|
|
5288
|
+
.\!k-text-nowrap { white-space: nowrap !important; } // sass-lint:disable-line no-important
|
|
5253
5289
|
/// @name k-text-ellipsis
|
|
5254
5290
|
/// @description This is equivalent to `white-space: nowrap; overflow: hidden; text-overflow: ellipsis;`.
|
|
5255
5291
|
/// @group text
|
|
5256
5292
|
.k-text-ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } // sass-lint:disable-line one-declaration-per-line
|
|
5257
5293
|
|
|
5294
|
+
/// @name k-white-space-normal
|
|
5295
|
+
/// @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.
|
|
5296
|
+
/// @group text
|
|
5297
|
+
|
|
5298
|
+
/// @name k-white-space-nowrap
|
|
5299
|
+
/// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
5300
|
+
/// @group text
|
|
5301
|
+
|
|
5302
|
+
/// @name k-white-space-pre
|
|
5303
|
+
/// @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.
|
|
5304
|
+
/// @group text
|
|
5305
|
+
|
|
5306
|
+
/// @name k-white-space-pre-wrap
|
|
5307
|
+
/// @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.
|
|
5308
|
+
/// @group text
|
|
5309
|
+
|
|
5310
|
+
/// @name k-white-space-pre-line
|
|
5311
|
+
/// @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.
|
|
5312
|
+
/// @group text
|
|
5313
|
+
|
|
5314
|
+
/// @name k-white-space-break-spaces
|
|
5315
|
+
/// @description This is equivalent to `white-space: break-spaces;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
5316
|
+
/// @group text
|
|
5317
|
+
|
|
5318
|
+
@each $wrap in $white-space {
|
|
5319
|
+
.k-white-space-#{$wrap} { white-space: $wrap; }
|
|
5320
|
+
.\!k-white-space-#{$wrap} { white-space: $wrap !important; } // sass-lint:disable-line no-important
|
|
5321
|
+
}
|
|
5322
|
+
|
|
5258
5323
|
|
|
5259
5324
|
// Align
|
|
5260
5325
|
|
|
@@ -5275,7 +5340,8 @@ $utils-border-radius: (
|
|
|
5275
5340
|
/// @group text
|
|
5276
5341
|
|
|
5277
5342
|
@each $align in $text-align {
|
|
5278
|
-
.k-text-#{$align} { text-align: $align
|
|
5343
|
+
.k-text-#{$align} { text-align: $align; }
|
|
5344
|
+
.\!k-text-#{$align} { text-align: $align !important; } // sass-lint:disable-line no-important
|
|
5279
5345
|
}
|
|
5280
5346
|
|
|
5281
5347
|
|
|
@@ -5294,12 +5360,14 @@ $utils-border-radius: (
|
|
|
5294
5360
|
/// @group text
|
|
5295
5361
|
|
|
5296
5362
|
@each $transform in $text-transform {
|
|
5297
|
-
.k-text-#{$transform} { text-transform: $transform
|
|
5363
|
+
.k-text-#{$transform} { text-transform: $transform; }
|
|
5364
|
+
.\!k-text-#{$transform} { text-transform: $transform !important; } // sass-lint:disable-line no-important
|
|
5298
5365
|
}
|
|
5299
5366
|
|
|
5300
5367
|
// Font Size
|
|
5301
5368
|
@each $name, $size in $kendo-font-sizes {
|
|
5302
|
-
.k-fs-#{$name}
|
|
5369
|
+
.k-fs-#{$name} { font-size: $size; }
|
|
5370
|
+
.\!k-fs-#{$name} { font-size: $size !important; } // sass-lint:disable-line no-important
|
|
5303
5371
|
}
|
|
5304
5372
|
|
|
5305
5373
|
// Named font-weight
|
|
@@ -9074,7 +9142,7 @@ $kendo-button-disabled-shadow: none !default;
|
|
|
9074
9142
|
|
|
9075
9143
|
// Solid button
|
|
9076
9144
|
$kendo-solid-button-gradient: null !default;
|
|
9077
|
-
$kendo-solid-button-shade-function: "try-shade";
|
|
9145
|
+
$kendo-solid-button-shade-function: "try-shade" !default;
|
|
9078
9146
|
$kendo-solid-button-shade-text-amount: null !default;
|
|
9079
9147
|
$kendo-solid-button-shade-bg-amount: 0 !default;
|
|
9080
9148
|
$kendo-solid-button-shade-border-amount: 0 !default;
|
|
@@ -9177,7 +9245,6 @@ $kendo-button-transition: box-shadow 280ms cubic-bezier( .4, 0, .2, 1 ) !default
|
|
|
9177
9245
|
|
|
9178
9246
|
// Icon Button
|
|
9179
9247
|
.k-icon-button {
|
|
9180
|
-
aspect-ratio: 1;
|
|
9181
9248
|
gap: 0;
|
|
9182
9249
|
|
|
9183
9250
|
.k-icon {
|
|
@@ -10946,7 +11013,8 @@ $floating-label-focus-text: $primary !default;
|
|
|
10946
11013
|
transform: scale( $floating-label-focus-scale );
|
|
10947
11014
|
}
|
|
10948
11015
|
|
|
10949
|
-
&.k-state-empty:not(.k-state-focused) ::placeholder
|
|
11016
|
+
&.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
11017
|
+
&.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
10950
11018
|
color: transparent;
|
|
10951
11019
|
}
|
|
10952
11020
|
|
|
@@ -19338,7 +19406,9 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
19338
19406
|
}
|
|
19339
19407
|
|
|
19340
19408
|
&.k-state-selected,
|
|
19341
|
-
&.k-state-selected:hover
|
|
19409
|
+
&.k-state-selected:hover,
|
|
19410
|
+
&.k-selected,
|
|
19411
|
+
&.k-selected:hover {
|
|
19342
19412
|
@include box-shadow( $colorpalette-tile-selected-shadow );
|
|
19343
19413
|
}
|
|
19344
19414
|
|
|
@@ -26396,6 +26466,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
26396
26466
|
font-family: $pager-font-family;
|
|
26397
26467
|
font-size: $pager-font-size;
|
|
26398
26468
|
line-height: $pager-line-height;
|
|
26469
|
+
white-space: nowrap;
|
|
26399
26470
|
display: flex;
|
|
26400
26471
|
align-items: center;
|
|
26401
26472
|
position: relative;
|
|
@@ -30199,6 +30270,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
30199
30270
|
|
|
30200
30271
|
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
30201
30272
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
30273
|
+
$grid-group-indicator-button-opacity: $kendo-input-clear-value-opacity !default;
|
|
30274
|
+
$grid-group-indicator-button-hover-opacity: $kendo-input-clear-value-hover-opacity !default;
|
|
30202
30275
|
|
|
30203
30276
|
$grid-grouping-row-border-top: 1px !default;
|
|
30204
30277
|
$grid-group-footer-border-y: 1px !default;
|
|
@@ -30667,7 +30740,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
30667
30740
|
padding: 0;
|
|
30668
30741
|
width: auto;
|
|
30669
30742
|
height: auto;
|
|
30670
|
-
opacity:
|
|
30743
|
+
opacity: $grid-group-indicator-button-opacity;
|
|
30671
30744
|
|
|
30672
30745
|
&::before,
|
|
30673
30746
|
&::after {
|
|
@@ -30675,7 +30748,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
30675
30748
|
}
|
|
30676
30749
|
|
|
30677
30750
|
&:hover {
|
|
30678
|
-
opacity:
|
|
30751
|
+
opacity: $grid-group-indicator-button-hover-opacity;
|
|
30679
30752
|
}
|
|
30680
30753
|
}
|
|
30681
30754
|
}
|
|
@@ -31099,8 +31172,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
31099
31172
|
}
|
|
31100
31173
|
|
|
31101
31174
|
.k-grid-content,
|
|
31102
|
-
.k-grid-content-locked
|
|
31103
|
-
.k-pager-wrap {
|
|
31175
|
+
.k-grid-content-locked {
|
|
31104
31176
|
white-space: normal;
|
|
31105
31177
|
}
|
|
31106
31178
|
|
|
@@ -39261,6 +39333,8 @@ $scheduler-event-selected-border: null !default;
|
|
|
39261
39333
|
$scheduler-event-selected-gradient: null !default;
|
|
39262
39334
|
$scheduler-event-selected-shadow: $box-shadow-depth-3 !default;
|
|
39263
39335
|
|
|
39336
|
+
$scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
39337
|
+
|
|
39264
39338
|
$scheduler-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
39265
39339
|
$scheduler-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
39266
39340
|
$scheduler-cell-height: $line-height * 1rem !default;
|
|
@@ -40714,6 +40788,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40714
40788
|
.k-event-inverse {
|
|
40715
40789
|
color: contrast-wcag( $scheduler-event-text );
|
|
40716
40790
|
}
|
|
40791
|
+
.k-event-ongoing {
|
|
40792
|
+
@include box-shadow( $scheduler-event-ongoing-shadow );
|
|
40793
|
+
}
|
|
40717
40794
|
|
|
40718
40795
|
|
|
40719
40796
|
// Drag hint
|
|
@@ -41135,6 +41212,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41135
41212
|
border-style: solid;
|
|
41136
41213
|
line-height: $chat-bubble-line-height;
|
|
41137
41214
|
word-wrap: break-word;
|
|
41215
|
+
white-space: pre-wrap;
|
|
41138
41216
|
|
|
41139
41217
|
a {
|
|
41140
41218
|
color: inherit;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-material",
|
|
3
3
|
"description": "Material 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": [
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"postpublish": "echo 'no postpublish for material theme'"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@progress/kendo-theme-default": "^5.2
|
|
53
|
+
"@progress/kendo-theme-default": "^5.3.2-dev.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "32946c0dfe2496ff8c6ff8661391c0376b85c7b7"
|
|
56
56
|
}
|
|
@@ -167,7 +167,7 @@ $kendo-button-disabled-shadow: none !default;
|
|
|
167
167
|
|
|
168
168
|
// Solid button
|
|
169
169
|
$kendo-solid-button-gradient: null !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: null !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: $box-shadow-depth-3 !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 * 1rem !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss";
|