My buttons all have a highlight around them after I click them. This is in Chrome.
I find a solution. when we focus, bootstrap use box-shadow, so we just disable it(not enough reputation, cannot upload image :( ).
I add
.btn:focus{ box-shadow:none !important; }
it works.