<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to Hide Android WebView Highlight Border (or change it&#8217;s color)</title>
	<atom:link href="http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html</link>
	<description>Advice and tools from a young web developer</description>
	<lastBuildDate>Fri, 20 May 2011 21:23:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: eggdeng</title>
		<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/comment-page-1#comment-4419</link>
		<dc:creator>eggdeng</dc:creator>
		<pubDate>Sun, 27 Mar 2011 10:03:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.randomtools.net/?p=142#comment-4419</guid>
		<description>Using -webkit-tap-highlight-color: rgba(0, 0, 0, 0) has nasty side-effects like disabling the NEXT button on the virtual keyboard. This remains an annoying bug.</description>
		<content:encoded><![CDATA[<p>Using -webkit-tap-highlight-color: rgba(0, 0, 0, 0) has nasty side-effects like disabling the NEXT button on the virtual keyboard. This remains an annoying bug.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: caseNova</title>
		<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/comment-page-1#comment-3107</link>
		<dc:creator>caseNova</dc:creator>
		<pubDate>Tue, 25 Jan 2011 06:28:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.randomtools.net/?p=142#comment-3107</guid>
		<description>Anybody knows how to change the focus color from orange to say blue etc.?
Thanks</description>
		<content:encoded><![CDATA[<p>Anybody knows how to change the focus color from orange to say blue etc.?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/comment-page-1#comment-1059</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Mon, 08 Nov 2010 20:22:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.randomtools.net/?p=142#comment-1059</guid>
		<description>I&#039;ve tried this approach and it works fine, but is there a way to remove the focus border box? If you don&#039;t know what you&#039;re referring to, go browse anything using the android default browser. If you tap on a text input element, the highlight box (usually orange or green depending on OS version) appears. Adjacent to this highlight box is an inner black/gray rectangle.

With the below CSS styling, my text input element has no border by default (which is what I need), but when it gets tapped, the rectangle mentioned above appears without the tap-highlight.

    border-style:none;
    outline-style:none;
    display: inline-block;
    -webkit-appearance: textarea;
    -webkit-tap-highlight-color: rgba(0,0,0,0);

Does anyone know how to remove it?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve tried this approach and it works fine, but is there a way to remove the focus border box? If you don&#8217;t know what you&#8217;re referring to, go browse anything using the android default browser. If you tap on a text input element, the highlight box (usually orange or green depending on OS version) appears. Adjacent to this highlight box is an inner black/gray rectangle.</p>
<p>With the below CSS styling, my text input element has no border by default (which is what I need), but when it gets tapped, the rectangle mentioned above appears without the tap-highlight.</p>
<p>    border-style:none;<br />
    outline-style:none;<br />
    display: inline-block;<br />
    -webkit-appearance: textarea;<br />
    -webkit-tap-highlight-color: rgba(0,0,0,0);</p>
<p>Does anyone know how to remove it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/comment-page-1#comment-426</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Sat, 04 Sep 2010 04:59:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.randomtools.net/?p=142#comment-426</guid>
		<description>It&#039;s CSS, so you can put it in an external stylesheet, or inside of an HTML page with a style tag.


* {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
</description>
		<content:encoded><![CDATA[<p>It&#8217;s CSS, so you can put it in an external stylesheet, or inside of an HTML page with a style tag.</p>
<p>* {<br />
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/comment-page-1#comment-387</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Fri, 27 Aug 2010 14:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.randomtools.net/?p=142#comment-387</guid>
		<description>Hi, Where do i actually put the 

* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);	
}

to make this work.

Sorry, but i&#039;m a newbie

 :(</description>
		<content:encoded><![CDATA[<p>Hi, Where do i actually put the </p>
<p>* {<br />
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);<br />
}</p>
<p>to make this work.</p>
<p>Sorry, but i&#8217;m a newbie</p>
<p> <img src='http://www.randomtools.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/comment-page-1#comment-345</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 16 Aug 2010 00:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.randomtools.net/?p=142#comment-345</guid>
		<description>I knew that the browser on Android is based on WebKit, just like iPhone&#039;s Safari Mobile, so I looked for the solution for iPhone and tried it on Android.</description>
		<content:encoded><![CDATA[<p>I knew that the browser on Android is based on WebKit, just like iPhone&#8217;s Safari Mobile, so I looked for the solution for iPhone and tried it on Android.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daniel</title>
		<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/comment-page-1#comment-340</link>
		<dc:creator>daniel</dc:creator>
		<pubDate>Tue, 03 Aug 2010 18:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.randomtools.net/?p=142#comment-340</guid>
		<description>This is perfect!  How do you discover stuff like this?  I spent 3 hours trying to find out.  Someone at stack/overflow pointed me here.  Thanks so much!</description>
		<content:encoded><![CDATA[<p>This is perfect!  How do you discover stuff like this?  I spent 3 hours trying to find out.  Someone at stack/overflow pointed me here.  Thanks so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RussellUresti</title>
		<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/comment-page-1#comment-335</link>
		<dc:creator>RussellUresti</dc:creator>
		<pubDate>Tue, 20 Jul 2010 19:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.randomtools.net/?p=142#comment-335</guid>
		<description>This seems to work to disable it completely, but I tried to change it&#039;s color using this:

-webkit-tap-highlight-color: rgba(255, 255, 255, 1);

Which should turn it to a solid white, but on android devices I get the default solid green. Is there a trick to getting a different color?</description>
		<content:encoded><![CDATA[<p>This seems to work to disable it completely, but I tried to change it&#8217;s color using this:</p>
<p>-webkit-tap-highlight-color: rgba(255, 255, 255, 1);</p>
<p>Which should turn it to a solid white, but on android devices I get the default solid green. Is there a trick to getting a different color?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andres Yajamin</title>
		<link>http://www.randomtools.net/how-to-hide-android-webview-highlight-border-or-change-its-color-142.html/comment-page-1#comment-333</link>
		<dc:creator>Andres Yajamin</dc:creator>
		<pubDate>Mon, 05 Jul 2010 17:25:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.randomtools.net/?p=142#comment-333</guid>
		<description>Thanks men, great tip</description>
		<content:encoded><![CDATA[<p>Thanks men, great tip</p>
]]></content:encoded>
	</item>
</channel>
</rss>

