How can i remove the yellow border from dropdowns on google chrome?
The textboxes are ok, they show that great blue outline, but the dropdowns don't.
Thanks in advance!
You can remove the outline by making it transparent like so:
select:focus {
outline-color: transparent;
}
You should use this instead:
.bootstrap-select .btn:focus {
outline-color: transparent !important;
}
Because it converts the select to a button, with a list element. The button then gets a class set to it - the above one.
// mcardle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With