I have a simple form with one input field. I set focus on this field via javascript inputID.focus(). When testing in some android devices (and browser user-agents), I've noticed that the input value has a blue background color when given focus. I've tried lots of things and can't seem to remove this highlighting. Any suggestions? Below is what I've tried:
CSS:
input { width: 200px; height: 24px; border: 1px solid #999; border-radius: 5px; font: Verdana, Geneva, sans-serif; color: #666; padding: 2px; font-size: 12pt; margin-bottom: 10px; background-color: #fff !important; }
input[type=text]:focus{ border:1px solid #090; backface-visibility:hidden !important; background-color:#fff !important; -webkit-tap-highlight-color:#fff !important; -webkit-backface-visibility:hidden !important; text-decoration:none; }
input::selection { background-color:#fff; color:#fff; }
input::-moz-selection { background-color:#fff; color:#fff; }
input::-webkit-input-placeholder {background-color:#fff; color:#fff;}
input:-moz-placeholder {background-color:#fff; color:#fff;}
HTML:
<input id="ducks" type="text" value="quack quack quack mr.duckworth" readonly="">
Javascript:
var inputBox = document.getElementById('ducks');
inputBox.focus();