<?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 use the DOM Inspector to hack your Firefox UI</title>
	<atom:link href="http://eriwen.com/firefox/use-the-dom-inspector/feed/" rel="self" type="application/rss+xml" />
	<link>http://eriwen.com/firefox/use-the-dom-inspector/</link>
	<description>Programming productively with open-source tools</description>
	<lastBuildDate>Sat, 06 Mar 2010 23:29:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ken</title>
		<link>http://eriwen.com/firefox/use-the-dom-inspector/#comment-3043</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Sun, 07 Feb 2010 06:17:41 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=163#comment-3043</guid>
		<description>Hey, I figured it out....

With DOM Inspector, first I have to select File / Inpsect Chrome Document / 1  , then when selecting the element of interest I have to magnify the screen to tell when the active pixel of the cursor is over a pixel of the element, then I have to hit the little calendar-looking icon of the right-side pane and look at the CSS Rules for one piece of information and Computed Styles for another piece of information.  I can&#039;t imagine an easily-describable algorithm for this procedure....

Anyway, here is my resulting userChrome.css for Firefox 3.0 - 3.6.


/*  minimize text size everyhwere  */

* { font-size: 8pt !important; }


/*  minimize toolbar sizes for small icons &amp; remove OS X dark-gray  */

.toolbarbutton-1 { max-height:24px !important; }  /* 27px for FF 3.0 */

#nav-bar { -moz-appearance:none !important; background:none !important; border:none !important; }

#PersonalToolbar { -moz-appearance:none !important; background:none !important; max-height:27px !important; }  /* 30px for FF 3.0 */


/*  remove buttonishness &amp; OS X dark-gray from tabs  */

