From 88f6f985e2d7fafec4779ce660d32cba1226d247 Mon Sep 17 00:00:00 2001 From: Baltazar Gomez Date: Tue, 8 Aug 2017 19:35:47 -0600 Subject: [PATCH 1/2] fix #419 --- ui/scss/component/_video.scss | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ui/scss/component/_video.scss b/ui/scss/component/_video.scss index aff720a7b..2d0b3820e 100644 --- a/ui/scss/component/_video.scss +++ b/ui/scss/component/_video.scss @@ -20,9 +20,7 @@ video { position: relative; video { height: 100%; - position: absolute; - left: 0; - top: 0; + width: 100%; } &.video--hidden { height: $height-video-embedded; From 4f2039368be244fc2015a1b3bdc47a93cd0d90ce Mon Sep 17 00:00:00 2001 From: btzr-io Date: Wed, 9 Aug 2017 09:28:54 -0600 Subject: [PATCH 2/2] prevent regression #295 --- ui/scss/component/_video.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/scss/component/_video.scss b/ui/scss/component/_video.scss index 2d0b3820e..5515cbf8a 100644 --- a/ui/scss/component/_video.scss +++ b/ui/scss/component/_video.scss @@ -21,6 +21,9 @@ video { video { height: 100%; width: 100%; + position: absolute; + top: 0; + left: 0; } &.video--hidden { height: $height-video-embedded;