Reduce form spacing on narrower screens.

props liljimmi.
fixes #32489, #32484.


git-svn-id: https://develop.svn.wordpress.org/trunk@32772 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Helen Hou-Sandi 2015-06-14 20:11:40 +00:00
parent 3c554c0391
commit 32845bd9c6

View File

@ -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%;
}