@progress/kendo-theme-core 10.4.0 → 10.5.0-dev.0
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": "10.
|
|
4
|
+
"version": "10.5.0-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"directories": {
|
|
46
46
|
"doc": "docs"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "c17dd9b8c6d7637f868610d83c43a5537c990fb1"
|
|
49
49
|
}
|
|
@@ -68,9 +68,16 @@
|
|
|
68
68
|
line-height: $kendo-actionsheet-line-height;
|
|
69
69
|
overflow: hidden;
|
|
70
70
|
position: relative;
|
|
71
|
+
// TODO: Remove once k-actionsheet-view is adopted in all suites.
|
|
71
72
|
display: flex;
|
|
72
73
|
flex-flow: column nowrap;
|
|
73
74
|
|
|
75
|
+
.k-actionsheet-view {
|
|
76
|
+
display: flex;
|
|
77
|
+
flex-flow: column nowrap;
|
|
78
|
+
height: 100%;
|
|
79
|
+
}
|
|
80
|
+
|
|
74
81
|
*,
|
|
75
82
|
*::before,
|
|
76
83
|
*::after {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
|
+
@use "../../spacing/index.import.scss" as *;
|
|
2
3
|
@use "_variables.scss" as *;
|
|
3
4
|
|
|
4
5
|
@mixin kendo-column-menu--layout-base() {
|
|
@@ -24,6 +25,28 @@
|
|
|
24
25
|
}
|
|
25
26
|
}
|
|
26
27
|
}
|
|
28
|
+
|
|
29
|
+
.k-columnmenu-item-actions {
|
|
30
|
+
display: flex;
|
|
31
|
+
align-items: center;
|
|
32
|
+
justify-content: center;
|
|
33
|
+
gap: k-spacing(2);
|
|
34
|
+
margin-block: calc( k-spacing(1) * -1);
|
|
35
|
+
pointer-events: none;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.k-columnmenu-item-action {
|
|
39
|
+
display: flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
justify-content: center;
|
|
42
|
+
pointer-events: none;
|
|
43
|
+
padding: k-spacing(1);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.k-columnmenu-item-drag-action {
|
|
47
|
+
pointer-events: auto;
|
|
48
|
+
cursor: move;
|
|
49
|
+
}
|
|
27
50
|
}
|
|
28
51
|
|
|
29
52
|
@mixin kendo-column-menu--layout() {
|
|
@@ -1279,14 +1279,6 @@
|
|
|
1279
1279
|
display: flex;
|
|
1280
1280
|
align-items: center;
|
|
1281
1281
|
}
|
|
1282
|
-
|
|
1283
|
-
.k-columnmenu-drag-handle {
|
|
1284
|
-
margin-inline-end: k-spacing(1.5);
|
|
1285
|
-
display: inline-flex;
|
|
1286
|
-
align-items: center;
|
|
1287
|
-
justify-content: center;
|
|
1288
|
-
cursor: move;
|
|
1289
|
-
}
|
|
1290
1282
|
}
|
|
1291
1283
|
.k-column-menu-tabbed {
|
|
1292
1284
|
border-radius: $kendo-tabstrip-item-border-radius $kendo-tabstrip-item-border-radius 0 0;
|