diff --git a/docs/manifest.json b/docs/manifest.json index 2e035a90ed71f8..90cc33847dd09a 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -443,6 +443,12 @@ "markdown_source": "https://raw.githubusercontent.com/WordPress/gutenberg/master/packages/postcss-themes/README.md", "parent": "packages" }, + { + "title": "@wordpress/postcss-url", + "slug": "packages-postcss-url", + "markdown_source": "https://raw.githubusercontent.com/WordPress/gutenberg/master/packages/postcss-url/README.md", + "parent": "packages" + }, { "title": "@wordpress/redux-routine", "slug": "packages-redux-routine", diff --git a/edit-post/components/visual-editor/style.scss b/edit-post/components/visual-editor/style.scss index 9f401584aedecd..44f937fb368bcb 100644 --- a/edit-post/components/visual-editor/style.scss +++ b/edit-post/components/visual-editor/style.scss @@ -2,31 +2,8 @@ position: relative; padding: 50px 0; - &, - & p { - font-family: $editor-font; - font-size: $editor-font-size; - line-height: $editor-line-height; - } - - &, - & p { - color: $dark-gray-700; - } - & ul, - & ol { - margin: 0; - padding: 0; - } - & ul:not(.wp-block-gallery) { - list-style-type: disc; - } - - & ol { - list-style-type: decimal; - } & .components-button { font-family: $default-font; diff --git a/packages/editor/src/components/block-list/style.scss b/packages/editor/src/components/block-list/style.scss index e8b78f486c3417..a458b3ed9df963 100644 --- a/packages/editor/src/components/block-list/style.scss +++ b/packages/editor/src/components/block-list/style.scss @@ -93,6 +93,14 @@ } .editor-block-list__block { + font-family: $editor-font; + line-height: $editor-line-height; + color: $dark-gray-700; + + p { + font-size: $editor-font-size; + } + &.is-hidden *, &.is-hidden > * { visibility: hidden; @@ -101,6 +109,20 @@ .editor-block-list__block-edit .reusable-block-edit-panel * { z-index: z-index(".editor-block-list__block-edit .reusable-block-edit-panel *"); } + + & ul, + & ol { + margin: 0; + padding: 0; + } + + & ul:not(.wp-block-gallery) { + list-style-type: disc; + } + + & ol { + list-style-type: decimal; + } }