From 6bb7ff67906dd05dd41ec40bc26482822411195f Mon Sep 17 00:00:00 2001 From: Evan Theurer Date: Tue, 6 May 2014 16:51:51 +0200 Subject: [PATCH] Rearrange screenshare. --- src/styles/components/_screenshare.scss | 60 ++++++++++++++----------- 1 file changed, 33 insertions(+), 27 deletions(-) diff --git a/src/styles/components/_screenshare.scss b/src/styles/components/_screenshare.scss index e01ca121..e80bf237 100644 --- a/src/styles/components/_screenshare.scss +++ b/src/styles/components/_screenshare.scss @@ -19,39 +19,45 @@ * */ -.mainScreenshare #screenshare { - display: block; -} .screenshare { - position:absolute; - left:0px; - right:0px; - top:0px; - bottom:0px; + bottom: 0; + left: 0; + position: absolute; + right: 0; + top: 0; } -.screensharepane { - position:absolute; - left:0px; - right:0px; - bottom:0px; - top:0px; - overflow:auto; - background:black; + +.mainScreenshare #screenshare { + display: block; } -.screensharepane .remotescreen { - position:relative; + +.screensharepane { + background: black; + bottom: 0; + left: 0; + overflow: auto; + position: absolute; + right: 0; + top: 0; } -.screensharepane video { - width: 100%; - max-height: 99%; + +.screensharepane { + .remotescreen { + position: relative; + } + video { + max-height: 99%; + width: 100%; + } } + .remotesize .screensharepane video { - width: auto; - max-height: none; + max-height: none; + width: auto; } .screenshare .overlaybar { - bottom: 0px; - left: 0px; - right: 0px; -} \ No newline at end of file + bottom: 0; + left: 0; + right: 0; +}