@wordpress/base-styles 4.0.1 → 4.0.5-next.33ec3857e2.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/_z-index.scss +8 -1
- package/package.json +2 -2
package/_z-index.scss
CHANGED
|
@@ -37,11 +37,16 @@ $z-layers: (
|
|
|
37
37
|
".edit-widgets-header": 30,
|
|
38
38
|
".block-library-button__inline-link .block-editor-url-input__suggestions": 6, // URL suggestions for button block above sibling inserter
|
|
39
39
|
".wp-block-cover__inner-container": 1, // InnerBlocks area inside cover image block
|
|
40
|
+
".wp-block-cover.is-placeholder .components-placeholder.is-large": 1, // Cover block resizer component inside a large placeholder.
|
|
40
41
|
".wp-block-cover.has-background-dim::before": 1, // Overlay area inside block cover need to be higher than the video background.
|
|
42
|
+
".block-library-cover__padding-visualizer": 2, // BoxControl visualizer needs to be +1 higher than .wp-block-cover.has-background-dim::before
|
|
41
43
|
".wp-block-cover__image-background": 0, // Image background inside cover block.
|
|
42
44
|
".wp-block-cover__video-background": 0, // Video background inside cover block.
|
|
43
45
|
".wp-block-template-part__placeholder-preview-filter-input": 1,
|
|
44
46
|
|
|
47
|
+
// Fixed position appender:
|
|
48
|
+
".block-editor-block-list__block .block-list-appender": 2,
|
|
49
|
+
|
|
45
50
|
// Navigation menu dropdown.
|
|
46
51
|
".has-child .wp-block-navigation__submenu-container": 28,
|
|
47
52
|
".has-child:hover .wp-block-navigation__submenu-container": 29,
|
|
@@ -114,6 +119,8 @@ $z-layers: (
|
|
|
114
119
|
|
|
115
120
|
// Show the navigation toggle above the skeleton header
|
|
116
121
|
".edit-site-navigation-toggle": 31,
|
|
122
|
+
// Show the navigation link above the skeleton header
|
|
123
|
+
".edit-site-navigation-link": 31,
|
|
117
124
|
|
|
118
125
|
// Show the FSE template previews above the editor and any open block toolbars
|
|
119
126
|
".edit-site-navigation-panel__preview": 32,
|
|
@@ -136,7 +143,7 @@ $z-layers: (
|
|
|
136
143
|
|
|
137
144
|
// Should be above the popover (dropdown)
|
|
138
145
|
".reusable-blocks-menu-items__convert-modal": 1000001,
|
|
139
|
-
".edit-site-template-part-
|
|
146
|
+
".edit-site-create-template-part-modal": 1000001,
|
|
140
147
|
|
|
141
148
|
// ...Except for popovers immediately beneath wp-admin menu on large breakpoints
|
|
142
149
|
".components-popover.block-editor-inserter__popover": 99999,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.5-next.33ec3857e2.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",
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "51c7917ea7fac72953702f24d6daac87d99e7617"
|
|
27
27
|
}
|