compose: Remove breaking css property.

When compose box is open we already set
```
    $(".new_message_textarea").css("min-height", "3em");
```
in compose_actions.js.

So, this property actually reduces the min-height slightly which
hides the topic when it is long enough to span in two lines.
This commit is contained in:
Aman Agrawal 2020-10-31 19:28:25 +05:30 committed by Tim Abbott
parent a26c0b6584
commit a144f56a00
1 changed files with 0 additions and 7 deletions

View File

@ -510,13 +510,6 @@ a#undo_markdown_preview {
}
}
@media (max-width: 500px) {
textarea.new_message_textarea {
height: 30px !important;
min-height: 30px !important;
}
}
@media (max-width: 370px) {
#stream_message_recipient_topic.recipient_box {
width: calc(100% - 175px);