@progress/kendo-theme-classic 5.1.2-dev.7 → 5.2.1-dev.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 +67 -11
- package/dist/all.scss +66 -15
- package/lib/swatches/classic-green-dark.json +2 -1
- package/lib/swatches/classic-green.json +2 -1
- package/lib/swatches/classic-main-dark.json +2 -1
- package/lib/swatches/classic-main.json +2 -1
- package/lib/swatches/classic-opal-dark.json +2 -1
- package/lib/swatches/classic-opal.json +2 -1
- package/lib/swatches/classic-silver-dark.json +2 -1
- package/lib/swatches/classic-silver.json +2 -1
- package/package.json +4 -4
- package/scss/_variables.scss +4 -1
- package/scss/button/_variables.scss +11 -0
package/dist/all.css
CHANGED
|
@@ -998,15 +998,17 @@ kendo-sortable {
|
|
|
998
998
|
text-indent: -4000px;
|
|
999
999
|
text-align: center;
|
|
1000
1000
|
position: absolute;
|
|
1001
|
+
color: currentColor;
|
|
1001
1002
|
}
|
|
1002
1003
|
|
|
1003
1004
|
.k-loading-image {
|
|
1004
1005
|
z-index: 2;
|
|
1006
|
+
color: currentColor;
|
|
1005
1007
|
}
|
|
1006
1008
|
|
|
1007
1009
|
.k-loading-color {
|
|
1008
1010
|
background-color: #ffffff;
|
|
1009
|
-
opacity: .3;
|
|
1011
|
+
opacity: 0.3;
|
|
1010
1012
|
}
|
|
1011
1013
|
|
|
1012
1014
|
.k-i-loading {
|
|
@@ -12202,6 +12204,18 @@ kendo-badge-container {
|
|
|
12202
12204
|
flex: none;
|
|
12203
12205
|
}
|
|
12204
12206
|
|
|
12207
|
+
.k-split-button .k-split-button-arrow.k-button-sm {
|
|
12208
|
+
padding: 2px 2px;
|
|
12209
|
+
}
|
|
12210
|
+
|
|
12211
|
+
.k-split-button .k-split-button-arrow.k-button-md {
|
|
12212
|
+
padding: 4px 4px;
|
|
12213
|
+
}
|
|
12214
|
+
|
|
12215
|
+
.k-split-button .k-split-button-arrow.k-button-lg {
|
|
12216
|
+
padding: 6px 6px;
|
|
12217
|
+
}
|
|
12218
|
+
|
|
12205
12219
|
.k-split-button .k-split-button-arrow .k-button-icon {
|
|
12206
12220
|
min-width: 0;
|
|
12207
12221
|
}
|
|
@@ -13343,6 +13357,38 @@ kendo-badge-container {
|
|
|
13343
13357
|
margin: 0;
|
|
13344
13358
|
}
|
|
13345
13359
|
|
|
13360
|
+
.k-input:disabled, .k-input[disabled], .k-input.k-disabled,
|
|
13361
|
+
.k-picker:disabled,
|
|
13362
|
+
.k-picker[disabled],
|
|
13363
|
+
.k-picker.k-disabled {
|
|
13364
|
+
outline: none;
|
|
13365
|
+
cursor: default;
|
|
13366
|
+
opacity: 0.6;
|
|
13367
|
+
filter: grayscale(0.1);
|
|
13368
|
+
pointer-events: none;
|
|
13369
|
+
box-shadow: none;
|
|
13370
|
+
}
|
|
13371
|
+
|
|
13372
|
+
.k-input:disabled [disabled],
|
|
13373
|
+
.k-input:disabled .k-disabled,
|
|
13374
|
+
.k-input:disabled .k-state-disabled, .k-input[disabled] [disabled],
|
|
13375
|
+
.k-input[disabled] .k-disabled,
|
|
13376
|
+
.k-input[disabled] .k-state-disabled, .k-input.k-disabled [disabled],
|
|
13377
|
+
.k-input.k-disabled .k-disabled,
|
|
13378
|
+
.k-input.k-disabled .k-state-disabled,
|
|
13379
|
+
.k-picker:disabled [disabled],
|
|
13380
|
+
.k-picker:disabled .k-disabled,
|
|
13381
|
+
.k-picker:disabled .k-state-disabled,
|
|
13382
|
+
.k-picker[disabled] [disabled],
|
|
13383
|
+
.k-picker[disabled] .k-disabled,
|
|
13384
|
+
.k-picker[disabled] .k-state-disabled,
|
|
13385
|
+
.k-picker.k-disabled [disabled],
|
|
13386
|
+
.k-picker.k-disabled .k-disabled,
|
|
13387
|
+
.k-picker.k-disabled .k-state-disabled {
|
|
13388
|
+
opacity: 1;
|
|
13389
|
+
filter: grayscale(0);
|
|
13390
|
+
}
|
|
13391
|
+
|
|
13346
13392
|
input.k-input {
|
|
13347
13393
|
padding: 4px 8px;
|
|
13348
13394
|
}
|
|
@@ -13369,7 +13415,7 @@ select.k-picker {
|
|
|
13369
13415
|
position: relative;
|
|
13370
13416
|
z-index: 1;
|
|
13371
13417
|
overflow: hidden;
|
|
13372
|
-
text-overflow:
|
|
13418
|
+
text-overflow: ellipsis;
|
|
13373
13419
|
-webkit-appearance: none;
|
|
13374
13420
|
}
|
|
13375
13421
|
|
|
@@ -13418,7 +13464,7 @@ textarea.k-input-inner {
|
|
|
13418
13464
|
.k-input-value-text {
|
|
13419
13465
|
flex: 1;
|
|
13420
13466
|
overflow: hidden;
|
|
13421
|
-
text-overflow:
|
|
13467
|
+
text-overflow: ellipsis;
|
|
13422
13468
|
}
|
|
13423
13469
|
|
|
13424
13470
|
.k-input-value-text::before {
|
|
@@ -18953,6 +18999,10 @@ kendo-label > .k-label {
|
|
|
18953
18999
|
width: 46px;
|
|
18954
19000
|
}
|
|
18955
19001
|
|
|
19002
|
+
.k-colorgradient-inputs .k-input-inner {
|
|
19003
|
+
text-overflow: clip;
|
|
19004
|
+
}
|
|
19005
|
+
|
|
18956
19006
|
.k-colorgradient-color-contrast > div {
|
|
18957
19007
|
display: flex;
|
|
18958
19008
|
flex-flow: row nowrap;
|
|
@@ -19721,7 +19771,7 @@ kendo-label > .k-label {
|
|
|
19721
19771
|
}
|
|
19722
19772
|
|
|
19723
19773
|
.k-popup-dropdowntree .k-check-all {
|
|
19724
|
-
padding: 8px 8px;
|
|
19774
|
+
padding: 8px 8px 0;
|
|
19725
19775
|
}
|
|
19726
19776
|
|
|
19727
19777
|
.k-popup-dropdowntree .k-treeview {
|
|
@@ -23473,6 +23523,11 @@ kendo-card-footer {
|
|
|
23473
23523
|
width: 5em;
|
|
23474
23524
|
}
|
|
23475
23525
|
|
|
23526
|
+
.k-pager-sizes .k-input-inner,
|
|
23527
|
+
.k-pager-sizes .k-input-value-text {
|
|
23528
|
+
text-overflow: clip;
|
|
23529
|
+
}
|
|
23530
|
+
|
|
23476
23531
|
.k-rtl .k-pager-sizes .k-dropdown-list, .k-rtl .k-pager-sizes .k-dropdown,
|
|
23477
23532
|
.k-rtl .k-pager-sizes .k-dropdownlist,
|
|
23478
23533
|
.k-rtl .k-pager-sizes > select,
|
|
@@ -23669,6 +23724,7 @@ kendo-card-footer {
|
|
|
23669
23724
|
display: flex;
|
|
23670
23725
|
align-items: center;
|
|
23671
23726
|
justify-content: center;
|
|
23727
|
+
flex: none;
|
|
23672
23728
|
position: relative;
|
|
23673
23729
|
z-index: 1;
|
|
23674
23730
|
overflow: visible;
|
|
@@ -23699,7 +23755,7 @@ kendo-card-footer {
|
|
|
23699
23755
|
}
|
|
23700
23756
|
|
|
23701
23757
|
.k-stepper .k-step-label {
|
|
23702
|
-
max-width:
|
|
23758
|
+
max-width: clamp(100%, 10em, 100%);
|
|
23703
23759
|
display: inline-flex;
|
|
23704
23760
|
flex-wrap: wrap;
|
|
23705
23761
|
align-items: center;
|
|
@@ -27644,11 +27700,6 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
27644
27700
|
min-width: 1.4285714286em;
|
|
27645
27701
|
}
|
|
27646
27702
|
|
|
27647
|
-
.k-spreadsheet-toolbar .k-input,
|
|
27648
|
-
.k-spreadsheet-toolbar .k-picker {
|
|
27649
|
-
width: 5em;
|
|
27650
|
-
}
|
|
27651
|
-
|
|
27652
27703
|
.k-spreadsheet-toolbar .k-color-picker, .k-spreadsheet-toolbar .k-colorpicker {
|
|
27653
27704
|
width: min-content;
|
|
27654
27705
|
}
|
|
@@ -30961,6 +31012,11 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
30961
31012
|
overflow-y: auto;
|
|
30962
31013
|
}
|
|
30963
31014
|
|
|
31015
|
+
.k-imageeditor-action-pane .k-input-inner,
|
|
31016
|
+
.k-imageeditor-action-pane .k-input-value-text {
|
|
31017
|
+
text-overflow: clip;
|
|
31018
|
+
}
|
|
31019
|
+
|
|
30964
31020
|
.k-imageeditor-crop-overlay {
|
|
30965
31021
|
width: 100%;
|
|
30966
31022
|
height: 100%;
|
|
@@ -31785,7 +31841,7 @@ kendo-editor.k-readonly .k-editor-content.k-state-focused {
|
|
|
31785
31841
|
}
|
|
31786
31842
|
|
|
31787
31843
|
.k-gantt-tooltip-validation::before {
|
|
31788
|
-
content:
|
|
31844
|
+
content: "";
|
|
31789
31845
|
width: 4px;
|
|
31790
31846
|
height: 100%;
|
|
31791
31847
|
position: absolute;
|
package/dist/all.scss
CHANGED
|
@@ -1288,7 +1288,10 @@ $node-selected-gradient: null !default;
|
|
|
1288
1288
|
|
|
1289
1289
|
|
|
1290
1290
|
// Loading
|
|
1291
|
-
|
|
1291
|
+
$loading-bg: $component-bg !default;
|
|
1292
|
+
$loading-text: currentColor !default;
|
|
1293
|
+
$loading-opacity: .3 !default;
|
|
1294
|
+
$zindex-loading: 100 !default;
|
|
1292
1295
|
|
|
1293
1296
|
// Placeholder
|
|
1294
1297
|
$placeholder-line-width: 100% !default;
|
|
@@ -2737,7 +2740,7 @@ $display4-letter-spacing: null !default;
|
|
|
2737
2740
|
}
|
|
2738
2741
|
|
|
2739
2742
|
.k-loading-mask {
|
|
2740
|
-
z-index:
|
|
2743
|
+
z-index: $zindex-loading;
|
|
2741
2744
|
|
|
2742
2745
|
&.k-opaque {
|
|
2743
2746
|
.k-loading-color {
|
|
@@ -2749,13 +2752,15 @@ $display4-letter-spacing: null !default;
|
|
|
2749
2752
|
text-indent: -4000px;
|
|
2750
2753
|
text-align: center;
|
|
2751
2754
|
position: absolute;
|
|
2755
|
+
color: $loading-text;
|
|
2752
2756
|
}
|
|
2753
2757
|
.k-loading-image {
|
|
2754
2758
|
z-index: 2;
|
|
2759
|
+
color: $loading-text;
|
|
2755
2760
|
}
|
|
2756
2761
|
.k-loading-color {
|
|
2757
|
-
background-color: $
|
|
2758
|
-
opacity:
|
|
2762
|
+
background-color: $loading-bg;
|
|
2763
|
+
opacity: $loading-opacity;
|
|
2759
2764
|
}
|
|
2760
2765
|
|
|
2761
2766
|
// Loading indicator
|
|
@@ -2763,7 +2768,7 @@ $display4-letter-spacing: null !default;
|
|
|
2763
2768
|
position: relative;
|
|
2764
2769
|
background-color: transparent;
|
|
2765
2770
|
box-sizing: border-box;
|
|
2766
|
-
color:
|
|
2771
|
+
color: $loading-text;
|
|
2767
2772
|
|
|
2768
2773
|
&::before,
|
|
2769
2774
|
&::after {
|
|
@@ -8082,8 +8087,19 @@ $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-but
|
|
|
8082
8087
|
/// @group button
|
|
8083
8088
|
$kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
|
|
8084
8089
|
|
|
8090
|
+
/// Horizontal padding of the arrow button.
|
|
8091
|
+
/// @group button
|
|
8085
8092
|
$kendo-button-arrow-padding-x: $kendo-button-padding-y !default;
|
|
8093
|
+
$kendo-button-arrow-padding-x-sm: $kendo-button-padding-y-sm !default;
|
|
8094
|
+
$kendo-button-arrow-padding-x-md: $kendo-button-padding-y-md !default;
|
|
8095
|
+
$kendo-button-arrow-padding-x-lg: $kendo-button-padding-y-lg !default;
|
|
8096
|
+
|
|
8097
|
+
/// Vertical padding of the arrow button.
|
|
8098
|
+
/// @group button
|
|
8086
8099
|
$kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
|
|
8100
|
+
$kendo-button-arrow-padding-y-sm: $kendo-button-padding-y-sm !default;
|
|
8101
|
+
$kendo-button-arrow-padding-y-md: $kendo-button-padding-y-md !default;
|
|
8102
|
+
$kendo-button-arrow-padding-y-lg: $kendo-button-padding-y-lg !default;
|
|
8087
8103
|
|
|
8088
8104
|
/// Theme colors map for the button.
|
|
8089
8105
|
/// @group button
|
|
@@ -8462,6 +8478,18 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
8462
8478
|
aspect-ratio: auto;
|
|
8463
8479
|
flex: none;
|
|
8464
8480
|
|
|
8481
|
+
&.k-button-sm {
|
|
8482
|
+
padding: $kendo-button-arrow-padding-y-sm $kendo-button-arrow-padding-x-sm;
|
|
8483
|
+
}
|
|
8484
|
+
|
|
8485
|
+
&.k-button-md {
|
|
8486
|
+
padding: $kendo-button-arrow-padding-y-md $kendo-button-arrow-padding-x-md;
|
|
8487
|
+
}
|
|
8488
|
+
|
|
8489
|
+
&.k-button-lg {
|
|
8490
|
+
padding: $kendo-button-arrow-padding-y-lg $kendo-button-arrow-padding-x-lg;
|
|
8491
|
+
}
|
|
8492
|
+
|
|
8465
8493
|
.k-button-icon {
|
|
8466
8494
|
min-width: 0;
|
|
8467
8495
|
}
|
|
@@ -9120,8 +9148,20 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9120
9148
|
& > * {
|
|
9121
9149
|
margin: 0;
|
|
9122
9150
|
}
|
|
9123
|
-
}
|
|
9124
9151
|
|
|
9152
|
+
&:disabled,
|
|
9153
|
+
&[disabled],
|
|
9154
|
+
&.k-disabled {
|
|
9155
|
+
@include disabled( $disabled-styling );
|
|
9156
|
+
|
|
9157
|
+
[disabled],
|
|
9158
|
+
.k-disabled,
|
|
9159
|
+
.k-state-disabled {
|
|
9160
|
+
opacity: 1;
|
|
9161
|
+
filter: grayscale(0);
|
|
9162
|
+
}
|
|
9163
|
+
}
|
|
9164
|
+
}
|
|
9125
9165
|
|
|
9126
9166
|
// Input
|
|
9127
9167
|
.k-input {}
|
|
@@ -9153,7 +9193,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9153
9193
|
position: relative;
|
|
9154
9194
|
z-index: 1;
|
|
9155
9195
|
overflow: hidden;
|
|
9156
|
-
text-overflow:
|
|
9196
|
+
text-overflow: ellipsis;
|
|
9157
9197
|
-webkit-appearance: none;
|
|
9158
9198
|
|
|
9159
9199
|
// Hide clear icon
|
|
@@ -9192,7 +9232,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9192
9232
|
.k-input-value-text {
|
|
9193
9233
|
flex: 1;
|
|
9194
9234
|
overflow: hidden;
|
|
9195
|
-
text-overflow:
|
|
9235
|
+
text-overflow: ellipsis;
|
|
9196
9236
|
}
|
|
9197
9237
|
.k-input-value-text::before {
|
|
9198
9238
|
content: "\200b";
|
|
@@ -17820,6 +17860,10 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
17820
17860
|
.k-numerictextbox {
|
|
17821
17861
|
width: $colorgradient-input-width;
|
|
17822
17862
|
}
|
|
17863
|
+
|
|
17864
|
+
.k-input-inner {
|
|
17865
|
+
text-overflow: clip;
|
|
17866
|
+
}
|
|
17823
17867
|
}
|
|
17824
17868
|
|
|
17825
17869
|
// Contrast
|
|
@@ -19535,7 +19579,7 @@ $dropdowntree-popup-padding-y: map-get( $spacing, 2 ) !default;
|
|
|
19535
19579
|
padding: 0;
|
|
19536
19580
|
|
|
19537
19581
|
.k-check-all {
|
|
19538
|
-
padding: $dropdowntree-popup-padding-y $dropdowntree-popup-padding-x;
|
|
19582
|
+
padding: $dropdowntree-popup-padding-y $dropdowntree-popup-padding-x 0;
|
|
19539
19583
|
}
|
|
19540
19584
|
|
|
19541
19585
|
.k-treeview {
|
|
@@ -24821,6 +24865,11 @@ $pager-dropdown-width: 5em !default;
|
|
|
24821
24865
|
width: $pager-dropdown-width;
|
|
24822
24866
|
}
|
|
24823
24867
|
|
|
24868
|
+
.k-input-inner,
|
|
24869
|
+
.k-input-value-text {
|
|
24870
|
+
text-overflow: clip;
|
|
24871
|
+
}
|
|
24872
|
+
|
|
24824
24873
|
.k-rtl &,
|
|
24825
24874
|
[dir="rtl"] & {
|
|
24826
24875
|
.k-dropdown-list,
|
|
@@ -25247,6 +25296,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
25247
25296
|
display: flex;
|
|
25248
25297
|
align-items: center;
|
|
25249
25298
|
justify-content: center;
|
|
25299
|
+
flex: none;
|
|
25250
25300
|
position: relative;
|
|
25251
25301
|
z-index: 1;
|
|
25252
25302
|
overflow: visible;
|
|
@@ -25280,7 +25330,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
25280
25330
|
|
|
25281
25331
|
// Step label
|
|
25282
25332
|
.k-step-label {
|
|
25283
|
-
max-width:
|
|
25333
|
+
max-width: clamp(100%, 10em, 100%);
|
|
25284
25334
|
display: inline-flex;
|
|
25285
25335
|
flex-wrap: wrap;
|
|
25286
25336
|
align-items: center;
|
|
@@ -30696,10 +30746,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
30696
30746
|
min-width: $form-line-height * 1em;
|
|
30697
30747
|
}
|
|
30698
30748
|
|
|
30699
|
-
.k-input,
|
|
30700
|
-
.k-picker {
|
|
30701
|
-
width: 5em;
|
|
30702
|
-
}
|
|
30703
30749
|
.k-color-picker {
|
|
30704
30750
|
width: min-content;
|
|
30705
30751
|
}
|
|
@@ -35257,6 +35303,11 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
35257
35303
|
box-sizing: border-box;
|
|
35258
35304
|
flex: none;
|
|
35259
35305
|
overflow-y: auto;
|
|
35306
|
+
|
|
35307
|
+
.k-input-inner,
|
|
35308
|
+
.k-input-value-text {
|
|
35309
|
+
text-overflow: clip;
|
|
35310
|
+
}
|
|
35260
35311
|
}
|
|
35261
35312
|
|
|
35262
35313
|
|
|
@@ -36269,7 +36320,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
36269
36320
|
display: block;
|
|
36270
36321
|
|
|
36271
36322
|
&::before {
|
|
36272
|
-
content:
|
|
36323
|
+
content: "";
|
|
36273
36324
|
width: 4px;
|
|
36274
36325
|
height: 100%;
|
|
36275
36326
|
position: absolute;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.
|
|
2
|
+
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.14.0/lib/schemas/kendo-swatch.json",
|
|
3
3
|
"name": "Classic Green Dark",
|
|
4
4
|
"product": "kendo",
|
|
5
5
|
"base": "@progress/kendo-theme-classic",
|
|
6
|
+
"version": "5.2.1-dev.1",
|
|
6
7
|
"previewColors": [
|
|
7
8
|
"#000000",
|
|
8
9
|
"#131413",
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.
|
|
2
|
+
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.14.0/lib/schemas/kendo-swatch.json",
|
|
3
3
|
"name": "Classic Green",
|
|
4
4
|
"product": "kendo",
|
|
5
5
|
"base": "@progress/kendo-theme-classic",
|
|
6
|
+
"version": "5.2.1-dev.1",
|
|
6
7
|
"previewColors": [
|
|
7
8
|
"#ffffff",
|
|
8
9
|
"#f3f4f3",
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.
|
|
2
|
+
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.14.0/lib/schemas/kendo-swatch.json",
|
|
3
3
|
"name": "Classic Main Dark",
|
|
4
4
|
"product": "kendo",
|
|
5
5
|
"base": "@progress/kendo-theme-classic",
|
|
6
|
+
"version": "5.2.1-dev.1",
|
|
6
7
|
"previewColors": [
|
|
7
8
|
"#000000",
|
|
8
9
|
"#101010",
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.
|
|
2
|
+
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.14.0/lib/schemas/kendo-swatch.json",
|
|
3
3
|
"name": "Classic Main",
|
|
4
4
|
"product": "kendo",
|
|
5
5
|
"base": "@progress/kendo-theme-classic",
|
|
6
|
+
"version": "5.2.1-dev.1",
|
|
6
7
|
"previewColors": [
|
|
7
8
|
"#ffffff",
|
|
8
9
|
"#f0f0f0",
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.
|
|
2
|
+
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.14.0/lib/schemas/kendo-swatch.json",
|
|
3
3
|
"name": "Classic Opal Dark",
|
|
4
4
|
"product": "kendo",
|
|
5
5
|
"base": "@progress/kendo-theme-classic",
|
|
6
|
+
"version": "5.2.1-dev.1",
|
|
6
7
|
"previewColors": [
|
|
7
8
|
"#000000",
|
|
8
9
|
"#1e242d",
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.
|
|
2
|
+
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.14.0/lib/schemas/kendo-swatch.json",
|
|
3
3
|
"name": "Classic Opal",
|
|
4
4
|
"product": "kendo",
|
|
5
5
|
"base": "@progress/kendo-theme-classic",
|
|
6
|
+
"version": "5.2.1-dev.1",
|
|
6
7
|
"previewColors": [
|
|
7
8
|
"#ffffff",
|
|
8
9
|
"#def4fd",
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.
|
|
2
|
+
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.14.0/lib/schemas/kendo-swatch.json",
|
|
3
3
|
"name": "Classic Silver Dark",
|
|
4
4
|
"product": "kendo",
|
|
5
5
|
"base": "@progress/kendo-theme-classic",
|
|
6
|
+
"version": "5.2.1-dev.1",
|
|
6
7
|
"previewColors": [
|
|
7
8
|
"#000000",
|
|
8
9
|
"#131314",
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.
|
|
2
|
+
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.14.0/lib/schemas/kendo-swatch.json",
|
|
3
3
|
"name": "Classic Silver",
|
|
4
4
|
"product": "kendo",
|
|
5
5
|
"base": "@progress/kendo-theme-classic",
|
|
6
|
+
"version": "5.2.1-dev.1",
|
|
6
7
|
"previewColors": [
|
|
7
8
|
"#ffffff",
|
|
8
9
|
"#f3f3f4",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-classic",
|
|
3
3
|
"description": "Sass port of less based themes for Kendo UI theme",
|
|
4
|
-
"version": "5.1
|
|
4
|
+
"version": "5.2.1-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"dart:watch": "gulp dart:watch",
|
|
46
46
|
"dart:swatches": "gulp dart:swatches",
|
|
47
47
|
"dart:flat": "gulp dart:flat",
|
|
48
|
-
"prepublishOnly": "
|
|
48
|
+
"prepublishOnly": "node ../../scripts/themes-prepublish.js",
|
|
49
49
|
"postpublish": "echo 'no postpublish for classic theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.1
|
|
52
|
+
"@progress/kendo-theme-default": "^5.2.1-dev.1"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "9efb8de6ee8dabce6a0d5362b8978383a8afde67"
|
|
55
55
|
}
|
package/scss/_variables.scss
CHANGED
|
@@ -356,7 +356,10 @@ $node-selected-gradient: null !default;
|
|
|
356
356
|
|
|
357
357
|
|
|
358
358
|
// Loading
|
|
359
|
-
|
|
359
|
+
$loading-bg: $component-bg !default;
|
|
360
|
+
$loading-text: currentColor !default;
|
|
361
|
+
$loading-opacity: .3 !default;
|
|
362
|
+
$zindex-loading: 100 !default;
|
|
360
363
|
|
|
361
364
|
// Placeholder
|
|
362
365
|
$placeholder-line-width: 100% !default;
|
|
@@ -48,8 +48,19 @@ $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-but
|
|
|
48
48
|
/// @group button
|
|
49
49
|
$kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
|
|
50
50
|
|
|
51
|
+
/// Horizontal padding of the arrow button.
|
|
52
|
+
/// @group button
|
|
51
53
|
$kendo-button-arrow-padding-x: $kendo-button-padding-y !default;
|
|
54
|
+
$kendo-button-arrow-padding-x-sm: $kendo-button-padding-y-sm !default;
|
|
55
|
+
$kendo-button-arrow-padding-x-md: $kendo-button-padding-y-md !default;
|
|
56
|
+
$kendo-button-arrow-padding-x-lg: $kendo-button-padding-y-lg !default;
|
|
57
|
+
|
|
58
|
+
/// Vertical padding of the arrow button.
|
|
59
|
+
/// @group button
|
|
52
60
|
$kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
|
|
61
|
+
$kendo-button-arrow-padding-y-sm: $kendo-button-padding-y-sm !default;
|
|
62
|
+
$kendo-button-arrow-padding-y-md: $kendo-button-padding-y-md !default;
|
|
63
|
+
$kendo-button-arrow-padding-y-lg: $kendo-button-padding-y-lg !default;
|
|
53
64
|
|
|
54
65
|
/// Theme colors map for the button.
|
|
55
66
|
/// @group button
|