In Either jQuery or CSS:
I am using google translate and trying to get the hover to work on the select dropdown. I am close but do not have it how I need to have it. When I hover on top of the select I want select language to be color #18BA9B and not have the blue that highlights all around the select button just the text and the arrow should be color #18BA9B. Then when the drop down is selected all the languages should still be color #687074; except when hovered it should be white with the highlight color #18BA9B.
Will someone please tell me how to fix this problem? Unfortunately it is highlighting the entire dropdown as teal.
http://jsfiddle.net/bobrierton/013v4p0t/1/
.goog-logo-link {
display:none !important;
}
.goog-te-gadget{
color: transparent !important;
}
SELECT.goog-te-combo{
color: #687074;
text-transform: uppercase;
}
SELECT.goog-te-combo:hover{
color:#18BA9B;
}
.goog-logo-link, .goog-logo-link:link, .goog-logo-link:visited, .goog-logo-link:hover, .goog-logo-link:active {
color:#18BA9B;
}
I have also tried:
SELECT.goog-te-combo > option:hover{
background-color:#18BA9B;
color:white;
}