Skip to content

Instantly share code, notes, and snippets.

@RobinBoers
Created April 25, 2021 15:02
Show Gist options
  • Save RobinBoers/e01ff6169be31cad23f87e20dccb4b67 to your computer and use it in GitHub Desktop.
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.
/* 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