Skip to content

Instantly share code, notes, and snippets.

@zorn
Created October 19, 2010 18:03
Show Gist options
  • Save zorn/634692 to your computer and use it in GitHub Desktop.
Save zorn/634692 to your computer and use it in GitHub Desktop.
For Postbox on Mac, helps make mail list easier to read.
/* Adjust size of font use in Message Pane */
#threadTree treechildren:-moz-tree-cell-text {
font-size: 11pt !important;
}
/* Increase size of rows in Message Pane */
#threadTree treechildren:-moz-tree-row {
height: 22px !important;
}
/* Add a light blue stripe to odd rows. */
#threadTree treechildren::-moz-tree-row(odd) {
background-color: #EDF3FE !important;
}
/* Make sure that odd rows still get the highlight color when you select them! */
#threadTree treechildren::-moz-tree-row(odd, selected) {
background-color: Highlight !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment