Chat box textarea height fix.

This commit is contained in:
JC Brand 2015-03-04 23:24:58 +01:00
parent 6c10d2b7b2
commit dac013b2d4
3 changed files with 4 additions and 4 deletions

View File

@ -1073,12 +1073,12 @@
padding: 0;
position: relative;
width: 200px;
height: 84px; }
height: 82px; }
#conversejs form.sendXMPPMessage .chat-textarea {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border: 0;
height: 64px;
height: 62px;
padding: 0.5em;
width: 100%;
resize: none; }

View File

@ -419,7 +419,7 @@
background-color: #ffffff;
line-height: 1.3em;
height: 206px;
height: calc(100% - #{$toolbar-height + $chat-textarea-height});
height: calc(100% - #{$toolbar-height + $chat-textarea-height + 2});
}
.chat-info {

View File

@ -16,7 +16,7 @@
$chat-head-inverse-text-color: white;
$chat-head-height: 44px;
$save-button-color: #436F64;
$chat-textarea-height: 64px;
$chat-textarea-height: 62px;
$toolbar-height: 20px;
$message-them-color: #4B7003;
$roster-height: 194px;