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 { @@ -323,9 +323,11 @@ h2 {
#video {
transition: opacity .5s;
opacity: 0;
pointer-events: none;
}
.online #video {
opacity: 1;
pointer-events: auto;
}

Loading…
Cancel
Save