Fix background when in nightMode 16/10516/1
authorRusty Lynch <rusty.lynch@intel.com>
Thu, 3 Oct 2013 00:31:42 +0000 (17:31 -0700)
committerRusty Lynch <rusty.lynch@intel.com>
Thu, 3 Oct 2013 00:31:42 +0000 (17:31 -0700)
The css entry was calling for a background image that does not exist
so instead just show a black background.

Change-Id: Ie32eb6b6b9d99adef5df54e35e7315e2727b81e9

css/main.css

index 45852ea..6f9a4dc 100644 (file)
@@ -195,7 +195,7 @@ html
 
 html.night
 {
-       background:url(../images/bg1Night.png) no-repeat center center;
+       background-color: black;
        min-height: 100%;
        background-size:cover;
 }