Site Health: Improve the appearance of administration email verification box.
Add `max-width` on desktop view and some padding on smaller screens. Props chetan200891, azaozz, Clorith, afragen. Fixes #48607. Built from https://develop.svn.wordpress.org/trunk@47772 git-svn-id: http://core.svn.wordpress.org/trunk@47548 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7ded6c2d2a
commit
33194d29c2
|
@ -160,11 +160,16 @@ p {
|
|||
|
||||
.login-action-confirm_admin_email #login {
|
||||
width: 60vw;
|
||||
max-width: 650px;
|
||||
margin-top: -2vh;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
.login-action-confirm_admin_email #login {
|
||||
box-sizing: border-box;
|
||||
margin-top: 0;
|
||||
padding-right: 4vw;
|
||||
padding-left: 4vw;
|
||||
width: 100vw;
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -159,11 +159,16 @@ p {
|
|||
|
||||
.login-action-confirm_admin_email #login {
|
||||
width: 60vw;
|
||||
max-width: 650px;
|
||||
margin-top: -2vh;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
.login-action-confirm_admin_email #login {
|
||||
box-sizing: border-box;
|
||||
margin-top: 0;
|
||||
padding-left: 4vw;
|
||||
padding-right: 4vw;
|
||||
width: 100vw;
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.5-alpha-47771';
|
||||
$wp_version = '5.5-alpha-47772';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue