From: Lou Huang Date: Mon, 9 Dec 2013 15:23:06 +0000 (-0800) Subject: Fix Orbit navigation background color setting. X-Git-Tag: 5.0.3~71^2~28^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3842%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix Orbit navigation background color setting. The ```$orbit-nav-bg``` setting doesn't do anything because the relevant ```background-color``` CSS declaration was missing. This puts it back in. --- diff --git a/scss/foundation/components/_orbit.scss b/scss/foundation/components/_orbit.scss index 355345c1d..d58cd513a 100644 --- a/scss/foundation/components/_orbit.scss +++ b/scss/foundation/components/_orbit.scss @@ -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 +}