/* 
 * Firefox: Chrome: Bookmarks and Tabs
 * 
 * Author	: Ryan Thaut
 * Updated	: April 22, 2008
 * Website	: http://www.rynostudios.com/
 * Description	: Cleans the appearance of the Bookmarks sidebar and removes the dotted outline of focused tabs
 * Usage	: Use with the 'Stylish' Firefox extension (http://userstyles.org/)
 * 
 * BONUS	: In the about:config, set "browser.display.focus_ring_width" to 0 to remove ALL dotted rectangle outlines.
 * 
 */

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

	*|*:-moz-any-link:focus {
		outline		: 0px		!important;
	}

@-moz-document url(chrome://browser/content/browser.xul)
{
	.tab-text
	{
		border		: none		!important;
	}
}

@-moz-document url(chrome://browser/content/bookmarks/bookmarksPanel.xul)
{

	treechildren
	{
		background	: #FFFFFF	!important;
	}

	treechildren::-moz-tree-row
	{
		background	: #FFFFFF	!important;
	}

	treechildren::-moz-tree-row(focus, selected, current)
	{
		background	: #3399FF	!important;
	}
	treechildren::-moz-tree-cell-text(focus, selected, current)
	{
		color		: #FFFFFF	!important;
	}

	treechildren::-moz-tree-line,
	treechildren::-moz-tree-separator,
	treechildren::-moz-tree-line(focus, selected, current),
	treechildren::-moz-tree-separator(focus, selected, current)
	{
		border-color	: transparent	!important;
	}

	treechildren::-moz-tree-cell,
	treechildren::-moz-tree-cell-text,
	treechildren::-moz-tree-row
	{
		border		: none		!important;
	}
}