mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
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:
parent
d6cc4f1aec
commit
14eddefa5e
@ -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;
|
||||
}
|
||||
|
||||
|
2
wp-admin/css/login-rtl.min.css
vendored
2
wp-admin/css/login-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||
}
|
||||
|
||||
|
2
wp-admin/css/login.min.css
vendored
2
wp-admin/css/login.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user