EarlyBlue 2.0a1 -> 2.0a2 changes, communicator/ and global/ changes
[themes.git] / EarlyBlue / messenger / folderPane.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 * Joe Hewitt (hewitt@netscape.com)
23 * Hakan Waara (hwaara@chello.se)
24 * Jan Varga (varga@nixcorp.com)
25 * Robert Kaiser <KaiRo@KaiRo.at>
26 *
27 * Alternatively, the contents of this file may be used under the terms of
28 * either the GNU General Public License Version 2 or later (the "GPL"), or
29 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
30 * in which case the provisions of the GPL or the LGPL are applicable instead
31 * of those above. If you wish to allow use of your version of this file only
32 * under the terms of either the GPL or the LGPL, and not to allow others to
33 * use your version of this file under the terms of the NPL, indicate your
34 * decision by deleting the provisions above and replace them with the notice
35 * and other provisions required by the GPL or the LGPL. If you do not delete
36 * the provisions above, a recipient may use your version of this file under
37 * the terms of any one of the NPL, the GPL or the LGPL.
38 *
39 * ***** END LICENSE BLOCK ***** */
40
41@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
42
43/* ===== folderPane.css =================================================
44 == Styles for the Folder pane in the Messenger 3-pane window.
45 ======================================================================= */
46
47/* ::::: mail folder ::::: */
48
49treechildren::-moz-tree-image(folderNameCol) {
50 padding-right: 2px;
51 list-style-image: url("chrome://messenger/skin/icons/folder-closed.gif");
52}
53
54treechildren::-moz-tree-image(folderNameCol, newMessages-true) {
55 padding-right: 2px;
56 list-style-image: url("chrome://messenger/skin/icons/folder-new-closed.gif");
57}
58
59/* ..... Inbox ..... */
60
61treechildren::-moz-tree-image(folderNameCol, specialFolder-Inbox) {
62 padding-right: 2px;
63 list-style-image: url("chrome://messenger/skin/icons/folder-inbox.gif");
64}
65
66treechildren::-moz-tree-image(folderNameCol, specialFolder-Inbox, newMessages-true) {
67 padding-right: 2px;
68 list-style-image: url("chrome://messenger/skin/icons/folder-inbox-new.gif");
69}
70
71/* ..... Sent ..... */
72
73treechildren::-moz-tree-image(folderNameCol, specialFolder-Sent) {
74 padding-right: 2px;
75 list-style-image: url("chrome://messenger/skin/icons/folder-sent.gif");
76}
77
78/* ..... Unsent ..... */
79
80treechildren::-moz-tree-image(folderNameCol, specialFolder-Unsent Messages) {
81 padding-right: 2px;
82 list-style-image: url("chrome://messenger/skin/icons/folder-outbox.gif");
83}
84
85/* ..... Drafts ..... */
86
87treechildren::-moz-tree-image(folderNameCol, specialFolder-Drafts) {
88 padding-right: 2px;
89 list-style-image: url("chrome://messenger/skin/icons/folder-draft.gif");
90}
91
92/* ..... Templates ..... */
93
94treechildren::-moz-tree-image(folderNameCol, specialFolder-Templates) {
95 padding-right: 2px;
96 list-style-image: url("chrome://messenger/skin/icons/folder-template.gif");
97}
98
99/* ..... Junk ..... */
100
101treechildren::-moz-tree-image(folderNameCol, specialFolder-Junk) {
102 padding-right: 2px;
103 list-style-image: url("chrome://messenger/skin/icons/folder-junk.gif");
104}
105
106/* ..... Trash ..... */
107
108treechildren::-moz-tree-image(folderNameCol, specialFolder-Trash) {
109 padding-right: 2px;
110 list-style-image: url("chrome://messenger/skin/icons/folder-trash.gif");
111}
112
113/* ..... Saved Searches ..... */
114
115treechildren::-moz-tree-image(folderNameCol, specialFolder-Virtual) {
116 list-style-image: url("chrome://messenger/skin/icons/folder-search.gif");
117}
118
119treechildren::-moz-tree-image(folderNameCol, isServer-true) {
120 padding-right: 2px;
121 list-style-image: url("chrome://messenger/skin/icons/server-mail.gif");
122}
123
124treechildren::-moz-tree-image(folderNameCol, biffState-NewMail, isServer-true) {
125 padding-right: 2px;
126 list-style-image: url("chrome://messenger/skin/icons/server-mail-new.gif");
127}
128
129treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true),
130treechildren::-moz-tree-cell-text(folderNameCol, specialFolder-Inbox, newMessages-true) {
131 font-weight: bold;
132}
133
134treechildren::-moz-tree-image(folderNameCol, imapShared-true) {
135 padding-right: 2px;
136 list-style-image: url("chrome://messenger/skin/icons/folder-share.gif");
137}
138
139/* ..... Server Folders ..... */
140
141treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-pop3, isSecure-true) {
142 padding-right: 2px;
143 list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif");
144}
145
146treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-imap, isSecure-true) {
147 padding-right: 2px;
148 list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif");
149}
150
151treechildren::-moz-tree-image(folderNameCol, biffState-NewMail, isServer-true, isSecure-true) {
152 list-style-image: url("chrome://messenger/skin/icons/server-remote-lock-new.gif");
153}
154
155treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-none) {
156 padding-right: 2px;
157 list-style-image: url("chrome://messenger/skin/icons/server-local.gif");
158}
159
160/* ..... News Folders ..... */
161
162treechildren::-moz-tree-image(folderNameCol, serverType-nntp) {
163 padding-right: 2px;
164 list-style-image: url("chrome://messenger/skin/icons/folder-newsgroup.gif");
165}
166
167treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-nntp) {
168 padding-right: 2px;
169 list-style-image: url("chrome://messenger/skin/icons/server-news.gif");
170}
171
172treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-nntp, isSecure-true) {
173 padding-right: 2px;
174 list-style-image: url("chrome://messenger/skin/icons/server-news-lock.gif");
175}
176
177/* ::::: All Servers ::::: */
178
179treechildren::-moz-tree-cell-text(closed, subfoldersHaveUnreadMessages-true) {
180 font-weight: bold;
181}
182
183treechildren::-moz-tree-cell-text(folderNameCol, isServer-true),
184treechildren::-moz-tree-cell-text(hasUnreadMessages-true) {
185 font-weight: bold;
186}
187
188treechildren::-moz-tree-cell-text(folderNameCol, noSelect-true) {
189 color: #808080;
190 font-style: italic;
191}
192
193.tree-folder-checkbox {
194 list-style-image: none;
195}
196
197treechildren::-moz-tree-image(syncCol) {
198 list-style-image: url("chrome://messenger/skin/icons/dot.gif");
199}
200
201treechildren::-moz-tree-image(syncCol, synchronize-true) {
202 list-style-image: url("chrome://messenger/skin/icons/check.gif");
203}
204
205treechildren::-moz-tree-image(syncCol, isServer-true) {
206 list-style-image: none;
207}
208
209#folder-panel {
210 min-width: 10px;
211}
212
213#folderTree {
214 border: none;
215}
216
217#folderUnreadCol,
218#folderTotalCol,
219#folderSizeCol {
220 text-align: right;
221}
222
223#folderNameCol [sortDirection="ascending"] {
224 list-style-image: none;
225}
226
227#folderNameCol [sortDirection="descending"] {
228 list-style-image: none;
229}