@progress/kendo-theme-default 5.2.1-dev.5 → 5.3.1
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 +87 -12
- package/dist/default-ocean-blue.scss +8 -7
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue.json +18 -8
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/lib/swatches/index.js +1 -0
- package/package.json +2 -2
- package/scss/button/_layout.scss +0 -1
- package/scss/button/_variables.scss +1 -1
- package/scss/chat/_layout.scss +1 -0
- package/scss/colorpalette/_theme.scss +3 -1
- package/scss/floating-label/_layout.scss +2 -1
- package/scss/grid/_layout.scss +5 -4
- package/scss/pager/_layout.scss +1 -0
- package/scss/scheduler/_theme.scss +3 -0
- package/scss/scheduler/_variables.scss +2 -0
- package/scss/utils/_aspect-ratio.scss +27 -0
- package/scss/utils/_index.scss +1 -0
- 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
|
|
|
@@ -14009,11 +14124,12 @@ textarea.k-input-inner {
|
|
|
14009
14124
|
transform: scale(1);
|
|
14010
14125
|
}
|
|
14011
14126
|
|
|
14012
|
-
.k-floating-label-container.k-state-empty:not(.k-state-focused) :-ms-input-placeholder {
|
|
14127
|
+
.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 {
|
|
14013
14128
|
color: transparent;
|
|
14014
14129
|
}
|
|
14015
14130
|
|
|
14016
|
-
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder
|
|
14131
|
+
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
14132
|
+
.k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
14017
14133
|
color: transparent;
|
|
14018
14134
|
}
|
|
14019
14135
|
|
|
@@ -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
|
|
|
@@ -23166,6 +23282,7 @@ kendo-card-footer {
|
|
|
23166
23282
|
font-family: inherit;
|
|
23167
23283
|
font-size: 14px;
|
|
23168
23284
|
line-height: 1.4285714286;
|
|
23285
|
+
white-space: nowrap;
|
|
23169
23286
|
display: flex;
|
|
23170
23287
|
align-items: center;
|
|
23171
23288
|
position: relative;
|
|
@@ -25924,7 +26041,7 @@ kendo-card-footer {
|
|
|
25924
26041
|
padding: 0;
|
|
25925
26042
|
width: auto;
|
|
25926
26043
|
height: auto;
|
|
25927
|
-
opacity: .5;
|
|
26044
|
+
opacity: 0.5;
|
|
25928
26045
|
}
|
|
25929
26046
|
|
|
25930
26047
|
.k-group-indicator .k-button-flat::before, .k-group-indicator .k-button-flat::after {
|
|
@@ -26344,8 +26461,7 @@ div.k-grid-footer {
|
|
|
26344
26461
|
}
|
|
26345
26462
|
|
|
26346
26463
|
.k-grid-content,
|
|
26347
|
-
.k-grid-content-locked
|
|
26348
|
-
.k-pager-wrap {
|
|
26464
|
+
.k-grid-content-locked {
|
|
26349
26465
|
white-space: normal;
|
|
26350
26466
|
}
|
|
26351
26467
|
|
|
@@ -31032,8 +31148,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31032
31148
|
|
|
31033
31149
|
.k-gantt .k-treelist-scrollable .k-task-summary {
|
|
31034
31150
|
height: 15px;
|
|
31035
|
-
|
|
31036
|
-
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%);
|
|
31151
|
+
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%);
|
|
31037
31152
|
}
|
|
31038
31153
|
|
|
31039
31154
|
.k-gantt .k-treelist-scrollable .k-task-summary-complete {
|
|
@@ -33055,6 +33170,10 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33055
33170
|
color: black;
|
|
33056
33171
|
}
|
|
33057
33172
|
|
|
33173
|
+
.k-event-ongoing {
|
|
33174
|
+
box-shadow: inset 0px 0px 0px 1px #ff0000;
|
|
33175
|
+
}
|
|
33176
|
+
|
|
33058
33177
|
.k-scheduler-marquee::before,
|
|
33059
33178
|
.k-scheduler-marquee::after {
|
|
33060
33179
|
border-color: #ff6358;
|
|
@@ -33255,6 +33374,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
33255
33374
|
border-style: solid;
|
|
33256
33375
|
line-height: 18px;
|
|
33257
33376
|
word-wrap: break-word;
|
|
33377
|
+
white-space: pre-wrap;
|
|
33258
33378
|
}
|
|
33259
33379
|
|
|
33260
33380
|
.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
|
|
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
|
|
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
|
|
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}
|
|
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 {
|
|
@@ -9681,7 +9745,8 @@ $floating-label-focus-text: null !default;
|
|
|
9681
9745
|
transform: scale( $floating-label-focus-scale );
|
|
9682
9746
|
}
|
|
9683
9747
|
|
|
9684
|
-
&.k-state-empty:not(.k-state-focused) ::placeholder
|
|
9748
|
+
&.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
9749
|
+
&.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
9685
9750
|
color: transparent;
|
|
9686
9751
|
}
|
|
9687
9752
|
|
|
@@ -17304,7 +17369,9 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
17304
17369
|
}
|
|
17305
17370
|
|
|
17306
17371
|
&.k-state-selected,
|
|
17307
|
-
&.k-state-selected:hover
|
|
17372
|
+
&.k-state-selected:hover,
|
|
17373
|
+
&.k-selected,
|
|
17374
|
+
&.k-selected:hover {
|
|
17308
17375
|
@include box-shadow( $colorpalette-tile-selected-shadow );
|
|
17309
17376
|
}
|
|
17310
17377
|
|
|
@@ -23967,6 +24034,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
23967
24034
|
font-family: $pager-font-family;
|
|
23968
24035
|
font-size: $pager-font-size;
|
|
23969
24036
|
line-height: $pager-line-height;
|
|
24037
|
+
white-space: nowrap;
|
|
23970
24038
|
display: flex;
|
|
23971
24039
|
align-items: center;
|
|
23972
24040
|
position: relative;
|
|
@@ -27621,6 +27689,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
27621
27689
|
|
|
27622
27690
|
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
27623
27691
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
27692
|
+
$grid-group-indicator-button-opacity: $kendo-input-clear-value-opacity !default;
|
|
27693
|
+
$grid-group-indicator-button-hover-opacity: $kendo-input-clear-value-hover-opacity !default;
|
|
27624
27694
|
|
|
27625
27695
|
$grid-grouping-row-border-top: 1px !default;
|
|
27626
27696
|
$grid-group-footer-border-y: 1px !default;
|
|
@@ -28089,7 +28159,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28089
28159
|
padding: 0;
|
|
28090
28160
|
width: auto;
|
|
28091
28161
|
height: auto;
|
|
28092
|
-
opacity:
|
|
28162
|
+
opacity: $grid-group-indicator-button-opacity;
|
|
28093
28163
|
|
|
28094
28164
|
&::before,
|
|
28095
28165
|
&::after {
|
|
@@ -28097,7 +28167,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28097
28167
|
}
|
|
28098
28168
|
|
|
28099
28169
|
&:hover {
|
|
28100
|
-
opacity:
|
|
28170
|
+
opacity: $grid-group-indicator-button-hover-opacity;
|
|
28101
28171
|
}
|
|
28102
28172
|
}
|
|
28103
28173
|
}
|
|
@@ -28521,8 +28591,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28521
28591
|
}
|
|
28522
28592
|
|
|
28523
28593
|
.k-grid-content,
|
|
28524
|
-
.k-grid-content-locked
|
|
28525
|
-
.k-pager-wrap {
|
|
28594
|
+
.k-grid-content-locked {
|
|
28526
28595
|
white-space: normal;
|
|
28527
28596
|
}
|
|
28528
28597
|
|
|
@@ -35989,6 +36058,8 @@ $scheduler-event-selected-border: null !default;
|
|
|
35989
36058
|
$scheduler-event-selected-gradient: null !default;
|
|
35990
36059
|
$scheduler-event-selected-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
35991
36060
|
|
|
36061
|
+
$scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
36062
|
+
|
|
35992
36063
|
$scheduler-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
35993
36064
|
$scheduler-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
35994
36065
|
$scheduler-cell-height: $line-height-em !default;
|
|
@@ -37273,6 +37344,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
37273
37344
|
.k-event-inverse {
|
|
37274
37345
|
color: contrast-wcag( $scheduler-event-text );
|
|
37275
37346
|
}
|
|
37347
|
+
.k-event-ongoing {
|
|
37348
|
+
@include box-shadow( $scheduler-event-ongoing-shadow );
|
|
37349
|
+
}
|
|
37276
37350
|
|
|
37277
37351
|
|
|
37278
37352
|
// Drag hint
|
|
@@ -37657,6 +37731,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
37657
37731
|
border-style: solid;
|
|
37658
37732
|
line-height: $chat-bubble-line-height;
|
|
37659
37733
|
word-wrap: break-word;
|
|
37734
|
+
white-space: pre-wrap;
|
|
37660
37735
|
|
|
37661
37736
|
a {
|
|
37662
37737
|
color: inherit;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
$primary: #1274AC;
|
|
2
2
|
$secondary: #757575;
|
|
3
|
-
$tertiary: #
|
|
3
|
+
$tertiary: #007F84;
|
|
4
4
|
$info: #0058E9;
|
|
5
|
-
$success: #
|
|
5
|
+
$success: #278200;
|
|
6
6
|
$warning: #F5A600;
|
|
7
7
|
$error: #D51923;
|
|
8
8
|
$light: #757575;
|
|
@@ -26,12 +26,13 @@ $kendo-flat-button-active-opacity: 6%;
|
|
|
26
26
|
$kendo-flat-button-selected-opacity: 8%;
|
|
27
27
|
$link-text: #1274AC;
|
|
28
28
|
$link-hover-text: #0f6190;
|
|
29
|
+
$kendo-input-clear-value-opacity: 80%;
|
|
29
30
|
$series-a: #1274AC;
|
|
30
|
-
$series-b: #
|
|
31
|
-
$series-c: #
|
|
32
|
-
$series-d: #
|
|
33
|
-
$series-e: #
|
|
34
|
-
$series-f: #
|
|
31
|
+
$series-b: #FFE162;
|
|
32
|
+
$series-c: #4CD180;
|
|
33
|
+
$series-d: #0074e6;
|
|
34
|
+
$series-e: #9B4FE6;
|
|
35
|
+
$series-f: #FF80AC;
|
|
35
36
|
$scheduler-event-bg: #1274AC;
|
|
36
37
|
$scheduler-event-selected-bg: #0f6190;
|
|
37
38
|
$pager-number-text: #424242;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "Default Ocean Blue",
|
|
4
4
|
"product": "kendo",
|
|
5
5
|
"base": "@progress/kendo-theme-default",
|
|
6
|
-
"version": "5.
|
|
6
|
+
"version": "5.3.1",
|
|
7
7
|
"previewColors": [
|
|
8
8
|
"#ffffff",
|
|
9
9
|
"#f5f5f5",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"tertiary": {
|
|
30
30
|
"name": "Tertiary",
|
|
31
31
|
"type": "color",
|
|
32
|
-
"value": "#
|
|
32
|
+
"value": "#007F84"
|
|
33
33
|
},
|
|
34
34
|
"info": {
|
|
35
35
|
"name": "Info",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"success": {
|
|
40
40
|
"name": "Success",
|
|
41
41
|
"type": "color",
|
|
42
|
-
"value": "#
|
|
42
|
+
"value": "#278200"
|
|
43
43
|
},
|
|
44
44
|
"warning": {
|
|
45
45
|
"name": "Warning",
|
|
@@ -178,6 +178,16 @@
|
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
180
|
},
|
|
181
|
+
{
|
|
182
|
+
"name": "Inputs",
|
|
183
|
+
"variables": {
|
|
184
|
+
"kendo-input-clear-value-opacity": {
|
|
185
|
+
"name": "Input clear value button opacity",
|
|
186
|
+
"type": "number",
|
|
187
|
+
"value": "80%"
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
},
|
|
181
191
|
{
|
|
182
192
|
"name": "Dataviz",
|
|
183
193
|
"variables": {
|
|
@@ -189,27 +199,27 @@
|
|
|
189
199
|
"series-b": {
|
|
190
200
|
"name": "Series B",
|
|
191
201
|
"type": "color",
|
|
192
|
-
"value": "#
|
|
202
|
+
"value": "#FFE162"
|
|
193
203
|
},
|
|
194
204
|
"series-c": {
|
|
195
205
|
"name": "Series C",
|
|
196
206
|
"type": "color",
|
|
197
|
-
"value": "#
|
|
207
|
+
"value": "#4CD180"
|
|
198
208
|
},
|
|
199
209
|
"series-d": {
|
|
200
210
|
"name": "Series D",
|
|
201
211
|
"type": "color",
|
|
202
|
-
"value": "#
|
|
212
|
+
"value": "#0074e6"
|
|
203
213
|
},
|
|
204
214
|
"series-e": {
|
|
205
215
|
"name": "Series E",
|
|
206
216
|
"type": "color",
|
|
207
|
-
"value": "#
|
|
217
|
+
"value": "#9B4FE6"
|
|
208
218
|
},
|
|
209
219
|
"series-f": {
|
|
210
220
|
"name": "Series F",
|
|
211
221
|
"type": "color",
|
|
212
|
-
"value": "#
|
|
222
|
+
"value": "#FF80AC"
|
|
213
223
|
}
|
|
214
224
|
}
|
|
215
225
|
},
|
package/lib/swatches/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
module.exports.main = require('./default-main.json');
|
|
2
2
|
module.exports.mainDark = require('./default-main-dark.json');
|
|
3
|
+
module.exports.oceanBlue = require('./default-ocean-blue.json');
|
|
3
4
|
module.exports.blue = require('./default-blue.json');
|
|
4
5
|
module.exports.green = require('./default-green.json');
|
|
5
6
|
module.exports.nordic = require('./default-nordic.json');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.3.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"prepublishOnly": "node ../../scripts/themes-prepublish.js",
|
|
48
48
|
"postpublish": "echo 'no postpublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "efa345ead38afdc056098d464fdfa9a752400918"
|
|
51
51
|
}
|
package/scss/button/_layout.scss
CHANGED
|
@@ -167,7 +167,7 @@ $kendo-button-disabled-shadow: null !default;
|
|
|
167
167
|
|
|
168
168
|
// Solid button
|
|
169
169
|
$kendo-solid-button-gradient: rgba( black, 0 ), rgba( black, .02 ) !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: 0 !default;
|
package/scss/chat/_layout.scss
CHANGED
|
@@ -61,7 +61,8 @@
|
|
|
61
61
|
transform: scale( $floating-label-focus-scale );
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
&.k-state-empty:not(.k-state-focused) ::placeholder
|
|
64
|
+
&.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
65
|
+
&.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
65
66
|
color: transparent;
|
|
66
67
|
}
|
|
67
68
|
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -19,6 +19,8 @@
|
|
|
19
19
|
|
|
20
20
|
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
21
21
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
22
|
+
$grid-group-indicator-button-opacity: $kendo-input-clear-value-opacity !default;
|
|
23
|
+
$grid-group-indicator-button-hover-opacity: $kendo-input-clear-value-hover-opacity !default;
|
|
22
24
|
|
|
23
25
|
$grid-grouping-row-border-top: 1px !default;
|
|
24
26
|
$grid-group-footer-border-y: 1px !default;
|
|
@@ -487,7 +489,7 @@
|
|
|
487
489
|
padding: 0;
|
|
488
490
|
width: auto;
|
|
489
491
|
height: auto;
|
|
490
|
-
opacity:
|
|
492
|
+
opacity: $grid-group-indicator-button-opacity;
|
|
491
493
|
|
|
492
494
|
&::before,
|
|
493
495
|
&::after {
|
|
@@ -495,7 +497,7 @@
|
|
|
495
497
|
}
|
|
496
498
|
|
|
497
499
|
&:hover {
|
|
498
|
-
opacity:
|
|
500
|
+
opacity: $grid-group-indicator-button-hover-opacity;
|
|
499
501
|
}
|
|
500
502
|
}
|
|
501
503
|
}
|
|
@@ -919,8 +921,7 @@
|
|
|
919
921
|
}
|
|
920
922
|
|
|
921
923
|
.k-grid-content,
|
|
922
|
-
.k-grid-content-locked
|
|
923
|
-
.k-pager-wrap {
|
|
924
|
+
.k-grid-content-locked {
|
|
924
925
|
white-space: normal;
|
|
925
926
|
}
|
|
926
927
|
|
package/scss/pager/_layout.scss
CHANGED
|
@@ -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,27 @@
|
|
|
1
|
+
@include exports( "utils/aspect-ratio" ) {
|
|
2
|
+
|
|
3
|
+
// Aspect-ratio documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio.
|
|
4
|
+
|
|
5
|
+
// @name k-aspect-ratio-auto
|
|
6
|
+
// @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.
|
|
7
|
+
// @group aspect-ratio
|
|
8
|
+
|
|
9
|
+
// @name k-aspect-ratio-1
|
|
10
|
+
// @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.
|
|
11
|
+
// @group aspect-ratio
|
|
12
|
+
|
|
13
|
+
$utils-aspect-ratio: (
|
|
14
|
+
auto,
|
|
15
|
+
1
|
|
16
|
+
) !default;
|
|
17
|
+
|
|
18
|
+
@if $utils-aspect-ratio {
|
|
19
|
+
@each $aspect-ratio in $utils-aspect-ratio {
|
|
20
|
+
.k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio; }
|
|
21
|
+
|
|
22
|
+
// sass-lint:disable-block no-important
|
|
23
|
+
.\!k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio !important; }
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
}
|
package/scss/utils/_index.scss
CHANGED
package/scss/utils/_text.scss
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@include exports( "utils/text" ) {
|
|
2
2
|
|
|
3
3
|
// stylelint-disable block-opening-brace-space-before
|
|
4
|
+
// sass-lint:disable class-name-format
|
|
4
5
|
|
|
5
6
|
// White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
|
|
6
7
|
// Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
|
|
@@ -8,6 +9,7 @@
|
|
|
8
9
|
|
|
9
10
|
$text-align: ( left, right, center, justify ) !default;
|
|
10
11
|
$text-transform: ( lowercase, uppercase, capitalize ) !default;
|
|
12
|
+
$white-space: ( normal, nowrap, pre, pre-wrap, pre-line, break-spaces ) !default;
|
|
11
13
|
|
|
12
14
|
$kendo-font-sizes: (
|
|
13
15
|
xs: $font-size-xs,
|
|
@@ -22,12 +24,42 @@
|
|
|
22
24
|
/// @name k-text-nowrap
|
|
23
25
|
/// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
24
26
|
/// @group text
|
|
25
|
-
.k-text-nowrap { white-space: nowrap
|
|
27
|
+
.k-text-nowrap { white-space: nowrap; }
|
|
28
|
+
.\!k-text-nowrap { white-space: nowrap !important; } // sass-lint:disable-line no-important
|
|
26
29
|
/// @name k-text-ellipsis
|
|
27
30
|
/// @description This is equivalent to `white-space: nowrap; overflow: hidden; text-overflow: ellipsis;`.
|
|
28
31
|
/// @group text
|
|
29
32
|
.k-text-ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } // sass-lint:disable-line one-declaration-per-line
|
|
30
33
|
|
|
34
|
+
/// @name k-white-space-normal
|
|
35
|
+
/// @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.
|
|
36
|
+
/// @group text
|
|
37
|
+
|
|
38
|
+
/// @name k-white-space-nowrap
|
|
39
|
+
/// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
40
|
+
/// @group text
|
|
41
|
+
|
|
42
|
+
/// @name k-white-space-pre
|
|
43
|
+
/// @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.
|
|
44
|
+
/// @group text
|
|
45
|
+
|
|
46
|
+
/// @name k-white-space-pre-wrap
|
|
47
|
+
/// @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.
|
|
48
|
+
/// @group text
|
|
49
|
+
|
|
50
|
+
/// @name k-white-space-pre-line
|
|
51
|
+
/// @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.
|
|
52
|
+
/// @group text
|
|
53
|
+
|
|
54
|
+
/// @name k-white-space-break-spaces
|
|
55
|
+
/// @description This is equivalent to `white-space: break-spaces;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
56
|
+
/// @group text
|
|
57
|
+
|
|
58
|
+
@each $wrap in $white-space {
|
|
59
|
+
.k-white-space-#{$wrap} { white-space: $wrap; }
|
|
60
|
+
.\!k-white-space-#{$wrap} { white-space: $wrap !important; } // sass-lint:disable-line no-important
|
|
61
|
+
}
|
|
62
|
+
|
|
31
63
|
|
|
32
64
|
// Align
|
|
33
65
|
|
|
@@ -48,7 +80,8 @@
|
|
|
48
80
|
/// @group text
|
|
49
81
|
|
|
50
82
|
@each $align in $text-align {
|
|
51
|
-
.k-text-#{$align} { text-align: $align
|
|
83
|
+
.k-text-#{$align} { text-align: $align; }
|
|
84
|
+
.\!k-text-#{$align} { text-align: $align !important; } // sass-lint:disable-line no-important
|
|
52
85
|
}
|
|
53
86
|
|
|
54
87
|
|
|
@@ -67,12 +100,14 @@
|
|
|
67
100
|
/// @group text
|
|
68
101
|
|
|
69
102
|
@each $transform in $text-transform {
|
|
70
|
-
.k-text-#{$transform} { text-transform: $transform
|
|
103
|
+
.k-text-#{$transform} { text-transform: $transform; }
|
|
104
|
+
.\!k-text-#{$transform} { text-transform: $transform !important; } // sass-lint:disable-line no-important
|
|
71
105
|
}
|
|
72
106
|
|
|
73
107
|
// Font Size
|
|
74
108
|
@each $name, $size in $kendo-font-sizes {
|
|
75
|
-
.k-fs-#{$name}
|
|
109
|
+
.k-fs-#{$name} { font-size: $size; }
|
|
110
|
+
.\!k-fs-#{$name} { font-size: $size !important; } // sass-lint:disable-line no-important
|
|
76
111
|
}
|
|
77
112
|
|
|
78
113
|
// Named font-weight
|