Skip to content

Instantly share code, notes, and snippets.

@nathan-cruz77
Last active March 20, 2016 02:10
Show Gist options
  • Save nathan-cruz77/dcdf06bbe35f50158871 to your computer and use it in GitHub Desktop.
Save nathan-cruz77/dcdf06bbe35f50158871 to your computer and use it in GitHub Desktop.
/* Este arquivo deve ser salvo em: ~/.mozilla/firefox/<user-profile>/chrome/
e tem como objetivo usar a fonte Arial em paginas que seriam renderizadas
com Helvetica.
*/
@font-face{
font-family: "Helvetica";
src: local("Arial");
}
/* As regras abaixo sao usadas para que o navegador possa usar um tema escuro */
input:not(.textbox-input):not(.form-control):not([type='checkbox']) {
-moz-appearance: none !important;
background-color: white;
color: black;
}
#downloads-indicator-counter {
color: white;
}
textarea {
-moz-appearance: none !important;
background-color: white;
color: black;
}
select {
-moz-appearance: none !important;
background-color: white;
color: black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment