Created
February 7, 2010 00:14
-
-
Save igal/297077 to your computer and use it in GitHub Desktop.
Thunderbird 3 user interface tweaks for use on small screens
This file contains 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
/* Thunderbird 3 user interface tweaks | |
* =================================== | |
* | |
* These changes improve Thunderbird's behavior on smaller screens. You should | |
* add these to your Thunderbird profile's "chrome/userChrome.css" file. You | |
* will probably need to create a directory and file. | |
*/ | |
/* Show a dot for unstarred messages in the message listing so that it's easy | |
* to tell which messages have are starred. | |
* | |
* Details: http://kb.mozillazine.org/Thunderbird_3.0_-_New_Features_and_Changes/Themes */ | |
/*{{{*/ | |
treechildren::-moz-tree-image(flaggedCol) { | |
-moz-image-region: rect(0px 16px 16px 0px) !important; | |
} | |
treechildren::-moz-tree-image(flaggedCol, flagged) { | |
-moz-image-region: rect(80px 16px 96px 0px) !important; | |
} | |
/*}}}*/ | |
/* Use a narrow font for the folder tree, message tree and message pane so they | |
* can be shown side-by-side. | |
* | |
* Details: http://kb.mozillazine.org/Pane_and_menu_fonts */ | |
/*{{{*/ | |
#messagepanebox, | |
#folderTree > treechildren, | |
#threadTree > treechildren { | |
font-size: 11pt !important; | |
font-family: 'Arial Narrow' !important; | |
color: #1A1A1A; | |
} | |
/*}}}*/ | |
/* Hide the stupid action buttons shown at the top of each message, which eat | |
* up a lot of vertical space and force the message pane to be very wide. Once | |
* disabled, you will probably want to customize the application toolbar to add | |
* buttons for "reply" there, because they'll be a fraction of the size if you | |
* use the "small icons without text" option. | |
* | |
* Details: http://kb.mozillazine.org/Thunderbird_3.0_-_New_Features_and_Changes */ | |
/*{{{*/ | |
.msgHeaderView-button { | |
display: none !important; | |
} | |
/*}}}*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment