Commit 79c9d359 authored by JC Brand's avatar JC Brand

Specifically set `.chat-body` height

Otherwise the private chatbox header doesn't show in Firefox
parent dee49e38
......@@ -9554,6 +9554,9 @@ body.reset {
#conversejs.converse-overlayed .chatbox .box-flyout {
min-width: 250px !important;
width: 250px; }
#conversejs.converse-embedded .chatbox .box-flyout .chat-body,
#conversejs.converse-overlayed .chatbox .box-flyout .chat-body {
height: calc(100% - 55px); }
#conversejs.converse-overlayed .flyout {
bottom: 1em; }
......
......@@ -495,12 +495,16 @@
}
.chatbox {
min-width: $overlayed-chat-width!important;
min-width: $overlayed-chat-width !important;
width: $overlayed-chat-width;
.box-flyout {
min-width: $overlayed-chat-width!important;
min-width: $overlayed-chat-width !important;
width: $overlayed-chat-width;
.chat-body {
height: calc(100% - #{$overlayed-chat-head-height});
}
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment