Make sure the spinner in the media modal is visible on narrow screens (without affecting the media grid).
Fixes #30725. Built from https://develop.svn.wordpress.org/trunk@32120 git-svn-id: http://core.svn.wordpress.org/trunk@32099 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7b24017cdb
commit
d70ec8387b
|
@ -740,7 +740,12 @@
|
|||
.media-frame select.attachment-filters {
|
||||
margin-top: 11px;
|
||||
margin-left: 2%;
|
||||
max-width: 47%;
|
||||
max-width: 42%;
|
||||
max-width: calc(48% - 12px);
|
||||
}
|
||||
|
||||
.media-frame select.attachment-filters:last-of-type {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2413,7 +2418,7 @@
|
|||
}
|
||||
|
||||
.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 */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -740,7 +740,12 @@
|
|||
.media-frame select.attachment-filters {
|
||||
margin-top: 11px;
|
||||
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 {
|
||||
margin: 14px 8px 0;
|
||||
margin: 14px 2px 0;
|
||||
}
|
||||
|
||||
/* Text inputs need to be 16px, or they force zooming on iOS */
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.2-beta4-32119';
|
||||
$wp_version = '4.2-beta4-32120';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue