@progress/kendo-theme-bootstrap 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 +148 -20
- package/dist/all.scss +111 -23
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.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/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: #f8f9fa;
|
|
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: 0.75rem;
|
|
6233
|
+
}
|
|
6234
|
+
|
|
6235
|
+
.\!k-fs-xs {
|
|
6136
6236
|
font-size: 0.75rem !important;
|
|
6137
6237
|
}
|
|
6138
6238
|
|
|
6139
6239
|
.k-fs-sm {
|
|
6240
|
+
font-size: 0.875rem;
|
|
6241
|
+
}
|
|
6242
|
+
|
|
6243
|
+
.\!k-fs-sm {
|
|
6140
6244
|
font-size: 0.875rem !important;
|
|
6141
6245
|
}
|
|
6142
6246
|
|
|
6143
6247
|
.k-fs-md {
|
|
6248
|
+
font-size: 1rem;
|
|
6249
|
+
}
|
|
6250
|
+
|
|
6251
|
+
.\!k-fs-md {
|
|
6144
6252
|
font-size: 1rem !important;
|
|
6145
6253
|
}
|
|
6146
6254
|
|
|
6147
6255
|
.k-fs-lg {
|
|
6256
|
+
font-size: 1.25rem;
|
|
6257
|
+
}
|
|
6258
|
+
|
|
6259
|
+
.\!k-fs-lg {
|
|
6148
6260
|
font-size: 1.25rem !important;
|
|
6149
6261
|
}
|
|
6150
6262
|
|
|
6151
6263
|
.k-fs-xl {
|
|
6264
|
+
font-size: 1.5rem;
|
|
6265
|
+
}
|
|
6266
|
+
|
|
6267
|
+
.\!k-fs-xl {
|
|
6152
6268
|
font-size: 1.5rem !important;
|
|
6153
6269
|
}
|
|
6154
6270
|
|
|
@@ -12060,7 +12176,6 @@ kendo-badge-container {
|
|
|
12060
12176
|
}
|
|
12061
12177
|
|
|
12062
12178
|
.k-icon-button {
|
|
12063
|
-
aspect-ratio: 1;
|
|
12064
12179
|
gap: 0;
|
|
12065
12180
|
}
|
|
12066
12181
|
|
|
@@ -14013,7 +14128,7 @@ textarea.k-input-inner {
|
|
|
14013
14128
|
width: auto;
|
|
14014
14129
|
}
|
|
14015
14130
|
|
|
14016
|
-
.k-floating-label-container.k-state-empty > .k-label {
|
|
14131
|
+
.k-floating-label-container.k-state-empty > .k-label, .k-floating-label-container.k-empty > .k-label {
|
|
14017
14132
|
top: calc(1.875rem + 1px);
|
|
14018
14133
|
left: calc(0.75rem + 1px);
|
|
14019
14134
|
transform: scale(1);
|
|
@@ -14021,7 +14136,8 @@ textarea.k-input-inner {
|
|
|
14021
14136
|
}
|
|
14022
14137
|
|
|
14023
14138
|
.k-floating-label-container > .k-label,
|
|
14024
|
-
.k-floating-label-container.k-state-focused > .k-label
|
|
14139
|
+
.k-floating-label-container.k-state-focused > .k-label,
|
|
14140
|
+
.k-floating-label-container.k-focus > .k-label {
|
|
14025
14141
|
top: 0;
|
|
14026
14142
|
left: 0;
|
|
14027
14143
|
transform: scale(1);
|
|
@@ -14044,25 +14160,30 @@ textarea.k-input-inner {
|
|
|
14044
14160
|
[dir="rtl"] .k-floating-label-container > .k-label,
|
|
14045
14161
|
.k-rtl .k-floating-label-container > .k-label, .k-floating-label-container[dir="rtl"] > .k-label {
|
|
14046
14162
|
transform-origin: right center;
|
|
14163
|
+
transition: transform 0.2s ease-out, color 0.2s ease-out, top 0.2s ease-out, right 0.2s ease-out;
|
|
14047
14164
|
}
|
|
14048
14165
|
|
|
14049
|
-
[dir="rtl"] .k-floating-label-container.k-state-empty > .k-label,
|
|
14050
|
-
.k-rtl .k-floating-label-container.k-state-empty > .k-label,
|
|
14166
|
+
[dir="rtl"] .k-floating-label-container.k-state-empty > .k-label, [dir="rtl"] .k-floating-label-container.k-empty > .k-label,
|
|
14167
|
+
.k-rtl .k-floating-label-container.k-state-empty > .k-label,
|
|
14168
|
+
.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 {
|
|
14051
14169
|
left: auto;
|
|
14052
14170
|
right: calc(0.75rem + 1px);
|
|
14053
14171
|
}
|
|
14054
14172
|
|
|
14055
14173
|
[dir="rtl"] .k-floating-label-container > .k-label,
|
|
14056
14174
|
[dir="rtl"] .k-floating-label-container.k-state-focused > .k-label,
|
|
14175
|
+
[dir="rtl"] .k-floating-label-container.k-focus > .k-label,
|
|
14057
14176
|
.k-rtl .k-floating-label-container > .k-label,
|
|
14058
|
-
.k-rtl .k-floating-label-container.k-state-focused > .k-label,
|
|
14059
|
-
.k-floating-label-container[dir="rtl"]
|
|
14177
|
+
.k-rtl .k-floating-label-container.k-state-focused > .k-label,
|
|
14178
|
+
.k-rtl .k-floating-label-container.k-focus > .k-label, .k-floating-label-container[dir="rtl"] > .k-label,
|
|
14179
|
+
.k-floating-label-container[dir="rtl"].k-state-focused > .k-label,
|
|
14180
|
+
.k-floating-label-container[dir="rtl"].k-focus > .k-label {
|
|
14060
14181
|
left: auto;
|
|
14061
14182
|
right: 0;
|
|
14062
14183
|
}
|
|
14063
14184
|
|
|
14064
|
-
[dir="rtl"] .k-floating-label-container:focus-within,
|
|
14065
|
-
.k-rtl .k-floating-label-container:focus-within, .k-floating-label-container[dir="rtl"]:focus-within {
|
|
14185
|
+
[dir="rtl"] .k-floating-label-container:focus-within > .k-label,
|
|
14186
|
+
.k-rtl .k-floating-label-container:focus-within > .k-label, .k-floating-label-container[dir="rtl"]:focus-within > .k-label {
|
|
14066
14187
|
left: auto;
|
|
14067
14188
|
right: 0;
|
|
14068
14189
|
}
|
|
@@ -18991,7 +19112,7 @@ kendo-label > .k-label {
|
|
|
18991
19112
|
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
|
|
18992
19113
|
}
|
|
18993
19114
|
|
|
18994
|
-
.k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover {
|
|
19115
|
+
.k-colorpalette-tile.k-state-selected, .k-colorpalette-tile.k-state-selected:hover, .k-colorpalette-tile.k-selected, .k-colorpalette-tile.k-selected:hover {
|
|
18995
19116
|
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3), inset 0 0 0 1px white;
|
|
18996
19117
|
}
|
|
18997
19118
|
|
|
@@ -19220,7 +19341,7 @@ kendo-label > .k-label {
|
|
|
19220
19341
|
}
|
|
19221
19342
|
|
|
19222
19343
|
.k-colorgradient-input-label {
|
|
19223
|
-
color: #
|
|
19344
|
+
color: #6c757d;
|
|
19224
19345
|
}
|
|
19225
19346
|
|
|
19226
19347
|
.k-rtl .k-colorgradient .k-hue-slider.k-slider-horizontal .k-slider-track,
|
|
@@ -20062,7 +20183,7 @@ kendo-label > .k-label {
|
|
|
20062
20183
|
}
|
|
20063
20184
|
|
|
20064
20185
|
.k-dropzone-inner .k-dropzone-note {
|
|
20065
|
-
color: #
|
|
20186
|
+
color: #6c757d;
|
|
20066
20187
|
}
|
|
20067
20188
|
|
|
20068
20189
|
.k-external-dropzone-hover .k-icon,
|
|
@@ -21408,7 +21529,6 @@ kendo-label > .k-label {
|
|
|
21408
21529
|
|
|
21409
21530
|
.k-actionsheet-item-description {
|
|
21410
21531
|
font-size: 0.875em;
|
|
21411
|
-
opacity: 0.75;
|
|
21412
21532
|
}
|
|
21413
21533
|
|
|
21414
21534
|
.k-actionsheet > .k-hr {
|
|
@@ -21471,6 +21591,10 @@ kendo-label > .k-label {
|
|
|
21471
21591
|
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);
|
|
21472
21592
|
}
|
|
21473
21593
|
|
|
21594
|
+
.k-actionsheet-item-description {
|
|
21595
|
+
color: #6c757d;
|
|
21596
|
+
}
|
|
21597
|
+
|
|
21474
21598
|
.k-actionsheet-action:hover, .k-actionsheet-action.k-state-hover {
|
|
21475
21599
|
background-color: #e9ecef;
|
|
21476
21600
|
}
|
|
@@ -23264,6 +23388,7 @@ kendo-card-footer {
|
|
|
23264
23388
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
23265
23389
|
font-size: 1rem;
|
|
23266
23390
|
line-height: 1.5;
|
|
23391
|
+
white-space: nowrap;
|
|
23267
23392
|
display: flex;
|
|
23268
23393
|
align-items: center;
|
|
23269
23394
|
position: relative;
|
|
@@ -24529,7 +24654,7 @@ kendo-card-footer {
|
|
|
24529
24654
|
}
|
|
24530
24655
|
|
|
24531
24656
|
.k-expander-sub-title {
|
|
24532
|
-
|
|
24657
|
+
color: #6c757d;
|
|
24533
24658
|
}
|
|
24534
24659
|
|
|
24535
24660
|
.k-panelbar {
|
|
@@ -26119,7 +26244,7 @@ kendo-card-footer {
|
|
|
26119
26244
|
padding: 0;
|
|
26120
26245
|
width: auto;
|
|
26121
26246
|
height: auto;
|
|
26122
|
-
opacity: .5;
|
|
26247
|
+
opacity: 0.5;
|
|
26123
26248
|
}
|
|
26124
26249
|
|
|
26125
26250
|
.k-group-indicator .k-button-flat::before, .k-group-indicator .k-button-flat::after {
|
|
@@ -26539,8 +26664,7 @@ div.k-grid-footer {
|
|
|
26539
26664
|
}
|
|
26540
26665
|
|
|
26541
26666
|
.k-grid-content,
|
|
26542
|
-
.k-grid-content-locked
|
|
26543
|
-
.k-pager-wrap {
|
|
26667
|
+
.k-grid-content-locked {
|
|
26544
26668
|
white-space: normal;
|
|
26545
26669
|
}
|
|
26546
26670
|
|
|
@@ -30190,7 +30314,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
30190
30314
|
}
|
|
30191
30315
|
|
|
30192
30316
|
.k-taskboard-card .k-card-title:hover, .k-taskboard-card .k-card-title.k-state-hover {
|
|
30193
|
-
color: #
|
|
30317
|
+
color: #0b5cd5;
|
|
30194
30318
|
}
|
|
30195
30319
|
|
|
30196
30320
|
.k-taskboard-card:focus, .k-taskboard-card.k-state-focus {
|
|
@@ -31252,8 +31376,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31252
31376
|
|
|
31253
31377
|
.k-gantt .k-treelist-scrollable .k-task-summary {
|
|
31254
31378
|
height: 15px;
|
|
31255
|
-
|
|
31256
|
-
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%);
|
|
31379
|
+
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%);
|
|
31257
31380
|
}
|
|
31258
31381
|
|
|
31259
31382
|
.k-gantt .k-treelist-scrollable .k-task-summary-complete {
|
|
@@ -33300,6 +33423,10 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
33300
33423
|
color: black;
|
|
33301
33424
|
}
|
|
33302
33425
|
|
|
33426
|
+
.k-event-ongoing {
|
|
33427
|
+
box-shadow: inset 0px 0px 0px 1px #ff0000;
|
|
33428
|
+
}
|
|
33429
|
+
|
|
33303
33430
|
.k-scheduler-marquee::before,
|
|
33304
33431
|
.k-scheduler-marquee::after {
|
|
33305
33432
|
border-color: #0d6efd;
|
|
@@ -33499,6 +33626,7 @@ kendo-scheduler .k-event .k-event-actions,
|
|
|
33499
33626
|
border-style: solid;
|
|
33500
33627
|
line-height: 1.25;
|
|
33501
33628
|
word-wrap: break-word;
|
|
33629
|
+
white-space: pre-wrap;
|
|
33502
33630
|
}
|
|
33503
33631
|
|
|
33504
33632
|
.k-chat .k-bubble a {
|
package/dist/all.scss
CHANGED
|
@@ -5332,6 +5332,39 @@ $display4-letter-spacing: null !default;
|
|
|
5332
5332
|
|
|
5333
5333
|
|
|
5334
5334
|
// Component
|
|
5335
|
+
// #region @import "_aspect-ratio.scss"; -> packages/bootstrap/scss/utils/_aspect-ratio.scss
|
|
5336
|
+
// #region @import "~@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/utils/_aspect-ratio.scss
|
|
5337
|
+
@include exports( "utils/aspect-ratio" ) {
|
|
5338
|
+
|
|
5339
|
+
// Aspect-ratio documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio.
|
|
5340
|
+
|
|
5341
|
+
// @name k-aspect-ratio-auto
|
|
5342
|
+
// @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.
|
|
5343
|
+
// @group aspect-ratio
|
|
5344
|
+
|
|
5345
|
+
// @name k-aspect-ratio-1
|
|
5346
|
+
// @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.
|
|
5347
|
+
// @group aspect-ratio
|
|
5348
|
+
|
|
5349
|
+
$utils-aspect-ratio: (
|
|
5350
|
+
auto,
|
|
5351
|
+
1
|
|
5352
|
+
) !default;
|
|
5353
|
+
|
|
5354
|
+
@if $utils-aspect-ratio {
|
|
5355
|
+
@each $aspect-ratio in $utils-aspect-ratio {
|
|
5356
|
+
.k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio; }
|
|
5357
|
+
|
|
5358
|
+
// sass-lint:disable-block no-important
|
|
5359
|
+
.\!k-aspect-ratio-#{$aspect-ratio} { aspect-ratio: $aspect-ratio !important; }
|
|
5360
|
+
}
|
|
5361
|
+
}
|
|
5362
|
+
|
|
5363
|
+
}
|
|
5364
|
+
|
|
5365
|
+
// #endregion
|
|
5366
|
+
|
|
5367
|
+
// #endregion
|
|
5335
5368
|
// #region @import "_border.scss"; -> packages/bootstrap/scss/utils/_border.scss
|
|
5336
5369
|
$utils-border-radius: (
|
|
5337
5370
|
default: $kendo-border-radius-md,
|
|
@@ -6408,6 +6441,7 @@ $utils-border-radius: (
|
|
|
6408
6441
|
@include exports( "utils/text" ) {
|
|
6409
6442
|
|
|
6410
6443
|
// stylelint-disable block-opening-brace-space-before
|
|
6444
|
+
// sass-lint:disable class-name-format
|
|
6411
6445
|
|
|
6412
6446
|
// White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
|
|
6413
6447
|
// Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
|
|
@@ -6415,6 +6449,7 @@ $utils-border-radius: (
|
|
|
6415
6449
|
|
|
6416
6450
|
$text-align: ( left, right, center, justify ) !default;
|
|
6417
6451
|
$text-transform: ( lowercase, uppercase, capitalize ) !default;
|
|
6452
|
+
$white-space: ( normal, nowrap, pre, pre-wrap, pre-line, break-spaces ) !default;
|
|
6418
6453
|
|
|
6419
6454
|
$kendo-font-sizes: (
|
|
6420
6455
|
xs: $font-size-xs,
|
|
@@ -6429,12 +6464,42 @@ $utils-border-radius: (
|
|
|
6429
6464
|
/// @name k-text-nowrap
|
|
6430
6465
|
/// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
6431
6466
|
/// @group text
|
|
6432
|
-
.k-text-nowrap { white-space: nowrap
|
|
6467
|
+
.k-text-nowrap { white-space: nowrap; }
|
|
6468
|
+
.\!k-text-nowrap { white-space: nowrap !important; } // sass-lint:disable-line no-important
|
|
6433
6469
|
/// @name k-text-ellipsis
|
|
6434
6470
|
/// @description This is equivalent to `white-space: nowrap; overflow: hidden; text-overflow: ellipsis;`.
|
|
6435
6471
|
/// @group text
|
|
6436
6472
|
.k-text-ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } // sass-lint:disable-line one-declaration-per-line
|
|
6437
6473
|
|
|
6474
|
+
/// @name k-white-space-normal
|
|
6475
|
+
/// @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.
|
|
6476
|
+
/// @group text
|
|
6477
|
+
|
|
6478
|
+
/// @name k-white-space-nowrap
|
|
6479
|
+
/// @description This is equivalent to `white-space: nowrap;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
6480
|
+
/// @group text
|
|
6481
|
+
|
|
6482
|
+
/// @name k-white-space-pre
|
|
6483
|
+
/// @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.
|
|
6484
|
+
/// @group text
|
|
6485
|
+
|
|
6486
|
+
/// @name k-white-space-pre-wrap
|
|
6487
|
+
/// @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.
|
|
6488
|
+
/// @group text
|
|
6489
|
+
|
|
6490
|
+
/// @name k-white-space-pre-line
|
|
6491
|
+
/// @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.
|
|
6492
|
+
/// @group text
|
|
6493
|
+
|
|
6494
|
+
/// @name k-white-space-break-spaces
|
|
6495
|
+
/// @description This is equivalent to `white-space: break-spaces;`. Collapses white space as for normal, but suppresses line breaks (text wrapping) within the source.
|
|
6496
|
+
/// @group text
|
|
6497
|
+
|
|
6498
|
+
@each $wrap in $white-space {
|
|
6499
|
+
.k-white-space-#{$wrap} { white-space: $wrap; }
|
|
6500
|
+
.\!k-white-space-#{$wrap} { white-space: $wrap !important; } // sass-lint:disable-line no-important
|
|
6501
|
+
}
|
|
6502
|
+
|
|
6438
6503
|
|
|
6439
6504
|
// Align
|
|
6440
6505
|
|
|
@@ -6455,7 +6520,8 @@ $utils-border-radius: (
|
|
|
6455
6520
|
/// @group text
|
|
6456
6521
|
|
|
6457
6522
|
@each $align in $text-align {
|
|
6458
|
-
.k-text-#{$align} { text-align: $align
|
|
6523
|
+
.k-text-#{$align} { text-align: $align; }
|
|
6524
|
+
.\!k-text-#{$align} { text-align: $align !important; } // sass-lint:disable-line no-important
|
|
6459
6525
|
}
|
|
6460
6526
|
|
|
6461
6527
|
|
|
@@ -6474,12 +6540,14 @@ $utils-border-radius: (
|
|
|
6474
6540
|
/// @group text
|
|
6475
6541
|
|
|
6476
6542
|
@each $transform in $text-transform {
|
|
6477
|
-
.k-text-#{$transform} { text-transform: $transform
|
|
6543
|
+
.k-text-#{$transform} { text-transform: $transform; }
|
|
6544
|
+
.\!k-text-#{$transform} { text-transform: $transform !important; } // sass-lint:disable-line no-important
|
|
6478
6545
|
}
|
|
6479
6546
|
|
|
6480
6547
|
// Font Size
|
|
6481
6548
|
@each $name, $size in $kendo-font-sizes {
|
|
6482
|
-
.k-fs-#{$name}
|
|
6549
|
+
.k-fs-#{$name} { font-size: $size; }
|
|
6550
|
+
.\!k-fs-#{$name} { font-size: $size !important; } // sass-lint:disable-line no-important
|
|
6483
6551
|
}
|
|
6484
6552
|
|
|
6485
6553
|
// Named font-weight
|
|
@@ -10250,7 +10318,7 @@ $kendo-button-disabled-shadow: null !default;
|
|
|
10250
10318
|
|
|
10251
10319
|
// Solid button
|
|
10252
10320
|
$kendo-solid-button-gradient: null !default;
|
|
10253
|
-
$kendo-solid-button-shade-function: "try-darken";
|
|
10321
|
+
$kendo-solid-button-shade-function: "try-darken" !default;
|
|
10254
10322
|
$kendo-solid-button-shade-text-amount: 0 !default;
|
|
10255
10323
|
$kendo-solid-button-shade-bg-amount: 0 !default;
|
|
10256
10324
|
$kendo-solid-button-shade-border-amount: 0 !default;
|
|
@@ -10353,7 +10421,6 @@ $kendo-button-transition: $transition !default;
|
|
|
10353
10421
|
|
|
10354
10422
|
// Icon Button
|
|
10355
10423
|
.k-icon-button {
|
|
10356
|
-
aspect-ratio: 1;
|
|
10357
10424
|
gap: 0;
|
|
10358
10425
|
|
|
10359
10426
|
.k-icon {
|
|
@@ -11845,7 +11912,8 @@ $floating-label-focus-text: null !default;
|
|
|
11845
11912
|
width: auto;
|
|
11846
11913
|
}
|
|
11847
11914
|
|
|
11848
|
-
&.k-state-empty
|
|
11915
|
+
&.k-state-empty,
|
|
11916
|
+
&.k-empty {
|
|
11849
11917
|
> .k-label {
|
|
11850
11918
|
top: $floating-label-offset-y;
|
|
11851
11919
|
left: $floating-label-offset-x;
|
|
@@ -11856,7 +11924,8 @@ $floating-label-focus-text: null !default;
|
|
|
11856
11924
|
|
|
11857
11925
|
> .k-label,
|
|
11858
11926
|
// &:focus-within > .k-label,
|
|
11859
|
-
&.k-state-focused > .k-label
|
|
11927
|
+
&.k-state-focused > .k-label,
|
|
11928
|
+
&.k-focus > .k-label {
|
|
11860
11929
|
top: $floating-label-focus-offset-y;
|
|
11861
11930
|
left: $floating-label-focus-offset-x;
|
|
11862
11931
|
transform: scale( $floating-label-focus-scale );
|
|
@@ -11877,9 +11946,11 @@ $floating-label-focus-text: null !default;
|
|
|
11877
11946
|
|
|
11878
11947
|
> .k-label {
|
|
11879
11948
|
transform-origin: right center;
|
|
11949
|
+
transition: transform $floating-label-transition, color $floating-label-transition, top $floating-label-transition, right $floating-label-transition;
|
|
11880
11950
|
}
|
|
11881
11951
|
|
|
11882
|
-
&.k-state-empty
|
|
11952
|
+
&.k-state-empty,
|
|
11953
|
+
&.k-empty {
|
|
11883
11954
|
> .k-label {
|
|
11884
11955
|
left: auto;
|
|
11885
11956
|
right: $floating-label-offset-x;
|
|
@@ -11888,11 +11959,12 @@ $floating-label-focus-text: null !default;
|
|
|
11888
11959
|
|
|
11889
11960
|
> .k-label,
|
|
11890
11961
|
// &:focus-within > .k-label,
|
|
11891
|
-
&.k-state-focused > .k-label
|
|
11962
|
+
&.k-state-focused > .k-label,
|
|
11963
|
+
&.k-focus > .k-label {
|
|
11892
11964
|
left: auto;
|
|
11893
11965
|
right: $floating-label-focus-offset-x;
|
|
11894
11966
|
}
|
|
11895
|
-
&:focus-within {
|
|
11967
|
+
&:focus-within > .k-label {
|
|
11896
11968
|
left: auto;
|
|
11897
11969
|
right: $floating-label-focus-offset-x;
|
|
11898
11970
|
}
|
|
@@ -19725,7 +19797,9 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
19725
19797
|
}
|
|
19726
19798
|
|
|
19727
19799
|
&.k-state-selected,
|
|
19728
|
-
&.k-state-selected:hover
|
|
19800
|
+
&.k-state-selected:hover,
|
|
19801
|
+
&.k-selected,
|
|
19802
|
+
&.k-selected:hover {
|
|
19729
19803
|
@include box-shadow( $colorpalette-tile-selected-shadow );
|
|
19730
19804
|
}
|
|
19731
19805
|
|
|
@@ -19876,7 +19950,7 @@ $colorgradient-canvas-draghandle-margin-x: -( $colorgradient-draghandle-width /
|
|
|
19876
19950
|
$colorgradient-input-width: 56px !default;
|
|
19877
19951
|
$colorgradient-input-gap: ( $colorgradient-spacer / 2 ) !default;
|
|
19878
19952
|
$colorgradient-input-label-gap: map-get( $spacing, 1 ) !default;
|
|
19879
|
-
$colorgradient-input-label-text: $
|
|
19953
|
+
$colorgradient-input-label-text: $subtle-text !default;
|
|
19880
19954
|
|
|
19881
19955
|
$colorgradient-contrast-ratio-font-weight: $font-weight-bold !default;
|
|
19882
19956
|
$colorgradient-contrast-spacer: ( $colorgradient-spacer / 2 ) !default;
|
|
@@ -22394,7 +22468,7 @@ $dropzone-hint-text: null !default;
|
|
|
22394
22468
|
|
|
22395
22469
|
$dropzone-note-font-size: $font-size-xs !default;
|
|
22396
22470
|
$dropzone-note-spacing: null !default;
|
|
22397
|
-
$dropzone-note-text:
|
|
22471
|
+
$dropzone-note-text: $subtle-text !default;
|
|
22398
22472
|
|
|
22399
22473
|
// #endregion
|
|
22400
22474
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/dropzone/_layout.scss
|
|
@@ -23860,8 +23934,9 @@ $actionsheet-item-icon-size: null !default;
|
|
|
23860
23934
|
|
|
23861
23935
|
$actionsheet-item-title-font-weight: null !default;
|
|
23862
23936
|
$actionsheet-item-title-text-transform: null !default;
|
|
23937
|
+
|
|
23863
23938
|
$actionsheet-item-description-font-size: .875em !default;
|
|
23864
|
-
$actionsheet-item-description-
|
|
23939
|
+
$actionsheet-item-description-text: $subtle-text !default;
|
|
23865
23940
|
|
|
23866
23941
|
$actionsheet-item-hover-bg: $hovered-bg !default;
|
|
23867
23942
|
$actionsheet-item-hover-text: null !default;
|
|
@@ -23975,7 +24050,6 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
23975
24050
|
}
|
|
23976
24051
|
.k-actionsheet-item-description {
|
|
23977
24052
|
font-size: $actionsheet-item-description-font-size;
|
|
23978
|
-
opacity: $actionsheet-item-description-opacity;
|
|
23979
24053
|
}
|
|
23980
24054
|
|
|
23981
24055
|
|
|
@@ -24070,6 +24144,12 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24070
24144
|
.k-actionsheet-item {}
|
|
24071
24145
|
|
|
24072
24146
|
|
|
24147
|
+
// Actionsheet item description
|
|
24148
|
+
.k-actionsheet-item-description {
|
|
24149
|
+
@include fill( $color: $actionsheet-item-description-text );
|
|
24150
|
+
}
|
|
24151
|
+
|
|
24152
|
+
|
|
24073
24153
|
// Actionsheet action
|
|
24074
24154
|
.k-actionsheet-action {
|
|
24075
24155
|
|
|
@@ -26663,6 +26743,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
26663
26743
|
font-family: $pager-font-family;
|
|
26664
26744
|
font-size: $pager-font-size;
|
|
26665
26745
|
line-height: $pager-line-height;
|
|
26746
|
+
white-space: nowrap;
|
|
26666
26747
|
display: flex;
|
|
26667
26748
|
align-items: center;
|
|
26668
26749
|
position: relative;
|
|
@@ -28619,7 +28700,7 @@ $expander-header-focused-shadow: $kendo-list-item-focus-shadow !default;
|
|
|
28619
28700
|
|
|
28620
28701
|
$expander-title-text: $primary !default;
|
|
28621
28702
|
|
|
28622
|
-
$expander-header-sub-title-
|
|
28703
|
+
$expander-header-sub-title-text: $subtle-text !default;
|
|
28623
28704
|
|
|
28624
28705
|
$expander-content-padding-x: $padding-x-lg !default;
|
|
28625
28706
|
$expander-content-padding-y: $expander-content-padding-x !default;
|
|
@@ -28746,7 +28827,7 @@ $expander-content-padding-y: $expander-content-padding-x !default;
|
|
|
28746
28827
|
}
|
|
28747
28828
|
|
|
28748
28829
|
.k-expander-sub-title {
|
|
28749
|
-
|
|
28830
|
+
color: $expander-header-sub-title-text;
|
|
28750
28831
|
}
|
|
28751
28832
|
}
|
|
28752
28833
|
|
|
@@ -30463,6 +30544,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30463
30544
|
|
|
30464
30545
|
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
30465
30546
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
30547
|
+
$grid-group-indicator-button-opacity: $kendo-input-clear-value-opacity !default;
|
|
30548
|
+
$grid-group-indicator-button-hover-opacity: $kendo-input-clear-value-hover-opacity !default;
|
|
30466
30549
|
|
|
30467
30550
|
$grid-grouping-row-border-top: 1px !default;
|
|
30468
30551
|
$grid-group-footer-border-y: 1px !default;
|
|
@@ -30931,7 +31014,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30931
31014
|
padding: 0;
|
|
30932
31015
|
width: auto;
|
|
30933
31016
|
height: auto;
|
|
30934
|
-
opacity:
|
|
31017
|
+
opacity: $grid-group-indicator-button-opacity;
|
|
30935
31018
|
|
|
30936
31019
|
&::before,
|
|
30937
31020
|
&::after {
|
|
@@ -30939,7 +31022,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30939
31022
|
}
|
|
30940
31023
|
|
|
30941
31024
|
&:hover {
|
|
30942
|
-
opacity:
|
|
31025
|
+
opacity: $grid-group-indicator-button-hover-opacity;
|
|
30943
31026
|
}
|
|
30944
31027
|
}
|
|
30945
31028
|
}
|
|
@@ -31363,8 +31446,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31363
31446
|
}
|
|
31364
31447
|
|
|
31365
31448
|
.k-grid-content,
|
|
31366
|
-
.k-grid-content-locked
|
|
31367
|
-
.k-pager-wrap {
|
|
31449
|
+
.k-grid-content-locked {
|
|
31368
31450
|
white-space: normal;
|
|
31369
31451
|
}
|
|
31370
31452
|
|
|
@@ -36014,7 +36096,7 @@ $taskboard-card-selected-shadow: none !default;
|
|
|
36014
36096
|
|
|
36015
36097
|
$taskboard-card-header-text: $primary !default;
|
|
36016
36098
|
$taskboard-card-header-focus-text: $primary-darker !default;
|
|
36017
|
-
$taskboard-card-header-hover-text: $primary-
|
|
36099
|
+
$taskboard-card-header-hover-text: $primary-darker !default;
|
|
36018
36100
|
|
|
36019
36101
|
$taskboard-drag-placeholder-border-width: 1px !default;
|
|
36020
36102
|
$taskboard-drag-placeholder-border-radius: $taskboard-card-border-radius !default;
|
|
@@ -38933,6 +39015,8 @@ $scheduler-event-selected-border: null !default;
|
|
|
38933
39015
|
$scheduler-event-selected-gradient: null !default;
|
|
38934
39016
|
$scheduler-event-selected-shadow: inset 0 0 0 3px rgba(255, 255, 255, .5) !default;
|
|
38935
39017
|
|
|
39018
|
+
$scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
39019
|
+
|
|
38936
39020
|
$scheduler-cell-padding-x: map-get( $spacing, 3 ) !default;
|
|
38937
39021
|
$scheduler-cell-padding-y: map-get( $spacing, 3 ) !default;
|
|
38938
39022
|
$scheduler-cell-height: $line-height-em !default;
|
|
@@ -40251,6 +40335,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40251
40335
|
.k-event-inverse {
|
|
40252
40336
|
color: contrast-wcag( $scheduler-event-text );
|
|
40253
40337
|
}
|
|
40338
|
+
.k-event-ongoing {
|
|
40339
|
+
@include box-shadow( $scheduler-event-ongoing-shadow );
|
|
40340
|
+
}
|
|
40254
40341
|
|
|
40255
40342
|
|
|
40256
40343
|
// Drag hint
|
|
@@ -40638,6 +40725,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
40638
40725
|
border-style: solid;
|
|
40639
40726
|
line-height: $chat-bubble-line-height;
|
|
40640
40727
|
word-wrap: break-word;
|
|
40728
|
+
white-space: pre-wrap;
|
|
40641
40729
|
|
|
40642
40730
|
a {
|
|
40643
40731
|
color: inherit;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap 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": [
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for bootstrap theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.
|
|
52
|
+
"@progress/kendo-theme-default": "^5.3.0",
|
|
53
53
|
"bootstrap": "^5.1.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: $hovered-bg !default;
|
|
51
52
|
$actionsheet-item-hover-text: null !default;
|
|
@@ -167,7 +167,7 @@ $kendo-button-disabled-shadow: null !default;
|
|
|
167
167
|
|
|
168
168
|
// Solid button
|
|
169
169
|
$kendo-solid-button-gradient: null !default;
|
|
170
|
-
$kendo-solid-button-shade-function: "try-darken";
|
|
170
|
+
$kendo-solid-button-shade-function: "try-darken" !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;
|
|
@@ -45,7 +45,7 @@ $colorgradient-canvas-draghandle-margin-x: -( $colorgradient-draghandle-width /
|
|
|
45
45
|
$colorgradient-input-width: 56px !default;
|
|
46
46
|
$colorgradient-input-gap: ( $colorgradient-spacer / 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: ( $colorgradient-spacer / 2 ) !default;
|
|
@@ -27,7 +27,7 @@ $expander-header-focused-shadow: $kendo-list-item-focus-shadow !default;
|
|
|
27
27
|
|
|
28
28
|
$expander-title-text: $primary !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-lg !default;
|
|
33
33
|
$expander-content-padding-y: $expander-content-padding-x !default;
|
|
@@ -40,6 +40,8 @@ $scheduler-event-selected-border: null !default;
|
|
|
40
40
|
$scheduler-event-selected-gradient: null !default;
|
|
41
41
|
$scheduler-event-selected-shadow: inset 0 0 0 3px rgba(255, 255, 255, .5) !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, 3 ) !default;
|
|
44
46
|
$scheduler-cell-padding-y: map-get( $spacing, 3 ) !default;
|
|
45
47
|
$scheduler-cell-height: $line-height-em !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: $primary-
|
|
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";
|