Discussion:
font sizes in thunderbird's mailbox display?
(too old to reply)
Matt Price
2005-09-14 13:30:12 UTC
Permalink
Hi folks,

anyone know if there's any way to set the font size used by thunderbird
for its own display (by which I mean: fonts and sizes used e.g. in the
menubar, in the toolbars, and especially in the mailbox display -- I've
just installed Stacked View Extension -- which is great! -- but it
leaves me wanting a smaller font in the mbox view so I can see a little
more.

thanks,
matt
--
To UNSUBSCRIBE, email to debian-user-***@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact ***@lists.debian.org
Michael Marsh
2005-09-14 22:50:14 UTC
Permalink
Post by Matt Price
anyone know if there's any way to set the font size used by thunderbird
for its own display (by which I mean: fonts and sizes used e.g. in the
menubar, in the toolbars, and especially in the mailbox display -- I've
just installed Stacked View Extension -- which is great! -- but it
leaves me wanting a smaller font in the mbox view so I can see a little
more.
Here's what I have in my userChrome.css, which does that and a bit
more. Note especially the frequent use of "!important". I'm not
entirely sure why settings in userChrome.css don't automatically get
top priority, but there you have it. For anything I haven't set, you
can always unpack the default theme and go poking around, which is
what I did. That is, unless they've gotten around to actually
documenting these features.

treechildren {
background-color: #F1F1F1 !important;
font-family: Nimbus Sans L !important;
font-size: 14px !important; }

treechildren::-moz-tree-cell-text(unread) {
font-size: 10pt !important;
font-family : Nimbus Sans L !important;
font-weight: normal !important;
color: #C50000 !important }

treechildren::-moz-tree-cell-text(read) {
font-size: 10pt ! important;
font-family : Nimbus Sans L !important; }

treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true),
treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true),
treechildren::-moz-tree-cell-text(folderNameCol, specialFolder-Inbox,
newMessages-true) {
font-weight: normal !important;
color: #C50000 !important
}

treechildren::-moz-tree-cell-text(folderNameCol, isServer-true,
biffState-NewMail) {
font-weight: normal !important;
color: #C50000 !important
}

treechildren::-moz-tree-cell-text(folderNameCol, isServer-true) {
font-weight: normal !important;
color: #00A500 !important
}
--
Michael A. Marsh
http://www.umiacs.umd.edu/~mmarsh
http://mamarsh.blogspot.com
Matt Price
2005-09-20 13:30:33 UTC
Permalink
Post by Michael Marsh
Post by Matt Price
anyone know if there's any way to set the font size used by thunderbird
for its own display (by which I mean: fonts and sizes used e.g. in the
menubar, in the toolbars, and especially in the mailbox display -- I've
just installed Stacked View Extension -- which is great! -- but it
leaves me wanting a smaller font in the mbox view so I can see a little
more.
Here's what I have in my userChrome.css, which does that and a bit
more. Note especially the frequent use of "!important". I'm not
entirely sure why settings in userChrome.css don't automatically get
top priority, but there you have it. For anything I haven't set, you
can always unpack the default theme and go poking around, which is
what I did. That is, unless they've gotten around to actually
documenting these features.
treechildren {
background-color: #F1F1F1 !important;
font-family: Nimbus Sans L !important;
font-size: 14px !important; }
treechildren::-moz-tree-cell-text(unread) {
font-size: 10pt !important;
font-family : Nimbus Sans L !important;
font-weight: normal !important;
color: #C50000 !important }
treechildren::-moz-tree-cell-text(read) {
font-size: 10pt ! important;
font-family : Nimbus Sans L !important; }
treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true),
treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true),
treechildren::-moz-tree-cell-text(folderNameCol, specialFolder-Inbox,
newMessages-true) {
font-weight: normal !important;
color: #C50000 !important
}
treechildren::-moz-tree-cell-text(folderNameCol, isServer-true,
biffState-NewMail) {
font-weight: normal !important;
color: #C50000 !important
}
treechildren::-moz-tree-cell-text(folderNameCol, isServer-true) {
font-weight: normal !important;
color: #00A500 !important
}
thanks michael! got distracted and haven't tried this out thoroughly
(didn't work the first time and I'm not sure what I'm doing wrong) --
but will archive it and keep it for future needs. thanks,
m
--
--------------------------
.''`. Matt Price
: :' : Debian User
`. `'` & hemi-geek
`-
--------------------------
if you're an evil spambot, these addresses are for you:
***@derailleur.org, ***@derailleur.org
--
To UNSUBSCRIBE, email to debian-user-***@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact ***@lists.debian.org
Michael Marsh
2005-09-20 13:50:21 UTC
Permalink
Post by Matt Price
thanks michael! got distracted and haven't tried this out thoroughly
(didn't work the first time and I'm not sure what I'm doing wrong) --
but will archive it and keep it for future needs. thanks,
m
Make sure you put the changes in $TBIRD_PROFILE/chrome/userChrome.css
and that you restart Thunderbird after making changes. Ideally, you
should only make changes to userChrome.css when the client isn't
running.
--
Michael A. Marsh
http://www.umiacs.umd.edu/~mmarsh
http://mamarsh.blogspot.com
Loading...