keep EarlyBlue in sync with tree - mailnews CSS split
[themes.git] / EarlyBlue / messenger / skin / threadPane.css
1 /*
2  * The contents of this file are subject to the Netscape Public
3  * License Version 1.1 (the "License"); you may not use this file
4  * except in compliance with the License. You may obtain a copy of
5  * the License at http://www.mozilla.org/NPL/
6  *
7  * Software distributed under the License is distributed on an "AS
8  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9  * implied. See the License for the specific language governing
10  * rights and limitations under the License.
11  *
12  * The Original Code is Mozilla Communicator client code, released
13  * March 31, 1998.
14  *
15  * The Initial Developer of the Original Code is Netscape
16  * Communications Corporation. Portions created by Netscape are
17  * Copyright (C) 1998-2001 Netscape Communications Corporation. All
18  * Rights Reserved.
19  *
20  * Contributor(s):
21  *   Scott MacGregor (mscott@netscape.com)
22  *   Joe Hewitt (hewitt@netscape.com)
23  *   Robert Kaiser (KaiRo@KaiRo.at)
24  */
25
26 /* ===== threadPane.css ==============================================
27   == Styles for the thread pane in the Messenger 3-pane window.
28   ======================================================================= */
29
30 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
31
32 /* ::::: thread decoration ::::: */
33
34 outlinerbody:-moz-outliner-cell-text(unread)
35 {
36   font-weight: bold;
37 }
38
39 outlinerbody:-moz-outliner-cell-text(offline)
40 {
41   font-style: italic;
42 }
43
44 /* ::::: priority colors ::::: */
45
46 outlinerbody:-moz-outliner-cell-text(priority-highest)
47 {
48   color:red;
49 }
50
51 outlinerbody:-moz-outliner-cell-text(priority-high)
52 {
53   color: rgb(128, 0, 0);
54 }
55
56 outlinerbody:-moz-outliner-cell-text(priority-lowest)
57 {
58   color: rgb(170, 170, 170);
59 }
60
61 outlinerbody:-moz-outliner-cell-text(priority-low)
62 {
63   color: rgb(85, 85, 85);
64 }
65
66 /* ::::: message icons ::::: */
67
68 /* ::::: message column icons ::::: */
69
70 /* ..... thread column ..... */
71
72
73
74
75 outlinercol.threadColumnHeader {
76   list-style-image: url("chrome://messenger/skin/unthreadcol.gif");
77 }
78
79 outlinercol.threadColumnHeader[sortDirection="ascending"]  {
80   list-style-image: url("chrome://messenger/skin/threadcol.gif");
81 }
82
83 outlinercol.threadColumnHeader[sortDirection="descending"] {
84   list-style-image: url("chrome://messenger/skin/threadcol.gif");
85 }
86
87 outlinerbody:-moz-outliner-image(threadCol, container) {
88   list-style-image: url("chrome://messenger/skin/thread-closed.gif");
89 }
90
91 outlinerbody:-moz-outliner-image(threadCol, container, open) {
92   list-style-image: url("chrome://messenger/skin/thread-open.gif");
93 }
94
95 outlinerbody:-moz-outliner-image(threadCol, container, hasUnread) {
96   list-style-image: url("chrome://messenger/skin/thread-new-closed.gif");
97 }
98
99 outlinerbody:-moz-outliner-image(threadCol, container, hasUnread, open) {
100   list-style-image: url("chrome://messenger/skin/thread-new-open.gif");
101 }
102
103 /* ..... read column ..... */
104
105 outlinercol.readColumnHeader {
106   list-style-image: url("chrome://messenger/skin/unreadmail.gif");
107 }
108
109 outlinerbody:-moz-outliner-image(unreadButtonColHeader) {
110   list-style-image: url("chrome://messenger/skin/readmail.gif");
111 }
112
113 outlinerbody:-moz-outliner-image(unreadButtonColHeader, unread) {
114   list-style-image: url("chrome://messenger/skin/unreadmail.gif");
115 }
116
117 /* ..... flag column ..... */
118
119 outlinercol.flagColumnHeader {
120   list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
121 }
122
123 outlinerbody:-moz-outliner-image(flaggedCol) {
124   list-style-image: url("chrome://messenger/skin/readmail.gif");
125 }
126
127 outlinerbody:-moz-outliner-image(flaggedCol, flagged) {
128   list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
129 }
130
131 /* ..... subject column ..... */
132
133 outlinerbody:-moz-outliner-image(subjectCol) {
134   list-style-image: url("chrome://messenger/skin/message-mail.gif");
135 }
136
137 outlinerbody:-moz-outliner-image(subjectCol, new) {
138   list-style-image: url("chrome://messenger/skin/message-mail-new.gif");
139 }
140
141 outlinerbody:-moz-outliner-image(subjectCol, attach) {
142   list-style-image: url("chrome://messenger/skin/message-mail-attach.gif");
143 }
144
145 outlinerbody:-moz-outliner-image(subjectCol, imapdeleted) {
146   list-style-image: url("chrome://messenger/skin/message-mail-imapdelete.gif");
147 }
148
149 outlinerbody:-moz-outliner-image(subjectCol, news) {
150   list-style-image: url("chrome://messenger/skin/message-news.gif");
151 }
152
153 outlinerbody:-moz-outliner-image(subjectCol, news, new) {
154   list-style-image: url("chrome://messenger/skin/message-news-new.gif");
155 }
156
157
158