skink wrote:
> btw i saw you managed to get rid/costomize WebView's focus ring.
Actually, that was a colleague (Andrew Hedges), based on a solution
provided by another community member (Grace Kloba).
> since i'm not expert in css at all what is that magic line (or two)?
>
> i tried in my css:
>
> html {
> -webkit-focus-ring-color: #0f0;
> -webkit-tap-highlight-color: #00f;
> }
>
> but with no success...
Apparently, it is:
* {
-webkit-tap-highlight-color: rgba(0,0,0,0.0);
}
My CSS-fu is weak, but I suspect that means "make
-webkit-tap-highlight-color be transparent for all styles" or some such.
--
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ Version 2.0 Available!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---