From 6bb47966bfdf5bf38c687da56bf60d0e7c32cefb Mon Sep 17 00:00:00 2001 From: WH Date: Mon, 30 Nov 2015 02:16:13 +0000 Subject: [PATCH 1/2] Fix background color issue after fullscreen Currently the background color is not working after entering fullscreen. This code snip should fix the issue. I only tested it for my Chrome(46.0.2490.86). --- resources/default.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/resources/default.css b/resources/default.css index 8058e38..a25ec49 100644 --- a/resources/default.css +++ b/resources/default.css @@ -5,6 +5,16 @@ body { font-size: 100%; } +*:fullscreen { + background-color: #f7f7f7; +} +*:-webkit-full-screen { + background-color: #f7f7f7; +} +*:-moz-full-screen { + background-color: #f7f7f7; +} + .slide { position: absolute; top: 0; bottom: 0; From 52148943be85724dfca999a0a6ee65a5d7eb3075 Mon Sep 17 00:00:00 2001 From: WH Date: Mon, 30 Nov 2015 02:53:53 +0000 Subject: [PATCH 2/2] Move from body to .slide --- resources/default.css | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/resources/default.css b/resources/default.css index a25ec49..04f93e0 100644 --- a/resources/default.css +++ b/resources/default.css @@ -1,24 +1,14 @@ body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #222; - background-color: #f7f7f7; font-size: 100%; } -*:fullscreen { - background-color: #f7f7f7; -} -*:-webkit-full-screen { - background-color: #f7f7f7; -} -*:-moz-full-screen { - background-color: #f7f7f7; -} - .slide { position: absolute; top: 0; bottom: 0; left: 0; right: 0; + background-color: #f7f7f7; } .slide-content {