@wordpress/base-styles 4.42.3 → 4.42.5

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.
@@ -1,4 +1,3 @@
1
-
2
1
  // It is important to include these styles in all built stylesheets.
3
2
  // This allows to CSS variables post CSS plugin to generate fallbacks.
4
3
  // It also provides default CSS variables for npm package consumers.
@@ -6,4 +5,5 @@
6
5
  @include admin-scheme(#007cba);
7
6
  --wp-block-synced-color: #7a00df;
8
7
  --wp-block-synced-color--rgb: #{hex-to-rgb(#7a00df)};
8
+ --wp-bound-block-color: #9747ff;
9
9
  }
package/_mixins.scss CHANGED
@@ -367,6 +367,14 @@
367
367
  }
368
368
  }
369
369
 
370
+ @mixin link-reset {
371
+ &:focus {
372
+ color: var(--wp-admin-theme-color--rgb);
373
+ box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color, #007cba);
374
+ border-radius: $radius-block-ui;
375
+ }
376
+ }
377
+
370
378
  // The editor input reset with increased specificity to avoid theme styles bleeding in.
371
379
  @mixin editor-input-reset() {
372
380
  font-family: $editor-html-font !important;
package/_z-index.scss CHANGED
@@ -201,6 +201,9 @@ $z-layers: (
201
201
 
202
202
  // Ensure modal footer actions appear above modal contents
203
203
  ".edit-site-start-template-options__modal__actions": 1,
204
+
205
+ // Ensure checkbox + actions don't overlap table header
206
+ ".dataviews-view-table thead": 1,
204
207
  );
205
208
 
206
209
  @function z-index( $key ) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "4.42.3",
3
+ "version": "4.42.5",
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": "864c1c553cb284def3bd5c907998da45f5c143ea"
26
+ "gitHead": "7d2a00f1998a0a696694802725e523628f994cfc"
27
27
  }