昨天找了半天,終於發現要怎麼改大信件跟信件匣列表的字型大小。方法是要在 profile 目錄下造一個 chrome/userChrome.css 然後裡面放
* {
font-size: 14px !important
}
#folderTree treechildren:-moz-tree-row {
height: 18px !important;
}
#threadTree treechildren:-moz-tree-row {
height: 18px !important;
}
然後重開 Thunderbird 就可以了。
我是參考
http://forums.mozillazine.org/viewtopic.php?f=39&t=462468&start=0&st=0&sk=t&sd=a
只加上一行
treechildren {font-size: 150%;}
又多試了一下, 看來直接全域設定比較好用, 連 pop-up 設定視窗的字都變大了
感謝
補一些 link
http://kb.mozillazine.org/UserChrome-example.css
http://mxr.mozilla.org/seamonkey/source/suite/locales/en-US/profile/chrome/userChrome-example.css
http://www.mozilla.org/unix/customizing.html