Column headings - dif. color than list of emails

User Help for Mozilla Thunderbird
Post Reply
quickquestion
Posts: 99
Joined: March 28th, 2011, 11:24 am

Column headings - dif. color than list of emails

Post by quickquestion »

The pane that has column headings such as Subject, From, Date, etc... and below that is the list of emails in that folder.

The column headings are the same color as the list of emails. Please help me figure out how to make it a different color.

ver 52.1.0, 32-bit
User avatar
Eckard
Posts: 1414
Joined: September 5th, 2011, 8:17 am
Location: Paris (not TX)

Re: Column headings - dif. color than list of emails

Post by Eckard »

You may copy/paste the following css codes in a userChrome.css file (http://kb.mozillazine.org/index.php?tit ... Chrome.css) or in a new "user style" after installing the "Stylish" add-on https://addons.mozilla.org/en-US/thunde ... ostpopular :

Code: Select all

#subjectCol {
background: red !important; 
border: none !important;
-moz-appearance: none !important; }

#senderCol {
background: azure !important; 
border: none !important;
-moz-appearance: none !important;  }

#dateCol {
background: yellow !important; 
border: none !important;
-moz-appearance: none !important; }
and so on for the other columns such as #sizeCol, #correspondentCol, #recipientCol, ....
Use colors of your choice or replace them by hexadecimal color codes https://www.computerhope.com/htmcolor.htm
quickquestion
Posts: 99
Joined: March 28th, 2011, 11:24 am

Re: Column headings - dif. color than list of emails

Post by quickquestion »

Thank you. I ended up using this:

.treecol, .treecols, .treecol-image,
#starCol,
#threadCol,
#unreadButtonColHeader,
#recipientCol,
#junkStatusCol,
#receivedCol,
#statusCol,
#sizeCol,
#tagsCol,
#accountCol,
#priorityCol,
#totalCol,
#idCol,
#statusCol,
#unreadCol,
#senderCol,
#locationCol,
#dateCol,
#attachmentCol,
#subjectCol,
#flaggedCol
{
-moz-appearance: none !important; /* Overrides mozilla's setting */
background-color: #BCDBDB !important;
}
User avatar
Eckard
Posts: 1414
Joined: September 5th, 2011, 8:17 am
Location: Paris (not TX)

Re: Column headings - dif. color than list of emails

Post by Eckard »

Excellent ;)
Post Reply