@progress/kendo-theme-core 12.2.0-dev.0 → 12.2.0-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/package.json +2 -2
- package/scss/components/chat/_layout.scss +6 -3
- package/scss/components/grid/_layout.scss +3 -3
- package/scss/components/list/_layout.scss +4 -3
- package/scss/components/list/_theme.scss +4 -3
- package/scss/components/list/_variables.scss +3 -0
- package/scss/components/pager/_layout.scss +7 -13
- package/scss/components/pager/_variables.scss +1 -3
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": "12.2.0-dev.
|
|
4
|
+
"version": "12.2.0-dev.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"directories": {
|
|
47
47
|
"doc": "docs"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "918845c4b6e60435531f8b2fef5c0d0110b54c6d"
|
|
50
50
|
}
|
|
@@ -94,11 +94,14 @@
|
|
|
94
94
|
align-self: flex-end;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
// Add margin to the avatar when the last message is selected
|
|
97
|
+
// Add margin to the avatar and user status when the last message is selected
|
|
98
98
|
// so that the avatar is aligned to the bubble and not to the status
|
|
99
99
|
&:has(.k-message-group-content .k-message:last-child .k-chat-bubble.k-selected + .k-message-status) .k-avatar {
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
&,
|
|
101
|
+
+ .k-chat-user-status {
|
|
102
|
+
margin-block-end: calc($kendo-chat-message-meta-line-height * $kendo-chat-message-meta-font-size + $kendo-chat-bubble-spacing);
|
|
103
|
+
transition: margin .2s ease-in-out;
|
|
104
|
+
}
|
|
102
105
|
}
|
|
103
106
|
|
|
104
107
|
.k-chat-file-wrapper {
|
|
@@ -553,7 +553,7 @@
|
|
|
553
553
|
}
|
|
554
554
|
|
|
555
555
|
.k-grid-filter-popup {
|
|
556
|
-
|
|
556
|
+
width: $kendo-grid-column-menu-width;
|
|
557
557
|
max-width: $kendo-grid-column-menu-max-width;
|
|
558
558
|
}
|
|
559
559
|
|
|
@@ -1276,7 +1276,7 @@
|
|
|
1276
1276
|
|
|
1277
1277
|
// Filter menu
|
|
1278
1278
|
.k-filter-menu-popup {
|
|
1279
|
-
|
|
1279
|
+
width: $kendo-grid-column-menu-width;
|
|
1280
1280
|
max-width: $kendo-grid-column-menu-max-width;
|
|
1281
1281
|
}
|
|
1282
1282
|
.k-filter-menu {
|
|
@@ -1321,7 +1321,7 @@
|
|
|
1321
1321
|
.k-grid-filter-popup.k-popup {
|
|
1322
1322
|
|
|
1323
1323
|
.k-filter-menu-container {
|
|
1324
|
-
|
|
1324
|
+
width: $kendo-grid-column-menu-width;
|
|
1325
1325
|
max-width: $kendo-grid-column-menu-max-width;
|
|
1326
1326
|
}
|
|
1327
1327
|
}
|
|
@@ -90,7 +90,8 @@
|
|
|
90
90
|
|
|
91
91
|
|
|
92
92
|
// List item
|
|
93
|
-
.k-list-item
|
|
93
|
+
.k-list-item,
|
|
94
|
+
.k-list-custom-value {
|
|
94
95
|
padding-block: $kendo-list-md-item-padding-y;
|
|
95
96
|
padding-inline: $kendo-list-md-item-padding-x;
|
|
96
97
|
border: 0;
|
|
@@ -133,7 +134,6 @@
|
|
|
133
134
|
}
|
|
134
135
|
|
|
135
136
|
.k-list-custom-value {
|
|
136
|
-
@extend .k-list-item !optional;
|
|
137
137
|
font-style: italic;
|
|
138
138
|
position: sticky;
|
|
139
139
|
}
|
|
@@ -244,7 +244,8 @@
|
|
|
244
244
|
padding-block: $_filter-padding-y;
|
|
245
245
|
}
|
|
246
246
|
|
|
247
|
-
.k-list-item
|
|
247
|
+
.k-list-item,
|
|
248
|
+
.k-list-custom-value {
|
|
248
249
|
padding-block: $_item-padding-y;
|
|
249
250
|
padding-inline: $_item-padding-x;
|
|
250
251
|
font-size: $_item-font-size;
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
// List item
|
|
32
|
-
.k-list-item
|
|
32
|
+
.k-list-item,
|
|
33
|
+
.k-list-custom-value {
|
|
33
34
|
@include fill(
|
|
34
35
|
$kendo-list-item-text,
|
|
35
36
|
$kendo-list-item-bg
|
|
@@ -63,8 +64,8 @@
|
|
|
63
64
|
}
|
|
64
65
|
&.k-selected:hover,
|
|
65
66
|
&.k-selected.k-hover {
|
|
66
|
-
color: $kendo-list-item-selected-text;
|
|
67
|
-
background-color:
|
|
67
|
+
color: $kendo-list-item-selected-hover-text;
|
|
68
|
+
background-color: $kendo-list-item-selected-hover-bg;
|
|
68
69
|
}
|
|
69
70
|
}
|
|
70
71
|
|
|
@@ -125,6 +125,9 @@ $kendo-list-item-focus-shadow: null !default;
|
|
|
125
125
|
$kendo-list-item-selected-bg: null !default;
|
|
126
126
|
$kendo-list-item-selected-text: null !default;
|
|
127
127
|
|
|
128
|
+
$kendo-list-item-selected-hover-bg: null !default;
|
|
129
|
+
$kendo-list-item-selected-hover-text: null !default;
|
|
130
|
+
|
|
128
131
|
$kendo-list-group-item-bg: null !default;
|
|
129
132
|
$kendo-list-group-item-text: null !default;
|
|
130
133
|
$kendo-list-group-item-border: null !default;
|
|
@@ -69,10 +69,6 @@
|
|
|
69
69
|
display: flex;
|
|
70
70
|
flex-direction: row;
|
|
71
71
|
position: relative;
|
|
72
|
-
|
|
73
|
-
select.k-dropdown-list {
|
|
74
|
-
width: $kendo-pager-md-dropdown-width;
|
|
75
|
-
}
|
|
76
72
|
}
|
|
77
73
|
.k-pager-numbers {
|
|
78
74
|
display: flex;
|
|
@@ -155,22 +151,20 @@
|
|
|
155
151
|
min-width: $_item-min-width;
|
|
156
152
|
}
|
|
157
153
|
|
|
158
|
-
.k-pager-input
|
|
159
|
-
> select.k-dropdown-list {
|
|
154
|
+
.k-pager-input {
|
|
160
155
|
margin-inline-start: $_item-group-spacing;
|
|
161
156
|
margin-inline-end: $_item-group-spacing;
|
|
162
157
|
}
|
|
163
158
|
}
|
|
164
|
-
|
|
165
|
-
.k-pager-sizes {
|
|
166
|
-
.k-dropdown-list,
|
|
167
|
-
> select {
|
|
168
|
-
width: $_pager-dropdown-width;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
159
|
}
|
|
172
160
|
}
|
|
173
161
|
|
|
162
|
+
.k-pager-sizes {
|
|
163
|
+
.k-dropdownlist {
|
|
164
|
+
min-width: $kendo-pager-dropdown-width;
|
|
165
|
+
width: fit-content;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
174
168
|
}
|
|
175
169
|
|
|
176
170
|
|
|
@@ -31,8 +31,6 @@ $kendo-pager-item-spacing: null !default;
|
|
|
31
31
|
|
|
32
32
|
$kendo-pager-input-width: null !default;
|
|
33
33
|
|
|
34
|
-
$kendo-pager-
|
|
35
|
-
$kendo-pager-md-dropdown-width: null !default;
|
|
36
|
-
$kendo-pager-lg-dropdown-width: null !default;
|
|
34
|
+
$kendo-pager-dropdown-width: null !default;
|
|
37
35
|
|
|
38
36
|
$kendo-pager-sizes: null !default;
|