@wordpress/base-styles 6.15.1-next.v.202602111440.0 → 6.16.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
+ ## 6.16.0 (2026-02-18)
6
+
5
7
  ## 6.15.0 (2026-01-29)
6
8
 
7
9
  ## 6.14.0 (2026-01-16)
package/_mixins.scss CHANGED
@@ -221,6 +221,20 @@
221
221
  * Styles that are reused verbatim in a few places
222
222
  */
223
223
 
224
+ @mixin snackbar-container() {
225
+ position: fixed;
226
+ bottom: 24px;
227
+ left: 50%;
228
+ right: auto;
229
+ transform: translateX(-50%);
230
+ width: max-content;
231
+ max-width: calc(100vw - 32px);
232
+ box-sizing: border-box;
233
+ display: flex;
234
+ flex-direction: column;
235
+ align-items: center;
236
+ }
237
+
224
238
  // These are additional styles for all captions, when the theme opts in to block styles.
225
239
  @mixin caption-style() {
226
240
  margin-top: 0.5em;
package/_z-index.scss CHANGED
@@ -137,11 +137,14 @@ $z-layers: (
137
137
  ".editor-post-template__swap-template-modal": 1000001,
138
138
  ".editor-post-template__create-template-modal": 1000001,
139
139
  ".edit-site-template-panel__replace-template-modal": 1000001,
140
- ".fields-controls__template-modal": 1000001,
141
140
 
142
141
  // Note: The ConfirmDialog component's z-index is being set to 1000001 in packages/components/src/confirm-dialog/styles.ts
143
142
  // because it uses emotion and not sass. We need it to render on top its parent popover.
144
143
 
144
+ // Show media replace flow and similar popovers beneath the media modal when its open.
145
+ ".components-popover.block-editor-media-replace-flow__options": 99999,
146
+ ".components-popover.block-editor-inspector-list-view-content-popover": 99999,
147
+
145
148
  // ...Except for popovers immediately beneath wp-admin menu on large breakpoints
146
149
  ".components-popover.block-editor-inserter__popover": 99999,
147
150
  ".components-popover.table-of-contents__popover": 99998,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "6.15.1-next.v.202602111440.0+a307a2e35",
3
+ "version": "6.16.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",
@@ -45,5 +45,5 @@
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "e0a2324a9690e55f4101d61113f4bbbf240b55ed"
48
+ "gitHead": "376124aa10dbc2cc0c81c964ec00b99fcfee5382"
49
49
  }