userCHROME.css tweak?

User Help for Mozilla Thunderbird
Post Reply
ACFairbanks
Posts: 300
Joined: April 23rd, 2011, 5:51 pm

userCHROME.css tweak?

Post by ACFairbanks »

Howdy,

I've been experimenting (with nearly total success) with display tweaks generated by a userCHROME.css file.

At this point, I have just one hitch:

When I click on Inbox, my message list displays as I would like, but the single message that has the cursor on it, is impossible to read:

That's because the selection bar is pale blue, and the text is white. The contrast is so low, that I can't read a word.

What userCHROME.css tweak will control the color of the text of that selected message subject line etc?

Sincere thanks,

A.C.
morat
Posts: 6432
Joined: February 3rd, 2009, 6:29 pm

Re: userCHROME.css tweak?

Post by morat »

Try this:

Code: Select all

/* Thunderbird userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

#threadTree treechildren::-moz-tree-row(selected, focus)
{ background-color: darkslateblue !important; }

#expandedHeaderView
{ background-color: gainsboro !important; }
http://kb.mozillazine.org/UserChrome.css
Last edited by morat on May 18th, 2017, 8:52 am, edited 1 time in total.
ACFairbanks
Posts: 300
Joined: April 23rd, 2011, 5:51 pm

Re: userCHROME.css tweak?

Post by ACFairbanks »

Hello Morat,

Your speedy suggestion worked perfectly.

Very sincere thanks,

A.C.
ACFairbanks
Posts: 300
Joined: April 23rd, 2011, 5:51 pm

Re: userCHROME.css tweak?

Post by ACFairbanks »

Hi again,

With further experimentation, I do have another question:

What is the CSS tweak to change the color of the header on the inbox (that is, the header that displays such things as "Subject -- From -- Date" etc?

Many thanks, as before,

A.C.
morat
Posts: 6432
Joined: February 3rd, 2009, 6:29 pm

Re: userCHROME.css tweak?

Post by morat »

Try this:

Code: Select all

#threadTree treecol
{ -moz-border-top-colors: peachpuff peachpuff !important;
  -moz-border-right-colors: peachpuff peachpuff !important;
  -moz-border-bottom-colors: peachpuff peachpuff !important;
  -moz-border-left-colors: peachpuff peachpuff !important;
  background-color: peachpuff !important;
  color: cornflowerblue !important; }
The terminology is folder pane, thread pane and message pane. The main window is called the 3pane window.

The inbox is a folder in the folder pane.
ACFairbanks
Posts: 300
Joined: April 23rd, 2011, 5:51 pm

Re: userCHROME.css tweak?

Post by ACFairbanks »

Hi again Morat,

I tried your suggestion above by cutting and pasting, but the area I called the "Header" remains white.

Thanks for any further thoughts,

A.C.
morat
Posts: 6432
Joined: February 3rd, 2009, 6:29 pm

Re: userCHROME.css tweak?

Post by morat »

The style colors the header in the thread pane in Windows 7.

Hopefully, a Windows 10 user will post a solution.
ACFairbanks
Posts: 300
Joined: April 23rd, 2011, 5:51 pm

Re: userCHROME.css tweak?

Post by ACFairbanks »

Hi again,

Well, I do appreciate your effort...,

A.C.
Post Reply