]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Fix Orbit navigation background color setting. 3842/head
authorLou Huang <lou@codeforamerica.org>
Mon, 9 Dec 2013 15:23:06 +0000 (07:23 -0800)
committerLou Huang <lou@codeforamerica.org>
Mon, 9 Dec 2013 15:23:06 +0000 (07:23 -0800)
The ```$orbit-nav-bg``` setting doesn't do anything because the relevant ```background-color``` CSS declaration was missing. This puts it back in.

scss/foundation/components/_orbit.scss

index 355345c1d1c6b77363fbdc92297f21e2911b02a1..d58cd513aaeb7ea71048a0ccbf51ff978e067939 100644 (file)
@@ -244,6 +244,7 @@ $preloader-class: "preloader" !default;
         height: 60px;
         line-height: 50px;
         color: white;
+        background-color: $orbit-nav-bg;
         text-indent: -9999px !important;
         z-index: 10;
 
@@ -350,4 +351,4 @@ $preloader-class: "preloader" !default;
     }
 
   }
-}
\ No newline at end of file
+}