@wordpress/base-styles 4.42.4 → 4.44.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,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.44.0 (2024-03-06)
6
+
7
+ ## 4.43.0 (2024-02-21)
8
+
5
9
  ## 4.42.0 (2024-02-09)
6
10
 
7
11
  ## 4.41.0 (2024-01-24)
package/_mixins.scss CHANGED
@@ -64,7 +64,7 @@
64
64
  */
65
65
 
66
66
  @mixin block-toolbar-button-style__focus() {
67
- box-shadow: inset 0 0 0 $border-width var(--wp-components-color-background, $white), 0 0 0 var(--wp-admin-border-width-focus) var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9));
67
+ box-shadow: inset 0 0 0 $border-width $white, 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
68
68
 
69
69
  // Windows High Contrast mode will show this outline, but not the box-shadow.
70
70
  outline: 2px solid transparent;
package/_z-index.scss CHANGED
@@ -108,6 +108,9 @@ $z-layers: (
108
108
  // Above the block list and the header.
109
109
  ".block-editor-block-popover": 31,
110
110
 
111
+ // Below the block toolbar.
112
+ ".block-editor-grid-visualizer": 30,
113
+
111
114
  // Show snackbars above everything (similar to popovers)
112
115
  ".components-snackbar-list": 100000,
113
116
 
@@ -137,6 +140,7 @@ $z-layers: (
137
140
  ".components-popover.block-editor-inserter__popover": 99999,
138
141
  ".components-popover.table-of-contents__popover": 99998,
139
142
  ".components-popover.interface-more-menu__content": 99998,
143
+ ".components-popover.more-menu__content": 99998,
140
144
  ".components-popover.block-editor-rich-text__inline-format-toolbar": 99998,
141
145
  ".components-popover.block-editor-warning__dropdown": 99998,
142
146
 
@@ -190,7 +194,6 @@ $z-layers: (
190
194
  ".edit-site-page-header": 2,
191
195
  ".edit-site-page-content": 1,
192
196
  ".edit-site-patterns__header": 2,
193
- ".edit-site-patterns__grid-pagination": 2,
194
197
  ".edit-site-patterns__dataviews-list-pagination": 2,
195
198
  ".edit-site-templates__dataviews-list-pagination": 2,
196
199
  ".edit-site-layout__canvas-container": 2,
@@ -201,6 +204,9 @@ $z-layers: (
201
204
 
202
205
  // Ensure modal footer actions appear above modal contents
203
206
  ".edit-site-start-template-options__modal__actions": 1,
207
+
208
+ // Ensure checkbox + actions don't overlap table header
209
+ ".dataviews-view-table thead": 1,
204
210
  );
205
211
 
206
212
  @function z-index( $key ) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "4.42.4",
3
+ "version": "4.44.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": "4927ea437069f9aed12f696df294a79bd8e12fd5"
26
+ "gitHead": "ac3c3e465a083081a86a4da6ee6fb817b41e5130"
27
27
  }