Application Passwords: Ensure long passwords don't break the "new password" notice.
This changeset adds a `word-wrap: break-word` CSS declaration to avoid text overflow in the "new application password" notice. Props Presskopp, hasanuzzamanshamim, yannielsen, audrasjb. Fixes #54581. Built from https://develop.svn.wordpress.org/trunk@53567 git-svn-id: http://core.svn.wordpress.org/trunk@53156 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a33fd9fc55
commit
9a2ae08812
|
@ -886,6 +886,7 @@ table.form-table td .updated p {
|
|||
#application-passwords-section .notice {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 0;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.application-password-display input.code {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -885,6 +885,7 @@ table.form-table td .updated p {
|
|||
#application-passwords-section .notice {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 0;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.application-password-display input.code {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-alpha-53566';
|
||||
$wp_version = '6.1-alpha-53567';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue