From 4f2f2bf79f49aed80e1c3c2b7f8e3bb58a18b664 Mon Sep 17 00:00:00 2001 From: Matthew Petroff Date: Sun, 9 Apr 2017 12:36:21 -0400 Subject: [PATCH] Make full screen more tolerant of container element CSS positioning. --- src/css/pannellum.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/css/pannellum.css b/src/css/pannellum.css index e0b2440..77549bf 100644 --- a/src/css/pannellum.css +++ b/src/css/pannellum.css @@ -40,18 +40,22 @@ .pnlm-container:-moz-full-screen { height: 100% !important; width: 100% !important; + position: static !important; } .pnlm-container:-webkit-full-screen { height: 100% !important; width: 100% !important; + position: static !important; } .pnlm-container:-ms-fullscreen { height: 100% !important; width: 100% !important; + position: static !important; } .pnlm-container:fullscreen { height: 100% !important; width: 100% !important; + position: static !important; } .pnlm-render-container {