@wordpress/base-styles 4.42.1 → 4.42.3

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/_mixins.scss CHANGED
@@ -297,6 +297,16 @@
297
297
  }
298
298
  }
299
299
  }
300
+
301
+ &[aria-disabled="true"],
302
+ &:disabled {
303
+ background: $gray-100;
304
+ border-color: $gray-300;
305
+ cursor: default;
306
+
307
+ // Override style inherited from wp-admin. Required to avoid degraded appearance on different backgrounds.
308
+ opacity: 1;
309
+ }
300
310
  }
301
311
 
302
312
  @mixin radio-control {
package/_z-index.scss CHANGED
@@ -191,6 +191,8 @@ $z-layers: (
191
191
  ".edit-site-page-content": 1,
192
192
  ".edit-site-patterns__header": 2,
193
193
  ".edit-site-patterns__grid-pagination": 2,
194
+ ".edit-site-patterns__dataviews-list-pagination": 2,
195
+ ".edit-site-templates__dataviews-list-pagination": 2,
194
196
  ".edit-site-layout__canvas-container": 2,
195
197
  ".edit-site-layout__sidebar": 1,
196
198
  ".edit-site-layout__canvas-container.is-resizing::after": 100,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "4.42.1",
3
+ "version": "4.42.3",
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": "730beb7fd33d3382d6032c3f33e451625a0fcf36"
26
+ "gitHead": "864c1c553cb284def3bd5c907998da45f5c143ea"
27
27
  }