@wordpress/base-styles 4.15.0 → 4.17.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 +4 -0
- package/LICENSE.md +1 -1
- package/_z-index.scss +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/LICENSE.md
CHANGED
package/_z-index.scss
CHANGED
|
@@ -14,6 +14,7 @@ $z-layers: (
|
|
|
14
14
|
|
|
15
15
|
// These next three share a stacking context
|
|
16
16
|
".block-library-template-part__selection-search": 2, // higher sticky element
|
|
17
|
+
".block-library-query-pattern__selection-search": 2, // higher sticky element
|
|
17
18
|
|
|
18
19
|
// These next two share a stacking context
|
|
19
20
|
".interface-complementary-area .components-panel" : 0, // lower scrolling content
|
|
@@ -135,7 +136,6 @@ $z-layers: (
|
|
|
135
136
|
".components-popover.interface-more-menu__content": 99998,
|
|
136
137
|
".components-popover.block-editor-rich-text__inline-format-toolbar": 99998,
|
|
137
138
|
".components-popover.block-editor-warning__dropdown": 99998,
|
|
138
|
-
".components-popover.edit-navigation-menu-actions__switcher-dropdown": 99998,
|
|
139
139
|
|
|
140
140
|
".components-autocomplete__results": 1000000,
|
|
141
141
|
|
|
@@ -170,7 +170,6 @@ $z-layers: (
|
|
|
170
170
|
".components-circular-option-picker__option.is-pressed": 1,
|
|
171
171
|
// Needs to be higher than .components-circular-option-picker__option.is-pressed.
|
|
172
172
|
".components-circular-option-picker__option.is-pressed + svg": 2,
|
|
173
|
-
".edit-navigation-layout__overlay": 999,
|
|
174
173
|
|
|
175
174
|
// Appear under the customizer heading UI, but over anything else.
|
|
176
175
|
".customize-widgets__topbar": 8,
|
|
@@ -183,6 +182,7 @@ $z-layers: (
|
|
|
183
182
|
".edit-site-layout__header": 2,
|
|
184
183
|
".edit-site-layout__canvas-container": 2,
|
|
185
184
|
".edit-site-layout__sidebar": 1,
|
|
185
|
+
".edit-site-layout__canvas-container.is-resizing::after": 100,
|
|
186
186
|
);
|
|
187
187
|
|
|
188
188
|
@function z-index( $key ) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.17.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": "cab6ebe2b4c5dbacfd753dcae4a2406559c4813c"
|
|
27
27
|
}
|