Skip to content

Instantly share code, notes, and snippets.

@logic
Created February 23, 2015 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save logic/4d3b6c7a1d1aff4f8d2e to your computer and use it in GitHub Desktop.
Save logic/4d3b6c7a1d1aff4f8d2e to your computer and use it in GitHub Desktop.
Ever been annoyed that GMail displays emails in text/plain in a non-proportional font? Me too. Add this to chrome/userContent.css in your Firefox profile, and be happy.
@-moz-document domain(mail.google.com)
{
.gs .ii,
textarea.Ak,
table tbody tbody tr td font,
div[aria-label="Message Body"], /* compose area */
table[aria-role="presentation"] .iA.g6, /* excerpts in conversation view */
tr.zA.yO span.y2, /* excerpts in inbox view */
.jj /* gmail offline */
{
font-family: monospace !important;
font-size: small !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment