@wordpress/base-styles 4.1.0 → 4.1.2-next.a55ed9455a.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/README.md +7 -1
- package/_variables.scss +1 -1
- package/_z-index.scss +1 -4
- package/index.js +4 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -40,4 +40,10 @@ To make that work with [`sass`](https://www.npmjs.com/package/sass) or [`node-sa
|
|
|
40
40
|
}
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
## Contributing to this package
|
|
44
|
+
|
|
45
|
+
This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to [npm](https://www.npmjs.com/) and used by [WordPress](https://make.wordpress.org/core/) as well as other software projects.
|
|
46
|
+
|
|
47
|
+
To find out more about contributing to this package or Gutenberg as a whole, please read the project's main [contributor guide](https://github.com/WordPress/gutenberg/tree/HEAD/CONTRIBUTING.md).
|
|
48
|
+
|
|
49
|
+
<br /><br /><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
|
package/_variables.scss
CHANGED
package/_z-index.scss
CHANGED
|
@@ -152,10 +152,7 @@ $z-layers: (
|
|
|
152
152
|
// ...Except for popovers immediately beneath wp-admin menu on large breakpoints
|
|
153
153
|
".components-popover.block-editor-inserter__popover": 99999,
|
|
154
154
|
".components-popover.table-of-contents__popover": 99998,
|
|
155
|
-
".components-popover.
|
|
156
|
-
".components-popover.edit-post-more-menu__content": 99998,
|
|
157
|
-
".components-popover.edit-site-more-menu__content": 99998,
|
|
158
|
-
".components-popover.edit-widgets-more-menu__content": 99998,
|
|
155
|
+
".components-popover.interface-more-menu__content": 99998,
|
|
159
156
|
".components-popover.block-editor-rich-text__inline-format-toolbar": 99998,
|
|
160
157
|
".components-popover.block-editor-warning__dropdown": 99998,
|
|
161
158
|
".components-popover.edit-navigation-menu-actions__switcher-dropdown": 99998,
|
package/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/base-styles",
|
|
3
|
-
"version": "4.1.0",
|
|
3
|
+
"version": "4.1.2-next.a55ed9455a.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": "c5108185851b824d531bce55991a3589947e8551"
|
|
27
27
|
}
|