<?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"
	>
<channel>
	<title>Comments on: Highlight the active tab in Firefox</title>
	<atom:link href="http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/</link>
	<description>Your source for Firefox, Thunderbird, Camino, SeaMonkey news, tips and more.</description>
	<pubDate>Sun, 07 Sep 2008 13:45:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Andrei</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-65437</link>
		<dc:creator>Andrei</dc:creator>
		<pubDate>Thu, 14 Aug 2008 04:24:10 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-65437</guid>
		<description>I found the following to work for me (Ubuntu 8.04, Firefox 3.0.1, Theme=Redmond):

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

tab{ -moz-appearance: none !important; }

tab[selected="true"] {
background-color: #AACCFF !important; /* light blue */
color: #000 !important; /* black */
}

tab:hover {
background-color: #FFFFCC !important; /* light yellow */
color: #000 !important; /* black */
}</description>
		<content:encoded><![CDATA[<p>I found the following to work for me (Ubuntu 8.04, Firefox 3.0.1, Theme=Redmond):</p>
<p>@namespace url(&#8221;http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul&#8221;);</p>
<p>tab{ -moz-appearance: none !important; }</p>
<p>tab[selected="true"] {<br />
background-color: #AACCFF !important; /* light blue */<br />
color: #000 !important; /* black */<br />
}</p>
<p>tab:hover {<br />
background-color: #FFFFCC !important; /* light yellow */<br />
color: #000 !important; /* black */<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reik Red</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-62393</link>
		<dc:creator>Reik Red</dc:creator>
		<pubDate>Sat, 31 May 2008 18:15:02 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-62393</guid>
		<description>It should be pointed out that the above solution to active tab highlighting does not necessarily work in linux/X11. At least it does not work in my case where I use a focus-follows-mouse type behavior instead of click-to-focus type behavior. Tthe active tab highlights blue only when I pass the mouse pointer over the tab. Hence the  solution is ok for Windows XP et al, but may not be for linux/X11.

I should also mention that in Win XP, I get the active  tab highlighted already without doing any hack  whereas in linux/X11 I do not. (I'm using firefox 2.0.0.14, this may not be significant). The tab highlight out-of-the-box  may be due to a different choice of background colors, I do not know with certainty.</description>
		<content:encoded><![CDATA[<p>It should be pointed out that the above solution to active tab highlighting does not necessarily work in linux/X11. At least it does not work in my case where I use a focus-follows-mouse type behavior instead of click-to-focus type behavior. Tthe active tab highlights blue only when I pass the mouse pointer over the tab. Hence the  solution is ok for Windows XP et al, but may not be for linux/X11.</p>
<p>I should also mention that in Win XP, I get the active  tab highlighted already without doing any hack  whereas in linux/X11 I do not. (I&#8217;m using firefox 2.0.0.14, this may not be significant). The tab highlight out-of-the-box  may be due to a different choice of background colors, I do not know with certainty.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Aquino</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-53069</link>
		<dc:creator>Jonathan Aquino</dc:creator>
		<pubDate>Sun, 19 Aug 2007 20:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-53069</guid>
		<description>Ah shoot, it converted the double-quotes again. Anyway, make them normal double-quotes and it will work.</description>
		<content:encoded><![CDATA[<p>Ah shoot, it converted the double-quotes again. Anyway, make them normal double-quotes and it will work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Aquino</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-53068</link>
		<dc:creator>Jonathan Aquino</dc:creator>
		<pubDate>Sun, 19 Aug 2007 20:56:05 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-53068</guid>
		<description>The problem is that the code shown above has funny quotation marks (probably inserted by the blogging software). Use normal double-quotes and they will work:

.tabbrowser-tab[selected="true"] &#62; hbox,
.tabbrowser-tab[selected="true"] &#62; .tab-close-button {
background-color: #000088 !important;
color: #fff !important;
}

.tabbrowser-tab[selected="true"]:hover &#62; hbox,
.tabbrowser-tab[selected="true"]:hover &#62; .tab-close-button {
background-color: #0000BB !important;
color: #fff !important;
}</description>
		<content:encoded><![CDATA[<p>The problem is that the code shown above has funny quotation marks (probably inserted by the blogging software). Use normal double-quotes and they will work:</p>
<p>.tabbrowser-tab[selected="true"] &gt; hbox,<br />
.tabbrowser-tab[selected="true"] &gt; .tab-close-button {<br />
background-color: #000088 !important;<br />
color: #fff !important;<br />
}</p>
<p>.tabbrowser-tab[selected="true"]:hover &gt; hbox,<br />
.tabbrowser-tab[selected="true"]:hover &gt; .tab-close-button {<br />
background-color: #0000BB !important;<br />
color: #fff !important;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: site ekle</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-52995</link>
		<dc:creator>site ekle</dc:creator>
		<pubDate>Fri, 17 Aug 2007 02:26:58 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-52995</guid>
		<description>im have the same problem i cant choose 

"I’m having trouble getting this to work with the default theme, too. Firefox 2.0.0.3 on XP in my case.
"</description>
		<content:encoded><![CDATA[<p>im have the same problem i cant choose </p>
<p>&#8220;I’m having trouble getting this to work with the default theme, too. Firefox 2.0.0.3 on XP in my case.<br />
&#8220;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paulo Raponi</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-17775</link>
		<dc:creator>Paulo Raponi</dc:creator>
		<pubDate>Wed, 28 Mar 2007 20:23:03 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-17775</guid>
		<description>If don't work, it is because of the copy &#38; paste... 
Attention with the quotation marks that the wordpress places in the code. " for him is ´´


regards,

Paulo</description>
		<content:encoded><![CDATA[<p>If don&#8217;t work, it is because of the copy &amp; paste&#8230;<br />
Attention with the quotation marks that the wordpress places in the code. &#8221; for him is ´´</p>
<p>regards,</p>
<p>Paulo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LouCypher</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-17566</link>
		<dc:creator>LouCypher</dc:creator>
		<pubDate>Wed, 28 Mar 2007 04:12:26 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-17566</guid>
		<description>http://userstyles.org/style/show/1179</description>
		<content:encoded><![CDATA[<p><a href="http://userstyles.org/style/show/1179" rel="nofollow">http://userstyles.org/style/show/1179</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-17101</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 27 Mar 2007 03:28:06 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-17101</guid>
		<description>I'm having trouble getting this to work with the default theme, too. Firefox 2.0.0.3 on XP in my case.</description>
		<content:encoded><![CDATA[<p>I&#8217;m having trouble getting this to work with the default theme, too. Firefox 2.0.0.3 on XP in my case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jp</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-16685</link>
		<dc:creator>jp</dc:creator>
		<pubDate>Sun, 25 Mar 2007 18:21:31 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-16685</guid>
		<description>Does not work here with the default theme (the only one I have installed) either. Running FF 2.0.0.2 under Linux.</description>
		<content:encoded><![CDATA[<p>Does not work here with the default theme (the only one I have installed) either. Running FF 2.0.0.2 under Linux.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Percy Cabello</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-16236</link>
		<dc:creator>Percy Cabello</dc:creator>
		<pubDate>Sat, 24 Mar 2007 18:12:46 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-16236</guid>
		<description>Egídio, good to know if finally worked for you. I'm using the default theme and had no problem at all. Try deleting everything else from userChrome.css (after macing a backup copy) to discard a conflict with some other customization.</description>
		<content:encoded><![CDATA[<p>Egídio, good to know if finally worked for you. I&#8217;m using the default theme and had no problem at all. Try deleting everything else from userChrome.css (after macing a backup copy) to discard a conflict with some other customization.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Devon Young</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-16231</link>
		<dc:creator>Devon Young</dc:creator>
		<pubDate>Sat, 24 Mar 2007 17:40:58 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-16231</guid>
		<description>Which just begs the question....why don't they make it easy to change in the preferences? It's a very user friendly feature.</description>
		<content:encoded><![CDATA[<p>Which just begs the question&#8230;.why don&#8217;t they make it easy to change in the preferences? It&#8217;s a very user friendly feature.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Egídio Leitão</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-16213</link>
		<dc:creator>Egídio Leitão</dc:creator>
		<pubDate>Sat, 24 Mar 2007 16:19:51 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-16213</guid>
		<description>Just a quick follow-up to my previous note.  I finally got this tip to work after trying it on a 3rd theme.  It wouldn't work on the default FF theme, but it does work on iFox.</description>
		<content:encoded><![CDATA[<p>Just a quick follow-up to my previous note.  I finally got this tip to work after trying it on a 3rd theme.  It wouldn&#8217;t work on the default FF theme, but it does work on iFox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Egídio Leitão</title>
		<link>http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-16191</link>
		<dc:creator>Egídio Leitão</dc:creator>
		<pubDate>Sat, 24 Mar 2007 13:39:19 +0000</pubDate>
		<guid isPermaLink="false">http://mozillalinks.org/wp/2007/03/highlight-the-active-tab-in-firefox/#comment-16191</guid>
		<description>I have not had problems with changes to my userChrome.css file before.  However, adding the code mentioned in this tip has not changed the look of my browser tabs.  I thought it could be because of the theme I had chosen.  So, I went back to the original FF theme.  After several restarts, the tabs still do not show a different color.  What could possibly be wrong?</description>
		<content:encoded><![CDATA[<p>I have not had problems with changes to my userChrome.css file before.  However, adding the code mentioned in this tip has not changed the look of my browser tabs.  I thought it could be because of the theme I had chosen.  So, I went back to the original FF theme.  After several restarts, the tabs still do not show a different color.  What could possibly be wrong?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
