I'm trying to style inputs for a webpage. When the webpage is viewed on Android 4.0.4 default browser, focusing on an input applies a blue glow.
Idle:
Input focused:
I want to disable that blue border (and make my own one), but if i set -webkit-user-modify: read-write-plaintext-only
, the input will lose its type (HTML type="number"
) and won't slide up a number keyboard (like on the screenshot).
CSS Properties tried:
-webkit-user-modify: read-write-plaintext-only
with-webkit-tap-highlight-color: rgba(255, 255, 255, 0)
outline: none
border: 0
box-shadow: none
Is it possible to disable this WebKit feature yet keep the number keyboard? Thanks ;)