From 64936e57f7c58f46ceecffa7c4468f9543cc7c90 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 1 Sep 2013 23:38:11 +0200 Subject: [PATCH] (less) fixes #9909: Add component active color variable to complement component active bg variable --- variables.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/variables.less b/variables.less index f7286c69ab6e..cd46c9ef87c3 100644 --- a/variables.less +++ b/variables.less @@ -91,6 +91,7 @@ @border-radius-large: 6px; @border-radius-small: 3px; +@component-active-color: #fff; @component-active-bg: @brand-primary; @caret-width-base: 4px; @@ -178,7 +179,7 @@ @dropdown-link-hover-color: darken(@gray-dark, 5%); @dropdown-link-hover-bg: #f5f5f5; -@dropdown-link-active-color: #fff; +@dropdown-link-active-color: @component-active-color; @dropdown-link-active-bg: @component-active-bg; @dropdown-link-disabled-color: @gray-light;