bump version to 1.8.1 for branch
[themes.git] / LCARStrek / messenger / threadPane.css
... / ...
CommitLineData
1/* ***** BEGIN LICENSE BLOCK *****
2 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
3 *
4 * The contents of this file are subject to the Netscape Public License
5 * Version 1.1 (the "License"); you may not use this file except in
6 * compliance with the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/NPL/
8 *
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Original Code is mozilla.org code.
15 *
16 * The Initial Developer of the Original Code is
17 * Netscape Communications Corporation.
18 * Portions created by the Initial Developer are Copyright (C) 1998
19 * the Initial Developer. All Rights Reserved.
20 *
21 * Contributor(s):
22 * Scott MacGregor (mscott@netscape.com)
23 * Joe Hewitt (hewitt@netscape.com)
24 * Robert Kaiser <KaiRo@KaiRo.at>
25 *
26 * Alternatively, the contents of this file may be used under the terms of
27 * either the GNU General Public License Version 2 or later (the "GPL"), or
28 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 * in which case the provisions of the GPL or the LGPL are applicable instead
30 * of those above. If you wish to allow use of your version of this file only
31 * under the terms of either the GPL or the LGPL, and not to allow others to
32 * use your version of this file under the terms of the NPL, indicate your
33 * decision by deleting the provisions above and replace them with the notice
34 * and other provisions required by the GPL or the LGPL. If you do not delete
35 * the provisions above, a recipient may use your version of this file under
36 * the terms of any one of the NPL, the GPL or the LGPL.
37 *
38 * ***** END LICENSE BLOCK ***** */
39
40/* ===== threadPane.css ==============================================
41 == Styles for the thread pane in the Messenger 3-pane window.
42 ======================================================================= */
43
44@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
45
46/* ::::: thread decoration ::::: */
47
48treechildren::-moz-tree-cell-text(read) {
49 font-weight: normal;
50}
51
52treechildren::-moz-tree-cell-text(unread) {
53 font-weight: bold;
54}
55
56treechildren::-moz-tree-cell-text(imapdeleted) {
57 text-decoration: line-through;
58}
59
60/* on a collapsed thread, if the top level message is read, but the thread has
61 * unread children, underline the text. 4.x mac did this, very slick
62 */
63treechildren::-moz-tree-cell-text(container, closed, hasUnread, read) {
64 text-decoration: underline;
65}
66
67/* ::::: priority colors ::::: */
68
69/****
70 **** Priority colors currently not being used at the moment. It has been
71 **** disabled so as to not conflict with the labels color feature.
72 ****
73
74treechildren::-moz-tree-cell-text(priorityCol, priority-highest) {
75 color: red;
76}
77
78treechildren::-moz-tree-cell-text(priorityCol, priority-high) {
79 color: rgb(128, 0, 0);
80}
81
82treechildren::-moz-tree-cell-text(priorityCol, priority-lowest) {
83 color: rgb(170, 170, 170);
84}
85
86treechildren::-moz-tree-cell-text(priorityCol, priority-low) {
87 color: rgb(85, 85, 85);
88}
89
90treechildren::-moz-tree-cell-text(priorityCol, selected) {
91 color: -moz-DialogText;
92}
93
94treechildren::-moz-tree-cell-text(priorityCol, selected, focus) {
95 color: HighlightText;
96}
97 ****/
98
99/* ::::: message icons ::::: */
100
101/* ::::: message column icons ::::: */
102
103/* ..... thread column ..... */
104
105.threadColumnHeader {
106 list-style-image: url("chrome://messenger/skin/icons/unthreadcol.gif");
107}
108
109.threadColumnHeader[sortDirection="ascending"] {
110 list-style-image: url("chrome://messenger/skin/icons/threadcol.gif");
111}
112
113.threadColumnHeader[sortDirection="descending"] {
114 list-style-image: url("chrome://messenger/skin/icons/threadcol.gif");
115}
116
117treechildren::-moz-tree-image(threadCol, container) {
118 list-style-image: url("chrome://messenger/skin/icons/thread-closed.gif");
119}
120
121treechildren::-moz-tree-image(threadCol, container, offline) {
122 list-style-image: url("chrome://messenger/skin/icons/thread-closed-offline.gif");
123}
124
125treechildren::-moz-tree-image(threadCol, container, open) {
126 list-style-image: url("chrome://messenger/skin/icons/thread-open.gif");
127}
128
129treechildren::-moz-tree-image(threadCol, container, open, offline) {
130 list-style-image: url("chrome://messenger/skin/icons/thread-open-offline.gif");
131}
132
133treechildren::-moz-tree-image(threadCol, container, hasUnread) {
134 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed.gif");
135}
136
137treechildren::-moz-tree-image(threadCol, container, hasUnread, offline) {
138 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-offline.gif");
139}
140
141treechildren::-moz-tree-image(threadCol, container, hasUnread, open) {
142 list-style-image: url("chrome://messenger/skin/icons/thread-new-open.gif");
143}
144
145treechildren::-moz-tree-image(threadCol, container, hasUnread, open, offline) {
146 list-style-image: url("chrome://messenger/skin/icons/thread-new-open-offline.gif");
147}
148
149/* ..... read column ..... */
150
151.readColumnHeader {
152 list-style-image: url("chrome://messenger/skin/icons/readcol.gif");
153}
154
155treechildren::-moz-tree-image(unreadButtonColHeader) {
156 list-style-image: url("chrome://messenger/skin/icons/readmail.gif");
157}
158
159treechildren::-moz-tree-image(unreadButtonColHeader, unread) {
160 list-style-image: url("chrome://messenger/skin/icons/unreadmail.gif");
161}
162
163/* ..... attachment column ..... */
164
165.attachmentColumnHeader {
166 list-style-image: url("chrome://messenger/skin/icons/attachment-col.gif");
167}
168
169treechildren::-moz-tree-image(attachmentCol, attach) {
170 list-style-image: url("chrome://messenger/skin/icons/attachment.gif");
171}
172
173/* ..... flag column ..... */
174
175.flagColumnHeader {
176 list-style-image: url("chrome://messenger/skin/icons/flagcol.gif");
177}
178
179treechildren::-moz-tree-image(flaggedCol) {
180 list-style-image: url("chrome://messenger/skin/icons/readmail.gif");
181}
182
183treechildren::-moz-tree-image(flaggedCol, flagged) {
184 list-style-image: url("chrome://messenger/skin/icons/flaggedmail.gif");
185}
186
187/* ..... junkStatus column ..... */
188
189.junkStatusHeader {
190 list-style-image: url("chrome://messenger/skin/icons/message-junk-other.gif");
191}
192
193/* "unknown" now looks like "not junk". see bug #182386 */
194treechildren::-moz-tree-image(junkStatusCol) {
195 list-style-image: url("chrome://messenger/skin/icons/readmail.gif");
196}
197
198treechildren::-moz-tree-image(junkStatusCol, junk) {
199 list-style-image: url("chrome://messenger/skin/icons/message-junk-other.gif");
200}
201
202treechildren::-moz-tree-image(junkStatusCol, notjunk) {
203 list-style-image: url("chrome://messenger/skin/icons/readmail.gif");
204}
205
206/* ..... subject column ..... */
207
208treechildren::-moz-tree-image(subjectCol) {
209 list-style-image: url("chrome://messenger/skin/icons/message-mail.gif");
210}
211
212treechildren::-moz-tree-image(subjectCol, new) {
213 list-style-image: url("chrome://messenger/skin/icons/message-mail-new.gif");
214}
215
216treechildren::-moz-tree-image(subjectCol, attach) {
217 list-style-image: url("chrome://messenger/skin/icons/message-mail-attach.gif");
218}
219
220treechildren::-moz-tree-image(subjectCol, imapdeleted) {
221 list-style-image: url("chrome://messenger/skin/icons/message-mail-imapdelete.gif");
222}
223
224treechildren::-moz-tree-image(subjectCol, offline) {
225 list-style-image: url("chrome://messenger/skin/icons/message-mail-offline.gif");
226}
227
228treechildren::-moz-tree-image(subjectCol, new, offline) {
229 list-style-image: url("chrome://messenger/skin/icons/message-mail-new-offline.gif");
230}
231
232treechildren::-moz-tree-image(subjectCol, attach, offline) {
233 list-style-image: url("chrome://messenger/skin/icons/message-mail-attach-offline.gif");
234}
235
236treechildren::-moz-tree-image(subjectCol, imapdeleted, offline) {
237 list-style-image: url("chrome://messenger/skin/icons/message-mail-imapdel-offline.gif");
238}
239
240treechildren::-moz-tree-image(subjectCol, news) {
241 list-style-image: url("chrome://messenger/skin/icons/message-news.gif");
242}
243
244treechildren::-moz-tree-image(subjectCol, news, attach) {
245 list-style-image: url("chrome://messenger/skin/icons/message-news-attach.gif");
246}
247
248treechildren::-moz-tree-image(subjectCol, news, attach, offline) {
249 list-style-image: url("chrome://messenger/skin/icons/message-news-attach-offline.gif");
250}
251
252treechildren::-moz-tree-image(subjectCol, news, new) {
253 list-style-image: url("chrome://messenger/skin/icons/message-news-new.gif");
254}
255
256treechildren::-moz-tree-image(subjectCol, news, new, attach, offline) {
257 list-style-image: url("chrome://messenger/skin/icons/message-news-new-attach-offline.gif");
258}
259
260treechildren::-moz-tree-image(subjectCol, news, new, offline) {
261 list-style-image: url("chrome://messenger/skin/icons/message-news-new-offline.gif");
262}
263
264treechildren::-moz-tree-image(subjectCol, news, offline) {
265 list-style-image: url("chrome://messenger/skin/icons/message-news-offline.gif");
266}
267
268/* ..... new thread icons for watch and ignore ..... */
269
270treechildren::-moz-tree-image(news, threadCol, watch) {
271 list-style-image: url("chrome://messenger/skin/icons/thread-closed-eye.gif");
272}
273
274treechildren::-moz-tree-image(news, threadCol, ignore) {
275 list-style-image: url("chrome://messenger/skin/icons/thread-closed-kill.gif");
276}
277
278treechildren::-moz-tree-image(news, threadCol, watch, offline) {
279 list-style-image: url("chrome://messenger/skin/icons/thread-closed-offline-eye.gif");
280}
281
282treechildren::-moz-tree-image(news, threadCol, ignore, offline) {
283 list-style-image: url("chrome://messenger/skin/icons/thread-closed-offline-kill.gif");
284}
285
286treechildren::-moz-tree-image(news, threadCol, container, hasUnread, watch) {
287 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-eye.gif");
288}
289
290treechildren::-moz-tree-image(news, threadCol, container, hasUnread, ignore) {
291 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-kill.gif");
292}
293
294treechildren::-moz-tree-image(news, threadCol, container, hasUnread, watch, offline) {
295 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-offline-eye.gif");
296}
297
298treechildren::-moz-tree-image(news, threadCol, container, hasUnread, ignore, offline) {
299 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-offline-kill.gif");
300}
301
302treechildren::-moz-tree-image(news, threadCol, container, hasUnread, watch, open) {
303 list-style-image: url("chrome://messenger/skin/icons/thread-new-open-eye.gif");
304}
305
306treechildren::-moz-tree-image(news, threadCol, container, hasUnread, ignore, open) {
307 list-style-image: url("chrome://messenger/skin/icons/thread-new-open-kill.gif");
308}
309
310treechildren::-moz-tree-image(news, threadCol, container, hasUnread, watch, open, offline) {
311 list-style-image: url("chrome://messenger/skin/icons/thread-new-open-offline-eye.gif");
312}
313
314treechildren::-moz-tree-image(news, threadCol, container, hasUnread, ignore, open, offline) {
315 list-style-image: url("chrome://messenger/skin/icons/thread-new-open-offline-kill.gif");
316}
317
318treechildren::-moz-tree-image(news, threadCol, container, watch, open) {
319 list-style-image: url("chrome://messenger/skin/icons/thread-open-eye.gif");
320}
321
322treechildren::-moz-tree-image(news, threadCol, container, ignore, open) {
323 list-style-image: url("chrome://messenger/skin/icons/thread-open-kill.gif");
324}
325
326treechildren::-moz-tree-image(news, threadCol, container, watch, open, offline) {
327 list-style-image: url("chrome://messenger/skin/icons/thread-open-offline-eye.gif");
328}
329
330treechildren::-moz-tree-image(news, threadCol, container, ignore, open, offline) {
331 list-style-image: url("chrome://messenger/skin/icons/thread-open-offline-kill.gif");
332}
333
334#sizeCol,
335#unreadCol,
336#totalCol {
337 text-align: right;
338}