@wordpress/base-styles 4.2.0-next.e230fbab09.0 → 4.3.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/_variables.scss +2 -1
- package/_z-index.scss +2 -1
- package/package.json +2 -2
package/_variables.scss
CHANGED
|
@@ -37,7 +37,8 @@ $grid-unit-30: 3 * $grid-unit; // 24px
|
|
|
37
37
|
$grid-unit-40: 4 * $grid-unit; // 32px
|
|
38
38
|
$grid-unit-50: 5 * $grid-unit; // 40px
|
|
39
39
|
$grid-unit-60: 6 * $grid-unit; // 48px
|
|
40
|
-
|
|
40
|
+
$grid-unit-70: 7 * $grid-unit; // 56px
|
|
41
|
+
$grid-unit-80: 8 * $grid-unit; // 64px
|
|
41
42
|
|
|
42
43
|
/**
|
|
43
44
|
* Dimensions.
|
package/_z-index.scss
CHANGED
|
@@ -33,7 +33,7 @@ $z-layers: (
|
|
|
33
33
|
".block-editor-url-input__suggestions": 30,
|
|
34
34
|
".edit-post-layout__footer": 30,
|
|
35
35
|
".interface-interface-skeleton__header": 30,
|
|
36
|
-
".interface-interface-skeleton__content":
|
|
36
|
+
".interface-interface-skeleton__content": 20,
|
|
37
37
|
".edit-site-header": 62,
|
|
38
38
|
".edit-widgets-header": 30,
|
|
39
39
|
".block-library-button__inline-link .block-editor-url-input__suggestions": 6, // URL suggestions for button block above sibling inserter
|
|
@@ -145,6 +145,7 @@ $z-layers: (
|
|
|
145
145
|
// Should be above the popover (dropdown)
|
|
146
146
|
".reusable-blocks-menu-items__convert-modal": 1000001,
|
|
147
147
|
".edit-site-create-template-part-modal": 1000001,
|
|
148
|
+
".block-editor-block-lock-modal": 1000001,
|
|
148
149
|
|
|
149
150
|
// Note: The ConfirmDialog component's z-index is being set to 1000001 in packages/components/src/confirm-dialog/styles.ts
|
|
150
151
|
// because it uses emotion and not sass. We need it to render on top its parent popover.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.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": "aa003c3634016cc4ab6348b2106907e371c648e1"
|
|
27
27
|
}
|