@progress/kendo-theme-default 5.3.0 → 5.3.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 -2
- package/dist/all.scss +2 -1
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/lib/swatches/index.js +1 -0
- package/package.json +2 -2
- package/scss/floating-label/_layout.scss +2 -1
package/dist/all.css
CHANGED
|
@@ -14124,11 +14124,12 @@ textarea.k-input-inner {
|
|
|
14124
14124
|
transform: scale(1);
|
|
14125
14125
|
}
|
|
14126
14126
|
|
|
14127
|
-
.k-floating-label-container.k-state-empty:not(.k-state-focused) :-ms-input-placeholder {
|
|
14127
|
+
.k-floating-label-container.k-state-empty:not(.k-state-focused) :-ms-input-placeholder, .k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) :-ms-input-placeholder {
|
|
14128
14128
|
color: transparent;
|
|
14129
14129
|
}
|
|
14130
14130
|
|
|
14131
|
-
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder
|
|
14131
|
+
.k-floating-label-container.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
14132
|
+
.k-floating-label-container.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
14132
14133
|
color: transparent;
|
|
14133
14134
|
}
|
|
14134
14135
|
|
package/dist/all.scss
CHANGED
|
@@ -9745,7 +9745,8 @@ $floating-label-focus-text: null !default;
|
|
|
9745
9745
|
transform: scale( $floating-label-focus-scale );
|
|
9746
9746
|
}
|
|
9747
9747
|
|
|
9748
|
-
&.k-state-empty:not(.k-state-focused) ::placeholder
|
|
9748
|
+
&.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
9749
|
+
&.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
9749
9750
|
color: transparent;
|
|
9750
9751
|
}
|
|
9751
9752
|
|
package/lib/swatches/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
module.exports.main = require('./default-main.json');
|
|
2
2
|
module.exports.mainDark = require('./default-main-dark.json');
|
|
3
|
+
module.exports.oceanBlue = require('./default-ocean-blue.json');
|
|
3
4
|
module.exports.blue = require('./default-blue.json');
|
|
4
5
|
module.exports.green = require('./default-green.json');
|
|
5
6
|
module.exports.nordic = require('./default-nordic.json');
|
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.3.
|
|
4
|
+
"version": "5.3.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"prepublishOnly": "node ../../scripts/themes-prepublish.js",
|
|
48
48
|
"postpublish": "echo 'no postpublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "efa345ead38afdc056098d464fdfa9a752400918"
|
|
51
51
|
}
|
|
@@ -61,7 +61,8 @@
|
|
|
61
61
|
transform: scale( $floating-label-focus-scale );
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
&.k-state-empty:not(.k-state-focused) ::placeholder
|
|
64
|
+
&.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
65
|
+
&.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
65
66
|
color: transparent;
|
|
66
67
|
}
|
|
67
68
|
|