@progress/kendo-theme-core 10.2.0-dev.2 → 10.2.0
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-core",
|
|
3
3
|
"description": "A collection of functions and mixins used for building themes for Kendo UI",
|
|
4
|
-
"version": "10.2.0
|
|
4
|
+
"version": "10.2.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"directories": {
|
|
46
46
|
"doc": "docs"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "842eda823b380f262b6160ddd002d32dabe9f2ab"
|
|
49
49
|
}
|
|
@@ -37,15 +37,10 @@
|
|
|
37
37
|
|
|
38
38
|
// Chip content
|
|
39
39
|
.k-chip-content {
|
|
40
|
-
padding-block: .5em;
|
|
41
|
-
padding-inline: 0;
|
|
42
|
-
margin-block: -.5em;
|
|
43
|
-
margin-inline: 0;
|
|
44
40
|
min-width: 0;
|
|
45
41
|
display: flex;
|
|
46
42
|
flex-flow: row nowrap;
|
|
47
43
|
align-items: center;
|
|
48
|
-
overflow: hidden;
|
|
49
44
|
flex: 1 1 auto;
|
|
50
45
|
|
|
51
46
|
// Adjustment for kendo-icon-wrapper
|
|
@@ -64,6 +59,10 @@
|
|
|
64
59
|
// Chip text
|
|
65
60
|
.k-chip-text,
|
|
66
61
|
.k-chip-label {
|
|
62
|
+
padding-block: .5em;
|
|
63
|
+
padding-inline: 0;
|
|
64
|
+
margin-block: -.5em;
|
|
65
|
+
margin-inline: 0;
|
|
67
66
|
white-space: nowrap;
|
|
68
67
|
text-overflow: ellipsis;
|
|
69
68
|
overflow: hidden;
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
|
|
183
183
|
// Icon picker
|
|
184
184
|
.k-icon-picker {
|
|
185
|
-
.k-input-inner {
|
|
185
|
+
> .k-input-inner {
|
|
186
186
|
padding: $kendo-input-padding-y;
|
|
187
187
|
// TODO we need better way
|
|
188
188
|
// width: $kendo-input-inner-calc-height;
|
|
@@ -531,7 +531,7 @@
|
|
|
531
531
|
}
|
|
532
532
|
}
|
|
533
533
|
|
|
534
|
-
&.k-icon-picker .k-input-inner {
|
|
534
|
+
&.k-icon-picker > .k-input-inner {
|
|
535
535
|
width: calc( ( #{ $_line-height} * 1em ) );
|
|
536
536
|
height: calc( ( #{ $_line-height} * 1em ) );
|
|
537
537
|
padding: $_padding-y;
|