From c0394e77649160410c699644704e8eccdcfc5053 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Sat, 2 Jul 2016 15:43:08 -0700 Subject: [PATCH] css: fix "Download" link being clickable when hidden (#7) --- app/css/hyperterm.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/css/hyperterm.css b/app/css/hyperterm.css index 39abf185..94170d46 100644 --- a/app/css/hyperterm.css +++ b/app/css/hyperterm.css @@ -74,6 +74,7 @@ header { right: 20px; opacity: 0; transition: opacity 150ms ease-in; + pointer-events: none; } .update-indicator a { @@ -82,4 +83,5 @@ header { .update-indicator.showing { opacity: 1; + pointer-events: inherit; }