mirror of https://github.com/zulip/zulip.git
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:
parent
7a5853d41a
commit
1484bdf0ad
|
@ -840,6 +840,9 @@ table.focused_table {
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
padding-left: 35px;
|
padding-left: 35px;
|
||||||
}
|
}
|
||||||
|
.message_edit_content {
|
||||||
|
line-height: 18px;
|
||||||
|
}
|
||||||
@media (max-width: 480px) {
|
@media (max-width: 480px) {
|
||||||
.message_content {
|
.message_content {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
|
@ -2057,9 +2060,12 @@ li.expanded_subject .subject_box {
|
||||||
margin-left: 50px;
|
margin-left: 50px;
|
||||||
}
|
}
|
||||||
#message_edit_form textarea {
|
#message_edit_form textarea {
|
||||||
width: 90%;
|
width: 100%;
|
||||||
min-width: 206px;
|
min-width: 206px;
|
||||||
}
|
}
|
||||||
|
#message_edit_form .control-group {
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.message_edit_notice {
|
.message_edit_notice {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
|
|
Loading…
Reference in New Issue