From b1208f380a6ea005e7936b50f67d1e3085d77c1d Mon Sep 17 00:00:00 2001 From: Frederico Carvalho Date: Wed, 18 Sep 2013 14:31:52 +1000 Subject: [PATCH] fixed issue where caret wouldn't inherit "active" li style on nav-pills, which caused the caret to stay blue --- less/navs.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/less/navs.less b/less/navs.less index e60f9f8f0e..4528e051fe 100644 --- a/less/navs.less +++ b/less/navs.less @@ -133,6 +133,11 @@ &:focus { color: @nav-pills-active-link-hover-color; background-color: @nav-pills-active-link-hover-bg; + + .caret { + border-top-color: @nav-pills-active-link-hover-color; + border-bottom-color: @nav-pills-active-link-hover-color; + } } } }