Тема закрыта
Страницы: 1
Хочу изменить цвета фона и текста строчек списка писем.
Чтобы было видно по цвету фона письма прочитаны или нет.
Так же по цвету фона удобно определить, есть ли письма в папке "Входящие".
У меня Thunderbird 3.1.4. Кто знает как это сделать, напишите пожалуйста.
Отсутствует
Do not meddle in the affairs of Wizards, for they are subtle and quick to anger.
Отсутствует
Через правку userChrome.css
СПАСИБО!!!
Вот мой вариант:
Создаем файлик userChrome.css в папке ... \ThunderbirdPortable\Data\profile\chrome\userChrome.css и вставляем в него код:
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ /*Зеленый цвет названий папок*/ treechildren::-moz-tree-cell-text { color: #00ff00 !important; } /* Сделать непрочитанные сообщения синий и жирный */ treechildren:-moz-tree-cell-text(unread) {color: #0002ff !important; font-weight: bold !important;} /* Изменение фонового цвета непрочитанных сообщений немного красного */ treechildren::-moz-tree-cell(unread) {background-color: #330000 !important;} treechildren::-moz-tree-cell(unread,selected) {background-color: #660000 !important;} /* Сделать прочитанные сообщения зеленым */ treechildren:-moz-tree-cell-text(read) {color: #00ff00 !important;} treechildren::-moz-tree-cell(read) {background-color: #000000 !important;} treechildren::-moz-tree-cell(read,selected) {background-color: #dc143c !important;} treechildren::-moz-tree-cell-text(selected) {color: #000000 !important; background-color: #dc143c !important;} /* Выделение красным цветом*/ treechildren::-moz-tree-cell(selected) {color: #000000 !important; background-color: #dc143c !important;} /* Черный фон */ treechildren {background-color: #000000 !important;}
Незабываем настроить расцветовку сообщений:
В Настройках: Отображение -> Форматирование: Цвет текста (зеленый), цвет фона (черный), Цвет цитат (желтый)
Отсутствует
Тема закрыта
Страницы: 1