2001-03-16 05:56:38 +03:00
|
|
|
/*
|
2000-04-28 06:03:45 +04:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
2001-03-16 05:56:38 +03:00
|
|
|
*
|
2000-04-28 06:03:45 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
2001-03-16 05:56:38 +03:00
|
|
|
*
|
2000-04-28 06:03:45 +04:00
|
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
|
|
* March 31, 1998.
|
2001-03-16 05:56:38 +03:00
|
|
|
*
|
2000-04-28 06:03:45 +04:00
|
|
|
* The Initial Developer of the Original Code is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
2001-03-16 05:56:38 +03:00
|
|
|
* Copyright (C) 1998-2001 Netscape Communications Corporation. All
|
2000-04-28 06:03:45 +04:00
|
|
|
* Rights Reserved.
|
2001-03-16 05:56:38 +03:00
|
|
|
*
|
|
|
|
* Contributor(s):
|
2001-03-17 04:59:34 +03:00
|
|
|
* Scott MacGregor (mscott@netscape.com)
|
2001-03-16 05:56:38 +03:00
|
|
|
* Joe Hewitt (hewitt@netscape.com)
|
2000-04-28 06:03:45 +04:00
|
|
|
*/
|
|
|
|
|
2001-03-16 05:56:38 +03:00
|
|
|
/* ===== threadPane.css ==============================================
|
|
|
|
== Styles for the thread pane in the Messenger 3-pane window.
|
|
|
|
======================================================================= */
|
|
|
|
|
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
|
2001-09-01 02:34:50 +04:00
|
|
|
/* ::::: thread decoration ::::: */
|
2001-03-17 04:59:34 +03:00
|
|
|
|
2001-04-30 22:58:08 +04:00
|
|
|
outlinerbody:-moz-outliner-cell-text(unread) {
|
2001-03-16 05:56:38 +03:00
|
|
|
font-weight: bold;
|
2000-04-28 06:03:45 +04:00
|
|
|
}
|
|
|
|
|
2001-04-04 06:13:41 +04:00
|
|
|
/* on a collapsed thread, if the top level message is read, but the thread has
|
|
|
|
* unread children, underline the text. 4.x mac did this, very slick
|
|
|
|
*/
|
2001-04-30 22:58:08 +04:00
|
|
|
outlinerbody:-moz-outliner-cell-text(container, closed, hasUnread, read) {
|
2001-04-04 06:13:41 +04:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2001-03-17 04:59:34 +03:00
|
|
|
|
2001-03-16 05:56:38 +03:00
|
|
|
/* ::::: priority colors ::::: */
|
|
|
|
|
2001-06-16 05:08:35 +04:00
|
|
|
outlinerbody:-moz-outliner-cell-text(priorityCol, priority-highest) {
|
2001-04-30 22:58:08 +04:00
|
|
|
color: red;
|
2000-04-28 06:03:45 +04:00
|
|
|
}
|
|
|
|
|
2001-06-16 05:08:35 +04:00
|
|
|
outlinerbody:-moz-outliner-cell-text(priorityCol, priority-high) {
|
2001-03-16 05:56:38 +03:00
|
|
|
color: rgb(128, 0, 0);
|
2000-04-28 06:03:45 +04:00
|
|
|
}
|
|
|
|
|
2001-06-16 05:08:35 +04:00
|
|
|
outlinerbody:-moz-outliner-cell-text(priorityCol, priority-lowest) {
|
2001-03-16 05:56:38 +03:00
|
|
|
color: rgb(170, 170, 170);
|
2000-04-28 06:03:45 +04:00
|
|
|
}
|
|
|
|
|
2001-06-16 05:08:35 +04:00
|
|
|
outlinerbody:-moz-outliner-cell-text(priorityCol, priority-low) {
|
2001-03-16 05:56:38 +03:00
|
|
|
color: rgb(85, 85, 85);
|
2000-04-28 06:03:45 +04:00
|
|
|
}
|
|
|
|
|
2001-06-16 05:08:35 +04:00
|
|
|
outlinerbody:-moz-outliner-cell-text(priorityCol, selected, focus) {
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
outlinerbody:-moz-outliner-cell-text(priorityCol, selected, focus) {
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
2001-03-16 05:56:38 +03:00
|
|
|
/* ::::: message icons ::::: */
|
|
|
|
|
|
|
|
/* ::::: message column icons ::::: */
|
|
|
|
|
|
|
|
/* ..... thread column ..... */
|
|
|
|
|
2001-03-17 04:59:34 +03:00
|
|
|
outlinercol.threadColumnHeader {
|
2001-03-16 05:56:38 +03:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/threadcol-unthreaded.gif");
|
2000-04-28 06:03:45 +04:00
|
|
|
}
|
|
|
|
|
2001-03-17 04:59:34 +03:00
|
|
|
outlinercol.threadColumnHeader[sortDirection="ascending"] {
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/threadcol-threaded.gif");
|
2000-04-28 06:03:45 +04:00
|
|
|
}
|
|
|
|
|
2001-03-17 04:59:34 +03:00
|
|
|
outlinercol.threadColumnHeader[sortDirection="descending"] {
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/threadcol-threaded.gif");
|
2000-04-28 06:03:45 +04:00
|
|
|
}
|
|
|
|
|
2001-03-24 04:50:33 +03:00
|
|
|
outlinerbody:-moz-outliner-image(threadCol, container) {
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/thread-closed.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
outlinerbody:-moz-outliner-image(threadCol, container, open) {
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/thread-open.gif");
|
|
|
|
}
|
2000-09-08 08:21:41 +04:00
|
|
|
|
2001-04-02 11:22:27 +04:00
|
|
|
outlinerbody:-moz-outliner-image(threadCol, container, hasUnread) {
|
2001-03-27 03:17:33 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/thread-new-closed.gif");
|
|
|
|
}
|
|
|
|
|
2001-04-02 11:22:27 +04:00
|
|
|
outlinerbody:-moz-outliner-image(threadCol, container, hasUnread, open) {
|
2001-03-27 03:17:33 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/thread-new-open.gif");
|
|
|
|
}
|
|
|
|
|
2001-03-16 05:56:38 +03:00
|
|
|
/* ..... read column ..... */
|
|
|
|
|
2001-03-17 04:59:34 +03:00
|
|
|
outlinercol.readColumnHeader {
|
2001-03-16 05:56:38 +03:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/readcol-unread.gif");
|
2000-09-08 08:21:41 +04:00
|
|
|
}
|
|
|
|
|
2001-03-24 04:50:33 +03:00
|
|
|
outlinerbody:-moz-outliner-image(unreadButtonColHeader) {
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/readcol-read.gif");
|
2001-07-03 10:23:13 +04:00
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 4px;
|
2001-03-24 04:50:33 +03:00
|
|
|
}
|
2000-09-08 08:21:41 +04:00
|
|
|
|
2001-03-24 04:50:33 +03:00
|
|
|
outlinerbody:-moz-outliner-image(unreadButtonColHeader, unread) {
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/readcol-unread.gif");
|
|
|
|
}
|
2000-04-28 06:03:45 +04:00
|
|
|
|
2001-03-16 05:56:38 +03:00
|
|
|
/* ..... flag column ..... */
|
|
|
|
|
2001-03-17 04:59:34 +03:00
|
|
|
outlinercol.flagColumnHeader {
|
2001-03-16 05:56:38 +03:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/flagcol-flagged.gif");
|
2000-04-28 06:03:45 +04:00
|
|
|
}
|
|
|
|
|
2001-03-24 04:50:33 +03:00
|
|
|
outlinerbody:-moz-outliner-image(flaggedCol) {
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/readcol-read.gif");
|
2001-07-03 10:23:13 +04:00
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 4px;
|
2001-03-24 04:50:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
outlinerbody:-moz-outliner-image(flaggedCol, flagged) {
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/flagcol-flagged.gif");
|
2001-03-27 03:17:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ..... subject column ..... */
|
|
|
|
|
|
|
|
outlinerbody:-moz-outliner-image(subjectCol) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-03-27 03:17:33 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-mail.gif");
|
|
|
|
}
|
|
|
|
|
2001-04-05 12:13:37 +04:00
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, new) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-03-27 03:17:33 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-mail-new.gif");
|
|
|
|
}
|
|
|
|
|
2001-03-28 06:41:56 +04:00
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, attach) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-03-28 06:41:56 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-mail-attach.gif");
|
2001-03-27 03:17:33 +04:00
|
|
|
}
|
|
|
|
|
2001-03-28 06:41:56 +04:00
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, imapdeleted) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-03-28 06:41:56 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-mail-imapdelete.gif");
|
2001-03-27 03:17:33 +04:00
|
|
|
}
|
|
|
|
|
2001-06-16 05:08:35 +04:00
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, offline) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-06-16 05:08:35 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-mail-offl.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, new, offline) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-06-16 05:08:35 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-mail-new-offl.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, attach, offline) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-06-16 05:08:35 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-mail-attach-offl.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, imapdeleted, offline) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-06-16 05:08:35 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-mail-delete-offl.gif");
|
|
|
|
}
|
|
|
|
|
2001-03-27 03:17:33 +04:00
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, news) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-03-27 03:17:33 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-news.gif");
|
|
|
|
}
|
|
|
|
|
2001-04-05 12:13:37 +04:00
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, news, new) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-03-27 03:17:33 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-news-new.gif");
|
|
|
|
}
|
2001-03-28 06:41:56 +04:00
|
|
|
|
2001-04-06 07:43:00 +04:00
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, news, attach) {
|
2001-08-15 09:07:48 +04:00
|
|
|
padding-right: 2px;
|
2001-04-06 07:43:00 +04:00
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-news-attach.gif");
|
|
|
|
}
|
|
|
|
|
2001-08-31 04:08:06 +04:00
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, news, offline) {
|
|
|
|
padding-right: 2px;
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-news-offl.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, news, new, offline) {
|
|
|
|
padding-right: 2px;
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-news-new-offl.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
outlinerbody:-moz-outliner-image(subjectCol, news, attach, offline) {
|
|
|
|
padding-right: 2px;
|
|
|
|
list-style-image: url("chrome://messenger/skin/icons/message-news-attach-offl.gif");
|
|
|
|
}
|
|
|
|
|
|
|
|
|