@progress/kendo-theme-classic 5.1.2-dev.0 → 5.1.2-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 +3 -3
- package/dist/all.scss +4 -2
- package/package.json +3 -3
- package/scss/_variables.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -13199,11 +13199,11 @@ textarea.k-input-inner {
|
|
|
13199
13199
|
}
|
|
13200
13200
|
|
|
13201
13201
|
.k-input-spinner .k-spinner-increase .k-icon {
|
|
13202
|
-
bottom:
|
|
13202
|
+
bottom: auto;
|
|
13203
13203
|
}
|
|
13204
13204
|
|
|
13205
13205
|
.k-input-spinner .k-spinner-decrease .k-icon {
|
|
13206
|
-
top:
|
|
13206
|
+
top: auto;
|
|
13207
13207
|
}
|
|
13208
13208
|
|
|
13209
13209
|
.k-searchbar {
|
|
@@ -16750,7 +16750,7 @@ kendo-label > .k-label {
|
|
|
16750
16750
|
|
|
16751
16751
|
.k-radio:checked,
|
|
16752
16752
|
.k-radio.k-checked {
|
|
16753
|
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3e%3ccircle cx='50%' cy='50%' r='4' fill='white'/%3e%3c/svg%3e");
|
|
16753
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3e%3ccircle cx='50%25' cy='50%25' r='4' fill='white'/%3e%3c/svg%3e");
|
|
16754
16754
|
}
|
|
16755
16755
|
|
|
16756
16756
|
.k-radio:disabled,
|
package/dist/all.scss
CHANGED
|
@@ -458,6 +458,7 @@ $wcag-light: white !default;
|
|
|
458
458
|
// #endregion
|
|
459
459
|
// #region @import "_misc.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/core/functions/_misc.scss
|
|
460
460
|
$svg-escaped-characters: (
|
|
461
|
+
("%", "%25"),
|
|
461
462
|
("<", "%3c"),
|
|
462
463
|
(">", "%3e"),
|
|
463
464
|
("#", "%23"),
|
|
@@ -943,6 +944,7 @@ $enable-grid-classes: true !default;
|
|
|
943
944
|
$use-calc-badge-size: true !default;
|
|
944
945
|
$use-input-button-width: false !default;
|
|
945
946
|
$use-input-spinner-width: false !default;
|
|
947
|
+
$use-input-spinner-icon-offset: false !default;
|
|
946
948
|
$use-picker-select-width: false !default;
|
|
947
949
|
|
|
948
950
|
|
|
@@ -9269,10 +9271,10 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9269
9271
|
}
|
|
9270
9272
|
}
|
|
9271
9273
|
.k-spinner-increase .k-icon {
|
|
9272
|
-
bottom:
|
|
9274
|
+
bottom: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
|
|
9273
9275
|
}
|
|
9274
9276
|
.k-spinner-decrease .k-icon {
|
|
9275
|
-
top:
|
|
9277
|
+
top: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
|
|
9276
9278
|
}
|
|
9277
9279
|
}
|
|
9278
9280
|
|
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.2-dev.
|
|
4
|
+
"version": "5.1.2-dev.1",
|
|
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.1.2-dev.
|
|
52
|
+
"@progress/kendo-theme-default": "^5.1.2-dev.1"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "9adacd86a177c1376aba105dd03af3f38a4dcaff"
|
|
55
55
|
}
|
package/scss/_variables.scss
CHANGED
|
@@ -12,6 +12,7 @@ $enable-grid-classes: true !default;
|
|
|
12
12
|
$use-calc-badge-size: true !default;
|
|
13
13
|
$use-input-button-width: false !default;
|
|
14
14
|
$use-input-spinner-width: false !default;
|
|
15
|
+
$use-input-spinner-icon-offset: false !default;
|
|
15
16
|
$use-picker-select-width: false !default;
|
|
16
17
|
|
|
17
18
|
|