Bundled Themes: Twenty Twenty Menu rendering problem Unicode (Bangla).

Fixes a bug where certain words break on to a second line in the primary and footer menus, in certain languages.

Props smallprogrammers, Shital Patel, mukesh27, audrasjb.
Fixes #48970.
Built from https://develop.svn.wordpress.org/trunk@47192


git-svn-id: http://core.svn.wordpress.org/trunk@46992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ianbelanger 2020-02-05 15:02:05 +00:00
parent 0544629460
commit 02d01de6c5
3 changed files with 9 additions and 1 deletions

View File

@ -1627,6 +1627,8 @@ ul.primary-menu {
display: block;
line-height: 1.2;
text-decoration: none;
word-break: normal;
word-wrap: normal;
}
.primary-menu a:hover,
@ -4330,6 +4332,8 @@ div.comment:first-of-type {
.footer-menu a {
text-decoration: none;
word-break: normal;
word-wrap: normal;
}
.footer-menu a:hover,

View File

@ -1633,6 +1633,8 @@ ul.primary-menu {
display: block;
line-height: 1.2;
text-decoration: none;
word-break: normal;
word-wrap: normal;
}
.primary-menu a:hover,
@ -4364,6 +4366,8 @@ div.comment:first-of-type {
.footer-menu a {
text-decoration: none;
word-break: normal;
word-wrap: normal;
}
.footer-menu a:hover,

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.4-alpha-47191';
$wp_version = '5.4-alpha-47192';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.