Created
February 23, 2015 21:24
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-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