keep up with Classic development
[themes.git] / LCARStrek / messenger / threadPane.css
CommitLineData
351107c9 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 *
242fc635 16 * The Initial Developer of the Original Code is
351107c9 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
242fc635 27 * either the GNU General Public License Version 2 or later (the "GPL"), or
351107c9 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
b1eaa419 46/* ::::: thread decoration ::::: */
351107c9 47
01fc5c11 48treechildren::-moz-tree-cell-text(read) {
b1eaa419 49 font-weight: normal;
351107c9 50}
51
01fc5c11 52treechildren::-moz-tree-cell-text(unread) {
351107c9 53 font-weight: bold;
54}
55
242fc635 56treechildren::-moz-tree-cell-text(imapdeleted) {
57 text-decoration: line-through;
58}
59
351107c9 60/* on a collapsed thread, if the top level message is read, but the thread has
242fc635 61 * unread children, underline the text. 4.x mac did this, very slick
351107c9 62 */
01fc5c11 63treechildren::-moz-tree-cell-text(container, closed, hasUnread, read) {
351107c9 64 text-decoration: underline;
65}
66
67/* ::::: priority colors ::::: */
68
b1eaa419 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
01fc5c11 74treechildren::-moz-tree-cell-text(priorityCol, priority-highest) {
351107c9 75 color: red;
76}
77
01fc5c11 78treechildren::-moz-tree-cell-text(priorityCol, priority-high) {
351107c9 79 color: rgb(128, 0, 0);
80}
81
01fc5c11 82treechildren::-moz-tree-cell-text(priorityCol, priority-lowest) {
351107c9 83 color: rgb(170, 170, 170);
84}
85
01fc5c11 86treechildren::-moz-tree-cell-text(priorityCol, priority-low) {
351107c9 87 color: rgb(85, 85, 85);
88}
89
01fc5c11 90treechildren::-moz-tree-cell-text(priorityCol, selected) {
351107c9 91 color: -moz-DialogText;
92}
93
01fc5c11 94treechildren::-moz-tree-cell-text(priorityCol, selected, focus) {
351107c9 95 color: HighlightText;
96}
b1eaa419 97 ****/
351107c9 98
99/* ::::: message icons ::::: */
100
101/* ::::: message column icons ::::: */
102
103/* ..... thread column ..... */
104
7aa65558 105treecol.threadColumnHeader {
b1eaa419 106 list-style-image: url("chrome://messenger/skin/icons/unthreadcol.gif");
351107c9 107}
108
7aa65558 109treecol.threadColumnHeader[sortDirection="ascending"] {
b1eaa419 110 list-style-image: url("chrome://messenger/skin/icons/threadcol.gif");
351107c9 111}
112
7aa65558 113treecol.threadColumnHeader[sortDirection="descending"] {
b1eaa419 114 list-style-image: url("chrome://messenger/skin/icons/threadcol.gif");
115}
116
01fc5c11 117treechildren::-moz-tree-image(threadCol, container) {
b1eaa419 118 list-style-image: url("chrome://messenger/skin/icons/thread-closed.gif");
119}
120
01fc5c11 121treechildren::-moz-tree-image(threadCol, container, offline) {
b1eaa419 122 list-style-image: url("chrome://messenger/skin/icons/thread-closed-offline.gif");
351107c9 123}
124
01fc5c11 125treechildren::-moz-tree-image(threadCol, container, open) {
b1eaa419 126 list-style-image: url("chrome://messenger/skin/icons/thread-open.gif");
351107c9 127}
128
01fc5c11 129treechildren::-moz-tree-image(threadCol, container, open, offline) {
b1eaa419 130 list-style-image: url("chrome://messenger/skin/icons/thread-open-offline.gif");
351107c9 131}
132
01fc5c11 133treechildren::-moz-tree-image(threadCol, container, hasUnread) {
b1eaa419 134 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed.gif");
351107c9 135}
136
01fc5c11 137treechildren::-moz-tree-image(threadCol, container, hasUnread, offline) {
b1eaa419 138 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-offline.gif");
139}
140
01fc5c11 141treechildren::-moz-tree-image(threadCol, container, hasUnread, open) {
b1eaa419 142 list-style-image: url("chrome://messenger/skin/icons/thread-new-open.gif");
143}
144
01fc5c11 145treechildren::-moz-tree-image(threadCol, container, hasUnread, open, offline) {
b1eaa419 146 list-style-image: url("chrome://messenger/skin/icons/thread-new-open-offline.gif");
351107c9 147}
148
149/* ..... read column ..... */
150
7aa65558 151treecol.readColumnHeader {
b1eaa419 152 list-style-image: url("chrome://messenger/skin/icons/readcol.gif");
351107c9 153}
154
01fc5c11 155treechildren::-moz-tree-image(unreadButtonColHeader) {
b1eaa419 156 list-style-image: url("chrome://messenger/skin/icons/readmail.gif");
351107c9 157}
158
01fc5c11 159treechildren::-moz-tree-image(unreadButtonColHeader, unread) {
b1eaa419 160 list-style-image: url("chrome://messenger/skin/icons/unreadmail.gif");
351107c9 161}
162
163/* ..... flag column ..... */
164
7aa65558 165treecol.flagColumnHeader {
b1eaa419 166 list-style-image: url("chrome://messenger/skin/icons/flagcol.gif");
351107c9 167}
168
01fc5c11 169treechildren::-moz-tree-image(flaggedCol) {
b1eaa419 170 list-style-image: url("chrome://messenger/skin/icons/readmail.gif");
351107c9 171}
172
01fc5c11 173treechildren::-moz-tree-image(flaggedCol, flagged) {
b1eaa419 174 list-style-image: url("chrome://messenger/skin/icons/flaggedmail.gif");
351107c9 175}
176
a3b3d4d6 177/* ..... junkStatus column ..... */
178
179treecol.junkStatusHeader {
180 list-style-image: url("chrome://messenger/skin/icons/message-junk-other.gif");
181}
182
183/* "unknown" now looks like "not junk". see bug #182386 */
01fc5c11 184treechildren::-moz-tree-image(junkStatusCol) {
a3b3d4d6 185 list-style-image: url("chrome://messenger/skin/icons/readmail.gif");
186}
187
01fc5c11 188treechildren::-moz-tree-image(junkStatusCol, junk) {
a3b3d4d6 189 list-style-image: url("chrome://messenger/skin/icons/message-junk-other.gif");
190}
191
01fc5c11 192treechildren::-moz-tree-image(junkStatusCol, notjunk) {
a3b3d4d6 193 list-style-image: url("chrome://messenger/skin/icons/readmail.gif");
194}
195
351107c9 196/* ..... subject column ..... */
197
01fc5c11 198treechildren::-moz-tree-image(subjectCol) {
b1eaa419 199 list-style-image: url("chrome://messenger/skin/icons/message-mail.gif");
200}
201
01fc5c11 202treechildren::-moz-tree-image(subjectCol, new) {
b1eaa419 203 list-style-image: url("chrome://messenger/skin/icons/message-mail-new.gif");
204}
205
01fc5c11 206treechildren::-moz-tree-image(subjectCol, attach) {
b1eaa419 207 list-style-image: url("chrome://messenger/skin/icons/message-mail-attach.gif");
208}
209
01fc5c11 210treechildren::-moz-tree-image(subjectCol, imapdeleted) {
b1eaa419 211 list-style-image: url("chrome://messenger/skin/icons/message-mail-imapdelete.gif");
212}
213
01fc5c11 214treechildren::-moz-tree-image(subjectCol, offline) {
b1eaa419 215 list-style-image: url("chrome://messenger/skin/icons/message-mail-offline.gif");
216}
217
01fc5c11 218treechildren::-moz-tree-image(subjectCol, new, offline) {
b1eaa419 219 list-style-image: url("chrome://messenger/skin/icons/message-mail-new-offline.gif");
220}
221
01fc5c11 222treechildren::-moz-tree-image(subjectCol, attach, offline) {
b1eaa419 223 list-style-image: url("chrome://messenger/skin/icons/message-mail-attach-offline.gif");
224}
225
01fc5c11 226treechildren::-moz-tree-image(subjectCol, imapdeleted, offline) {
b1eaa419 227 list-style-image: url("chrome://messenger/skin/icons/message-mail-imapdel-offline.gif");
228}
229
01fc5c11 230treechildren::-moz-tree-image(subjectCol, news) {
b1eaa419 231 list-style-image: url("chrome://messenger/skin/icons/message-news.gif");
351107c9 232}
233
01fc5c11 234treechildren::-moz-tree-image(subjectCol, news, attach) {
b1eaa419 235 list-style-image: url("chrome://messenger/skin/icons/message-news-attach.gif");
351107c9 236}
237
01fc5c11 238treechildren::-moz-tree-image(subjectCol, news, attach, offline) {
b1eaa419 239 list-style-image: url("chrome://messenger/skin/icons/message-news-attach-offline.gif");
351107c9 240}
241
01fc5c11 242treechildren::-moz-tree-image(subjectCol, news, new) {
b1eaa419 243 list-style-image: url("chrome://messenger/skin/icons/message-news-new.gif");
351107c9 244}
245
01fc5c11 246treechildren::-moz-tree-image(subjectCol, news, new, attach, offline) {
b1eaa419 247 list-style-image: url("chrome://messenger/skin/icons/message-news-new-attach-offline.gif");
351107c9 248}
249
01fc5c11 250treechildren::-moz-tree-image(subjectCol, news, new, offline) {
b1eaa419 251 list-style-image: url("chrome://messenger/skin/icons/message-news-new-offline.gif");
351107c9 252}
253
01fc5c11 254treechildren::-moz-tree-image(subjectCol, news, offline) {
b1eaa419 255 list-style-image: url("chrome://messenger/skin/icons/message-news-offline.gif");
256}
257
258/* ..... new thread icons for watch and ignore ..... */
259
01fc5c11 260treechildren::-moz-tree-image(news, threadCol, watch) {
b1eaa419 261 list-style-image: url("chrome://messenger/skin/icons/thread-closed-eye.gif");
262}
263
01fc5c11 264treechildren::-moz-tree-image(news, threadCol, ignore) {
b1eaa419 265 list-style-image: url("chrome://messenger/skin/icons/thread-closed-kill.gif");
266}
267
01fc5c11 268treechildren::-moz-tree-image(news, threadCol, watch, offline) {
b1eaa419 269 list-style-image: url("chrome://messenger/skin/icons/thread-closed-offline-eye.gif");
270}
271
01fc5c11 272treechildren::-moz-tree-image(news, threadCol, ignore, offline) {
b1eaa419 273 list-style-image: url("chrome://messenger/skin/icons/thread-closed-offline-kill.gif");
274}
275
01fc5c11 276treechildren::-moz-tree-image(news, threadCol, container, hasUnread, watch) {
b1eaa419 277 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-eye.gif");
278}
279
01fc5c11 280treechildren::-moz-tree-image(news, threadCol, container, hasUnread, ignore) {
b1eaa419 281 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-kill.gif");
282}
283
01fc5c11 284treechildren::-moz-tree-image(news, threadCol, container, hasUnread, watch, offline) {
b1eaa419 285 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-offline-eye.gif");
286}
287
01fc5c11 288treechildren::-moz-tree-image(news, threadCol, container, hasUnread, ignore, offline) {
b1eaa419 289 list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-offline-kill.gif");
290}
291
01fc5c11 292treechildren::-moz-tree-image(news, threadCol, container, hasUnread, watch, open) {
b1eaa419 293 list-style-image: url("chrome://messenger/skin/icons/thread-new-open-eye.gif");
294}
295
01fc5c11 296treechildren::-moz-tree-image(news, threadCol, container, hasUnread, ignore, open) {
b1eaa419 297 list-style-image: url("chrome://messenger/skin/icons/thread-new-open-kill.gif");
298}
299
01fc5c11 300treechildren::-moz-tree-image(news, threadCol, container, hasUnread, watch, open, offline) {
b1eaa419 301 list-style-image: url("chrome://messenger/skin/icons/thread-new-open-offline-eye.gif");
302}
303
01fc5c11 304treechildren::-moz-tree-image(news, threadCol, container, hasUnread, ignore, open, offline) {
b1eaa419 305 list-style-image: url("chrome://messenger/skin/icons/thread-new-open-offline-kill.gif");
306}
307
01fc5c11 308treechildren::-moz-tree-image(news, threadCol, container, watch, open) {
b1eaa419 309 list-style-image: url("chrome://messenger/skin/icons/thread-open-eye.gif");
310}
311
01fc5c11 312treechildren::-moz-tree-image(news, threadCol, container, ignore, open) {
b1eaa419 313 list-style-image: url("chrome://messenger/skin/icons/thread-open-kill.gif");
314}
315
01fc5c11 316treechildren::-moz-tree-image(news, threadCol, container, watch, open, offline) {
b1eaa419 317 list-style-image: url("chrome://messenger/skin/icons/thread-open-offline-eye.gif");
318}
319
01fc5c11 320treechildren::-moz-tree-image(news, threadCol, container, ignore, open, offline) {
b1eaa419 321 list-style-image: url("chrome://messenger/skin/icons/thread-open-offline-kill.gif");
322}
323
324#sizeCol,
325#unreadCol,
326#totalCol {
327 text-align: right;
351107c9 328}