correcting some small glitches
[themes.git] / LCARStrek / skin / LCARStrek / messenger / 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  */
24
25 /* ===== threadPane.css ==============================================
26   == Styles for the thread pane in the Messenger 3-pane window.
27   ======================================================================= */
28
29 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
30
31 #threadOutliner
32 {
33   border: none;
34 }
35
36 /* ::::: connecting lines ::::: */
37
38 outlinerbody:-moz-outliner-line
39 {
40   visibility: hidden;
41 }
42
43 /* ::::: thread decoration ::::: */
44
45 outlinerbody:-moz-outliner-cell-text(unread) {
46   font-weight: bold;
47 }
48
49 /* on a collapsed thread, if the top level message is read, but the thread has
50  * unread children, underline the text.  4.x mac did this, very slick 
51  */
52 outlinerbody:-moz-outliner-cell-text(container, closed, hasUnread, read) {
53   text-decoration: underline;
54 }
55
56 /* ::::: priority colors ::::: */
57
58 outlinerbody:-moz-outliner-cell-text(priorityCol, priority-highest) {
59   color: red;
60 }
61
62 outlinerbody:-moz-outliner-cell-text(priorityCol, priority-high) {
63   color: rgb(128, 0, 0);
64 }
65
66 outlinerbody:-moz-outliner-cell-text(priorityCol, priority-lowest) {
67   color: rgb(170, 170, 170);
68 }
69
70 outlinerbody:-moz-outliner-cell-text(priorityCol, priority-low) {
71   color: rgb(85, 85, 85);
72 }
73
74 outlinerbody:-moz-outliner-cell-text(priorityCol, selected) {
75   color: -moz-DialogText;
76 }
77
78 outlinerbody:-moz-outliner-cell-text(priorityCol, selected, focus) {
79   color: HighlightText;
80 }
81
82 /* ::::: message icons ::::: */
83
84 /* ::::: message column icons ::::: */
85
86 /* ..... thread column ..... */
87
88 outlinercol.threadColumnHeader {
89   list-style-image: url("chrome://messenger/skin/unthreadcol.gif");
90 }
91
92 outlinercol.threadColumnHeader[sortDirection="ascending"]  {
93   list-style-image: url("chrome://messenger/skin/threadcol.gif");
94 }
95
96 outlinercol.threadColumnHeader[sortDirection="descending"] {
97   list-style-image: url("chrome://messenger/skin/threadcol.gif");
98 }
99
100 outlinerbody:-moz-outliner-image(threadCol, container) {
101   list-style-image: url("chrome://messenger/skin/thread-closed.gif");
102 }
103
104 outlinerbody:-moz-outliner-image(threadCol, container, open) {
105   list-style-image: url("chrome://messenger/skin/thread-open.gif");
106 }
107
108 outlinerbody:-moz-outliner-image(threadCol, container, hasUnread) {
109   list-style-image: url("chrome://messenger/skin/thread-new-closed.gif");
110 }
111
112 outlinerbody:-moz-outliner-image(threadCol, container, hasUnread, open) {
113   list-style-image: url("chrome://messenger/skin/thread-new-open.gif");
114 }
115
116 /* ..... read column ..... */
117
118 outlinercol.readColumnHeader {
119   list-style-image: url("chrome://messenger/skin/readcol.gif");
120 }
121
122 outlinerbody:-moz-outliner-image(unreadButtonColHeader) {
123   list-style-image: url("chrome://messenger/skin/readmail.gif");
124 }
125
126 outlinerbody:-moz-outliner-image(unreadButtonColHeader, unread) {
127   list-style-image: url("chrome://messenger/skin/unreadmail.gif");
128 }
129
130 /* ..... flag column ..... */
131
132 outlinercol.flagColumnHeader {
133   list-style-image: url("chrome://messenger/skin/flagcol.gif");
134 }
135
136 outlinerbody:-moz-outliner-image(flaggedCol) {
137   list-style-image: url("chrome://messenger/skin/readmail.gif");
138 }
139
140 outlinerbody:-moz-outliner-image(flaggedCol, flagged) {
141   list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
142 }
143
144 /* ..... subject column ..... */
145
146 outlinerbody:-moz-outliner-image(subjectCol) {
147   padding-right: 2px;
148   list-style-image: url("chrome://messenger/skin/message-mail.gif");
149 }
150
151 outlinerbody:-moz-outliner-image(subjectCol, new) {
152   padding-right: 2px;
153   list-style-image: url("chrome://messenger/skin/message-mail-new.gif");
154 }
155
156 outlinerbody:-moz-outliner-image(subjectCol, attach) {
157   padding-right: 2px;
158   list-style-image: url("chrome://messenger/skin/message-mail-attach.gif");
159 }
160
161 outlinerbody:-moz-outliner-image(subjectCol, imapdeleted) {
162   padding-right: 2px;
163   list-style-image: url("chrome://messenger/skin/message-mail-imapdelete.gif");
164 }
165
166 outlinerbody:-moz-outliner-image(subjectCol, news) {
167   padding-right: 2px;
168   list-style-image: url("chrome://messenger/skin/message-news.gif");
169 }
170
171 outlinerbody:-moz-outliner-image(subjectCol, news, new) {
172   padding-right: 2px;
173   list-style-image: url("chrome://messenger/skin/message-news-new.gif");
174 }
175
176 outlinerbody:-moz-outliner-image(subjectCol, news, attach) {
177   padding-right: 2px;
178   list-style-image: url("chrome://messenger/skin/message-news-attach.gif");
179 }
180