322d1af7d3305d94a4e565e5b48673f3aa212797
[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 /* ::::: outliner rows ::::: */
33
34 outliner:focus > outliner-bodybox
35 {
36   border: 1px solid black;
37 }
38
39 outliner > outliner-bodybox
40 {
41   border: 1px solid transparent;
42 }
43
44 outlinerbody:-moz-outliner-cell-text(unread)
45 {
46   font-weight: bold;
47 }
48
49 outlinerbody:-moz-outliner-cell-text(offline)
50 {
51   font-style: italic;
52 }
53
54 /* ::::: priority colors ::::: */
55
56 outlinerbody:-moz-outliner-cell-text(priority-highest)
57 {
58   color:red;
59 }
60
61 outlinerbody:-moz-outliner-cell-text(priority-high)
62 {
63   color: rgb(128, 0, 0);
64 }
65
66 outlinerbody:-moz-outliner-cell-text(priority-lowest)
67 {
68   color: rgb(170, 170, 170);
69 }
70
71 outlinerbody:-moz-outliner-cell-text(priority-low)
72 {
73   color: rgb(85, 85, 85);
74 }
75
76 /* ::::: message icons ::::: */
77
78 /* ::::: message column icons ::::: */
79
80 /* ..... thread column ..... */
81
82
83
84
85 outlinercol.threadColumnHeader {
86   list-style-image: url("chrome://messenger/skin/unthreadcol.gif");
87 }
88
89 outlinercol.threadColumnHeader[sortDirection="ascending"]  {
90   list-style-image: url("chrome://messenger/skin/threadcol.gif");
91 }
92
93 outlinercol.threadColumnHeader[sortDirection="descending"] {
94   list-style-image: url("chrome://messenger/skin/threadcol.gif");
95 }
96
97 outlinerbody:-moz-outliner-image(threadCol, container) {
98   list-style-image: url("chrome://messenger/skin/thread-closed.gif");
99 }
100
101 outlinerbody:-moz-outliner-image(threadCol, container, open) {
102   list-style-image: url("chrome://messenger/skin/thread-open.gif");
103 }
104
105 outlinerbody:-moz-outliner-image(threadCol, container, hasUnread) {
106   list-style-image: url("chrome://messenger/skin/thread-new-closed.gif");
107 }
108
109 outlinerbody:-moz-outliner-image(threadCol, container, hasUnread, open) {
110   list-style-image: url("chrome://messenger/skin/thread-new-open.gif");
111 }
112
113 /* ..... read column ..... */
114
115 outlinercol.readColumnHeader {
116   list-style-image: url("chrome://messenger/skin/unreadmail.gif");
117 }
118
119 outlinerbody:-moz-outliner-image(unreadButtonColHeader) {
120   list-style-image: url("chrome://messenger/skin/readmail.gif");
121 }
122
123 outlinerbody:-moz-outliner-image(unreadButtonColHeader, unread) {
124   list-style-image: url("chrome://messenger/skin/unreadmail.gif");
125 }
126
127 /* ..... flag column ..... */
128
129 outlinercol.flagColumnHeader {
130   list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
131 }
132
133 outlinerbody:-moz-outliner-image(flaggedCol) {
134   list-style-image: url("chrome://messenger/skin/readmail.gif");
135 }
136
137 outlinerbody:-moz-outliner-image(flaggedCol, flagged) {
138   list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
139 }
140
141 /* ..... subject column ..... */
142
143 outlinerbody:-moz-outliner-image(subjectCol) {
144   list-style-image: url("chrome://messenger/skin/message-mail.gif");
145 }
146
147 outlinerbody:-moz-outliner-image(subjectCol, new) {
148   list-style-image: url("chrome://messenger/skin/message-mail-new.gif");
149 }
150
151 outlinerbody:-moz-outliner-image(subjectCol, attach) {
152   list-style-image: url("chrome://messenger/skin/message-mail-attach.gif");
153 }
154
155 outlinerbody:-moz-outliner-image(subjectCol, imapdeleted) {
156   list-style-image: url("chrome://messenger/skin/message-mail-imapdelete.gif");
157 }
158
159 outlinerbody:-moz-outliner-image(subjectCol, news) {
160   list-style-image: url("chrome://messenger/skin/message-news.gif");
161 }
162
163 outlinerbody:-moz-outliner-image(subjectCol, news, new) {
164   list-style-image: url("chrome://messenger/skin/message-news-new.gif");
165 }
166
167