How can i change the bordercolor of the searchfield?
How can i change the bordercolor of the searchfield?
JanR
Posts: 2Questions: 1Answers: 0
When you click on/select the search field, the border color is blue. Can this be changed by ccs? I thought it could be done by changing ".dataTables_wrapper .dataTables_filter input {}" e.g. dataTables_wrapper .dataTables_filter input {border: #888 thin; } ... but that doesn't work.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
You need to use the
:focus
pseudo class along with theoutline
CSS style:Allan
Thanks. Works perfect.