diff --git a/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css b/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css index 8589a297c0..fe56bd3389 100644 --- a/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css +++ b/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css @@ -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 /* ------------------------------------------- */ diff --git a/wp-content/themes/twentytwenty/assets/css/editor-style-block.css b/wp-content/themes/twentytwenty/assets/css/editor-style-block.css index 86c63577b2..1fac49c182 100644 --- a/wp-content/themes/twentytwenty/assets/css/editor-style-block.css +++ b/wp-content/themes/twentytwenty/assets/css/editor-style-block.css @@ -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 /* ------------------------------------------- */ diff --git a/wp-content/themes/twentytwenty/style-rtl.css b/wp-content/themes/twentytwenty/style-rtl.css index a2b49aaee4..54a09f040e 100644 --- a/wp-content/themes/twentytwenty/style-rtl.css +++ b/wp-content/themes/twentytwenty/style-rtl.css @@ -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; +} + /* -------------------------------------------------------------------------- */ diff --git a/wp-content/themes/twentytwenty/style.css b/wp-content/themes/twentytwenty/style.css index f6d5d9ec92..4a74a356b4 100644 --- a/wp-content/themes/twentytwenty/style.css +++ b/wp-content/themes/twentytwenty/style.css @@ -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; +} + /* -------------------------------------------------------------------------- */ diff --git a/wp-includes/version.php b/wp-includes/version.php index cbf2ee046a..c4e918a54b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.