latest updates from Classic, development, working towards the 1.5 version of the...
[themes.git] / LCARStrek / messenger / folderPane.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 *
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@utcru.sk)
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/* ===== folderPane.css =================================================
42 == Styles for the Folder pane in the Messenger 3-pane window.
43 ======================================================================= */
44
45@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
46
351107c9 47/* ::::: mail folder ::::: */
48
01fc5c11 49treechildren::-moz-tree-image(folderNameCol) {
351107c9 50 padding-right: 2px;
b1eaa419 51 list-style-image: url("chrome://messenger/skin/icons/folder-closed.gif");
351107c9 52}
53
01fc5c11 54treechildren::-moz-tree-image(folderNameCol, newMessages-true) {
351107c9 55 padding-right: 2px;
b1eaa419 56 list-style-image: url("chrome://messenger/skin/icons/folder-new-closed.gif");
351107c9 57}
58
59/* ..... Inbox ..... */
60
01fc5c11 61treechildren::-moz-tree-image(folderNameCol, specialFolder-Inbox) {
351107c9 62 padding-right: 2px;
b1eaa419 63 list-style-image: url("chrome://messenger/skin/icons/folder-inbox.gif");
351107c9 64}
65
01fc5c11 66treechildren::-moz-tree-image(folderNameCol, specialFolder-Inbox, newMessages-true) {
351107c9 67 padding-right: 2px;
b1eaa419 68 list-style-image: url("chrome://messenger/skin/icons/folder-inbox-new.gif");
351107c9 69}
70
71/* ..... Sent ..... */
72
01fc5c11 73treechildren::-moz-tree-image(folderNameCol, specialFolder-Sent) {
351107c9 74 padding-right: 2px;
b1eaa419 75 list-style-image: url("chrome://messenger/skin/icons/folder-sent.gif");
351107c9 76}
77
78/* ..... Unsent ..... */
79
01fc5c11 80treechildren::-moz-tree-image(folderNameCol, specialFolder-Unsent Messages) {
351107c9 81 padding-right: 2px;
b1eaa419 82 list-style-image: url("chrome://messenger/skin/icons/folder-outbox.gif");
351107c9 83}
84
85/* ..... Drafts ..... */
86
01fc5c11 87treechildren::-moz-tree-image(folderNameCol, specialFolder-Drafts) {
351107c9 88 padding-right: 2px;
b1eaa419 89 list-style-image: url("chrome://messenger/skin/icons/folder-draft.gif");
351107c9 90}
91
92/* ..... Templates ..... */
93
01fc5c11 94treechildren::-moz-tree-image(folderNameCol, specialFolder-Templates) {
351107c9 95 padding-right: 2px;
b1eaa419 96 list-style-image: url("chrome://messenger/skin/icons/folder-template.gif");
351107c9 97}
98
a3b3d4d6 99/* ..... Junk ..... */
100
01fc5c11 101treechildren::-moz-tree-image(folderNameCol, specialFolder-Junk) {
a3b3d4d6 102 padding-right: 2px;
103 list-style-image: url("chrome://messenger/skin/icons/folder-junk.gif");
104}
105
351107c9 106/* ..... Trash ..... */
107
01fc5c11 108treechildren::-moz-tree-image(folderNameCol, specialFolder-Trash) {
351107c9 109 padding-right: 2px;
b1eaa419 110 list-style-image: url("chrome://messenger/skin/icons/folder-trash.gif");
351107c9 111}
112
01fc5c11 113treechildren::-moz-tree-image(folderNameCol, isServer-true) {
351107c9 114 padding-right: 2px;
b1eaa419 115 list-style-image: url("chrome://messenger/skin/icons/server-mail.gif");
351107c9 116}
117
01fc5c11 118treechildren::-moz-tree-image(folderNameCol, biffState-NewMail, isServer-true) {
351107c9 119 padding-right: 2px;
b1eaa419 120 list-style-image: url("chrome://messenger/skin/icons/server-mail-new.gif");
351107c9 121}
122
01fc5c11 123treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true),
124treechildren::-moz-tree-cell-text(folderNameCol, specialFolder-Inbox, newMessages-true) {
351107c9 125 font-weight: bold;
126}
127
01fc5c11 128treechildren::-moz-tree-image(folderNameCol, imapShared-true) {
b1eaa419 129 padding-right: 2px;
130 list-style-image: url("chrome://messenger/skin/icons/folder-share.gif");
131}
132
351107c9 133/* ..... Server Folders ..... */
134
01fc5c11 135treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-pop3, isSecure-true) {
351107c9 136 padding-right: 2px;
b1eaa419 137 list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif");
351107c9 138}
139
01fc5c11 140treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-imap, isSecure-true) {
351107c9 141 padding-right: 2px;
b1eaa419 142 list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif");
351107c9 143}
144
01fc5c11 145treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-none) {
351107c9 146 padding-right: 2px;
b1eaa419 147 list-style-image: url("chrome://messenger/skin/icons/server-local.gif");
351107c9 148}
149
150/* ..... News Folders ..... */
151
01fc5c11 152treechildren::-moz-tree-image(folderNameCol, serverType-nntp) {
351107c9 153 padding-right: 2px;
b1eaa419 154 list-style-image: url("chrome://messenger/skin/icons/folder-newsgroup.gif");
351107c9 155}
156
01fc5c11 157treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-nntp) {
351107c9 158 padding-right: 2px;
b1eaa419 159 list-style-image: url("chrome://messenger/skin/icons/server-news.gif");
351107c9 160}
161
01fc5c11 162treechildren::-moz-tree-image(folderNameCol, isServer-true, serverType-nntp, isSecure-true) {
351107c9 163 padding-right: 2px;
b1eaa419 164 list-style-image: url("chrome://messenger/skin/icons/server-news-lock.gif");
351107c9 165}
166
167/* ::::: All Servers ::::: */
168
01fc5c11 169treechildren::-moz-tree-cell-text(closed, subfoldersHaveUnreadMessages-true) {
351107c9 170 font-weight: bold;
171}
172
01fc5c11 173treechildren::-moz-tree-cell-text(folderNameCol, isServer-true),
174treechildren::-moz-tree-cell-text(hasUnreadMessages-true) {
351107c9 175 font-weight: bold;
176}
177
01fc5c11 178treechildren::-moz-tree-cell-text(folderNameCol, noSelect-true) {
351107c9 179 color: #8050B0;
180 font-style: italic;
181}
182
b1eaa419 183.tree-folder-checkbox {
184 list-style-image: none;
351107c9 185}
186
01fc5c11 187treechildren::-moz-tree-image(syncCol) {
b1eaa419 188 list-style-image: url("chrome://messenger/skin/icons/dot.gif");
351107c9 189}
b1eaa419 190
01fc5c11 191treechildren::-moz-tree-image(syncCol, synchronize-true) {
b1eaa419 192 list-style-image: url("chrome://messenger/skin/icons/check.gif");
193}
194
01fc5c11 195treechildren::-moz-tree-image(syncCol, isServer-true) {
351107c9 196 list-style-image: none;
197}
198
b1eaa419 199#folder-panel {
200 min-width: 10px;
351107c9 201}
202
b1eaa419 203#folderTree {
204 border: none;
351107c9 205}
206
a3b3d4d6 207#folderTotalCol,
208#folderSizeCol {
b1eaa419 209 text-align: right;
351107c9 210}
ac1cdf20 211
212#folderNameCol [sortDirection="ascending"] {
213 list-style-image: none;
214}
215
216#folderNameCol [sortDirection="descending"] {
217 list-style-image: none;
218}