AMEMOS A LAIN! - userChrome.css

Guía rápida:

$cd .mozilla/firefox/perfil.default/
$mkdir chrome
$cd chrome
$touch userChrome.css
$mousepad userChrome.css

Contenido del archivo:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* esta primera línea del archivo userChrome.css es obligatoria para su funcionamiento */

/* esconde barras de desplazamiento para mayor espacio en pantalla y estética */
browser{
margin-right:-17px!important;
overflow-y:scroll;
overflow-x:hidden;

margin-bottom:-17px!important;
overflow-y:scroll;
overflow-x:hidden;
}

/* esconde boton de marcadores en forma de estrela ubicado en la barra de dirección */
#bookmarks-menu-button toolbarbutton { visibility:collapse !important; }
#star-button { display: none !important; }

/* centra el texto de la barra de dirección, remover borde y cambiar fondo de la barra */
#urlbar {
text-align: center !important;
border: none !important;
background:#e9e9e9 !important;
}

/* centrar texto de las pestañas */
.tab-label {
    -moz-box-flex: 1 !important; 
    text-align: center !important;
}

/* oculta boton pestaña nueva (+) */
.tabs-newtab-button {
display: none !important;
}

/* oculta boton de cerrar en pestaña (x) */
.tab-close-button.close-icon {
display: none !important;   
}

/* oculta botones de ir hacia atras y hacia adelante */
#forward-button {
	display: none !important;
	}
#nav-bar #back-button > .toolbarbutton-icon {
	display: none !important;
	}

/* elimina las líneas azules en las pestañas */
#TabsToolbar .tabbrowser-tab .tab-line {
    display: none !important;
}

Powered by Navi