Media Library: Allow longer labels in the filter dropdowns.
Props aaronrutley, AlbertoCT. Fixes #32005. git-svn-id: https://develop.svn.wordpress.org/trunk@35499 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
01e9de382e
commit
ff6e398b6f
|
@ -752,9 +752,9 @@
|
||||||
.media-frame select.attachment-filters {
|
.media-frame select.attachment-filters {
|
||||||
margin-top: 11px;
|
margin-top: 11px;
|
||||||
margin-right: 2%;
|
margin-right: 2%;
|
||||||
max-width: 42%;
|
width: 42%;
|
||||||
max-width: -webkit-calc(48% - 12px);
|
width: -webkit-calc(48% - 12px);
|
||||||
max-width: calc(48% - 12px);
|
width: calc(48% - 12px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.media-frame select.attachment-filters:last-of-type {
|
.media-frame select.attachment-filters:last-of-type {
|
||||||
|
@ -1081,11 +1081,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.attachments-browser .media-toolbar-primary {
|
.attachments-browser .media-toolbar-primary {
|
||||||
max-width: 33%;
|
width: 33%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.attachments-browser .media-toolbar-secondary {
|
.attachments-browser .media-toolbar-secondary {
|
||||||
max-width: 66%;
|
width: 66%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.attachments-browser .search {
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uploader-inline .close {
|
.uploader-inline .close {
|
||||||
|
|
Loading…
Reference in New Issue