Media: Port date filter width fix from Gutenberg.

Ensures the entire date selection dropdown shows in the media modal.

Previously this was worked around in 8deaf5eca6 in Gutenberg. This moves the rule to core, allowing the workaround to be removed in Gutenberg.

Props ianbelanger.
Fixes #44760.
See https://github.com/WordPress/gutenberg/issues/2202
Built from https://develop.svn.wordpress.org/trunk@44653


git-svn-id: http://core.svn.wordpress.org/trunk@44484 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Mike Schroder 2019-01-19 01:20:49 +00:00
parent fc83cdfe6c
commit 792d02dde0
5 changed files with 7 additions and 3 deletions

View File

@ -787,6 +787,8 @@
.media-frame select.attachment-filters:last-of-type {
margin-left: 0;
width: auto;
max-width: 100%;
}
/**

File diff suppressed because one or more lines are too long

View File

@ -787,6 +787,8 @@
.media-frame select.attachment-filters:last-of-type {
margin-right: 0;
width: auto;
max-width: 100%;
}
/**

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.1-beta1-44652';
$wp_version = '5.1-beta1-44653';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.