Created
January 6, 2015 10:43
-
-
Save craftzdog/c70f3112f919aa160403 to your computer and use it in GitHub Desktop.
Stylesheet for plain text e-mail on Thunderbird
This file contains 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
/* Save it to ~/Library/Thunderbird/Profiles/*.default/chrome/userContent.css */ | |
span[_moz_quote=true] { | |
color: orange !important; | |
} | |
pre[_moz_quote=true] { | |
color: orange !important; | |
} | |
blockquote[type=cite] { | |
color: orange !important; | |
border-left-color: orange !important; | |
} | |
blockquote[type=cite] blockquote { | |
color: aqua ! important; | |
border-left-color: aqua !important; | |
} | |
blockquote[type=cite] blockquote blockquote { | |
color: greenyellow !important; | |
border-left-color: greenyellow !important; | |
} | |
blockquote[type=cite] blockquote blockquote blockquote { | |
color: HotPink !important; | |
border-left-color: HotPink !important; | |
} | |
blockquote[type=cite] blockquote blockquote blockquote blockquote { | |
color: yellow !important; | |
border-left-color: yellow !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment