Commit 11ffab84 authored by JC Brand's avatar JC Brand

Fixes #1757

- 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)
parent 3a9ff038
......@@ -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%;
......
......@@ -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;
......
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