Login, Registration: Prevent button misalignment on login screen.

Replace the float CSS removed in [50569], which is used to align the login & register buttons.

Props mukesh27, audrasjb.
Fixes #52834.


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


git-svn-id: http://core.svn.wordpress.org/trunk@50190 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryelle 2021-03-25 14:23:03 +00:00
parent d6cc4f1aec
commit 14eddefa5e
5 changed files with 13 additions and 3 deletions

View File

@ -187,6 +187,10 @@ p {
margin-bottom: 0;
}
.login .button-primary {
float: left;
}
.login .reset-pass-submit {
display: flex;
flex-flow: row wrap;
@ -195,6 +199,7 @@ p {
.login .reset-pass-submit .button {
display: inline-block;
float: none;
margin-bottom: 6px;
}

File diff suppressed because one or more lines are too long

View File

@ -186,6 +186,10 @@ p {
margin-bottom: 0;
}
.login .button-primary {
float: right;
}
.login .reset-pass-submit {
display: flex;
flex-flow: row wrap;
@ -194,6 +198,7 @@ p {
.login .reset-pass-submit .button {
display: inline-block;
float: none;
margin-bottom: 6px;
}

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.8-alpha-50576';
$wp_version = '5.8-alpha-50577';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.