voyeg3r /userChrome.css

css style for your firefox
/* Arquivo de estilo para o firefox
Criado: Qua 03/Jan/2007 hs 11:51
Last Change: Qui 04 Jan 2007 15:34:22 BRT
Autor: Sergio Luiz Araujo Silva

* Edit this file and copy it as userChrome.css into your
* profile-directory/chrome/
*
*   arquivo userChrome.css
*  ~/.mozilla/firefox/*.default/chrome/userChrome.css
*
* Este arquivo contém estilo visual do navegador firefox
* não remova a linha  @namespace line -- Ela é requerida
* para o funcionamento correto do firefox
*/

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

/*  autocomplete text field  */
.textfield-popup
 {
    background  : white !important;
    border : 1px solid black !important;
 }

 /*  Efeito ao passar o mouse sobre a aba - mouse :hover */
 /*
 tabbrowser#content tab{-moz-appearance: none !important; }
tabbrowser#content tab:hover{color: blue !important; }
*/

/* Modificações para a aba ativa */
tab[selected="true"] {
   background-color: rgb(222,218,210) !important;
   color: blue !important; font-weight: normal !important;
}

/* Change color of normal tabs */
tab:not([selected="true"]) {
   background-color: rgb(200,196,188) !important;
   color: gray !important;
}


#sidebar-box .tabs-closebutton > .toolbarbutton-icon {
	padding: 4px 2px !important
}
#sidebar-title {display: none}
#sidebar-throbber {margin-left: 4px}


/* Fontes de pesquisa
 * http://pt.wikibooks.org/wiki/Mozilla_Firefox_descomplicado#userChrome.css
 * http://br.mozdev.org/firefox/ajuda/tips.html#app_tab
 * http://forum.mozillaitalia.org/index.php?topic=17028.new
*/