Set textarea color

This commit is contained in:
JC Brand 2018-08-15 18:56:25 +02:00
parent f2b017ec89
commit 3db6637706
3 changed files with 3 additions and 0 deletions

View File

@ -7481,6 +7481,7 @@ body.reset {
#conversejs .chatbox .sendXMPPMessage .spoiler-hint {
width: 100%; }
#conversejs .chatbox .sendXMPPMessage .chat-textarea {
color: #666;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 4px;

View File

@ -246,6 +246,7 @@
}
.chat-textarea {
color: $chat-textarea-color;
border-top-left-radius: 0;
border-top-right-radius: 0;
@include border-bottom-radius($chatbox-border-radius);

View File

@ -54,6 +54,7 @@ $border-color: #CCC !default;
$icon-color: $blue !default;
$save-button-color: $green !default;
$chat-textarea-color: #666 !default;
$chat-textarea-height: 60px !default;
$send-button-height: 27px !default;