@wordpress/base-styles 4.33.3 → 4.34.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/_variables.scss +3 -0
- package/_z-index.scss +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/_variables.scss
CHANGED
|
@@ -58,6 +58,9 @@ $admin-sidebar-width: 160px;
|
|
|
58
58
|
$admin-sidebar-width-big: 190px;
|
|
59
59
|
$admin-sidebar-width-collapsed: 36px;
|
|
60
60
|
$modal-min-width: 350px;
|
|
61
|
+
$modal-width-small: 384px;
|
|
62
|
+
$modal-width-medium: 512px;
|
|
63
|
+
$modal-width-large: 840px;
|
|
61
64
|
$spinner-size: 16px;
|
|
62
65
|
$canvas-padding: $grid-unit-30;
|
|
63
66
|
|
package/_z-index.scss
CHANGED
|
@@ -128,6 +128,7 @@ $z-layers: (
|
|
|
128
128
|
".block-editor-block-rename-modal": 1000001,
|
|
129
129
|
".edit-site-list__rename-modal": 1000001,
|
|
130
130
|
".edit-site-swap-template-modal": 1000001,
|
|
131
|
+
".edit-site-template-panel__replace-template-modal": 1000001,
|
|
131
132
|
|
|
132
133
|
// Note: The ConfirmDialog component's z-index is being set to 1000001 in packages/components/src/confirm-dialog/styles.ts
|
|
133
134
|
// 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.34.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": "9b8e598c5418d38fe72197c24ef1d3dd6c712151"
|
|
27
27
|
}
|