Last active
April 3, 2017 13:01
-
-
Save silvercircle/d0d1665fda8064c60139709ffbbc2901 to your computer and use it in GitHub Desktop.
My userContent for Thunderbird
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
/* | |
* Get rid of right quoting bar and unnecessary paddings. | |
* | |
* note: works best with the following settings in prefs.js or (preferrably) | |
* user.js | |
* | |
* user_pref("mail.quoted_graphical", false); | |
* user_pref("mail.quoteasblock", false); | |
*/ | |
blockquote[type=cite] { | |
padding-bottom: 0 !important; | |
padding-top: 0 !important; | |
/* | |
* padding-left: 0 !important; | |
* border-left: none !important; | |
*/ | |
border-right: none !important; | |
} | |
/* | |
* different colors for up to 5 levels of plain-text quotes | |
* you can expand this by adding additional blockquote | |
* levels at the bottom, but seriously, 5 levels of quote | |
* should be enough. | |
*/ | |
blockquote[type=cite] { | |
color: navy ! important; | |
} | |
blockquote[type=cite] blockquote { | |
color: maroon ! important; | |
} | |
blockquote[type=cite] blockquote blockquote { | |
color: green ! important; | |
} | |
blockquote[type=cite] blockquote blockquote blockquote { | |
color: purple ! important; | |
} | |
blockquote[type=cite] blockquote blockquote blockquote blockquote { | |
color: teal ! important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment