@wordpress/base-styles 4.9.0 → 4.9.1-next.4d3b314fd5.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.
Files changed (2) hide show
  1. package/_mixins.scss +12 -1
  2. package/package.json +2 -2
package/_mixins.scss CHANGED
@@ -203,8 +203,19 @@
203
203
  }
204
204
 
205
205
  @mixin placeholder-style() {
206
- border: $border-width dashed currentColor;
207
206
  border-radius: $radius-block-ui;
207
+
208
+ &::before {
209
+ content: "";
210
+ position: absolute;
211
+ top: 0;
212
+ right: 0;
213
+ bottom: 0;
214
+ left: 0;
215
+ pointer-events: none;
216
+ background: currentColor;
217
+ opacity: 0.1;
218
+ }
208
219
  }
209
220
 
210
221
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "4.9.0",
3
+ "version": "4.9.1-next.4d3b314fd5.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": "23e136283fa1d3b8d9d8b33869f871ad5eb77726"
26
+ "gitHead": "25054766423cb49d959eb656c2533530073ff5c2"
27
27
  }