Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen
  • Gelöst
  • Archiviert

Supernova 115* - How to change background colour of Menu Bar and Tabs.

If you have enabled the Menu Bar, maybe you find it is the same colour as the Unified folder and want to change it. Maybe you want to change the colour of the opened Tabs… (Lesen Sie mehr)

If you have enabled the Menu Bar, maybe you find it is the same colour as the Unified folder and want to change it. Maybe you want to change the colour of the opened Tabs. Read the information below to help you use 'userChrome.css' and tailor make your own Thunderbird.

Gefragt von Toad-Hall vor 7 Monaten

Beantwortet von Toad-Hall vor 7 Monaten

  • Gelöst
  • Gesperrt
  • Archiviert

Thunderbird 115.0 64bit - change background colors

was recently forced to upgrade to winblows 11.. in the previous version of Thunderbird, 102.2 64 bit, I could follow these instructions to background colors in the vari… (Lesen Sie mehr)

was recently forced to upgrade to winblows 11.. in the previous version of Thunderbird, 102.2 64 bit, I could follow these instructions to background colors in the various panes .

https://support.mozilla.org/en-US/questions/1389364

Now with version 115.0, I am having issues getting it to work.

the CSS file I am using is

  1. threadTree > treechildren {
 font-size: 16pt !important;
 font-family: Times !important;
 background-color: lightgrey !important;
 color: navy !important;

}

  1. folderTree > treechildren {
 font-size: 16pt !important;
 font-family: Times !important;
 background-color: lightgrey !important;
 color: navy !important;

} after I follow the instructions, carefully, nothing happens. see screenshot attached...

I have 2 questions:

1 - what am i doing wrong? 2 - In the attached screenshot, how can I get rid of that toolbar in green on the left?

Gefragt von PandaGuy1961 vor 10 Monaten

Beantwortet von sfhowes vor 10 Monaten

  • Archiviert

Thunderbird 115 folder pane colours

Does anyone know how to change the folderpane colours in 115. I use a userChrome.css, which no longer works in 115, as I beleive the commands have changed. This is what … (Lesen Sie mehr)

Does anyone know how to change the folderpane colours in 115. I use a userChrome.css, which no longer works in 115, as I beleive the commands have changed.

This is what I use currently, but have no idea what changed need to be made to make it work in 115. Any help would be appreciated.


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

/* set default namespace to XUL */


treechildren::-moz-tree-row {margin-bottom: -3px !important;} treechildren::-moz-tree-row(hover), treechildren::-moz-tree-row(selected) {margin-bottom: -2px !important;}

/**/

   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true) {
     font-weight: bold !important;
     color: Black !important;
   }
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true, selected) {
     font-weight: bold !important;
     color: Black !important;
   }
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true) {
     font-weight: bold !important;
     color: Black !important;
   }
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true, selected) {
     font-weight: bold !important;
     color: Black !important;
   }
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, closed, subfoldersHaveUnreadMessages-true) {
     font-weight: bold !important;
     color: Black !important;
   }
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, closed, subfoldersHaveUnreadMessages-true, selected) {
     font-weight: bold !important;
     color: Black !important;
   }
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, closed, newMessages-true),
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true),
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, specialFolder-Inbox, newMessages-true) {
     font-weight: bold !important;
     color: Black !important;
   }
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, closed, newMessages-true, selected),
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true, selected),
   #folderTree > treechildren::-moz-tree-cell-text(folderNameCol, specialFolder-Inbox, newMessages-true, selected) {
     font-weight: bold !important;
     color: Black !important;
   }

/**/'''''''

Gefragt von mrm.one vor 10 Monaten

Letzte Antwort von mrm.one vor 10 Monaten

  • Archiviert

Thunderbird 115

Re: userchrome.css It appears only part of my userchrome file affects customization in latest release (115). Is there any information on use of, or changes needed, to co… (Lesen Sie mehr)

Re: userchrome.css It appears only part of my userchrome file affects customization in latest release (115). Is there any information on use of, or changes needed, to continue customizations, e.g. mail folders font weight, message pane grid lines, mail folder pane background color, thickness of pane splitters, etc.?? Everything worked in 102.x...

Gefragt von Brant Mercer vor 10 Monaten

Letzte Antwort von Brant Mercer vor 10 Monaten

  • Archiviert

supernova unified toolbar button colors

I currently use: <profile>\chrome\userChrome.css to make various buttons stand out for some elderly users that I support. For example: button-archive:hov… (Lesen Sie mehr)

I currently use:

  <profile>\chrome\userChrome.css 

to make various buttons stand out for some elderly users that I support. For example:

  1. button-archive:hover {
  border: 2px dashed black !important;

}

  1. button-archive,
  2. hdrArchiveButton {
  background-image: none !important;
  background-color: #66ff66 !important; 

}

I can't figure out how to do this with Supernova (115+). Thanks.

Gefragt von Paul vor 10 Monaten

Letzte Antwort von david vor 10 Monaten

  • Gelöst
  • Archiviert

Convert old CSS snippet to 115

I used to use something like this to reduce the fontsize and remove bold from the folder items... #folderTree > treechildren::-moz-tree-cell-text { font-size:… (Lesen Sie mehr)

I used to use something like this to reduce the fontsize and remove bold from the folder items...

   #folderTree > treechildren::-moz-tree-cell-text {
     font-size: 75% !important;
     font-weight: normal !important;
   }

I've looked through this file and tried a few likely options but nothing seems to work...

https://searchfox.org/comm-esr115/source/mail/themes/shared/mail/folderPane.css

Would anyone have a suggestion as to how to convert the above snippet from the old CSS scheme to 115?

Actually, I would also like to change what is bolded in the folder pane to blue (unbold) like the next example for the message thread pane which does work in 115...

   #threadTree tbody [data-properties~="unread"] {
     color: #5FAFFF !important;
     font-weight: normal !important;
   }

Gefragt von markc vor 9 Monaten

Beantwortet von markc vor 9 Monaten