From 32845bd9c64c28e45857f932420aeaf91d2a9e91 Mon Sep 17 00:00:00 2001 From: Helen Hou-Sandi Date: Sun, 14 Jun 2015 20:11:40 +0000 Subject: [PATCH] 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 --- src/wp-admin/css/forms.css | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/css/forms.css b/src/wp-admin/css/forms.css index 6b07e51500..3c45f2b935 100644 --- a/src/wp-admin/css/forms.css +++ b/src/wp-admin/css/forms.css @@ -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%; }