Skip to content

Commit

Permalink
Twenty Twenty: Correctly align Social Icons block in the editor.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
audrasjb committed Sep 14, 2022
1 parent c34d9ce commit b2c1e5a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit b2c1e5a

Please sign in to comment.