Twenty-Twenty: Alignment fix on Separator Block editor styles.

This changeset fixes an issue with some CSS rules of the "Wide Line" variation of the Separator Block’s editor stylesheet, for small, medium and large screens.

Props umesh84, iamjaydip, mukesh27, larrach.
Fixes #55896.

Built from https://develop.svn.wordpress.org/trunk@53459


git-svn-id: http://core.svn.wordpress.org/trunk@53048 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2022-06-02 15:10:10 +00:00
parent bbe60d66c3
commit e05a38f0a5
3 changed files with 13 additions and 13 deletions

View File

@ -1392,8 +1392,8 @@ hr.wp-block-separator.is-style-dots::before {
} }
hr.wp-block-separator.is-style-wide { hr.wp-block-separator.is-style-wide {
margin-right: -70px; margin-right: auto;
margin-left: -70px; margin-left: auto;
} }
@ -1430,8 +1430,8 @@ hr.wp-block-separator.is-style-dots::before {
/* BLOCK: SEPARATOR */ /* BLOCK: SEPARATOR */
hr.wp-block-separator.is-style-wide { hr.wp-block-separator.is-style-wide {
margin-right: -150px; margin-right: auto;
margin-left: -150px; margin-left: auto;
} }
} }
@ -1465,8 +1465,8 @@ hr.wp-block-separator.is-style-dots::before {
/* BLOCK: SEPARATOR */ /* BLOCK: SEPARATOR */
hr.wp-block-separator.is-style-wide { hr.wp-block-separator.is-style-wide {
margin-right: -200px; margin-right: auto;
margin-left: -200px; margin-left: auto;
} }

View File

@ -1392,8 +1392,8 @@ hr.wp-block-separator.is-style-dots::before {
} }
hr.wp-block-separator.is-style-wide { hr.wp-block-separator.is-style-wide {
margin-left: -70px; margin-left: auto;
margin-right: -70px; margin-right: auto;
} }
@ -1430,8 +1430,8 @@ hr.wp-block-separator.is-style-dots::before {
/* BLOCK: SEPARATOR */ /* BLOCK: SEPARATOR */
hr.wp-block-separator.is-style-wide { hr.wp-block-separator.is-style-wide {
margin-left: -150px; margin-left: auto;
margin-right: -150px; margin-right: auto;
} }
} }
@ -1465,8 +1465,8 @@ hr.wp-block-separator.is-style-dots::before {
/* BLOCK: SEPARATOR */ /* BLOCK: SEPARATOR */
hr.wp-block-separator.is-style-wide { hr.wp-block-separator.is-style-wide {
margin-left: -200px; margin-left: auto;
margin-right: -200px; margin-right: auto;
} }

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.1-alpha-53458'; $wp_version = '6.1-alpha-53459';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.