On 01/16/2018 11:39 AM, Al Lawrence wrote:
>> If you cannot find a suitable addon, I will post the userChrome.css I
>> use on my TB installation.
> Just post it.....
>
Okay.
/* do not remove this line */
/* set default namespace to XUL */
/* Text In Tab Labels And Tool Bar(s)
*/
toolbar {
font-weight: normal !important;
font-size: 16px !important;
font-family: SkiaCC, Calibri, Segoe UI, sans-serif !important;
}
/* Menu font Top of the window: File/Edit etc
*/
menu, menulist, menuitem {
font-family: SkiaCC, sans-serif !important;
font-size: 16px !important;
}
/* Set Font Size In Folder Pane and Thread Pane
*/
#folderTree >treechildren::-moz-tree-cell-text {
font-size: 16px !important;
font-family: SkiaCC, Calibri, Segoe UI Symbol, sans-serif !important;
}
#threadTree >treechildren::-moz-tree-cell-text {
font-size: 17px !important;
font-family: SkiaCC, sans-serif !important;
}
/* After adjusting the font size(s), you find that the spacing between
the lines also needs adjusting, here's code to accomplish that.
*/
#folderTree >treechildren::-moz-tree-row {
height: 22px !important;
}
#threadTree >treechildren::-moz-tree-row {
height: 22px !important;
}
/* this changes the lines use in the headers to link threads
*/
tree[seltype="cell"] > treechildren::-moz-tree-line,
tree[seltype="text"] > treechildren::-moz-tree-line,
treechildren::-moz-tree-line {
border: 1px dotted #006 !important;
}
/* normally when an email is selected, the folder turns from dark blue
background to light blue.
*/
/* Folderpane - Text fore- and background of folder when email is selected
*/
#folderTree treechildren::-moz-tree-cell-text(selected) {
/* background-color: #3a81cc !important; */
color: #cfc !important;
}
/* Folderpane - Text fore- and background color of folder when first
selected
*/
#folderTree treechildren::-moz-tree-cell-text(selected, focus) {
/* background-color: #3a81cc !important; */
color: white !important;
}
/* Change the colour of unread messages and containing folders
*/
treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true) {
color: #000 !important;
font-weight: bold !important;
}
/* Account with new mail
*/
#folderTree > treechildren::-moz-tree-cell-text(isServer-true,
biffState-NewMail,) {
color: #000 !important;
font-weight: bold !important;
}
treechildren::-moz-tree-cell-text(folderNameCol, specialFolder-Inbox,
newMessages-true) {
color: #360 !important;
font-weight: bold !important;