Widgets: Avoid an overflow issue in widget controls that include <select> form fields.

Props alexischenal, audrasjb, dkarfa.
Fixes #49401.
Built from https://develop.svn.wordpress.org/trunk@47365


git-svn-id: http://core.svn.wordpress.org/trunk@47152 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-02-25 17:04:07 +00:00
parent d51c720d2f
commit b7c69ce058
5 changed files with 11 additions and 3 deletions

View File

@ -608,6 +608,10 @@ div#widgets-right .closed .widgets-sortables {
background: #fff;
}
.widget-inside select {
max-width: 100%;
}
/* Dragging widgets over the available widget area show's a "Deactivate" message */
#removing-widget {
display: none;

File diff suppressed because one or more lines are too long

View File

@ -607,6 +607,10 @@ div#widgets-right .closed .widgets-sortables {
background: #fff;
}
.widget-inside select {
max-width: 100%;
}
/* Dragging widgets over the available widget area show's a "Deactivate" message */
#removing-widget {
display: none;

File diff suppressed because one or more lines are too long

View File

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