@wordpress/base-styles 4.8.1 → 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.
- package/CHANGELOG.md +2 -0
- package/_mixins.scss +12 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
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.
|
|
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": "
|
|
26
|
+
"gitHead": "25054766423cb49d959eb656c2533530073ff5c2"
|
|
27
27
|
}
|