@wordpress/base-styles 5.10.0 → 5.11.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/CHANGELOG.md +2 -0
- package/_animations.scss +5 -0
- package/_z-index.scss +3 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/_animations.scss
CHANGED
|
@@ -41,3 +41,8 @@
|
|
|
41
41
|
@warn "The `edit-post__fade-in-animation` mixin is deprecated. Use `animation__fade-in` instead.";
|
|
42
42
|
@include animation__fade-in($speed, $delay);
|
|
43
43
|
}
|
|
44
|
+
|
|
45
|
+
@mixin editor-canvas-resize-animation($additional-transition-rules...) {
|
|
46
|
+
transition: all 400ms cubic-bezier(0.46, 0.03, 0.52, 0.96), $additional-transition-rules;
|
|
47
|
+
@include reduce-motion("transition");
|
|
48
|
+
}
|
package/_z-index.scss
CHANGED
|
@@ -206,6 +206,9 @@ $z-layers: (
|
|
|
206
206
|
|
|
207
207
|
// Ensure footer stays above the preview field.
|
|
208
208
|
".dataviews-footer": 2,
|
|
209
|
+
|
|
210
|
+
// Needs to be below media library (.media-model) that has a z-index of 160000.
|
|
211
|
+
".components-popover.components-dropdown__content.dataforms-layouts-panel__field-dropdown": 160000 - 10,
|
|
209
212
|
);
|
|
210
213
|
|
|
211
214
|
@function z-index( $key ) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.11.0",
|
|
4
4
|
"description": "Base SCSS utilities and variables for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "dcf4613b33b0eda14e203ac30f700ed0db70347f"
|
|
31
31
|
}
|