Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove the yellow border from dropdowns on google chrome?

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!

like image 933
Leandro Faria Avatar asked Feb 21 '23 18:02

Leandro Faria


2 Answers

You can remove the outline by making it transparent like so:

select:focus {
   outline-color: transparent;
}
like image 136
Andres Ilich Avatar answered Feb 23 '23 07:02

Andres Ilich


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

like image 35
Ulrik McArdle Avatar answered Feb 23 '23 06:02

Ulrik McArdle