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.


git-svn-id: https://develop.svn.wordpress.org/trunk@45157 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrea Fercia 2019-04-10 16:11:56 +00:00
parent d09af1698f
commit 36787a2716

View File

@ -235,10 +235,15 @@ p {
.login input[type="text"] { .login input[type="text"] {
font-size: 24px; font-size: 24px;
width: 100%; width: 100%;
padding: 5px 45px 5px 5px; padding: 5px;
margin: 2px 6px 16px 0; 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 form .input,
.login input[type="text"], .login input[type="text"],
.login form input[type="checkbox"] { .login form input[type="checkbox"] {