Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

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

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

Подробнее

Inbox view font size

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

more options

I use an imac and mac products. I see many answers of how to make the font size of the text bigger when wanting the folders section, the outgoing font etc look larger but my issue is when looking at the inbox or within any other folder that is, the font of the actual emails sitting in the inbox is too small. I tried the config and changing the numer to 1.45 but that helped everything except the actual message list of messages in the mailboxes.

I have attached an image of the part of the inbox i would like to see more clearly.

I use an imac and mac products. I see many answers of how to make the font size of the text bigger when wanting the folders section, the outgoing font etc look larger but my issue is when looking at the inbox or within any other folder that is, the font of the actual emails sitting in the inbox is too small. I tried the config and changing the numer to 1.45 but that helped everything except the actual message list of messages in the mailboxes. I have attached an image of the part of the inbox i would like to see more clearly.
Приложенные скриншоты

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

more options

I'm not sure what you want. You mention the fonts of actual emails is too small (and that can be addressed by tools>preferences>fonts&colors - not sure of MAC menu structure...) but here is some sample text that can be used in userControl.css. The font-family and colors are just examples:

In config editor:

  toolkit.legacyUserProfileCustomizations.stylesheets to true 

Try this css code:

/* Threads Pane font and background*/

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

}

/* Folder Pane font and background*/

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

}