>Форум Mozilla Россия http://forum.mozilla-russia.org/index.php >Thunderbird http://forum.mozilla-russia.org/viewforum.php?id=7 >Как изменить цвета фона и текста строк списка писем. http://forum.mozilla-russia.org/viewtopic.php?id=46357 |
xamyt > 05-10-2010 14:06:18 |
Хочу изменить цвета фона и текста строчек списка писем. |
Unghost > 05-10-2010 21:08:51 |
Sega82 > 06-10-2010 11:49:52 |
Unghost пишет
СПАСИБО!!! Выделить код Код:@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;} Незабываем настроить расцветовку сообщений: В Настройках: Отображение -> Форматирование: Цвет текста (зеленый), цвет фона (черный), Цвет цитат (желтый) |
xamyt > 08-10-2010 15:39:01 |
Спасибо |