Skip to content

Instantly share code, notes, and snippets.

@markc
Created March 1, 2015 05:47
Show Gist options
  • Save markc/5f53f0e3d003ec0eaa54 to your computer and use it in GitHub Desktop.
Save markc/5f53f0e3d003ec0eaa54 to your computer and use it in GitHub Desktop.
Thunderbird userChrome.css for HiDPI screen
/* userChrome.css 20090601 (C) Mark Constable <markc@renta.net> (AGPL-3.0) */
/* Thunderbird support for wide view on a HiDPI screen (Kubuntu DPI 288) */
/* smaller folder tree fontsize */
#folderTree > treechildren {
font-size: 24px !important;
}
/* header at the top of the message content */
#msgHeaderView {
font-size: 28px !important;
}
/* mark unread messages as unbold red */
treechildren::-moz-tree-cell-text(unread) {
color: #DF0000 !important;
font-weight: normal !important;
}
#threadTree > treechildren {
font-size: 32px !important;
background-color: #FFFFFF !important;
color: #000000 !important;
}
#threadTree treechildren::-moz-tree-row(even) {
background-color: #FFFFFF !important;
color: #000000 !important;
}
#threadTree treechildren::-moz-tree-row(odd) {
background-color: #FFFFFF !important;
color: #000000 !important;
}
#threadTree treechildren::-moz-tree-row(odd,selected) {
background-color: Highlight !important;
}
#threadTree treechildren::-moz-tree-row(even,selected) {
background-color: Highlight !important;
}
blockquote[type=cite] {
padding-bottom: 0 !important;
padding-top: 0 !important;
padding-left: 0 !important;
border-left: none !important;
border-right: none !important;
}
treechildren::-moz-tree-image() {
/*list-style-image: url("fish.png") !important; */
width: 32px;
height: 32px;
-moz-image-region: -moz-initial !important;
}
toolbarbutton > .toolbarbutton-icon {
width: 48px;
height: 48px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment