浏览代码

Hide resize handle for both private and group chats

Fixes #1154
JC Brand 7 年之前
父节点
当前提交
4c86cca2cb
共有 2 个文件被更改,包括 3 次插入1 次删除
  1. 2 1
      css/converse.css
  2. 1 0
      sass/_chatbox.scss

+ 2 - 1
css/converse.css

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

+ 1 - 0
sass/_chatbox.scss

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