Supposedly, -webkit-appearance:caret;
should've remove the gloss. But seems does not work in selects.
Therefore, the only way I could find was the same of the Florija's answer, which is faking the select arrow via CSS.
HTML:
<select name="state_select" id="state_select" class="choose_state" size="1">
<option>Hey</option>
</select>
<div class="dblarrow"><b></b><i></i></div>
CSS:
.dblarrow {
margin-left: -35px;
display: inline-block;
}
.dblarrow b {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid black;
display: block;
margin-bottom: 3px;
}
.dblarrow i {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid black;
display: block;
}
select.choose_state,
select.choose_state option {
background: transparent;
}
select.choose_state {
border: 1px solid #000;
-webkit-appearance: none;
-webkit-border-radius: 0px;
outline: none;
margin-right: 15px;
font-size: 1.4em;
padding-right: 20px; /*Important*/
display: inline-block; /*Important*/
}
Check out his pen: http://codepen.io/loredonut/pen/xvtHG