Created
April 25, 2021 15:02
-
-
Save RobinBoers/e01ff6169be31cad23f87e20dccb4b67 to your computer and use it in GitHub Desktop.
To enable userChrome.css in Thunderbird turn `toolkit.legacyUserProfileCustomizations.stylesheets` on in the Config Editor.
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
/* Set default namespace to XUL */ | |
@namespace | |
url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/* Set font size in folder pane */ | |
#folderTree >treechildren::-moz-tree-cell-text { | |
font-size: 12pt !important; | |
} | |
/* Set font size in thread pane */ | |
#threadTree >treechildren::-moz-tree-cell-text { | |
font-size: 13pt !important; | |
} | |
/* Set height for cells in folder pane */ | |
#folderTree >treechildren::-moz-tree-row { | |
height: 30px !important; | |
} | |
/* Set height for cells in thread pane */ | |
#threadTree >treechildren::-moz-tree-row { | |
height: 32px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment