From 38a279485b0aea1c23a36a5ea24bd67a01dde323 Mon Sep 17 00:00:00 2001 From: Ginger Wong Date: Sat, 18 Jul 2020 17:18:58 -0700 Subject: [PATCH] disable click events on video container when offilne --- webroot/styles/layout.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webroot/styles/layout.css b/webroot/styles/layout.css index 379c3c46f..b8a5dadb4 100644 --- a/webroot/styles/layout.css +++ b/webroot/styles/layout.css @@ -323,9 +323,11 @@ h2 { #video { transition: opacity .5s; opacity: 0; + pointer-events: none; } .online #video { opacity: 1; + pointer-events: auto; }