Created
March 1, 2015 05:47
-
-
Save markc/5f53f0e3d003ec0eaa54 to your computer and use it in GitHub Desktop.
Thunderbird userChrome.css for HiDPI screen
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
/* userChrome.css 20090601 (C) Mark Constable <[email protected]> (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