From a6d77425bc2cd92af676583c2ff662e0b990856f Mon Sep 17 00:00:00 2001 From: rolux Date: Sun, 10 Feb 2013 21:00:36 +0530 Subject: [PATCH] fix Ox.Fullscreen --- source/Ox.UI/css/theme.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/source/Ox.UI/css/theme.css b/source/Ox.UI/css/theme.css index 1f1a08a4..6a6a1a2b 100644 --- a/source/Ox.UI/css/theme.css +++ b/source/Ox.UI/css/theme.css @@ -1,6 +1,12 @@ -body.$themeClass, -body.$themeClass:fullscreen, -body.$themeClass:-moz-full-screen, +body.$themeClass { + background-color: $bodyBackground; +} +body.$themeClass:fullscreen { + background-color: $bodyBackground; +} +body.$themeClass:-moz-full-screen { + background-color: $bodyBackground; +} body.$themeClass:-webkit-full-screen { background-color: $bodyBackground; }