From 56b8550321423279197b9e6251073e4b52afb56b Mon Sep 17 00:00:00 2001 From: Oren Me Date: Sun, 10 Dec 2017 10:14:07 +0200 Subject: [PATCH] fix: adjust player positioning in host DOM using position absolute causes player to detach from parent DOM element and may screw with host site positioning. --- src/assets/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/assets/style.css b/src/assets/style.css index 3dd531275..25de6ea22 100644 --- a/src/assets/style.css +++ b/src/assets/style.css @@ -1,7 +1,8 @@ .kaltura-player-container { width: 100%; height: 100%; - position: absolute; + position: relative; + background-color: #000; outline: none; -webkit-touch-callout: none; -webkit-user-select: none;