Browse Source

disable click events on video container when offilne

pull/80/head
Ginger Wong 6 years ago
parent
commit
38a279485b
  1. 2
      webroot/styles/layout.css

2
webroot/styles/layout.css

@ -323,9 +323,11 @@ h2 {
#video { #video {
transition: opacity .5s; transition: opacity .5s;
opacity: 0; opacity: 0;
pointer-events: none;
} }
.online #video { .online #video {
opacity: 1; opacity: 1;
pointer-events: auto;
} }

Loading…
Cancel
Save