diff options
-rw-r--r-- | remoting/webapp/html/client_plugin.html | 4 | ||||
-rw-r--r-- | remoting/webapp/main.css | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/remoting/webapp/html/client_plugin.html b/remoting/webapp/html/client_plugin.html index 628c6fa..af375ae 100644 --- a/remoting/webapp/html/client_plugin.html +++ b/remoting/webapp/html/client_plugin.html @@ -4,10 +4,8 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> <div class="vertically-centered"> - <div class="horizontally-centered"> <div id="video-container"> <video id="mediasource-video-output"></video> - <div id="client-plugin-container"></div> + <div id="client-plugin-container" class="horizontally-centered"></div> </div> - </div> </div> diff --git a/remoting/webapp/main.css b/remoting/webapp/main.css index 7b50dbb..2eb0948 100644 --- a/remoting/webapp/main.css +++ b/remoting/webapp/main.css @@ -743,6 +743,7 @@ html.apps-v2.scrollable { /* video-container needs relative position so that mediasource-video-output can * be positioned relative to the parent with position:absolute. */ #video-container { + width: 100%; position: relative; } |