Browse Source

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

master
Leonard Kim 7 years ago
parent
commit
9013c0db39
1 changed files with 11 additions and 0 deletions
  1. 11
    0
      css/filmstrip/_tile_view_overrides.scss

+ 11
- 0
css/filmstrip/_tile_view_overrides.scss View File

44
     #largeVideoContainer {
44
     #largeVideoContainer {
45
         background-color: $defaultBackground !important;
45
         background-color: $defaultBackground !important;
46
     }
46
     }
47
+
48
+    /**
49
+     * Thumbnail popover menus can overlap other thumbnails. Setting an auto
50
+     * z-index will allow AtlasKit InlineDialog's large z-index to be
51
+     * respected and thereby display over elements in other thumbnails,
52
+     * specifically the various status icons.
53
+     */
54
+    .remotevideomenu,
55
+    .videocontainer__toptoolbar {
56
+        z-index: auto;
57
+    }
47
 }
58
 }

Loading…
Cancel
Save