App Passwords: Ensure the Add New button isn't hidden on mobile.
Also removes an unnecessary `!important` rule introduced in [49772] when fixing a similar issue. Props vladytimy, mukesh27. Merges [49921] to the 5.6 branch. Fixes #51980. Built from https://develop.svn.wordpress.org/branches/5.6@49999 git-svn-id: http://core.svn.wordpress.org/branches/5.6@49700 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9076f6bf5b
commit
abd4de1400
|
@ -863,6 +863,7 @@ table.form-table td .updated p {
|
|||
.create-application-password p.submit {
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#application-passwords-section .notice {
|
||||
|
@ -879,7 +880,7 @@ table.form-table td .updated p {
|
|||
}
|
||||
|
||||
.authorize-application-php .form-wrap p {
|
||||
display: block !important;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -862,6 +862,7 @@ table.form-table td .updated p {
|
|||
.create-application-password p.submit {
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#application-passwords-section .notice {
|
||||
|
@ -878,7 +879,7 @@ table.form-table td .updated p {
|
|||
}
|
||||
|
||||
.authorize-application-php .form-wrap p {
|
||||
display: block !important;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6.1-alpha-49998';
|
||||
$wp_version = '5.6.1-alpha-49999';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue