diff options
| author | Frederico Carvalho <[email protected]> | 2013-09-18 14:31:52 +1000 |
|---|---|---|
| committer | Frederico Carvalho <[email protected]> | 2013-09-18 14:31:52 +1000 |
| commit | b1208f380a6ea005e7936b50f67d1e3085d77c1d (patch) | |
| tree | 94ec977c023bdfde3442045cc312a83e62178be0 | |
| parent | 4e962c572e57ff0ee30e490f3f7eb819415c952f (diff) | |
| download | bootstrap-b1208f380a6ea005e7936b50f67d1e3085d77c1d.tar.xz bootstrap-b1208f380a6ea005e7936b50f67d1e3085d77c1d.zip | |
fixed issue where caret wouldn't inherit "active" li style on nav-pills, which caused the caret to stay blue
| -rw-r--r-- | less/navs.less | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/less/navs.less b/less/navs.less index e60f9f8f0..4528e051f 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; + } } } } |
