From 16624819560d45d4a43afef789f95e814f4f063c Mon Sep 17 00:00:00 2001 From: luciash Date: Mon, 4 Apr 2016 17:24:31 +0200 Subject: [PATCH] On small devices we do not want the panel to be less than 200px anyway, so remove that calculation. Hopefully fixes https://github.com/jitsi/jitsi-meet/issues/335#issuecomment-181144547 --- css/videolayout_default.css | 2 -- modules/UI/util/UIUtil.js | 3 --- 2 files changed, 5 deletions(-) diff --git a/css/videolayout_default.css b/css/videolayout_default.css index 0f09d60ad..9a7172b8f 100644 --- a/css/videolayout_default.css +++ b/css/videolayout_default.css @@ -3,9 +3,7 @@ position: absolute; top: 0px; left: 0px; - right: 0 !important; overflow-x: hidden; - width: 100% !important; } #remoteVideos { diff --git a/modules/UI/util/UIUtil.js b/modules/UI/util/UIUtil.js index ab284805f..69b78bc7d 100644 --- a/modules/UI/util/UIUtil.js +++ b/modules/UI/util/UIUtil.js @@ -13,9 +13,6 @@ var availableWidth = window.innerWidth; var panelWidth = 200; - if (availableWidth * 0.2 < 200) { - panelWidth = availableWidth * 0.2; - } return [panelWidth, availableHeight]; },