@wordpress/base-styles 5.11.0 → 5.12.1-next.082ed6819.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/_z-index.scss +6 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/_z-index.scss
CHANGED
|
@@ -31,12 +31,14 @@ $z-layers: (
|
|
|
31
31
|
".interface-interface-skeleton__header": 30,
|
|
32
32
|
".interface-interface-skeleton__content": 20,
|
|
33
33
|
".edit-widgets-header": 30,
|
|
34
|
-
|
|
34
|
+
|
|
35
35
|
".wp-block-cover.is-placeholder .components-placeholder.is-large": 1, // Cover block resizer component inside a large placeholder.
|
|
36
|
+
// These z-index are now used only for a deprecated version of the cover block.
|
|
37
|
+
".wp-block-cover__inner-container": 1, // InnerBlocks area inside cover image block.
|
|
36
38
|
".wp-block-cover.has-background-dim::before": 1, // Overlay area inside block cover need to be higher than the video background.
|
|
37
|
-
".block-library-cover__padding-visualizer": 2, // BoxControl visualizer needs to be +1 higher than .wp-block-cover.has-background-dim::before
|
|
38
39
|
".wp-block-cover__image-background": 0, // Image background inside cover block.
|
|
39
40
|
".wp-block-cover__video-background": 0, // Video background inside cover block.
|
|
41
|
+
|
|
40
42
|
".wp-block-template-part__placeholder-preview-filter-input": 1,
|
|
41
43
|
|
|
42
44
|
// Fixed position appender:
|
|
@@ -163,9 +165,9 @@ $z-layers: (
|
|
|
163
165
|
".components-resizable-box__corner-handle": 2,
|
|
164
166
|
|
|
165
167
|
// Make sure block manager sticky category titles appear above the options
|
|
166
|
-
".editor-block-manager__category-title": 1,
|
|
168
|
+
".block-editor-block-manager__category-title": 1,
|
|
167
169
|
// And block manager sticky disabled block count is higher still
|
|
168
|
-
".editor-block-manager__disabled-blocks-count": 2,
|
|
170
|
+
".block-editor-block-manager__disabled-blocks-count": 2,
|
|
169
171
|
|
|
170
172
|
// Needs to appear below other color circular picker related UI elements.
|
|
171
173
|
".components-circular-option-picker__option-wrapper::before": -1,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.12.1-next.082ed6819.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": "2bb7bad15ddb8e88210fab7d4a1ef1565466e424"
|
|
31
31
|
}
|