@progress/kendo-theme-material 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.
- package/dist/all.css +155 -20
- package/dist/all.scss +113 -25
- 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/action-sheet/_variables.scss +2 -1
- package/scss/button/_variables.scss +1 -1
- package/scss/colorgradient/_variables.scss +1 -1
- package/scss/dropzone/_variables.scss +1 -1
- package/scss/expansion-panel/_variables.scss +1 -1
- package/scss/floating-label/_variables.scss +2 -2
- package/scss/scheduler/_variables.scss +2 -0
- package/scss/taskboard/_variables.scss +1 -1
- 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
|
|
|
@@ -14434,6 +14549,7 @@ textarea.k-input-inner {
|
|
|
14434
14549
|
text-overflow: ellipsis;
|
|
14435
14550
|
position: absolute;
|
|
14436
14551
|
top: 29px;
|
|
14552
|
+
left: 17px;
|
|
14437
14553
|
overflow: hidden;
|
|
14438
14554
|
cursor: text;
|
|
14439
14555
|
transform-origin: left center;
|
|
@@ -14445,20 +14561,24 @@ textarea.k-input-inner {
|
|
|
14445
14561
|
width: auto;
|
|
14446
14562
|
}
|
|
14447
14563
|
|
|
14448
|
-
.k-floating-label-container.k-state-empty > .k-label {
|
|
14564
|
+
.k-floating-label-container.k-state-empty > .k-label, .k-floating-label-container.k-empty > .k-label {
|
|
14449
14565
|
top: 29px;
|
|
14566
|
+
left: 17px;
|
|
14450
14567
|
transform: scale(1);
|
|
14451
14568
|
pointer-events: none;
|
|
14452
14569
|
}
|
|
14453
14570
|
|
|
14454
14571
|
.k-floating-label-container > .k-label,
|
|
14455
|
-
.k-floating-label-container.k-state-focused > .k-label
|
|
14572
|
+
.k-floating-label-container.k-state-focused > .k-label,
|
|
14573
|
+
.k-floating-label-container.k-focus > .k-label {
|
|
14456
14574
|
top: 0px;
|
|
14575
|
+
left: 0px;
|
|
14457
14576
|
transform: scale(0.75);
|
|
14458
14577
|
}
|
|
14459
14578
|
|
|
14460
14579
|
.k-floating-label-container:focus-within > .k-label {
|
|
14461
14580
|
top: 0px;
|
|
14581
|
+
left: 0px;
|
|
14462
14582
|
transform: scale(0.75);
|
|
14463
14583
|
}
|
|
14464
14584
|
|
|
@@ -14473,24 +14593,32 @@ textarea.k-input-inner {
|
|
|
14473
14593
|
[dir="rtl"] .k-floating-label-container > .k-label,
|
|
14474
14594
|
.k-rtl .k-floating-label-container > .k-label, .k-floating-label-container[dir="rtl"] > .k-label {
|
|
14475
14595
|
transform-origin: right center;
|
|
14596
|
+
transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s cubic-bezier(0.4, 0, 0.2, 1), top 0.15s cubic-bezier(0.4, 0, 0.2, 1), right 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
|
14476
14597
|
}
|
|
14477
14598
|
|
|
14478
|
-
[dir="rtl"] .k-floating-label-container.k-state-empty > .k-label,
|
|
14479
|
-
.k-rtl .k-floating-label-container.k-state-empty > .k-label,
|
|
14599
|
+
[dir="rtl"] .k-floating-label-container.k-state-empty > .k-label, [dir="rtl"] .k-floating-label-container.k-empty > .k-label,
|
|
14600
|
+
.k-rtl .k-floating-label-container.k-state-empty > .k-label,
|
|
14601
|
+
.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 {
|
|
14480
14602
|
left: auto;
|
|
14603
|
+
right: 17px;
|
|
14481
14604
|
}
|
|
14482
14605
|
|
|
14483
14606
|
[dir="rtl"] .k-floating-label-container > .k-label,
|
|
14484
14607
|
[dir="rtl"] .k-floating-label-container.k-state-focused > .k-label,
|
|
14608
|
+
[dir="rtl"] .k-floating-label-container.k-focus > .k-label,
|
|
14485
14609
|
.k-rtl .k-floating-label-container > .k-label,
|
|
14486
|
-
.k-rtl .k-floating-label-container.k-state-focused > .k-label,
|
|
14487
|
-
.k-floating-label-container[dir="rtl"]
|
|
14610
|
+
.k-rtl .k-floating-label-container.k-state-focused > .k-label,
|
|
14611
|
+
.k-rtl .k-floating-label-container.k-focus > .k-label, .k-floating-label-container[dir="rtl"] > .k-label,
|
|
14612
|
+
.k-floating-label-container[dir="rtl"].k-state-focused > .k-label,
|
|
14613
|
+
.k-floating-label-container[dir="rtl"].k-focus > .k-label {
|
|
14488
14614
|
left: auto;
|
|
14615
|
+
right: 0px;
|
|
14489
14616
|
}
|
|
14490
14617
|
|
|
14491
|
-
[dir="rtl"] .k-floating-label-container:focus-within,
|
|
14492
|
-
.k-rtl .k-floating-label-container:focus-within, .k-floating-label-container[dir="rtl"]:focus-within {
|
|
14618
|
+
[dir="rtl"] .k-floating-label-container:focus-within > .k-label,
|
|
14619
|
+
.k-rtl .k-floating-label-container:focus-within > .k-label, .k-floating-label-container[dir="rtl"]:focus-within > .k-label {
|
|
14493
14620
|
left: auto;
|
|
14621
|
+
right: 0px;
|
|
14494
14622
|
}
|
|
14495
14623
|
|
|
14496
14624
|
.k-floating-label-container > .k-label {
|
|
@@ -19847,7 +19975,7 @@ kendo-label > .k-label {
|
|
|
19847
19975
|
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
|
|
19848
19976
|
}
|
|
19849
19977
|
|
|
19850
|
-
.k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover {
|
|
19978
|
+
.k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover, .k-colorpalette-tile.k-selected, .k-colorpalette-tile.k-selected:hover {
|
|
19851
19979
|
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px white;
|
|
19852
19980
|
}
|
|
19853
19981
|
|
|
@@ -20077,7 +20205,7 @@ kendo-label > .k-label {
|
|
|
20077
20205
|
}
|
|
20078
20206
|
|
|
20079
20207
|
.k-colorgradient-input-label {
|
|
20080
|
-
color: rgba(0, 0, 0, 0.
|
|
20208
|
+
color: rgba(0, 0, 0, 0.54);
|
|
20081
20209
|
}
|
|
20082
20210
|
|
|
20083
20211
|
.k-rtl .k-colorgradient .k-hue-slider.k-slider-horizontal .k-slider-track,
|
|
@@ -20958,7 +21086,7 @@ kendo-label > .k-label {
|
|
|
20958
21086
|
}
|
|
20959
21087
|
|
|
20960
21088
|
.k-dropzone-inner .k-dropzone-note {
|
|
20961
|
-
color: rgba(
|
|
21089
|
+
color: rgba(0, 0, 0, 0.54);
|
|
20962
21090
|
}
|
|
20963
21091
|
|
|
20964
21092
|
.k-external-dropzone-hover .k-icon,
|
|
@@ -22278,7 +22406,6 @@ kendo-label > .k-label {
|
|
|
22278
22406
|
|
|
22279
22407
|
.k-actionsheet-item-description {
|
|
22280
22408
|
font-size: 0.875em;
|
|
22281
|
-
opacity: 0.75;
|
|
22282
22409
|
}
|
|
22283
22410
|
|
|
22284
22411
|
.k-actionsheet > .k-hr {
|
|
@@ -22341,6 +22468,10 @@ kendo-label > .k-label {
|
|
|
22341
22468
|
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);
|
|
22342
22469
|
}
|
|
22343
22470
|
|
|
22471
|
+
.k-actionsheet-item-description {
|
|
22472
|
+
color: rgba(0, 0, 0, 0.54);
|
|
22473
|
+
}
|
|
22474
|
+
|
|
22344
22475
|
.k-actionsheet-action:hover, .k-actionsheet-action.k-state-hover {
|
|
22345
22476
|
background-color: rgba(0, 0, 0, 0.04);
|
|
22346
22477
|
}
|
|
@@ -24135,6 +24266,7 @@ kendo-card-footer {
|
|
|
24135
24266
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
24136
24267
|
font-size: 14px;
|
|
24137
24268
|
line-height: 2;
|
|
24269
|
+
white-space: nowrap;
|
|
24138
24270
|
display: flex;
|
|
24139
24271
|
align-items: center;
|
|
24140
24272
|
position: relative;
|
|
@@ -25391,7 +25523,7 @@ kendo-card-footer {
|
|
|
25391
25523
|
}
|
|
25392
25524
|
|
|
25393
25525
|
.k-expander-sub-title {
|
|
25394
|
-
|
|
25526
|
+
color: rgba(0, 0, 0, 0.54);
|
|
25395
25527
|
}
|
|
25396
25528
|
|
|
25397
25529
|
.k-panelbar {
|
|
@@ -27047,7 +27179,7 @@ kendo-card-footer {
|
|
|
27047
27179
|
padding: 0;
|
|
27048
27180
|
width: auto;
|
|
27049
27181
|
height: auto;
|
|
27050
|
-
opacity: .5;
|
|
27182
|
+
opacity: 0.5;
|
|
27051
27183
|
}
|
|
27052
27184
|
|
|
27053
27185
|
.k-group-indicator .k-button-flat::before, .k-group-indicator .k-button-flat::after {
|
|
@@ -27468,8 +27600,7 @@ div.k-grid-footer {
|
|
|
27468
27600
|
}
|
|
27469
27601
|
|
|
27470
27602
|
.k-grid-content,
|
|
27471
|
-
.k-grid-content-locked
|
|
27472
|
-
.k-pager-wrap {
|
|
27603
|
+
.k-grid-content-locked {
|
|
27473
27604
|
white-space: normal;
|
|
27474
27605
|
}
|
|
27475
27606
|
|
|
@@ -31522,7 +31653,7 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
31522
31653
|
}
|
|
31523
31654
|
|
|
31524
31655
|
.k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-state-hover {
|
|
31525
|
-
color: #
|
|
31656
|
+
color: #303f9f;
|
|
31526
31657
|
}
|
|
31527
31658
|
|
|
31528
31659
|
.k-taskboard-card:focus, .k-taskboard-card.k-state-focus {
|
|
@@ -32627,8 +32758,7 @@ td.k-editor-content {
|
|
|
32627
32758
|
|
|
32628
32759
|
.k-gantt .k-treelist-scrollable .k-task-summary {
|
|
32629
32760
|
height: 15px;
|
|
32630
|
-
|
|
32631
|
-
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%);
|
|
32761
|
+
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%);
|
|
32632
32762
|
}
|
|
32633
32763
|
|
|
32634
32764
|
.k-gantt .k-treelist-scrollable .k-task-summary-complete {
|
|
@@ -34781,6 +34911,10 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
34781
34911
|
color: black;
|
|
34782
34912
|
}
|
|
34783
34913
|
|
|
34914
|
+
.k-event-ongoing {
|
|
34915
|
+
box-shadow: inset 0px 0px 0px 1px #ff0000;
|
|
34916
|
+
}
|
|
34917
|
+
|
|
34784
34918
|
.k-scheduler-marquee::before,
|
|
34785
34919
|
.k-scheduler-marquee::after {
|
|
34786
34920
|
border-color: #3f51b5;
|
|
@@ -34993,6 +35127,7 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
34993
35127
|
border-style: solid;
|
|
34994
35128
|
line-height: 1.25;
|
|
34995
35129
|
word-wrap: break-word;
|
|
35130
|
+
white-space: pre-wrap;
|
|
34996
35131
|
}
|
|
34997
35132
|
|
|
34998
35133
|
.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 {
|
|
@@ -10865,11 +10932,11 @@ $floating-label-scale: 1 !default;
|
|
|
10865
10932
|
$floating-label-font-size: $kendo-input-font-size !default;
|
|
10866
10933
|
$floating-label-line-height: $kendo-input-line-height !default;
|
|
10867
10934
|
$floating-label-height: calc( #{$floating-label-line-height} * #{$floating-label-font-size} ) !default;
|
|
10868
|
-
$floating-label-offset-x:
|
|
10935
|
+
$floating-label-offset-x: calc( #{$kendo-input-padding-x} + #{$kendo-input-border-width} ) !default;
|
|
10869
10936
|
$floating-label-offset-y: calc( #{$floating-label-height} + #{$kendo-input-border-width} + #{$kendo-input-padding-y} ) !default;
|
|
10870
10937
|
|
|
10871
10938
|
$floating-label-focus-scale: .75 !default;
|
|
10872
|
-
$floating-label-focus-offset-x:
|
|
10939
|
+
$floating-label-focus-offset-x: 0px !default;
|
|
10873
10940
|
$floating-label-focus-offset-y: 0px !default;
|
|
10874
10941
|
|
|
10875
10942
|
$floating-label-transition: .15s cubic-bezier( .4, 0, .2, 1 ) !default;
|
|
@@ -10922,7 +10989,8 @@ $floating-label-focus-text: $primary !default;
|
|
|
10922
10989
|
width: auto;
|
|
10923
10990
|
}
|
|
10924
10991
|
|
|
10925
|
-
&.k-state-empty
|
|
10992
|
+
&.k-state-empty,
|
|
10993
|
+
&.k-empty {
|
|
10926
10994
|
> .k-label {
|
|
10927
10995
|
top: $floating-label-offset-y;
|
|
10928
10996
|
left: $floating-label-offset-x;
|
|
@@ -10933,7 +11001,8 @@ $floating-label-focus-text: $primary !default;
|
|
|
10933
11001
|
|
|
10934
11002
|
> .k-label,
|
|
10935
11003
|
// &:focus-within > .k-label,
|
|
10936
|
-
&.k-state-focused > .k-label
|
|
11004
|
+
&.k-state-focused > .k-label,
|
|
11005
|
+
&.k-focus > .k-label {
|
|
10937
11006
|
top: $floating-label-focus-offset-y;
|
|
10938
11007
|
left: $floating-label-focus-offset-x;
|
|
10939
11008
|
transform: scale( $floating-label-focus-scale );
|
|
@@ -10954,9 +11023,11 @@ $floating-label-focus-text: $primary !default;
|
|
|
10954
11023
|
|
|
10955
11024
|
> .k-label {
|
|
10956
11025
|
transform-origin: right center;
|
|
11026
|
+
transition: transform $floating-label-transition, color $floating-label-transition, top $floating-label-transition, right $floating-label-transition;
|
|
10957
11027
|
}
|
|
10958
11028
|
|
|
10959
|
-
&.k-state-empty
|
|
11029
|
+
&.k-state-empty,
|
|
11030
|
+
&.k-empty {
|
|
10960
11031
|
> .k-label {
|
|
10961
11032
|
left: auto;
|
|
10962
11033
|
right: $floating-label-offset-x;
|
|
@@ -10965,11 +11036,12 @@ $floating-label-focus-text: $primary !default;
|
|
|
10965
11036
|
|
|
10966
11037
|
> .k-label,
|
|
10967
11038
|
// &:focus-within > .k-label,
|
|
10968
|
-
&.k-state-focused > .k-label
|
|
11039
|
+
&.k-state-focused > .k-label,
|
|
11040
|
+
&.k-focus > .k-label {
|
|
10969
11041
|
left: auto;
|
|
10970
11042
|
right: $floating-label-focus-offset-x;
|
|
10971
11043
|
}
|
|
10972
|
-
&:focus-within {
|
|
11044
|
+
&:focus-within > .k-label {
|
|
10973
11045
|
left: auto;
|
|
10974
11046
|
right: $floating-label-focus-offset-x;
|
|
10975
11047
|
}
|
|
@@ -19333,7 +19405,9 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
19333
19405
|
}
|
|
19334
19406
|
|
|
19335
19407
|
&.k-state-selected,
|
|
19336
|
-
&.k-state-selected:hover
|
|
19408
|
+
&.k-state-selected:hover,
|
|
19409
|
+
&.k-selected,
|
|
19410
|
+
&.k-selected:hover {
|
|
19337
19411
|
@include box-shadow( $colorpalette-tile-selected-shadow );
|
|
19338
19412
|
}
|
|
19339
19413
|
|
|
@@ -19484,7 +19558,7 @@ $colorgradient-canvas-draghandle-margin-x: -( $colorgradient-draghandle-width /
|
|
|
19484
19558
|
$colorgradient-input-width: 50px !default;
|
|
19485
19559
|
$colorgradient-input-gap: map-get( $spacing, 2 ) !default;
|
|
19486
19560
|
$colorgradient-input-label-gap: map-get( $spacing, 1 ) !default;
|
|
19487
|
-
$colorgradient-input-label-text: $
|
|
19561
|
+
$colorgradient-input-label-text: $subtle-text !default;
|
|
19488
19562
|
|
|
19489
19563
|
$colorgradient-contrast-ratio-font-weight: $font-weight-bold !default;
|
|
19490
19564
|
$colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
|
|
@@ -22090,7 +22164,7 @@ $dropzone-hint-text: null !default;
|
|
|
22090
22164
|
|
|
22091
22165
|
$dropzone-note-font-size: $font-size-sm !default;
|
|
22092
22166
|
$dropzone-note-spacing: null !default;
|
|
22093
|
-
$dropzone-note-text:
|
|
22167
|
+
$dropzone-note-text: $subtle-text !default;
|
|
22094
22168
|
|
|
22095
22169
|
// #endregion
|
|
22096
22170
|
// #region @import "_layout.scss"; -> packages/material/scss/dropzone/_layout.scss
|
|
@@ -23567,8 +23641,9 @@ $actionsheet-item-icon-size: null !default;
|
|
|
23567
23641
|
|
|
23568
23642
|
$actionsheet-item-title-font-weight: null !default;
|
|
23569
23643
|
$actionsheet-item-title-text-transform: null !default;
|
|
23644
|
+
|
|
23570
23645
|
$actionsheet-item-description-font-size: .875em !default;
|
|
23571
|
-
$actionsheet-item-description-
|
|
23646
|
+
$actionsheet-item-description-text: $subtle-text !default;
|
|
23572
23647
|
|
|
23573
23648
|
$actionsheet-item-hover-bg: rgba( black, .04 ) !default;
|
|
23574
23649
|
$actionsheet-item-hover-text: null !default;
|
|
@@ -23687,7 +23762,6 @@ $actionsheet-item-disabled-opacity: .42 !default;
|
|
|
23687
23762
|
}
|
|
23688
23763
|
.k-actionsheet-item-description {
|
|
23689
23764
|
font-size: $actionsheet-item-description-font-size;
|
|
23690
|
-
opacity: $actionsheet-item-description-opacity;
|
|
23691
23765
|
}
|
|
23692
23766
|
|
|
23693
23767
|
|
|
@@ -23782,6 +23856,12 @@ $actionsheet-item-disabled-opacity: .42 !default;
|
|
|
23782
23856
|
.k-actionsheet-item {}
|
|
23783
23857
|
|
|
23784
23858
|
|
|
23859
|
+
// Actionsheet item description
|
|
23860
|
+
.k-actionsheet-item-description {
|
|
23861
|
+
@include fill( $color: $actionsheet-item-description-text );
|
|
23862
|
+
}
|
|
23863
|
+
|
|
23864
|
+
|
|
23785
23865
|
// Actionsheet action
|
|
23786
23866
|
.k-actionsheet-action {
|
|
23787
23867
|
|
|
@@ -26385,6 +26465,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
26385
26465
|
font-family: $pager-font-family;
|
|
26386
26466
|
font-size: $pager-font-size;
|
|
26387
26467
|
line-height: $pager-line-height;
|
|
26468
|
+
white-space: nowrap;
|
|
26388
26469
|
display: flex;
|
|
26389
26470
|
align-items: center;
|
|
26390
26471
|
position: relative;
|
|
@@ -28329,7 +28410,7 @@ $expander-header-focused-shadow: none !default;
|
|
|
28329
28410
|
|
|
28330
28411
|
$expander-title-text: $secondary !default;
|
|
28331
28412
|
|
|
28332
|
-
$expander-header-sub-title-
|
|
28413
|
+
$expander-header-sub-title-text: $subtle-text !default;
|
|
28333
28414
|
|
|
28334
28415
|
$expander-content-padding-x: $padding-x * 1.5 !default;
|
|
28335
28416
|
$expander-content-padding-y: $padding-y * 6 !default;
|
|
@@ -28456,7 +28537,7 @@ $expander-content-padding-y: $padding-y * 6 !default;
|
|
|
28456
28537
|
}
|
|
28457
28538
|
|
|
28458
28539
|
.k-expander-sub-title {
|
|
28459
|
-
|
|
28540
|
+
color: $expander-header-sub-title-text;
|
|
28460
28541
|
}
|
|
28461
28542
|
}
|
|
28462
28543
|
|
|
@@ -30188,6 +30269,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
30188
30269
|
|
|
30189
30270
|
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
30190
30271
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
30272
|
+
$grid-group-indicator-button-opacity: $kendo-input-clear-value-opacity !default;
|
|
30273
|
+
$grid-group-indicator-button-hover-opacity: $kendo-input-clear-value-hover-opacity !default;
|
|
30191
30274
|
|
|
30192
30275
|
$grid-grouping-row-border-top: 1px !default;
|
|
30193
30276
|
$grid-group-footer-border-y: 1px !default;
|
|
@@ -30656,7 +30739,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
30656
30739
|
padding: 0;
|
|
30657
30740
|
width: auto;
|
|
30658
30741
|
height: auto;
|
|
30659
|
-
opacity:
|
|
30742
|
+
opacity: $grid-group-indicator-button-opacity;
|
|
30660
30743
|
|
|
30661
30744
|
&::before,
|
|
30662
30745
|
&::after {
|
|
@@ -30664,7 +30747,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
30664
30747
|
}
|
|
30665
30748
|
|
|
30666
30749
|
&:hover {
|
|
30667
|
-
opacity:
|
|
30750
|
+
opacity: $grid-group-indicator-button-hover-opacity;
|
|
30668
30751
|
}
|
|
30669
30752
|
}
|
|
30670
30753
|
}
|
|
@@ -31088,8 +31171,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
31088
31171
|
}
|
|
31089
31172
|
|
|
31090
31173
|
.k-grid-content,
|
|
31091
|
-
.k-grid-content-locked
|
|
31092
|
-
.k-pager-wrap {
|
|
31174
|
+
.k-grid-content-locked {
|
|
31093
31175
|
white-space: normal;
|
|
31094
31176
|
}
|
|
31095
31177
|
|
|
@@ -36246,7 +36328,7 @@ $taskboard-card-selected-shadow: none !default;
|
|
|
36246
36328
|
|
|
36247
36329
|
$taskboard-card-header-text: $primary !default;
|
|
36248
36330
|
$taskboard-card-header-focus-text: $primary-darker !default;
|
|
36249
|
-
$taskboard-card-header-hover-text:
|
|
36331
|
+
$taskboard-card-header-hover-text: $primary-darker !default;
|
|
36250
36332
|
|
|
36251
36333
|
$taskboard-drag-placeholder-border-width: 1px !default;
|
|
36252
36334
|
$taskboard-drag-placeholder-border-radius: $taskboard-card-border-radius !default;
|
|
@@ -39250,6 +39332,8 @@ $scheduler-event-selected-border: null !default;
|
|
|
39250
39332
|
$scheduler-event-selected-gradient: null !default;
|
|
39251
39333
|
$scheduler-event-selected-shadow: $box-shadow-depth-3 !default;
|
|
39252
39334
|
|
|
39335
|
+
$scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
39336
|
+
|
|
39253
39337
|
$scheduler-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
39254
39338
|
$scheduler-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
39255
39339
|
$scheduler-cell-height: $line-height * 1rem !default;
|
|
@@ -40703,6 +40787,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40703
40787
|
.k-event-inverse {
|
|
40704
40788
|
color: contrast-wcag( $scheduler-event-text );
|
|
40705
40789
|
}
|
|
40790
|
+
.k-event-ongoing {
|
|
40791
|
+
@include box-shadow( $scheduler-event-ongoing-shadow );
|
|
40792
|
+
}
|
|
40706
40793
|
|
|
40707
40794
|
|
|
40708
40795
|
// Drag hint
|
|
@@ -41124,6 +41211,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41124
41211
|
border-style: solid;
|
|
41125
41212
|
line-height: $chat-bubble-line-height;
|
|
41126
41213
|
word-wrap: break-word;
|
|
41214
|
+
white-space: pre-wrap;
|
|
41127
41215
|
|
|
41128
41216
|
a {
|
|
41129
41217
|
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.
|
|
4
|
+
"version": "5.3.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.
|
|
53
|
+
"@progress/kendo-theme-default": "^5.3.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "867f14d5246e147b66555ac808c5790ba8881d12"
|
|
56
56
|
}
|
|
@@ -44,8 +44,9 @@ $actionsheet-item-icon-size: null !default;
|
|
|
44
44
|
|
|
45
45
|
$actionsheet-item-title-font-weight: null !default;
|
|
46
46
|
$actionsheet-item-title-text-transform: null !default;
|
|
47
|
+
|
|
47
48
|
$actionsheet-item-description-font-size: .875em !default;
|
|
48
|
-
$actionsheet-item-description-
|
|
49
|
+
$actionsheet-item-description-text: $subtle-text !default;
|
|
49
50
|
|
|
50
51
|
$actionsheet-item-hover-bg: rgba( black, .04 ) !default;
|
|
51
52
|
$actionsheet-item-hover-text: null !default;
|
|
@@ -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;
|
|
@@ -45,7 +45,7 @@ $colorgradient-canvas-draghandle-margin-x: -( $colorgradient-draghandle-width /
|
|
|
45
45
|
$colorgradient-input-width: 50px !default;
|
|
46
46
|
$colorgradient-input-gap: map-get( $spacing, 2 ) !default;
|
|
47
47
|
$colorgradient-input-label-gap: map-get( $spacing, 1 ) !default;
|
|
48
|
-
$colorgradient-input-label-text: $
|
|
48
|
+
$colorgradient-input-label-text: $subtle-text !default;
|
|
49
49
|
|
|
50
50
|
$colorgradient-contrast-ratio-font-weight: $font-weight-bold !default;
|
|
51
51
|
$colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
|
|
@@ -27,7 +27,7 @@ $expander-header-focused-shadow: none !default;
|
|
|
27
27
|
|
|
28
28
|
$expander-title-text: $secondary !default;
|
|
29
29
|
|
|
30
|
-
$expander-header-sub-title-
|
|
30
|
+
$expander-header-sub-title-text: $subtle-text !default;
|
|
31
31
|
|
|
32
32
|
$expander-content-padding-x: $padding-x * 1.5 !default;
|
|
33
33
|
$expander-content-padding-y: $padding-y * 6 !default;
|
|
@@ -3,11 +3,11 @@ $floating-label-scale: 1 !default;
|
|
|
3
3
|
$floating-label-font-size: $kendo-input-font-size !default;
|
|
4
4
|
$floating-label-line-height: $kendo-input-line-height !default;
|
|
5
5
|
$floating-label-height: calc( #{$floating-label-line-height} * #{$floating-label-font-size} ) !default;
|
|
6
|
-
$floating-label-offset-x:
|
|
6
|
+
$floating-label-offset-x: calc( #{$kendo-input-padding-x} + #{$kendo-input-border-width} ) !default;
|
|
7
7
|
$floating-label-offset-y: calc( #{$floating-label-height} + #{$kendo-input-border-width} + #{$kendo-input-padding-y} ) !default;
|
|
8
8
|
|
|
9
9
|
$floating-label-focus-scale: .75 !default;
|
|
10
|
-
$floating-label-focus-offset-x:
|
|
10
|
+
$floating-label-focus-offset-x: 0px !default;
|
|
11
11
|
$floating-label-focus-offset-y: 0px !default;
|
|
12
12
|
|
|
13
13
|
$floating-label-transition: .15s cubic-bezier( .4, 0, .2, 1 ) !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;
|
|
@@ -86,7 +86,7 @@ $taskboard-card-selected-shadow: none !default;
|
|
|
86
86
|
|
|
87
87
|
$taskboard-card-header-text: $primary !default;
|
|
88
88
|
$taskboard-card-header-focus-text: $primary-darker !default;
|
|
89
|
-
$taskboard-card-header-hover-text:
|
|
89
|
+
$taskboard-card-header-hover-text: $primary-darker !default;
|
|
90
90
|
|
|
91
91
|
$taskboard-drag-placeholder-border-width: 1px !default;
|
|
92
92
|
$taskboard-drag-placeholder-border-radius: $taskboard-card-border-radius !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss";
|