diff options
author | David Baker <dbkr@matrix.org> | 2014-11-07 17:56:28 +0000 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-11-07 17:56:28 +0000 |
commit | 7d15452c3037b887a85d0b65916de90b2d2c4573 (patch) | |
tree | 244d8c28c07ea4043e6e4dd1478d8b25722a663c /syweb/webclient/app.css | |
parent | Detect call type by examining the SDP always rather than just in Firefox as i... (diff) | |
download | synapse-7d15452c3037b887a85d0b65916de90b2d2c4573.tar.xz |
Various fixes to try & make openwebrtc safari extension work (still doesn't work).
Diffstat (limited to 'syweb/webclient/app.css')
-rwxr-xr-x | syweb/webclient/app.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/syweb/webclient/app.css b/syweb/webclient/app.css index 5ab8e2b8fd..be2a73872d 100755 --- a/syweb/webclient/app.css +++ b/syweb/webclient/app.css @@ -136,17 +136,17 @@ textarea, input { transition: left linear 500ms, top linear 500ms, width linear 500ms, height linear 500ms; } -#localVideo.mini { +.mini #localVideo { top: 0px; left: 130px; } -#localVideo.large { +.large #localVideo { top: 70px; left: 20px; } -#localVideo.ended { +.ended #localVideo { -webkit-filter: grayscale(1); filter: grayscale(1); } @@ -157,19 +157,19 @@ textarea, input { transition: left linear 500ms, top linear 500ms, width linear 500ms, height linear 500ms; } -#remoteVideo.mini { +.mini #remoteVideo { left: 260px; top: 0px; width: 128px; } -#remoteVideo.large { +.large #remoteVideo { left: 0px; top: 50px; width: 100%; } -#remoteVideo.ended { +.ended #remoteVideo { -webkit-filter: grayscale(1); filter: grayscale(1); } |