Make sure the spinner in the media modal is visible on narrow screens (without affecting the media grid).
Fixes #30725. git-svn-id: https://develop.svn.wordpress.org/trunk@32120 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5c1eb9f4f8
commit
17e3e168d3
|
@ -740,7 +740,12 @@
|
||||||
.media-frame select.attachment-filters {
|
.media-frame select.attachment-filters {
|
||||||
margin-top: 11px;
|
margin-top: 11px;
|
||||||
margin-right: 2%;
|
margin-right: 2%;
|
||||||
max-width: 47%;
|
max-width: 42%;
|
||||||
|
max-width: calc(48% - 12px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-frame select.attachment-filters:last-of-type {
|
||||||
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2413,7 +2418,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.media-modal .attachments-browser .media-toolbar .spinner {
|
.media-modal .attachments-browser .media-toolbar .spinner {
|
||||||
margin: 14px 8px 0;
|
margin: 14px 2px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Text inputs need to be 16px, or they force zooming on iOS */
|
/* Text inputs need to be 16px, or they force zooming on iOS */
|
||||||
|
|
Loading…
Reference in New Issue