Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Twitter Bootstrap, dropdown border

I can see this in Chrome at http://twitter.github.com/bootstrap/javascript.html#dropdowns. Basically, if you click on dropdown link twice (to open and then close the submenu), there's a yellowish border around the menu item which looks strange. I can't find in CSS where it is set, so the question is how can I remove it?

like image 913
Vitaly Avatar asked Jan 09 '13 08:01

Vitaly


1 Answers

It's an outline that your browser inserts by default.

Try to insert in your css

a.dropdown-toggle { outline: none}
like image 105
Luca Rainone Avatar answered Nov 07 '22 10:11

Luca Rainone