Hide resize handle for both private and group chats

Fixes #1154
This commit is contained in:
JC Brand 2018-08-10 11:09:18 +02:00
parent c652568a03
commit 4c86cca2cb
2 changed files with 3 additions and 1 deletions

View File

@ -7487,7 +7487,8 @@ body.reset {
width: 100%;
border: none;
min-height: 60px;
margin-bottom: -4px; }
margin-bottom: -4px;
resize: none; }
#conversejs .chatbox .sendXMPPMessage .chat-textarea.spoiler {
height: 42px; }
#conversejs .chatbox .sendXMPPMessage .chat-textarea.correcting {

View File

@ -248,6 +248,7 @@
border: none;
min-height: $chat-textarea-height;
margin-bottom: -4px; // Not clear why this is necessar :(
resize: none;
&.spoiler {
height: 42px;
}