voyeg3r /userContent.css

css firefox style for pages
/* Arquivo
Criado: Qui 04/Jan/2007 hs 14:27
Last Change: Ter 20 Mar 2007 15:29:19 BRT
Autor: Sergio Luiz Araujo Silva

Fontes de pesquisa:
http://ftp.die.net/pub/mozilla-ad-blocker/README
http://cssing.blogspot.com/2004/08/per-site-usercontentcss-to-kill.html

 * Podemos determinar estilos para domínios assim
@-moz-document domain(nom_de_domaine){ code CSS habituel }
@-moz-document url-prefix(adresse_http_partielle) { code CSS habituel }
@-moz-document url(adresse_http_précise) { code CSS habituel }
*/

/* Retirando a propaganda do gmail 
@-moz-document url-prefix(http://mail.google.com/mail){
#rh table[class=”metatable”]{display: none !important;}
#rh div[class=”c”] {display: none !important;}
 }
*/

@-moz-document url-prefix(http://mail.google.com/mail/?auth=){
#rh table[class=”metatable”]{display: none !important;}
#rh div[class=”c”] {display: none !important;}
 }

/* remove propaganda do gmail
fonte: http://www.digitalmediaminute.com/article/1063/remove-text-ads-from-gmail 

#rh table[class=”metatable”]{display: none !important;}
#rh div[class=”c”] {display: none !important;}
*/


/* this kills the top bar - no "related news" though either */
#www-google-com p.e
     { display: none !important; }

/* kills the right sponsored links */
#www-google-com table[align=right]
     { display: none !important; }


/* links javscript vermelhos */
a[href^="javascript:"] { color: red !important }


/* Change cursor for JavaScript links */
a[href^="javascript:"] {
	cursor: move;
}

/* Change cursor for links that open in new window */
:link[target="_blank"], :visited[target="_blank"],
:link[target="_new"], :visited[target="_new"] {
cursor: crosshair;
}

/*  ========== GMAIL HIDE COMERCIALS ===== */
/* Modificar o estilo do gmail para ocultar propagandas */
#browser {-moz-box-orient: vertical; -moz-box-direction: reverse}
#sidebar-box {-moz-box-orient: horizontal; -moz-box-direction: reverse}
#appcontent {-moz-box-orient: horizontal}
#sidebar {max-width: inherit !important; min-height: 280px !important}
#sidebar-box > sidebarheader {
	-moz-box-orient: vertical;
	-moz-box-direction: reverse;
	-moz-box-pack: end;
	border-left: 1px solid ThreeDHighlight;
	margin-left: 1px;
}


/* Estilo para o del.icio.us */
@-moz-document url-prefix('http://del.icio.us/') {
 
   body {
      font-family: 'Arial' !important;
      font-size: 110% !important;
      color: #666 !important;
   }
 
   a {
      color:#39C !important;
   }
 
   li a:hover, ol a:hover {
      color: #FFF !important;
      background-color: #39C !important;
      text-decoration: none !important;
   }
 
   li.post>div.commands { display: none !important; }
   li.post:hover>div.commands { display: inline !important; }
 
   #header-l {
      background-image: url('http://www.imagemule.com/uploads/deliciousRRoo.png') !important;
      background-position: 0px 13px !important;
   }
 
}