mirror of https://github.com/zulip/zulip.git
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:
parent
a26c0b6584
commit
a144f56a00
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue