Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

További tudnivalók
A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.
Solved Archivált

Set background colour in TB Write window

Ross Palmer megválaszolva
Ross Palmer

Running TB 128.14.0esr on Linux Mint MATE. In the Create new message (Write) window, I want to change the background colour of the panel that contains From, To, and Subject. This is currently a light grey. What userChrome code can I use to change the colour? Thanks

Running TB 128.14.0esr on Linux Mint MATE. In the Create new message (Write) window, I want to change the background colour of the panel that contains From, To, and Subject. This is currently a light grey. What userChrome code can I use to change the colour? Thanks

Összes válasz (3)

Kiválasztott megoldás

code to be used in a userChrome.css file

I've used colours indicated using a # followed by relevant number which you can modify as you prefer. I've included various other parts of the same Write new message window which you can use or omit as desired


/* Write window*/

/* Contacts - Side panel */
#abContactsPanel,
#contactsSidebar .sidebar-header {
  background-color: #002633 !important;  
}


/* Whole Header Box with From & To Subject Cc etc. b-ground & text */
#MsgHeadersToolbar {
  background-color:  #00464f     !important;
  color:            White       !important;
}


/* The 'Menu bar' File,View, Edit - and 'Composition toolbar' */
#compose-toolbox toolbar {
  background-color: #00464f        !important;
}


/* Formatting toolbar */
#FormatToolbox,
#FormatToolbar > menulist  {
  background-color: #002633   !important;
  color:            white   !important;
}


The only areas I'm having a bit of an issue are the drop down menus. But I can live with it. Maybe I'll get it sorted at some point.

Thanks this worked perfectly.