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

Поиск в поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее
Решено

How to change color of column title backgrounds in message list

fhutt отвечено
fhutt

I am using Windows 11 with the latest Thunderbird 151.0.1. I have been trying to add color to the column title background in the message list using the userChrome.css with the following:

  1. sizeCol {background-color: #dcfffc !important;}
  2. recipientCol {background-color: #dcfffc !important;}
  3. subjectCol {background-color: #dcfffc !important;}
  4. dateCol {background-color: #dcfffc !important;}
  1. spamCol {background-color: #dcfffc !important;}
  2. fromCol { background-color: #dcfffc  !important;}
  3. attachmentsCol { background-color: #dcfffc  !important;}

They work except the 'from', 'attachments' and 'spam' columns title backgrounds. Can anyone see what I am doing wrong? Or is there a way to color all column title backgrounds in one line? Thanks

I am using Windows 11 with the latest Thunderbird 151.0.1. I have been trying to add color to the column title background in the message list using the userChrome.css with the following: #sizeCol {background-color: #dcfffc !important;} #recipientCol {background-color: #dcfffc !important;} #subjectCol {background-color: #dcfffc !important;} #dateCol {background-color: #dcfffc !important;} #spamCol {background-color: #dcfffc !important;} #fromCol { background-color: #dcfffc !important;} #attachmentsCol { background-color: #dcfffc !important;} They work except the 'from', 'attachments' and 'spam' columns title backgrounds. Can anyone see what I am doing wrong? Or is there a way to color all column title backgrounds in one line? Thanks

Все ответы (2)

Выбранное решение

Try this (see attached picture on 151):

/* table view column buttons color*/
#subjectColButton, #correspondentColButton, #dateColButton, #attachmentColButton,
#flaggedColButton, #junkStatusColButton, #unreadButtonColHeaderButton, #threadColButton, #senderColButton {
  background-color: #87CEFA !important;
  font-weight: bold !important;
  color:navy !important;
}

/* column picker bg color */
button.button-flat.button-column-picker{background-color: #87CEFA !important;}

#threadTree button:hover { 
  background-color: coral !important;
  font-weight: bold !important;
  color:beige !important;
}

Thank you sfhowes.

It worked just the #recipientColButton, #sizeColButton column headers needed to be added to the list. I even liked your colors.

Задать вопрос

Для ответа на сообщения вы должны войти в свою учётную запись. Пожалуйста, задайте новый вопрос, если у вас ещё нет учётной записи.