From 3426581eaa71fdc746f9ca203711aecb7a82ddc6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 5 Nov 2020 15:05:07 +0000 Subject: [PATCH] Twenty Thirteen: Correct alignment of blocks inside a `full-width` or `wide-width` group block. Props sabernhardt. Fixes #51440. Built from https://develop.svn.wordpress.org/trunk@49508 git-svn-id: http://core.svn.wordpress.org/trunk@49263 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentythirteen/css/editor-blocks.css | 4 +++- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentythirteen/css/editor-blocks.css b/wp-content/themes/twentythirteen/css/editor-blocks.css index 4b79fa8a00..0223758db1 100644 --- a/wp-content/themes/twentythirteen/css/editor-blocks.css +++ b/wp-content/themes/twentythirteen/css/editor-blocks.css @@ -364,7 +364,9 @@ p.has-drop-cap:not(:focus)::first-letter { /* Group */ -.wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block { +.wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block, +[data-align="wide"] .wp-block, +[data-align="full"] .wp-block { max-width: 634px; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 06480dc9b7..4d0f06b94b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta3-49507'; +$wp_version = '5.6-beta3-49508'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.