summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Baker <dbkr@matrix.org>2014-09-19 17:40:00 +0100
committerDavid Baker <dbkr@matrix.org>2014-09-19 17:40:00 +0100
commit99b0c9900ece9a67c2b244accddafc437fd11097 (patch)
tree75d755805a69aec6db008261af8ec91137654e1d
parentJoin rooms if we're not already in them when accepting a call coming from tha... (diff)
downloadsynapse-99b0c9900ece9a67c2b244accddafc437fd11097.tar.xz
Move video background element up as it was causing the page to scroll.
-rwxr-xr-xwebclient/app.css4
1 files changed, 3 insertions, 1 deletions
diff --git a/webclient/app.css b/webclient/app.css
index 8122ac53be..bdf475d635 100755
--- a/webclient/app.css
+++ b/webclient/app.css
@@ -47,6 +47,7 @@ textarea, input {
 #header
 {
     position: absolute;
+    z-index: 2;
     top: 0px;
     width: 100%;
     background-color: #333;
@@ -103,7 +104,7 @@ textarea, input {
     position: absolute;
     height: 100%;
     width: 100%;
-    top: 32px;
+    top: 0px;
     left: 0px;
     z-index: 1;
     background-color: rgba(0,0,0,0.0);
@@ -118,6 +119,7 @@ textarea, input {
 
 #videoContainer {
     position: relative;
+    top: 32px;
     max-width: 1280px;
     margin: auto;
 }