Twenty Twenty-One: Fix wrapping for long text within comments.
This ensures that word wrapping occurs within comment content. Props mayankmajeji, audrasjb. Fixes #52380. Built from https://develop.svn.wordpress.org/trunk@50158 git-svn-id: http://core.svn.wordpress.org/trunk@49837 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
44b83e84ec
commit
2896790d57
|
@ -6177,7 +6177,7 @@ h1.page-title {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
.comment-content a {
|
||||
.comment-content {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
|
|
|
@ -177,7 +177,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
.comment-content a {
|
||||
.comment-content {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
|
|
|
@ -4439,7 +4439,7 @@ h1.page-title {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
.comment-content a {
|
||||
.comment-content {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
|
|
|
@ -4459,7 +4459,7 @@ h1.page-title {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
.comment-content a {
|
||||
.comment-content {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.7-alpha-50157';
|
||||
$wp_version = '5.7-alpha-50158';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue