Reduce form spacing on narrower screens.
props liljimmi. fixes #32489, #32484. Built from https://develop.svn.wordpress.org/trunk@32772 git-svn-id: http://core.svn.wordpress.org/trunk@32743 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
748b3763cb
commit
ed46512c20
|
@ -1087,8 +1087,10 @@ table.form-table td .updated p {
|
|||
}
|
||||
|
||||
.form-table span.description {
|
||||
display: inline;
|
||||
padding: 4px 0 0;
|
||||
line-height: 1.4em;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.form-table th {
|
||||
|
@ -1098,10 +1100,22 @@ table.form-table td .updated p {
|
|||
}
|
||||
|
||||
.form-table td {
|
||||
padding-top: 8px;
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 6px;
|
||||
padding-top: 4px;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure td code {
|
||||
margin-right: 32px;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure td input[type="text"] {
|
||||
margin-right: 32px;
|
||||
margin-top: 4px;
|
||||
width: 96%;
|
||||
}
|
||||
|
||||
.form-table input.regular-text {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -1087,8 +1087,10 @@ table.form-table td .updated p {
|
|||
}
|
||||
|
||||
.form-table span.description {
|
||||
display: inline;
|
||||
padding: 4px 0 0;
|
||||
line-height: 1.4em;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.form-table th {
|
||||
|
@ -1098,10 +1100,22 @@ table.form-table td .updated p {
|
|||
}
|
||||
|
||||
.form-table td {
|
||||
padding-top: 8px;
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 6px;
|
||||
padding-top: 4px;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure td code {
|
||||
margin-left: 32px;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure td input[type="text"] {
|
||||
margin-left: 32px;
|
||||
margin-top: 4px;
|
||||
width: 96%;
|
||||
}
|
||||
|
||||
.form-table input.regular-text {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32771';
|
||||
$wp_version = '4.3-alpha-32772';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue