@wordpress/base-styles 4.20.0 → 4.21.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 +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/_z-index.scss
CHANGED
|
@@ -170,6 +170,11 @@ $z-layers: (
|
|
|
170
170
|
// Needs to be higher than .components-circular-option-picker__option.is-pressed.
|
|
171
171
|
".components-circular-option-picker__option.is-pressed + svg": 2,
|
|
172
172
|
|
|
173
|
+
// The following two indexes are needed so that the swatches (and their tooltips)
|
|
174
|
+
// always render on top of the rest of the component's UI.
|
|
175
|
+
".components-circular-option-picker__swatches": 1,
|
|
176
|
+
"> *:not(.components-circular-option-picker__swatches)": 0,
|
|
177
|
+
|
|
173
178
|
// Appear under the customizer heading UI, but over anything else.
|
|
174
179
|
".customize-widgets__topbar": 8,
|
|
175
180
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.21.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": "d5c28a67b11e91e3e4b8e90346bfcb90909364d6"
|
|
27
27
|
}
|