From 31af0afd4f9146a2127830d0ffc94c3dd1b7d740 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 5 Nov 2020 15:03:41 +0000 Subject: [PATCH] Twenty Thirteen: Correct alignment of blocks inside a `full-width` or `wide-width` group block. Props sabernhardt. Fixes #51440. git-svn-id: https://develop.svn.wordpress.org/trunk@49508 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentythirteen/css/editor-blocks.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentythirteen/css/editor-blocks.css b/src/wp-content/themes/twentythirteen/css/editor-blocks.css index 4b79fa8a00..0223758db1 100644 --- a/src/wp-content/themes/twentythirteen/css/editor-blocks.css +++ b/src/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; }