From 6c1ce6402908918c80f67cca547812a3ad6cce14 Mon Sep 17 00:00:00 2001
From: Kyle Doherty <kdoh@users.noreply.github.com>
Date: Wed, 6 Jun 2018 17:26:32 -0700
Subject: [PATCH] force z-index on toasts (#7818)

---
 frontend/src/metabase/containers/UndoListing.jsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/frontend/src/metabase/containers/UndoListing.jsx b/frontend/src/metabase/containers/UndoListing.jsx
index 931c1fc7f14..a43b7719b04 100644
--- a/frontend/src/metabase/containers/UndoListing.jsx
+++ b/frontend/src/metabase/containers/UndoListing.jsx
@@ -26,7 +26,7 @@ const mapDispatchToProps = {
 };
 
 const UndoList = styled.ul`
-  ${space}, z-index: 99;
+  ${space};
 `;
 
 @connect(mapStateToProps, mapDispatchToProps)
@@ -41,7 +41,7 @@ export default class UndoListing extends Component {
   render() {
     const { undos, performUndo, dismissUndo } = this.props;
     return (
-      <UndoList m={2} className="fixed left bottom">
+      <UndoList m={2} className="fixed left bottom zF">
         {undos.map(undo => (
           <Card key={undo._domId} dark p={2}>
             <Flex align="center">
-- 
GitLab