@progress/kendo-theme-classic 5.2.0 → 5.2.1-dev.2
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 +36 -2
- package/dist/all.scss +24 -7
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/package.json +3 -3
- package/scss/_variables.scss +4 -1
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 {
|
|
@@ -13355,6 +13357,38 @@ kendo-badge-container {
|
|
|
13355
13357
|
margin: 0;
|
|
13356
13358
|
}
|
|
13357
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
|
+
|
|
13358
13392
|
input.k-input {
|
|
13359
13393
|
padding: 4px 8px;
|
|
13360
13394
|
}
|
|
@@ -19737,7 +19771,7 @@ kendo-label > .k-label {
|
|
|
19737
19771
|
}
|
|
19738
19772
|
|
|
19739
19773
|
.k-popup-dropdowntree .k-check-all {
|
|
19740
|
-
padding: 8px 8px;
|
|
19774
|
+
padding: 8px 8px 0;
|
|
19741
19775
|
}
|
|
19742
19776
|
|
|
19743
19777
|
.k-popup-dropdowntree .k-treeview {
|
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 {
|
|
@@ -9143,8 +9148,20 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9143
9148
|
& > * {
|
|
9144
9149
|
margin: 0;
|
|
9145
9150
|
}
|
|
9146
|
-
}
|
|
9147
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
|
+
}
|
|
9148
9165
|
|
|
9149
9166
|
// Input
|
|
9150
9167
|
.k-input {}
|
|
@@ -19562,7 +19579,7 @@ $dropdowntree-popup-padding-y: map-get( $spacing, 2 ) !default;
|
|
|
19562
19579
|
padding: 0;
|
|
19563
19580
|
|
|
19564
19581
|
.k-check-all {
|
|
19565
|
-
padding: $dropdowntree-popup-padding-y $dropdowntree-popup-padding-x;
|
|
19582
|
+
padding: $dropdowntree-popup-padding-y $dropdowntree-popup-padding-x 0;
|
|
19566
19583
|
}
|
|
19567
19584
|
|
|
19568
19585
|
.k-treeview {
|
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.2.
|
|
4
|
+
"version": "5.2.1-dev.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for classic theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.2.
|
|
52
|
+
"@progress/kendo-theme-default": "^5.2.1-dev.2"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "e446301962e9eba01d9e3c1920b77c5349ce68cf"
|
|
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;
|