@progress/kendo-theme-default 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 +2 -2
- package/scss/_variables.scss +1 -0
- package/scss/core/functions/_misc.scss +1 -0
- package/scss/input/_layout.scss +2 -2
package/dist/all.css
CHANGED
|
@@ -13193,11 +13193,11 @@ textarea.k-input-inner {
|
|
|
13193
13193
|
}
|
|
13194
13194
|
|
|
13195
13195
|
.k-input-spinner .k-spinner-increase .k-icon {
|
|
13196
|
-
bottom:
|
|
13196
|
+
bottom: auto;
|
|
13197
13197
|
}
|
|
13198
13198
|
|
|
13199
13199
|
.k-input-spinner .k-spinner-decrease .k-icon {
|
|
13200
|
-
top:
|
|
13200
|
+
top: auto;
|
|
13201
13201
|
}
|
|
13202
13202
|
|
|
13203
13203
|
.k-searchbar {
|
|
@@ -16747,7 +16747,7 @@ kendo-label > .k-label {
|
|
|
16747
16747
|
|
|
16748
16748
|
.k-radio:checked,
|
|
16749
16749
|
.k-radio.k-checked {
|
|
16750
|
-
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");
|
|
16750
|
+
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");
|
|
16751
16751
|
}
|
|
16752
16752
|
|
|
16753
16753
|
.k-radio:disabled,
|
package/dist/all.scss
CHANGED
|
@@ -457,6 +457,7 @@ $wcag-light: white !default;
|
|
|
457
457
|
// #endregion
|
|
458
458
|
// #region @import "_misc.scss"; -> packages/default/scss/core/functions/_misc.scss
|
|
459
459
|
$svg-escaped-characters: (
|
|
460
|
+
("%", "%25"),
|
|
460
461
|
("<", "%3c"),
|
|
461
462
|
(">", "%3e"),
|
|
462
463
|
("#", "%23"),
|
|
@@ -996,6 +997,7 @@ $enable-grid-classes: true !default;
|
|
|
996
997
|
$use-calc-badge-size: true !default;
|
|
997
998
|
$use-input-button-width: true !default;
|
|
998
999
|
$use-input-spinner-width: true !default;
|
|
1000
|
+
$use-input-spinner-icon-offset: false !default;
|
|
999
1001
|
$use-picker-select-width: true !default;
|
|
1000
1002
|
|
|
1001
1003
|
|
|
@@ -9142,10 +9144,10 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9142
9144
|
}
|
|
9143
9145
|
}
|
|
9144
9146
|
.k-spinner-increase .k-icon {
|
|
9145
|
-
bottom:
|
|
9147
|
+
bottom: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
|
|
9146
9148
|
}
|
|
9147
9149
|
.k-spinner-decrease .k-icon {
|
|
9148
|
-
top:
|
|
9150
|
+
top: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
|
|
9149
9151
|
}
|
|
9150
9152
|
}
|
|
9151
9153
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default 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": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"prepublishOnly": "echo 'no prebublish for default theme'",
|
|
48
48
|
"postpublish": "echo 'no postpublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "9adacd86a177c1376aba105dd03af3f38a4dcaff"
|
|
51
51
|
}
|
package/scss/_variables.scss
CHANGED
|
@@ -13,6 +13,7 @@ $enable-grid-classes: true !default;
|
|
|
13
13
|
$use-calc-badge-size: true !default;
|
|
14
14
|
$use-input-button-width: true !default;
|
|
15
15
|
$use-input-spinner-width: true !default;
|
|
16
|
+
$use-input-spinner-icon-offset: false !default;
|
|
16
17
|
$use-picker-select-width: true !default;
|
|
17
18
|
|
|
18
19
|
|
package/scss/input/_layout.scss
CHANGED
|
@@ -266,10 +266,10 @@
|
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
268
|
.k-spinner-increase .k-icon {
|
|
269
|
-
bottom:
|
|
269
|
+
bottom: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
|
|
270
270
|
}
|
|
271
271
|
.k-spinner-decrease .k-icon {
|
|
272
|
-
top:
|
|
272
|
+
top: if( $use-input-spinner-icon-offset, calc( -1 * #{$kendo-input-spinner-icon-offset}), auto );
|
|
273
273
|
}
|
|
274
274
|
}
|
|
275
275
|
|