<?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: You are in a maze of twisty little tabs, all alike.</title>
	<atom:link href="http://blog.mozilla.com/dolske/2006/11/08/chromatabs/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mozilla.com/dolske/2006/11/08/chromatabs/</link>
	<description>The odd parity bit</description>
	<lastBuildDate>Fri, 19 Mar 2010 21:34:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jcelle</title>
		<link>http://blog.mozilla.com/dolske/2006/11/08/chromatabs/comment-page-1/#comment-9298</link>
		<dc:creator>jcelle</dc:creator>
		<pubDate>Tue, 27 Mar 2007 19:48:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.com/dolske/2006/11/08/chromatabs/#comment-9298</guid>
		<description>This is really a brilliant idea !
But I could not make it work with Tab Mix Plus, even with the suggested alternative colorizeTab function...
Has anyone managed to have both working at the same time ?</description>
		<content:encoded><![CDATA[<p>This is really a brilliant idea !<br />
But I could not make it work with Tab Mix Plus, even with the suggested alternative colorizeTab function&#8230;<br />
Has anyone managed to have both working at the same time ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://blog.mozilla.com/dolske/2006/11/08/chromatabs/comment-page-1/#comment-11</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 14 Nov 2006 07:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.com/dolske/2006/11/08/chromatabs/#comment-11</guid>
		<description>Nice. The main problem is that it currently is difficult to tell what the currently selected tab is.</description>
		<content:encoded><![CDATA[<p>Nice. The main problem is that it currently is difficult to tell what the currently selected tab is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: onemen</title>
		<link>http://blog.mozilla.com/dolske/2006/11/08/chromatabs/comment-page-1/#comment-5</link>
		<dc:creator>onemen</dc:creator>
		<pubDate>Sun, 12 Nov 2006 20:09:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.com/dolske/2006/11/08/chromatabs/#comment-5</guid>
		<description>in allowed Chromatabs to work if tabmix installed replace colorizeTab function in chromatabs.js with this:

   colorizeTab : function (tab) {

      var doc, i, hashstring, hashvalue, node;

      var color = CHROMATABS.computeTabColor(tab);
      if (!color) { return; }

      doc = tab.ownerDocument;

      if (0) {
          tab.style.backgroundColor = color;

         node = doc.getAnonymousElementByAttribute(tab, &quot;class&quot;, &quot;tab-image-left tab-startcap tab-left tab-left-border&quot;);
         node.style.opacity = 0.8;
         node = doc.getAnonymousElementByAttribute(tab, &quot;class&quot;, &quot;tab-middle box-inherit tab-image-middle tab-body&quot;);
         node.style.opacity = 0.8;
//       node = doc.getAnonymousElementByAttribute(tab, &quot;class&quot;, &quot;tab-close-button&quot;);
//       node.style.opacity = 0.8;
         node = doc.getAnonymousElementByAttribute(tab, &quot;class&quot;, &quot;tab-image-right tab-endcap tab-right tab-right-border&quot;);
         node.style.opacity = 0.8;
      } 

      if (1) {
         node = doc.getAnonymousElementByAttribute(tab, &quot;class&quot;, &quot;tab-image-left tab-startcap tab-left tab-left-border&quot;);
         CHROMATABS.renderImage(tab, node, color, false);
         node = doc.getAnonymousElementByAttribute(tab, &quot;class&quot;, &quot;tab-middle box-inherit tab-image-middle tab-body&quot;);
         CHROMATABS.renderImage(tab, node, color, false);
//       node = doc.getAnonymousElementByAttribute(tab, &quot;class&quot;, &quot;tab-close-button&quot;);
//       CHROMATABS.renderImage(tab, node, color, false);
         node = doc.getAnonymousElementByAttribute(tab, &quot;class&quot;, &quot;tab-image-right tab-endcap tab-right tab-right-border&quot;);
         CHROMATABS.renderImage(tab, node, color, false);
      }

   },</description>
		<content:encoded><![CDATA[<p>in allowed Chromatabs to work if tabmix installed replace colorizeTab function in chromatabs.js with this:</p>
<p>   colorizeTab : function (tab) {</p>
<p>      var doc, i, hashstring, hashvalue, node;</p>
<p>      var color = CHROMATABS.computeTabColor(tab);<br />
      if (!color) { return; }</p>
<p>      doc = tab.ownerDocument;</p>
<p>      if (0) {<br />
          tab.style.backgroundColor = color;</p>
<p>         node = doc.getAnonymousElementByAttribute(tab, &#8220;class&#8221;, &#8220;tab-image-left tab-startcap tab-left tab-left-border&#8221;);<br />
         node.style.opacity = 0.8;<br />
         node = doc.getAnonymousElementByAttribute(tab, &#8220;class&#8221;, &#8220;tab-middle box-inherit tab-image-middle tab-body&#8221;);<br />
         node.style.opacity = 0.8;<br />
//       node = doc.getAnonymousElementByAttribute(tab, &#8220;class&#8221;, &#8220;tab-close-button&#8221;);<br />
//       node.style.opacity = 0.8;<br />
         node = doc.getAnonymousElementByAttribute(tab, &#8220;class&#8221;, &#8220;tab-image-right tab-endcap tab-right tab-right-border&#8221;);<br />
         node.style.opacity = 0.8;<br />
      } </p>
<p>      if (1) {<br />
         node = doc.getAnonymousElementByAttribute(tab, &#8220;class&#8221;, &#8220;tab-image-left tab-startcap tab-left tab-left-border&#8221;);<br />
         CHROMATABS.renderImage(tab, node, color, false);<br />
         node = doc.getAnonymousElementByAttribute(tab, &#8220;class&#8221;, &#8220;tab-middle box-inherit tab-image-middle tab-body&#8221;);<br />
         CHROMATABS.renderImage(tab, node, color, false);<br />
//       node = doc.getAnonymousElementByAttribute(tab, &#8220;class&#8221;, &#8220;tab-close-button&#8221;);<br />
//       CHROMATABS.renderImage(tab, node, color, false);<br />
         node = doc.getAnonymousElementByAttribute(tab, &#8220;class&#8221;, &#8220;tab-image-right tab-endcap tab-right tab-right-border&#8221;);<br />
         CHROMATABS.renderImage(tab, node, color, false);<br />
      }</p>
<p>   },</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Ruderman</title>
		<link>http://blog.mozilla.com/dolske/2006/11/08/chromatabs/comment-page-1/#comment-4</link>
		<dc:creator>Jesse Ruderman</dc:creator>
		<pubDate>Thu, 09 Nov 2006 03:08:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.com/dolske/2006/11/08/chromatabs/#comment-4</guid>
		<description>It sounds like you hit something like https://bugzilla.mozilla.org/show_bug.cgi?id=359568.  Can you attach a testcase to that bug?</description>
		<content:encoded><![CDATA[<p>It sounds like you hit something like <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=359568" rel="nofollow">https://bugzilla.mozilla.org/show_bug.cgi?id=359568</a>.  Can you attach a testcase to that bug?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Perry Lorier</title>
		<link>http://blog.mozilla.com/dolske/2006/11/08/chromatabs/comment-page-1/#comment-3</link>
		<dc:creator>Perry Lorier</dc:creator>
		<pubDate>Thu, 09 Nov 2006 01:41:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.com/dolske/2006/11/08/chromatabs/#comment-3</guid>
		<description>This also helps with phishing -- different site, different colour!</description>
		<content:encoded><![CDATA[<p>This also helps with phishing &#8212; different site, different colour!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dao</title>
		<link>http://blog.mozilla.com/dolske/2006/11/08/chromatabs/comment-page-1/#comment-2</link>
		<dc:creator>Dao</dc:creator>
		<pubDate>Thu, 09 Nov 2006 00:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.com/dolske/2006/11/08/chromatabs/#comment-2</guid>
		<description>With the default Windows / Linux theme, it&#039;s all dead easy. The images are semi-transparent, the borders are rounded. You can apply any color. That&#039;s how I did it with Aging Tabs. If you could encourage that the Mac theme gets updated accordingly with 2.0.0.x, that would be great.</description>
		<content:encoded><![CDATA[<p>With the default Windows / Linux theme, it&#8217;s all dead easy. The images are semi-transparent, the borders are rounded. You can apply any color. That&#8217;s how I did it with Aging Tabs. If you could encourage that the Mac theme gets updated accordingly with 2.0.0.x, that would be great.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
