From b2c1e5aab06f4d2ed21e0612bc551484a3ed6318 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Wed, 14 Sep 2022 10:04:10 +0000 Subject: [PATCH] Twenty Twenty: Correctly align Social Icons block in the editor. This changeset resets `padding-left` property for the Social Icons block in the editor. Props umesh84, audrasjb, nidhidhandhukiya, kajalgohel. Fixes #55987. Built from https://develop.svn.wordpress.org/trunk@54152 --- .../themes/twentytwenty/assets/css/editor-style-block-rtl.css | 4 ++++ .../themes/twentytwenty/assets/css/editor-style-block.css | 4 ++++ wp-includes/version.php | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) 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 09645053da..b3c1001c89 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 @@ -1106,6 +1106,10 @@ hr.wp-block-separator.is-style-dots::before { padding-right: 1.3em; } +.editor-styles-wrapper ul.block-editor-block-list__block.wp-block-social-links { + padding-left: 0; +} + /* Block: Post Template ---------------- */ .editor-styles-wrapper ul.wp-block-post-template { 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 0cdb69ce84..2e4474ba1f 100644 --- a/wp-content/themes/twentytwenty/assets/css/editor-style-block.css +++ b/wp-content/themes/twentytwenty/assets/css/editor-style-block.css @@ -1110,6 +1110,10 @@ hr.wp-block-separator.is-style-dots::before { padding-left: 1.3em; } +.editor-styles-wrapper ul.block-editor-block-list__block.wp-block-social-links { + padding-left: 0; +} + /* Block: Post Template ---------------- */ .editor-styles-wrapper ul.wp-block-post-template { diff --git a/wp-includes/version.php b/wp-includes/version.php index 5ab3a41723..df06368f54 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54151'; +$wp_version = '6.1-alpha-54152'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.