CSS fix: textarea pushed off if the heading had description text

This commit is contained in:
JC Brand 2020-03-11 11:41:46 +01:00
parent 89795504a2
commit 9b9f9a946d
2 changed files with 2 additions and 3 deletions

View File

@ -612,7 +612,8 @@
overflow: hidden; overflow: hidden;
} }
.chat-body { .chat-body {
height: calc(100% - var(--fullpage-chat-head-height)); height: inherit;
overflow: hidden;
background-color: var(--chat-head-color); background-color: var(--chat-head-color);
} }
.chat-title { .chat-title {

View File

@ -162,7 +162,6 @@ $mobile_portrait_length: 480px !default;
--avatar-border: 1px solid lightgrey; --avatar-border: 1px solid lightgrey;
--avatar-background-color: white; --avatar-background-color: white;
--fullpage-chat-head-height: 62px;
--fullpage-chat-height: calc(var(--vh, 1vh) * 100); --fullpage-chat-height: calc(var(--vh, 1vh) * 100);
--fullpage-chat-width: 100%; --fullpage-chat-width: 100%;
--fullpage-emoji-picker-height: 300px; --fullpage-emoji-picker-height: 300px;
@ -236,7 +235,6 @@ $mobile_portrait_length: 480px !default;
--message-input-border-top: 1px solid #CCC; --message-input-border-top: 1px solid #CCC;
--message-input-color: #CCC; --message-input-color: #CCC;
--fullpage-chat-head-height: 62px;
--fullpage-chatbox-button-size: 24px; --fullpage-chatbox-button-size: 24px;
--list-toggle-font-weight: bold; --list-toggle-font-weight: bold;