Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS SELECT options disappearing on hover in Firefox? Reply To: SELECT options disappearing on hover in Firefox?

#170791
harryatkins
Participant

Yeah of course. I was more just adding the image in case anyone recognised the problem visually.

Here’s the sass being used on the selects:
select {
border: 0;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 0.01px;
text-overflow: ”;
appearance: none;
background: url(‘../img/down-arrow.png’) no-repeat #6B6B6B;
background-position: right center;
border: 1px solid #5a5a5a;
box-shadow: inset -1px 1px 1px 0px rgba(0, 0, 0, 0.2), 1px 1px 1px rgba(255, 255, 255, 0.1);
color: white;
border-radius: 3px;
padding: 7px 5px 7px 10px;
min-width: 65px;
font-family:inherit; font-size:inherit;
}

Apart from that from what I can tell from the inspector there’s nothing else which is effecting them.