Media: Prevent filter selects from jiggling when the spinner shows.

props valendesigns.
fixes #30725 for trunk.

Built from https://develop.svn.wordpress.org/trunk@31197


git-svn-id: http://core.svn.wordpress.org/trunk@31178 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Helen Hou-Sandí 2015-01-16 03:00:23 +00:00
parent e760ecfb13
commit 798439c273
5 changed files with 29 additions and 5 deletions

View File

@ -235,11 +235,22 @@
}
.media-toolbar-secondary {
position: relative;
float: right;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding-left: 20px;
height: 100%;
max-width: 66%;
}
.media-toolbar-secondary .spinner {
position: absolute;
top: 2px;
left: 0px;
}
.media-toolbar-primary > .media-button,
.media-toolbar-primary > .media-button-group {
margin-right: 10px;
@ -740,6 +751,7 @@
margin-top: 11px;
margin-left: 2%;
max-width: 47%;
width: 100%; /* prevents options from invisibly taking up horizontal space */
}
/**
@ -2359,7 +2371,7 @@
}
.media-modal .attachments-browser .media-toolbar .spinner {
margin: 14px 8px 0;
margin: 14px 0 0;
}
/* Text inputs need to be 16px, or they force zooming on iOS */

File diff suppressed because one or more lines are too long

View File

@ -235,11 +235,22 @@
}
.media-toolbar-secondary {
position: relative;
float: left;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding-right: 20px;
height: 100%;
max-width: 66%;
}
.media-toolbar-secondary .spinner {
position: absolute;
top: 2px;
right: 0px;
}
.media-toolbar-primary > .media-button,
.media-toolbar-primary > .media-button-group {
margin-left: 10px;
@ -740,6 +751,7 @@
margin-top: 11px;
margin-right: 2%;
max-width: 47%;
width: 100%; /* prevents options from invisibly taking up horizontal space */
}
/**
@ -2359,7 +2371,7 @@
}
.media-modal .attachments-browser .media-toolbar .spinner {
margin: 14px 8px 0;
margin: 14px 0 0;
}
/* Text inputs need to be 16px, or they force zooming on iOS */

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.2-alpha-31196';
$wp_version = '4.2-alpha-31197';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.