@progress/kendo-theme-core 12.1.0-dev.0 → 12.1.0-dev.1

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": "12.1.0-dev.0",
4
+ "version": "12.1.0-dev.1",
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": "b1609a5c919e4965dd210cd03499604f10582cf9"
49
+ "gitHead": "7b3a495779befd95451b5e9193f492f0cc917a6e"
50
50
  }
@@ -33,6 +33,7 @@
33
33
  background-color: transparent;
34
34
  display: flex;
35
35
  flex-flow: column nowrap;
36
+ position: relative;
36
37
  -webkit-touch-callout: none;
37
38
  -webkit-tap-highlight-color: $kendo-color-rgba-transparent;
38
39
  }
@@ -168,10 +168,10 @@
168
168
 
169
169
  // Resize Handles
170
170
  .k-window { // stylelint-disable-line
171
- .k-resize-n { inset-block-start: 0; }
172
- .k-resize-e { inset-inline-end: 0; }
173
- .k-resize-s { inset-block-end: 0; }
174
- .k-resize-w { inset-inline-start: 0; }
171
+ .k-resize-n { top: 0; }
172
+ .k-resize-e { right: 0; }
173
+ .k-resize-s { bottom: 0; }
174
+ .k-resize-w { left: 0; }
175
175
  }
176
176
 
177
177
  }