@progress/kendo-theme-default 4.42.1-dev.1 → 4.42.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 +3 -0
- package/dist/all.scss +3 -0
- package/package.json +2 -2
- package/scss/chip/_layout.scss +2 -0
- package/scss/chip/_theme.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -11602,6 +11602,7 @@ kendo-badge-container {
|
|
|
11602
11602
|
font-size: 14px;
|
|
11603
11603
|
}
|
|
11604
11604
|
|
|
11605
|
+
.k-selection-multiple .k-chip.k-state-selected .k-selected-icon-wrapper,
|
|
11605
11606
|
.k-selection-multiple .k-chip.k-selected .k-selected-icon-wrapper {
|
|
11606
11607
|
width: 16px;
|
|
11607
11608
|
visibility: visible;
|
|
@@ -11618,6 +11619,7 @@ kendo-badge-container {
|
|
|
11618
11619
|
transition: width .2s, opacity .2s;
|
|
11619
11620
|
}
|
|
11620
11621
|
|
|
11622
|
+
.k-selection-multiple :not(.k-chip-has-icon).k-state-selected .k-selected-icon-wrapper,
|
|
11621
11623
|
.k-selection-multiple :not(.k-chip-has-icon).k-selected .k-selected-icon-wrapper {
|
|
11622
11624
|
opacity: 1;
|
|
11623
11625
|
}
|
|
@@ -11724,6 +11726,7 @@ kendo-badge-container {
|
|
|
11724
11726
|
right: 4px;
|
|
11725
11727
|
}
|
|
11726
11728
|
|
|
11729
|
+
.k-selection-multiple .k-chip-has-icon.k-state-selected .k-selected-icon-wrapper,
|
|
11727
11730
|
.k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
|
|
11728
11731
|
color: #ffffff;
|
|
11729
11732
|
background-color: rgba(0, 0, 0, 0.44);
|
package/dist/all.scss
CHANGED
|
@@ -6926,6 +6926,7 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
|
|
|
6926
6926
|
font-size: $chip-selected-icon-font-size;
|
|
6927
6927
|
}
|
|
6928
6928
|
|
|
6929
|
+
.k-chip.k-state-selected .k-selected-icon-wrapper,
|
|
6929
6930
|
.k-chip.k-selected .k-selected-icon-wrapper {
|
|
6930
6931
|
width: $chip-selected-icon-size;
|
|
6931
6932
|
visibility: visible;
|
|
@@ -6945,6 +6946,7 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
|
|
|
6945
6946
|
transition: width .2s, opacity .2s;
|
|
6946
6947
|
}
|
|
6947
6948
|
|
|
6949
|
+
&.k-state-selected .k-selected-icon-wrapper,
|
|
6948
6950
|
&.k-selected .k-selected-icon-wrapper {
|
|
6949
6951
|
opacity: 1;
|
|
6950
6952
|
}
|
|
@@ -7065,6 +7067,7 @@ $chip-error-focus-shadow: 0 0 0 2px rgba( $error, .16 ) !default;
|
|
|
7065
7067
|
// #region @import "_theme.scss"; -> packages/default/scss/chip/_theme.scss
|
|
7066
7068
|
@include exports("chip/theme") {
|
|
7067
7069
|
|
|
7070
|
+
.k-selection-multiple .k-chip-has-icon.k-state-selected .k-selected-icon-wrapper,
|
|
7068
7071
|
.k-selection-multiple .k-chip-has-icon.k-selected .k-selected-icon-wrapper {
|
|
7069
7072
|
@include fill(
|
|
7070
7073
|
$color: $chip-multiple-selected-icon-text,
|
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": "4.42.1-dev.
|
|
4
|
+
"version": "4.42.1-dev.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"dart:flat": "gulp dart:flat",
|
|
48
48
|
"prepublishOnly": "echo 'no prebublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "7594d845144b5289cc2484b488f2bc9418387f12"
|
|
51
51
|
}
|
package/scss/chip/_layout.scss
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
font-size: $chip-selected-icon-font-size;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
.k-chip.k-state-selected .k-selected-icon-wrapper,
|
|
38
39
|
.k-chip.k-selected .k-selected-icon-wrapper {
|
|
39
40
|
width: $chip-selected-icon-size;
|
|
40
41
|
visibility: visible;
|
|
@@ -54,6 +55,7 @@
|
|
|
54
55
|
transition: width .2s, opacity .2s;
|
|
55
56
|
}
|
|
56
57
|
|
|
58
|
+
&.k-state-selected .k-selected-icon-wrapper,
|
|
57
59
|
&.k-selected .k-selected-icon-wrapper {
|
|
58
60
|
opacity: 1;
|
|
59
61
|
}
|
package/scss/chip/_theme.scss
CHANGED