Issue
This might be a simple configuration or something, But I would like to disable blueish overlay which shows when touched on links or linked items (images or other linked stuffs) from android's WebView.
For better illustration, I've added an screenshot taken from Galaxy Tab - Honeycomb 3.1
Thanks
Solution
Here is the solution to my issue, solved using CSS:
body {
/* Disable tap overlay color on links - set alpha to %0 = invisible */
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
Then it should not give you touch overlay anymore :-]
Answered By - Hossain Khan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.