Twenty Thirteen: Improve the display of the Query Loop block.

This fixes an issue where Query Loop blocks were displayed with list bullets and extra `padding-left`.

Props AlePerez92, scruffian, ryelle.
Fixes #53438.
Built from https://develop.svn.wordpress.org/trunk@51192


git-svn-id: http://core.svn.wordpress.org/trunk@50801 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2021-06-21 23:39:56 +00:00
parent d5c9c310e7
commit 52e1e2cc2f
2 changed files with 13 additions and 13 deletions

View File

@ -78,8 +78,8 @@ Description: Used to style blocks in the editor.
/* List styles */ /* List styles */
.edit-post-visual-editor ul:not(.wp-block-gallery), .edit-post-visual-editor ul:not(.wp-block-gallery):not(.wp-block-post-template),
.editor-block-list__block ul:not(.wp-block-gallery), .editor-block-list__block ul:not(.wp-block-gallery):not(.wp-block-post-template),
.block-library-list ul, .block-library-list ul,
.edit-post-visual-editor ol, .edit-post-visual-editor ol,
.editor-block-list__block ol, .editor-block-list__block ol,
@ -88,8 +88,8 @@ Description: Used to style blocks in the editor.
padding: 0; padding: 0;
} }
.edit-post-visual-editor ul:not(.wp-block-gallery), .edit-post-visual-editor ul:not(.wp-block-gallery):not(.wp-block-post-template),
.edit-post-visual-editor .editor-block-list__block ul:not(.wp-block-gallery), .edit-post-visual-editor .editor-block-list__block ul:not(.wp-block-gallery):not(.wp-block-post-template),
.block-library-list ul { .block-library-list ul {
list-style-type: square; list-style-type: square;
} }
@ -117,10 +117,10 @@ Description: Used to style blocks in the editor.
margin-bottom: 0; margin-bottom: 0;
} }
.editor-styles-wrapper ul.block-editor-block-list__block, .editor-styles-wrapper ul.block-editor-block-list__block:not(.wp-block-post-template),
.editor-styles-wrapper ol.block-editor-block-list__block, .editor-styles-wrapper ol.block-editor-block-list__block:not(.wp-block-post-template),
.editor-styles-wrapper ol ul:not(.wp-block-gallery), .editor-styles-wrapper ol ul:not(.wp-block-gallery):not(.wp-block-post-template),
.editor-styles-wrapper ul ul:not(.wp-block-gallery), .editor-styles-wrapper ul ul:not(.wp-block-gallery):not(.wp-block-post-template),
.editor-styles-wrapper ul ol, .editor-styles-wrapper ul ol,
.editor-styles-wrapper ol ol, .editor-styles-wrapper ol ol,
.wp-block-freeform.block-library-rich-text__tinymce ul, .wp-block-freeform.block-library-rich-text__tinymce ul,
@ -128,10 +128,10 @@ Description: Used to style blocks in the editor.
padding: 0 0 0 40px; padding: 0 0 0 40px;
} }
.rtl .editor-styles-wrapper ul.block-editor-block-list__block, .rtl .editor-styles-wrapper ul.block-editor-block-list__block:not(.wp-block-post-template),
.rtl .editor-styles-wrapper ol.block-editor-block-list__block, .rtl .editor-styles-wrapper ol.block-editor-block-list__block:not(.wp-block-post-template),
.rtl .editor-styles-wrapper ol ul:not(.wp-block-gallery), .rtl .editor-styles-wrapper ol ul:not(.wp-block-gallery):not(.wp-block-post-template),
.rtl .editor-styles-wrapper ul ul:not(.wp-block-gallery), .rtl .editor-styles-wrapper ul ul:not(.wp-block-gallery):not(.wp-block-post-template),
.rtl .editor-styles-wrapper ul ol, .rtl .editor-styles-wrapper ul ol,
.rtl .editor-styles-wrapper ol ol, .rtl .editor-styles-wrapper ol ol,
.rtl .wp-block-freeform.block-library-rich-text__tinymce ul, .rtl .wp-block-freeform.block-library-rich-text__tinymce ul,

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.8-beta2-51191'; $wp_version = '5.8-beta2-51192';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.