@progress/kendo-theme-core 14.0.0-dev.5 → 14.0.0-dev.6

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": "14.0.0-dev.5",
4
+ "version": "14.0.0-dev.6",
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": "e4940bedb197a2fd5923e82978532f175982b08a"
49
+ "gitHead": "0df0e4e29b482e22243c6e74b121a3bdb0976828"
50
50
  }
@@ -158,6 +158,8 @@
158
158
 
159
159
  .k-scheduler-mobile {
160
160
 
161
+ border-radius: 0;
162
+
161
163
  th {
162
164
  font-weight: normal;
163
165
  }
@@ -169,6 +171,7 @@
169
171
  .k-scheduler-toolbar {
170
172
  padding-block: $kendo-toolbar-md-padding-y;
171
173
  padding-inline: $kendo-toolbar-md-padding-x;
174
+ border-radius: 0;
172
175
 
173
176
  > * {
174
177
  margin: 0;
@@ -207,6 +210,7 @@
207
210
  padding-inline: $kendo-toolbar-md-padding-x;
208
211
  display: flex;
209
212
  justify-content: space-between;
213
+ border-radius: 0;
210
214
 
211
215
  > * {
212
216
  margin: 0;
@@ -1,6 +1,7 @@
1
1
  @use "../../color-system/_constants.scss" as *;
2
2
  @use "../../spacing/index.scss" as *;
3
3
  @use "../../border-radii/index.scss" as *;
4
+ @use "../../mixins/index.scss" as *;
4
5
  @use "../../z-index/index.scss" as *;
5
6
  @use "../../motion/index.scss" as *;
6
7
  @use "./variables.scss" as *;
@@ -43,7 +44,8 @@
43
44
  z-index: k-z-index("banner");
44
45
  border-inline-width: 0;
45
46
  border-block-start-width: 0;
46
- border-radius: 0;
47
+ @include border-top-radius($kendo-chat-border-radius);
48
+ @include border-bottom-radius(0);
47
49
  }
48
50
 
49
51
  // Message list
@@ -429,8 +431,14 @@
429
431
  border-block-end-width: $kendo-chat-message-pinned-border-width;
430
432
  border-block-end-style: $kendo-chat-message-pinned-border-style;
431
433
  cursor: pointer;
434
+ @include border-top-radius($kendo-chat-border-radius);
435
+ @include border-bottom-radius(0);
432
436
  }
433
437
 
438
+ .k-chat-header + .k-message-list .k-message-pinned {
439
+ border-radius: 0;
440
+ };
441
+
434
442
  .k-message-removed {
435
443
  font-style: italic;
436
444
  }