@progress/kendo-theme-core 10.5.0-dev.0 → 10.6.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.6.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": "a16593227538a8d9a28261e7e666946757c585fb"
|
|
49
49
|
}
|
|
@@ -68,14 +68,17 @@
|
|
|
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.
|
|
72
71
|
display: flex;
|
|
73
|
-
flex-flow:
|
|
72
|
+
flex-flow: row nowrap;
|
|
74
73
|
|
|
75
74
|
.k-actionsheet-view {
|
|
76
75
|
display: flex;
|
|
77
76
|
flex-flow: column nowrap;
|
|
78
|
-
|
|
77
|
+
flex: 0 0 100%;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.k-actionsheet-view.k-actionsheet-view-animated {
|
|
81
|
+
transform: translateX(calc(-100% * (var(--kendo-actionsheet-view-current, 1) - 1)));
|
|
79
82
|
}
|
|
80
83
|
|
|
81
84
|
*,
|
|
@@ -396,6 +399,9 @@
|
|
|
396
399
|
transform: translateX( 50% );
|
|
397
400
|
}
|
|
398
401
|
}
|
|
402
|
+
:is([dir="rtl"], .k-rtl) .k-actionsheet-view.k-actionsheet-view-animated {
|
|
403
|
+
transform: translateX(calc(100% * (var(--kendo-actionsheet-view-current, 1) - 1)))
|
|
404
|
+
}
|
|
399
405
|
|
|
400
406
|
}
|
|
401
407
|
|