- Increase z-index for chatbox flyouts so that they appear above the controlbox
- Also fix a margin offset bug for the controlbox (in smaller viewports)
This commit is contained in:
JC Brand 2019-10-29 11:34:22 +01:00
parent 9934fa7191
commit acf14cf8cb
3 changed files with 5 additions and 4 deletions

View File

@ -6,6 +6,7 @@
- #1089: When filtering the roster for `online` users, show all non-offline users.
- #1691: Fix `collection.chatbox is undefined` errors
- #1733: New message notifications for a minimized chat stack on top of each other
- #1757: Chats are hidden behind the controlbox on mobile
- Prevent editing of sent file uploads.
- Initial support for sending custom emojis. Currently only between Converse
instances. Still working out a wire protocol for compatibility with other clients.

View File

@ -127,7 +127,7 @@
justify-content: space-between;
background-color: var(--chat-head-color);
box-shadow: 1px 3px 5px 3px rgba(0, 0, 0, 0.4);
z-index: 1;
z-index: 2;
overflow-y: hidden;
width: 100%;

View File

@ -291,9 +291,9 @@
}
.controlbox-panes {
background-color: var(--controlbox-pane-background-color);
height: 100%;
overflow-y: auto;
background-color: var(--controlbox-pane-background-color);
}
.controlbox-subtitle {
@ -571,8 +571,7 @@
.chatbox {
.box-flyout {
margin-left: 15px; // Counteracts Bootstrap margins, but
// not clear why needed...
margin-left: 15px; // Counteracts Bootstrap margins, but not clear why needed...
left: 0;
bottom: 0;
border-radius: 0;
@ -586,6 +585,7 @@
.box-flyout {
width: 100vw !important;
height: 100vh !important;
margin-right: -15px;
}
.sidebar {
display: block;