Skip to content

Commit

Permalink
Hide the textarea resize handle
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Aug 7, 2018
1 parent d852721 commit 2600372
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
8 changes: 6 additions & 2 deletions css/converse.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions sass/_chatbox.scss
Expand Up @@ -438,6 +438,12 @@

/* ******************* Overlay and embedded styles *************************** */

#conversejs.converse-embedded {
.chat-textarea {
max-height: $fullpage-max-chat-textarea-height;
}
}

#conversejs.converse-embedded,
#conversejs.converse-overlayed {
.chat-head {
Expand Down
1 change: 1 addition & 0 deletions sass/_chatrooms.scss
Expand Up @@ -271,6 +271,7 @@
}
.chat-textarea {
border-bottom-right-radius: 0;
resize: none;
&.correcting {
background-color: lighten($chatroom-head-color, 30%);
}
Expand Down
2 changes: 1 addition & 1 deletion sass/_variables.scss
Expand Up @@ -146,7 +146,7 @@ $fullpage-chat-head-height: 62px !default;
$fullpage-chat-height: 100vh;
$fullpage-chat-width: 100%;
$fullpage-emoji-picker-height: 150px !default;
$fullpage-max-chat-textarea-height: 400px !default;
$fullpage-max-chat-textarea-height: 15em!default;

$overlayed-chat-head-height: 55px !default;
$overlayed-chat-height: 450px !default;
Expand Down

0 comments on commit 2600372

Please sign in to comment.