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

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

Learn More

Make unread emails not Bold

  • 1 ответ
  • 1 имеет эту проблему
  • 46 просмотров
  • Последний ответ от sfhowes

more options

Is it possible to make it so unread emails no longer show up as bold? (or perhaps a less severe bold) If so how?

Is it possible to make it so unread emails no longer show up as bold? (or perhaps a less severe bold) If so how?

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

Here is a userChrome.css example for the Threads Pane font for unread mail:

/* Threads pane text */
treechildren::-moz-tree-cell-text(unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-style: italic !important;
  font-weight: normal !important;
  color: cyan !important;
}
treechildren::-moz-tree-cell-text(selected, unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-weight: normal !important;
  color: orange !important;
}

The font is normal instead of bold, and in italics. The size, color and family are all adjustable.

Create a folder named chrome in the profile folder, and in chrome create a userChrome.css file with a text editor.

Прочитайте этот ответ в контексте 👍 0

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

more options

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

Here is a userChrome.css example for the Threads Pane font for unread mail:

/* Threads pane text */
treechildren::-moz-tree-cell-text(unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-style: italic !important;
  font-weight: normal !important;
  color: cyan !important;
}
treechildren::-moz-tree-cell-text(selected, unread) {
  font-size: 12pt !important;
  font-family: Verdana !important;
  font-weight: normal !important;
  color: orange !important;
}

The font is normal instead of bold, and in italics. The size, color and family are all adjustable.

Create a folder named chrome in the profile folder, and in chrome create a userChrome.css file with a text editor.