Fix for search input when focused, no longer turns blue.

This commit is contained in:
Steven Verbeek 2012-03-16 22:40:36 -03:00
parent 945702a3ea
commit f59ec80412

View file

@ -48,3 +48,13 @@
}
}
/** Fix for Search Dropdown Border **/
.chzn-container {
.chzn-search {
input:focus {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
}
}