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