From 1484bdf0adb7676c592ef6fe56ef44870e565380 Mon Sep 17 00:00:00 2001 From: Scott Feeney Date: Tue, 16 Jul 2013 17:40:01 -0400 Subject: [PATCH] Tweak edit box CSS to fit better * line-height of 18px, same as messages you're not editing * width of 100%, so word wrapping is more similar * smaller margins (imported from commit 81fc4628e0485f66615df90504462465e5805e91) --- zephyr/static/styles/zephyr.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/zephyr/static/styles/zephyr.css b/zephyr/static/styles/zephyr.css index e384783859..1a28df8530 100644 --- a/zephyr/static/styles/zephyr.css +++ b/zephyr/static/styles/zephyr.css @@ -840,6 +840,9 @@ table.focused_table { line-height: 18px; padding-left: 35px; } +.message_edit_content { + line-height: 18px; +} @media (max-width: 480px) { .message_content { margin-right: 5px; @@ -2057,9 +2060,12 @@ li.expanded_subject .subject_box { margin-left: 50px; } #message_edit_form textarea { - width: 90%; + width: 100%; min-width: 206px; } +#message_edit_form .control-group { + margin-bottom: 5px; +} .message_edit_notice { font-size: 11px;