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:
parent
d51c720d2f
commit
b7c69ce058
|
@ -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
|
@ -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
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue