Bundled Themes: Twenty Eleven & Twenty Twelve dropdown category widget exceeds parent div when strings are long enough.

Fixes the width of the category dropdown by limiting the width of `select` items in widgets using `max-width: 100%`.

Props gma992, karmatosed.
Fixes #37926.
Built from https://develop.svn.wordpress.org/trunk@47801


git-svn-id: http://core.svn.wordpress.org/trunk@47577 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ianbelanger 2020-05-15 16:31:11 +00:00
parent b10bd5134c
commit e54d8406eb
3 changed files with 7 additions and 1 deletions

View File

@ -1846,6 +1846,9 @@ video {
.widget a:active { .widget a:active {
text-decoration: underline; text-decoration: underline;
} }
.widget select {
max-width: 100%;
}
/* Search Widget */ /* Search Widget */
.widget_search form { .widget_search form {

View File

@ -1417,6 +1417,9 @@ a.comment-edit-link:hover {
/* =Widgets /* =Widgets
-------------------------------------------------------------- */ -------------------------------------------------------------- */
.widget select {
max-width: 100%;
}
.widget-area .widget ul ul { .widget-area .widget ul ul {
margin-left: 12px; margin-left: 12px;
margin-left: 0.857142857rem; margin-left: 0.857142857rem;

View File

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