@wordpress/base-styles 4.32.1-next.5a1d1283.0 → 4.33.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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.33.0 (2023-09-20)
6
+
5
7
  ## 4.32.0 (2023-08-31)
6
8
 
7
9
  ## 4.31.0 (2023-08-16)
package/_mixins.scss CHANGED
@@ -82,8 +82,8 @@
82
82
 
83
83
  @mixin input-style__focus() {
84
84
  border-color: var(--wp-admin-theme-color);
85
- box-shadow: 0 0 0 ($border-width-focus-fallback - $border-width) var(--wp-admin-theme-color);
86
-
85
+ // Expand the default border focus style by .5px to be a total of 1.5px.
86
+ box-shadow: 0 0 0 0.5px var(--wp-admin-theme-color);
87
87
  // Windows High Contrast mode will show this outline, but not the box-shadow.
88
88
  outline: 2px solid transparent;
89
89
  }
package/_z-index.scss CHANGED
@@ -125,6 +125,9 @@ $z-layers: (
125
125
  ".edit-site-create-template-part-modal": 1000001,
126
126
  ".block-editor-block-lock-modal": 1000001,
127
127
  ".block-editor-template-part__selection-modal": 1000001,
128
+ ".block-editor-block-rename-modal": 1000001,
129
+ ".edit-site-list__rename-modal": 1000001,
130
+ ".edit-site-swap-template-modal": 1000001,
128
131
 
129
132
  // Note: The ConfirmDialog component's z-index is being set to 1000001 in packages/components/src/confirm-dialog/styles.ts
130
133
  // because it uses emotion and not sass. We need it to render on top its parent popover.
@@ -164,9 +167,6 @@ $z-layers: (
164
167
  // And block manager sticky disabled block count is higher still
165
168
  ".edit-post-block-manager__disabled-blocks-count": 2,
166
169
 
167
- // Needs to be higher than any other element as this is an overlay to catch all events
168
- ".components-tooltip .event-catcher": 100002,
169
-
170
170
  // Needs to appear below other color circular picker related UI elements.
171
171
  ".components-circular-option-picker__option-wrapper::before": -1,
172
172
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "4.32.1-next.5a1d1283.0",
3
+ "version": "4.33.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": "fa0b66987dab5a15f38663e06036d09bccffaa4b"
26
+ "gitHead": "cc35f517ed017ab7131319af3e87c359e8de175d"
27
27
  }