Fix spacing of .compat-item .field form widgets in media modal.

Props trepmal.
Fixes #30886.

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


git-svn-id: http://core.svn.wordpress.org/trunk@31019 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-01-03 20:47:23 +00:00
parent c5f9a7c26a
commit a5cd4c0493
5 changed files with 13 additions and 7 deletions

View File

@ -449,7 +449,8 @@
.compat-item .field {
float: left;
width: 66%;
width: 65%;
margin: 1px;
}
.compat-item .field input[type="text"],
@ -458,9 +459,11 @@
.compat-item .field input[type="number"],
.compat-item .field input[type="search"],
.compat-item .field input[type="tel"],
.compat-item .field input[type="url"] {
.compat-item .field input[type="url"],
.compat-item .field textarea {
width: 100%;
margin: 0;
box-sizing: border-box;
}
.sidebar-for-errors .attachment-details,

File diff suppressed because one or more lines are too long

View File

@ -449,7 +449,8 @@
.compat-item .field {
float: right;
width: 66%;
width: 65%;
margin: 1px;
}
.compat-item .field input[type="text"],
@ -458,9 +459,11 @@
.compat-item .field input[type="number"],
.compat-item .field input[type="search"],
.compat-item .field input[type="tel"],
.compat-item .field input[type="url"] {
.compat-item .field input[type="url"],
.compat-item .field textarea {
width: 100%;
margin: 0;
box-sizing: border-box;
}
.sidebar-for-errors .attachment-details,

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-31037';
$wp_version = '4.2-alpha-31038';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.