fix(tile-view): popovers should display over icons in other thumbnails

This commit is contained in:
Leonard Kim 2018-11-29 10:40:10 -08:00
parent 99542e29e6
commit 9013c0db39
1 changed files with 11 additions and 0 deletions

View File

@ -44,4 +44,15 @@
#largeVideoContainer {
background-color: $defaultBackground !important;
}
/**
* Thumbnail popover menus can overlap other thumbnails. Setting an auto
* z-index will allow AtlasKit InlineDialog's large z-index to be
* respected and thereby display over elements in other thumbnails,
* specifically the various status icons.
*/
.remotevideomenu,
.videocontainer__toptoolbar {
z-index: auto;
}
}