Merge pull request #3642 from virtuacoplenny/lenny/tile-view-popover-z

fix(tile-view): popovers should display over icons in other thumbnails
This commit is contained in:
virtuacoplenny 2018-11-30 08:08:21 -08:00 committed by GitHub
commit e207ad609a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}
}