fix(popover): z-index should be greater than toasts

Currently, the JitsiPopover z-index will cause it to display below
any toast notifications so this changes modifies the z-index
values so JitsiPopover is higher than the notification toasts.
This commit is contained in:
Leonard Kim 2017-06-07 17:12:08 -07:00 committed by Дамян Минков
parent f6ccacb7df
commit 9837181d5d
1 changed files with 3 additions and 3 deletions

View File

@ -128,9 +128,9 @@ $toolbarZ: 400;
$tooltipsZ: 401;
$dropdownMaskZ: 900;
$dropdownZ: 901;
$jitsipopoverZ: 1010;
$centeredVideoLabelZ: 1011;
$notificationZ: 1012;
$centeredVideoLabelZ: 1010;
$notificationZ: 1011;
$jitsipopoverZ: 1012;
$popoverZ: 1015;
$overlayZ: 1016;