.tabbrowser-tabs { background:none !important; background-color:#FFFFFF !important; }

.tabbrowser-strip { border-bottom-width:0px !important; }

.tabbrowser-tab[selected=&quot;true&quot;] { background-color:#FFFFFF !important; border-left-style:none !important; border-right-style:none !important; border-bottom-style:none !important; }

.tabbrowser-tab[selected=&quot;true&quot;] &gt; .tab-image-left, .tabbrowser-tab[selected=&quot;true&quot;] &gt; .tab-image-middle, .tabbrowser-tab[selected=&quot;true&quot;] &gt; .tab-image-right, .tabbrowser-tab[selected=&quot;true&quot;] &gt; .tab-close-button { background:none !important; }

.tabbrowser-tab:not([selected=&quot;true&quot;]) { color:#707070 !important; }

.tabbrowser-tab[selected=&quot;false&quot;] { color:#A0A0A0 !important; }


/*  restore closebutton to solitary tab */

.tabbrowser-tab[selected=&quot;true&quot;] .tab-close-button { display:-moz-box !important; }


/*  make blank tabs actually blank  */

.tabbrowser-tab[label=&quot;(Untitled)&quot;] .tab-icon-image { display:none !important; }

.tabbrowser-tab[label=&quot;(Untitled)&quot;] .tab-text { visibility:hidden !important; }


But I&#039;m no expert, so there might be some room for improvement.</description>
		<content:encoded><![CDATA[<p>Hey, I figured it out&#8230;.</p>
<p>With DOM Inspector, first I have to select File / Inpsect Chrome Document / 1  , then when selecting the element of interest I have to magnify the screen to tell when the active pixel of the cursor is over a pixel of the element, then I have to hit the little calendar-looking icon of the right-side pane and look at the CSS Rules for one piece of information and Computed Styles for another piece of information.  I can&#8217;t imagine an easily-describable algorithm for this procedure&#8230;.</p>
<p>Anyway, here is my resulting userChrome.css for Firefox 3.0 &#8211; 3.6.</p>
<p>/*  minimize text size everyhwere  */</p>
<p>* { font-size: 8pt !important; }</p>
<p>/*  minimize toolbar sizes for small icons &amp; remove OS X dark-gray  */</p>
<p>.toolbarbutton-1 { max-height:24px !important; }  /* 27px for FF 3.0 */</p>
<p>#nav-bar { -moz-appearance:none !important; background:none !important; border:none !important; }</p>
<p>#PersonalToolbar { -moz-appearance:none !important; background:none !important; max-height:27px !important; }  /* 30px for FF 3.0 */</p>
<p>/*  remove buttonishness &amp; OS X dark-gray from tabs  */</p>
<p>.tabbrowser-tabs { background:none !important; background-color:#FFFFFF !important; }</p>
<p>.tabbrowser-strip { border-bottom-width:0px !important; }</p>
<p>.tabbrowser-tab[selected="true"] { background-color:#FFFFFF !important; border-left-style:none !important; border-right-style:none !important; border-bottom-style:none !important; }</p>
<p>.tabbrowser-tab[selected="true"] &gt; .tab-image-left, .tabbrowser-tab[selected="true"] &gt; .tab-image-middle, .tabbrowser-tab[selected="true"] &gt; .tab-image-right, .tabbrowser-tab[selected="true"] &gt; .tab-close-button { background:none !important; }</p>
<p>.tabbrowser-tab:not([selected="true"]) { color:#707070 !important; }</p>
<p>.tabbrowser-tab[selected="false"] { color:#A0A0A0 !important; }</p>
<p>/*  restore closebutton to solitary tab */</p>
<p>.tabbrowser-tab[selected="true"] .tab-close-button { display:-moz-box !important; }</p>
<p>/*  make blank tabs actually blank  */</p>
<p>.tabbrowser-tab[label="(Untitled)"] .tab-icon-image { display:none !important; }</p>
<p>.tabbrowser-tab[label="(Untitled)"] .tab-text { visibility:hidden !important; }</p>
<p>But I&#8217;m no expert, so there might be some room for improvement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken</title>
		<link>http://eriwen.com/firefox/use-the-dom-inspector/#comment-3041</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Sun, 07 Feb 2010 01:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=163#comment-3041</guid>
		<description>Eric&#039;s tip for removing the favicon in Linux:

.tab-icon-image { display: none !important;}

is now required for Firefox 3.6 on Mac and possibly others.  (It also works in 3.0.)  Also new in 3.6:

.tab-text { display: none !important; }

makes the closebox and favicon slam to the center, so I had to switch to:

.tab-text { visibility: hidden !important; }

Therefore, the 3.6-compatible CSS to make blank tabs actually blank is:

.tabbrowser-tab[label=&quot;(Untitled)&quot;] .tab-icon-image { display: none !important; }
.tabbrowser-tab[label=&quot;(Untitled)&quot;] .tab-text { visibility: hidden !important; }

Also, someone had a couple long lines of CSS for returning the closebox to a solitary tab, but all I needed was one short one:

.tabbrowser-tab[selected=&quot;true&quot;] .tab-close-button { display: -moz-box !important; }

What I&#039;m having trouble with is:

.tabbrowser-tab[selected=&quot;true&quot;] &gt; .tab-image-left,
.tabbrowser-tab[selected=&quot;true&quot;] &gt; .tab-image-middle,
.tabbrowser-tab[selected=&quot;true&quot;] &gt; .tab-image-right,
.tabbrowser-tab[selected=&quot;true&quot;] &gt; .tab-close-button
   { background: none !important; color: #404040 !important; }

on FF 3.0 made tabs look like tabs, integral to the HTML content, but on 3.5+ they leave tabs looking like disconnected buttons.  3.5 also introduced an annoying black line separating the tab bar from the HTML content that I&#039;d like to get rid of.  I tried DOM Inspector 2.0.4 on FF 3.6 (I don&#039;t have 3.5 any more) but I can&#039;t seem to get it to do anything outside of the HTML content area.  Any suggestions?  Thanks.</description>
		<content:encoded><![CDATA[<p>Eric&#8217;s tip for removing the favicon in Linux:</p>
<p>.tab-icon-image { display: none !important;}</p>
<p>is now required for Firefox 3.6 on Mac and possibly others.  (It also works in 3.0.)  Also new in 3.6:</p>
<p>.tab-text { display: none !important; }</p>
<p>makes the closebox and favicon slam to the center, so I had to switch to:</p>
<p>.tab-text { visibility: hidden !important; }</p>
<p>Therefore, the 3.6-compatible CSS to make blank tabs actually blank is:</p>
<p>.tabbrowser-tab[label="(Untitled)"] .tab-icon-image { display: none !important; }<br />
.tabbrowser-tab[label="(Untitled)"] .tab-text { visibility: hidden !important; }</p>
<p>Also, someone had a couple long lines of CSS for returning the closebox to a solitary tab, but all I needed was one short one:</p>
<p>.tabbrowser-tab[selected="true"] .tab-close-button { display: -moz-box !important; }</p>
<p>What I&#8217;m having trouble with is:</p>
<p>.tabbrowser-tab[selected="true"] &gt; .tab-image-left,<br />
.tabbrowser-tab[selected="true"] &gt; .tab-image-middle,<br />
.tabbrowser-tab[selected="true"] &gt; .tab-image-right,<br />
.tabbrowser-tab[selected="true"] &gt; .tab-close-button<br />
   { background: none !important; color: #404040 !important; }</p>
<p>on FF 3.0 made tabs look like tabs, integral to the HTML content, but on 3.5+ they leave tabs looking like disconnected buttons.  3.5 also introduced an annoying black line separating the tab bar from the HTML content that I&#8217;d like to get rid of.  I tried DOM Inspector 2.0.4 on FF 3.6 (I don&#8217;t have 3.5 any more) but I can&#8217;t seem to get it to do anything outside of the HTML content area.  Any suggestions?  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Recent Links Tagged With "opacity" - JabberTags</title>
		<link>http://eriwen.com/firefox/use-the-dom-inspector/#comment-2073</link>
		<dc:creator>Recent Links Tagged With "opacity" - JabberTags</dc:creator>
		<pubDate>Tue, 23 Dec 2008 13:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=163#comment-2073</guid>
		<description>[...] a Stylized Vector Police Badge with Metal and Leather Saved by franckstone on Fri 19-12-2008   How to use the DOM Inspector to hack your Firefox UI Saved by Jamespm666 on Mon 08-12-2008   Create Animated Alert Box using MooTools Saved by linnet on [...]</description>
		<content:encoded><![CDATA[<p>[...] a Stylized Vector Police Badge with Metal and Leather Saved by franckstone on Fri 19-12-2008   How to use the DOM Inspector to hack your Firefox UI Saved by Jamespm666 on Mon 08-12-2008   Create Animated Alert Box using MooTools Saved by linnet on [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://eriwen.com/firefox/use-the-dom-inspector/#comment-1917</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 14 Nov 2008 19:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=163#comment-1917</guid>
		<description>great information.  thanks.  do you know, by chance, of any chrome modification to split the back/forward buttons?</description>
		<content:encoded><![CDATA[<p>great information.  thanks.  do you know, by chance, of any chrome modification to split the back/forward buttons?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victor</title>
		<link>http://eriwen.com/firefox/use-the-dom-inspector/#comment-1869</link>
		<dc:creator>Victor</dc:creator>
		<pubDate>Wed, 29 Oct 2008 20:36:02 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=163#comment-1869</guid>
		<description>I would like to remove the “Tags” item when I press CTRL+D. Any idea how to do this? Thanks.

And thanks, Eric, for the compilation of all the great tweaks.</description>
		<content:encoded><![CDATA[<p>I would like to remove the “Tags” item when I press CTRL+D. Any idea how to do this? Thanks.</p>
<p>And thanks, Eric, for the compilation of all the great tweaks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trent</title>
		<link>http://eriwen.com/firefox/use-the-dom-inspector/#comment-1697</link>
		<dc:creator>Trent</dc:creator>
		<pubDate>Fri, 19 Sep 2008 02:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=163#comment-1697</guid>
		<description>Hi, I&#039;ve been searching for this for hours but nothing works: I&#039;d like to remove the File menu too (still on linux) and strangely, none of the above works:

#file-menu { display: none !important; }
#file-Menu { display: none !important; }
#File-menu { display: none !important; }
#File-Menu { display: none !important; }
#filemenu { display: none !important; }
#fileMenu { display: none !important; }
#Filemenu { display: none !important; }
#FileMenu { display: none !important; }

Do you know by any chance how to get this done?</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;ve been searching for this for hours but nothing works: I&#8217;d like to remove the File menu too (still on linux) and strangely, none of the above works:</p>
<p>#file-menu { display: none !important; }<br />
#file-Menu { display: none !important; }<br />
#File-menu { display: none !important; }<br />
#File-Menu { display: none !important; }<br />
#filemenu { display: none !important; }<br />
#fileMenu { display: none !important; }<br />
#Filemenu { display: none !important; }<br />
#FileMenu { display: none !important; }</p>
<p>Do you know by any chance how to get this done?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trent</title>
		<link>http://eriwen.com/firefox/use-the-dom-inspector/#comment-1602</link>
		<dc:creator>Trent</dc:creator>
		<pubDate>Sun, 14 Sep 2008 20:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=163#comment-1602</guid>
		<description>Thank a lot, forgot about the simple drag-n-drop method :)
And yes, .tab-icon-image worked too!</description>
		<content:encoded><![CDATA[<p>Thank a lot, forgot about the simple drag-n-drop method :)<br />
And yes, .tab-icon-image worked too!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Wendelin</title>
		<link>http://eriwen.com/firefox/use-the-dom-inspector/#comment-1581</link>
		<dc:creator>Eric Wendelin</dc:creator>
		<pubDate>Sat, 13 Sep 2008 23:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=163#comment-1581</guid>
		<description>@Trent:

To move buttons and text boxes to the menu bar, I just right click on the menu bar and click &quot;Customize...&quot; and then drag everything where I want it :)

As for removing the favicons, I think this will work for linux:

.tab-icon-image {display:none !important;}</description>
		<content:encoded><![CDATA[<p>@Trent:</p>
<p>To move buttons and text boxes to the menu bar, I just right click on the menu bar and click &#8220;Customize&#8230;&#8221; and then drag everything where I want it :)</p>
<p>As for removing the favicons, I think this will work for linux:</p>
<p>.tab-icon-image {display:none !important;}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
