From 9013c0db3901c493b12e0b3d7d88bac8bb2a148e Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Thu, 29 Nov 2018 10:40:10 -0800 Subject: [PATCH] fix(tile-view): popovers should display over icons in other thumbnails --- css/filmstrip/_tile_view_overrides.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/css/filmstrip/_tile_view_overrides.scss b/css/filmstrip/_tile_view_overrides.scss index c79273a9e..d4aac7989 100644 --- a/css/filmstrip/_tile_view_overrides.scss +++ b/css/filmstrip/_tile_view_overrides.scss @@ -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; + } }