From 9bf0552ef5f737c1e209e9efd5c2e76b05afbdbe Mon Sep 17 00:00:00 2001 From: Geoff Kimball Date: Fri, 4 Dec 2015 13:53:03 -0800 Subject: [PATCH] On top bar, use color variables instead of hex values, and fix links inside top bar being white, fixes #7399 --- scss/components/_top-bar.scss | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/scss/components/_top-bar.scss b/scss/components/_top-bar.scss index fe841b6d1..650dfd660 100644 --- a/scss/components/_top-bar.scss +++ b/scss/components/_top-bar.scss @@ -12,11 +12,11 @@ $topbar-padding: 0.5rem !default; /// Background color for the top bar. This color also cascades to menus within the top bar. /// @type Color -$topbar-background: #eee !default; +$topbar-background: $light-gray !default; /// Color for links inside a top bar menu. /// @type Color -$topbar-link-color: #fff !default; +$topbar-link-color: $primary-color !default; /// Width of `` elements inside the top bar. /// @type Number @@ -27,13 +27,13 @@ $topbar-input-width: 200px !default; @include clearfix; padding: $topbar-padding; - &, ul { + &, + ul { background-color: $topbar-background; + } - & li > a { - color: $topbar-link-color; - } - + a { + color: $topbar-link-color; } input { -- 2.47.3