Twenty Twenty: Remove extra margin within the Query Loop block.

Props ryelle, Clorith.
See #53482.
Built from https://develop.svn.wordpress.org/trunk@51231


git-svn-id: http://core.svn.wordpress.org/trunk@50840 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2021-06-24 23:22:58 +00:00
parent 4381bf2ef6
commit 2f063a72f2
5 changed files with 29 additions and 1 deletions

View File

@ -1084,6 +1084,12 @@ hr.wp-block-separator.is-style-dots::before {
padding-right: 1.3em;
}
/* Block: Post Template ---------------- */
.editor-styles-wrapper ul.wp-block-post-template {
padding-right: 0;
}
/* X. Media Queries
/* ------------------------------------------- */

View File

@ -1084,6 +1084,12 @@ hr.wp-block-separator.is-style-dots::before {
padding-left: 1.3em;
}
/* Block: Post Template ---------------- */
.editor-styles-wrapper ul.wp-block-post-template {
padding-left: 0;
}
/* X. Media Queries
/* ------------------------------------------- */

View File

@ -3444,6 +3444,14 @@ figure.wp-block-table.is-style-stripes {
margin-top: 0;
}
/* Block: Post Template ---------------- */
.wp-block-post-template,
.wp-block-post-template > li {
margin-right: 0;
margin-left: 0;
}
/* -------------------------------------------------------------------------- */

View File

@ -3466,6 +3466,14 @@ figure.wp-block-table.is-style-stripes {
margin-top: 0;
}
/* Block: Post Template ---------------- */
.wp-block-post-template,
.wp-block-post-template > li {
margin-left: 0;
margin-right: 0;
}
/* -------------------------------------------------------------------------- */

View File

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