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

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.4",
4
+ "version": "14.0.0-dev.5",
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": "0a049a1cd9554ac43cbd9fde45dc9ac49703cadf"
49
+ "gitHead": "e4940bedb197a2fd5923e82978532f175982b08a"
50
50
  }
@@ -432,7 +432,8 @@
432
432
  // Toolbar
433
433
  .k-grid-toolbar {
434
434
  border-width: 0 0 $kendo-grid-toolbar-border-width;
435
- border-radius: 0;;
435
+ @include border-top-radius($kendo-grid-border-radius);
436
+ @include border-bottom-radius(0);
436
437
  flex-shrink: 0;
437
438
  }
438
439
 
@@ -34,7 +34,8 @@
34
34
 
35
35
  // Content
36
36
  .k-taskboard-content {
37
- padding: 0 $kendo-taskboard-toolbar-padding-x $kendo-taskboard-content-padding-y;
37
+ padding-block: $kendo-taskboard-content-padding-y;
38
+ padding-inline: $kendo-taskboard-content-padding-x;
38
39
  display: flex;
39
40
  position: relative;
40
41
  flex: 1 1 auto;
@@ -18,6 +18,7 @@ $kendo-taskboard-toolbar-border: null !default;
18
18
  $kendo-taskboard-toolbar-gradient: null !default;
19
19
 
20
20
  $kendo-taskboard-content-padding-y: null !default;
21
+ $kendo-taskboard-content-padding-x: null !default;
21
22
 
22
23
  $kendo-taskboard-column-container-spacing-y: null !default;
23
24
  $kendo-taskboard-column-container-padding-y: null !default;