Login and Registration: improve the CSS padding on the login input fields.

The right padding added in [44895] needs to be set only on the input fields in the Reset Password screen and exclude other login screens.

Amends [44895].
Fixes #42853.

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


git-svn-id: http://core.svn.wordpress.org/trunk@44966 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrea Fercia 2019-04-10 16:12:51 +00:00
parent 8ffebab3e6
commit f27917373c
5 changed files with 15 additions and 5 deletions

View File

@ -235,10 +235,15 @@ p {
.login input[type="text"] {
font-size: 24px;
width: 100%;
padding: 5px 5px 5px 45px;
padding: 5px;
margin: 2px 0 16px 6px;
}
.login-action-rp form .input,
.login-action-rp input[type="text"] {
padding: 5px 5px 5px 45px;
}
.login form .input,
.login input[type="text"],
.login form input[type="checkbox"] {

File diff suppressed because one or more lines are too long

View File

@ -235,10 +235,15 @@ p {
.login input[type="text"] {
font-size: 24px;
width: 100%;
padding: 5px 45px 5px 5px;
padding: 5px;
margin: 2px 6px 16px 0;
}
.login-action-rp form .input,
.login-action-rp input[type="text"] {
padding: 5px 45px 5px 5px;
}
.login form .input,
.login input[type="text"],
.login form input[type="checkbox"] {

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.2-beta2-45156';
$wp_version = '5.2-beta2-45157';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.