Media Library: Allow longer labels in the filter dropdowns.
Props aaronrutley, AlbertoCT. Fixes #32005. Built from https://develop.svn.wordpress.org/trunk@35499 git-svn-id: http://core.svn.wordpress.org/trunk@35463 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9e436c7e0f
commit
e0cab8383c
|
@ -752,9 +752,9 @@
|
|||
.media-frame select.attachment-filters {
|
||||
margin-top: 11px;
|
||||
margin-left: 2%;
|
||||
max-width: 42%;
|
||||
max-width: -webkit-calc(48% - 12px);
|
||||
max-width: calc(48% - 12px);
|
||||
width: 42%;
|
||||
width: -webkit-calc(48% - 12px);
|
||||
width: calc(48% - 12px);
|
||||
}
|
||||
|
||||
.media-frame select.attachment-filters:last-of-type {
|
||||
|
@ -1081,11 +1081,15 @@
|
|||
}
|
||||
|
||||
.attachments-browser .media-toolbar-primary {
|
||||
max-width: 33%;
|
||||
width: 33%;
|
||||
}
|
||||
|
||||
.attachments-browser .media-toolbar-secondary {
|
||||
max-width: 66%;
|
||||
width: 66%;
|
||||
}
|
||||
|
||||
.attachments-browser .search {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.uploader-inline .close {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -752,9 +752,9 @@
|
|||
.media-frame select.attachment-filters {
|
||||
margin-top: 11px;
|
||||
margin-right: 2%;
|
||||
max-width: 42%;
|
||||
max-width: -webkit-calc(48% - 12px);
|
||||
max-width: calc(48% - 12px);
|
||||
width: 42%;
|
||||
width: -webkit-calc(48% - 12px);
|
||||
width: calc(48% - 12px);
|
||||
}
|
||||
|
||||
.media-frame select.attachment-filters:last-of-type {
|
||||
|
@ -1081,11 +1081,15 @@
|
|||
}
|
||||
|
||||
.attachments-browser .media-toolbar-primary {
|
||||
max-width: 33%;
|
||||
width: 33%;
|
||||
}
|
||||
|
||||
.attachments-browser .media-toolbar-secondary {
|
||||
max-width: 66%;
|
||||
width: 66%;
|
||||
}
|
||||
|
||||
.attachments-browser .search {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.uploader-inline .close {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-beta2-35498';
|
||||
$wp_version = '4.4-beta2-35499';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue