Merge pull request #914 from jitsi/fix_toolbar_ringoverlay
fix(toolbar): Issue with toolbar is positioned under the ring overlay
This commit is contained in:
commit
4db8faa526
|
@ -169,6 +169,7 @@ form {
|
||||||
}
|
}
|
||||||
|
|
||||||
.tipsy {
|
.tipsy {
|
||||||
|
z-index: $tooltipsZ;
|
||||||
&-inner {
|
&-inner {
|
||||||
background-color: $tooltipBg;
|
background-color: $tooltipBg;
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,6 +60,7 @@ $defaultWatermarkLink: '../images/watermark.png';
|
||||||
/**
|
/**
|
||||||
* Z-indexes. TODO: Replace this by a function.
|
* Z-indexes. TODO: Replace this by a function.
|
||||||
*/
|
*/
|
||||||
|
$tooltipsZ: 901;
|
||||||
$toolbarZ: 900;
|
$toolbarZ: 900;
|
||||||
$overlayZ: 800;
|
$overlayZ: 800;
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,3 @@
|
||||||
.video-wrapper {
|
|
||||||
position: relative;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#videospace {
|
#videospace {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!--#include virtual="plugin.welcomepage.footer.html" -->
|
<!--#include virtual="plugin.welcomepage.footer.html" -->
|
||||||
</div>
|
</div>
|
||||||
<div id="videoconference_page" class="video-wrapper">
|
<div id="videoconference_page">
|
||||||
<div id="mainToolbarContainer">
|
<div id="mainToolbarContainer">
|
||||||
<div id="notice" class="notice" style="display: none">
|
<div id="notice" class="notice" style="display: none">
|
||||||
<span id="noticeText" class="noticeText"></span>
|
<span id="noticeText" class="noticeText"></span>
|
||||||
|
|
Loading…
Reference in New Issue