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)
This commit is contained in:
Scott Feeney 2013-07-16 17:40:01 -04:00
parent 7a5853d41a
commit 1484bdf0ad
1 changed files with 7 additions and 1 deletions

View File

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