From b2363bb6dd4bfc36025b9745a0a97e30354318cb Mon Sep 17 00:00:00 2001 From: Preston Date: Tue, 1 Dec 2020 11:02:52 -0500 Subject: [PATCH] Allow hidden toast messages to be clicked through --- src/renderer/components/ft-toast/ft-toast.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/renderer/components/ft-toast/ft-toast.css b/src/renderer/components/ft-toast/ft-toast.css index fa88336f..686b9c32 100644 --- a/src/renderer/components/ft-toast/ft-toast.css +++ b/src/renderer/components/ft-toast/ft-toast.css @@ -7,6 +7,7 @@ display: flex; flex-direction: column; align-items: center; + pointer-events: none; } .toast { @@ -26,6 +27,7 @@ } .open { + pointer-events: auto; visibility: visible; opacity: 1; transition: visibility 0s linear 0s, opacity 300ms; @@ -33,6 +35,7 @@ .closed { visibility: hidden; + pointer-events: none; opacity: 0; transition: visibility 0s linear 300ms, opacity 300ms; }