| 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 | * Scott MacGregor (mscott@netscape.com) |
| 23 | * Joe Hewitt (hewitt@netscape.com) |
| 24 | * Robert Kaiser <KaiRo@KaiRo.at> |
| 25 | * |
| 26 | * Alternatively, the contents of this file may be used under the terms of |
| 27 | * either the GNU General Public License Version 2 or later (the "GPL"), or |
| 28 | * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), |
| 29 | * in which case the provisions of the GPL or the LGPL are applicable instead |
| 30 | * of those above. If you wish to allow use of your version of this file only |
| 31 | * under the terms of either the GPL or the LGPL, and not to allow others to |
| 32 | * use your version of this file under the terms of the NPL, indicate your |
| 33 | * decision by deleting the provisions above and replace them with the notice |
| 34 | * and other provisions required by the GPL or the LGPL. If you do not delete |
| 35 | * the provisions above, a recipient may use your version of this file under |
| 36 | * the terms of any one of the NPL, the GPL or the LGPL. |
| 37 | * |
| 38 | * ***** END LICENSE BLOCK ***** */ |
| 39 | |
| 40 | /* ===== threadPane.css ============================================== |
| 41 | == Styles for the thread pane in the Messenger 3-pane window. |
| 42 | ======================================================================= */ |
| 43 | |
| 44 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
| 45 | |
| 46 | /* ::::: thread decoration ::::: */ |
| 47 | |
| 48 | treechildren:-moz-tree-cell-text(read) { |
| 49 | font-weight: normal; |
| 50 | } |
| 51 | |
| 52 | treechildren:-moz-tree-cell-text(unread) { |
| 53 | font-weight: bold; |
| 54 | } |
| 55 | |
| 56 | /* on a collapsed thread, if the top level message is read, but the thread has |
| 57 | * unread children, underline the text. 4.x mac did this, very slick |
| 58 | */ |
| 59 | treechildren:-moz-tree-cell-text(container, closed, hasUnread, read) { |
| 60 | text-decoration: underline; |
| 61 | } |
| 62 | |
| 63 | /* ::::: priority colors ::::: */ |
| 64 | |
| 65 | /**** |
| 66 | **** Priority colors currently not being used at the moment. It has been |
| 67 | **** disabled so as to not conflict with the labels color feature. |
| 68 | **** |
| 69 | |
| 70 | treechildren:-moz-tree-cell-text(priorityCol, priority-highest) { |
| 71 | color: red; |
| 72 | } |
| 73 | |
| 74 | treechildren:-moz-tree-cell-text(priorityCol, priority-high) { |
| 75 | color: rgb(128, 0, 0); |
| 76 | } |
| 77 | |
| 78 | treechildren:-moz-tree-cell-text(priorityCol, priority-lowest) { |
| 79 | color: rgb(170, 170, 170); |
| 80 | } |
| 81 | |
| 82 | treechildren:-moz-tree-cell-text(priorityCol, priority-low) { |
| 83 | color: rgb(85, 85, 85); |
| 84 | } |
| 85 | |
| 86 | treechildren:-moz-tree-cell-text(priorityCol, selected) { |
| 87 | color: -moz-DialogText; |
| 88 | } |
| 89 | |
| 90 | treechildren:-moz-tree-cell-text(priorityCol, selected, focus) { |
| 91 | color: HighlightText; |
| 92 | } |
| 93 | ****/ |
| 94 | |
| 95 | /* ::::: message icons ::::: */ |
| 96 | |
| 97 | /* ::::: message column icons ::::: */ |
| 98 | |
| 99 | /* ..... thread column ..... */ |
| 100 | |
| 101 | treecol.threadColumnHeader { |
| 102 | list-style-image: url("chrome://messenger/skin/icons/unthreadcol.gif"); |
| 103 | } |
| 104 | |
| 105 | treecol.threadColumnHeader[sortDirection="ascending"] { |
| 106 | list-style-image: url("chrome://messenger/skin/icons/threadcol.gif"); |
| 107 | } |
| 108 | |
| 109 | treecol.threadColumnHeader[sortDirection="descending"] { |
| 110 | list-style-image: url("chrome://messenger/skin/icons/threadcol.gif"); |
| 111 | } |
| 112 | |
| 113 | treechildren:-moz-tree-image(threadCol, container) { |
| 114 | list-style-image: url("chrome://messenger/skin/icons/thread-closed.gif"); |
| 115 | } |
| 116 | |
| 117 | treechildren:-moz-tree-image(threadCol, container, offline) { |
| 118 | list-style-image: url("chrome://messenger/skin/icons/thread-closed-offline.gif"); |
| 119 | } |
| 120 | |
| 121 | treechildren:-moz-tree-image(threadCol, container, open) { |
| 122 | list-style-image: url("chrome://messenger/skin/icons/thread-open.gif"); |
| 123 | } |
| 124 | |
| 125 | treechildren:-moz-tree-image(threadCol, container, open, offline) { |
| 126 | list-style-image: url("chrome://messenger/skin/icons/thread-open-offline.gif"); |
| 127 | } |
| 128 | |
| 129 | treechildren:-moz-tree-image(threadCol, container, hasUnread) { |
| 130 | list-style-image: url("chrome://messenger/skin/icons/thread-new-closed.gif"); |
| 131 | } |
| 132 | |
| 133 | treechildren:-moz-tree-image(threadCol, container, hasUnread, offline) { |
| 134 | list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-offline.gif"); |
| 135 | } |
| 136 | |
| 137 | treechildren:-moz-tree-image(threadCol, container, hasUnread, open) { |
| 138 | list-style-image: url("chrome://messenger/skin/icons/thread-new-open.gif"); |
| 139 | } |
| 140 | |
| 141 | treechildren:-moz-tree-image(threadCol, container, hasUnread, open, offline) { |
| 142 | list-style-image: url("chrome://messenger/skin/icons/thread-new-open-offline.gif"); |
| 143 | } |
| 144 | |
| 145 | /* ..... read column ..... */ |
| 146 | |
| 147 | treecol.readColumnHeader { |
| 148 | list-style-image: url("chrome://messenger/skin/icons/readcol.gif"); |
| 149 | } |
| 150 | |
| 151 | treechildren:-moz-tree-image(unreadButtonColHeader) { |
| 152 | list-style-image: url("chrome://messenger/skin/icons/readmail.gif"); |
| 153 | } |
| 154 | |
| 155 | treechildren:-moz-tree-image(unreadButtonColHeader, unread) { |
| 156 | list-style-image: url("chrome://messenger/skin/icons/unreadmail.gif"); |
| 157 | } |
| 158 | |
| 159 | /* ..... flag column ..... */ |
| 160 | |
| 161 | treecol.flagColumnHeader { |
| 162 | list-style-image: url("chrome://messenger/skin/icons/flagcol.gif"); |
| 163 | } |
| 164 | |
| 165 | treechildren:-moz-tree-image(flaggedCol) { |
| 166 | list-style-image: url("chrome://messenger/skin/icons/readmail.gif"); |
| 167 | } |
| 168 | |
| 169 | treechildren:-moz-tree-image(flaggedCol, flagged) { |
| 170 | list-style-image: url("chrome://messenger/skin/icons/flaggedmail.gif"); |
| 171 | } |
| 172 | |
| 173 | /* ..... subject column ..... */ |
| 174 | |
| 175 | treechildren:-moz-tree-image(subjectCol) { |
| 176 | list-style-image: url("chrome://messenger/skin/icons/message-mail.gif"); |
| 177 | } |
| 178 | |
| 179 | treechildren:-moz-tree-image(subjectCol, new) { |
| 180 | list-style-image: url("chrome://messenger/skin/icons/message-mail-new.gif"); |
| 181 | } |
| 182 | |
| 183 | treechildren:-moz-tree-image(subjectCol, attach) { |
| 184 | list-style-image: url("chrome://messenger/skin/icons/message-mail-attach.gif"); |
| 185 | } |
| 186 | |
| 187 | treechildren:-moz-tree-image(subjectCol, imapdeleted) { |
| 188 | list-style-image: url("chrome://messenger/skin/icons/message-mail-imapdelete.gif"); |
| 189 | } |
| 190 | |
| 191 | treechildren:-moz-tree-image(subjectCol, offline) { |
| 192 | list-style-image: url("chrome://messenger/skin/icons/message-mail-offline.gif"); |
| 193 | } |
| 194 | |
| 195 | treechildren:-moz-tree-image(subjectCol, new, offline) { |
| 196 | list-style-image: url("chrome://messenger/skin/icons/message-mail-new-offline.gif"); |
| 197 | } |
| 198 | |
| 199 | treechildren:-moz-tree-image(subjectCol, attach, offline) { |
| 200 | list-style-image: url("chrome://messenger/skin/icons/message-mail-attach-offline.gif"); |
| 201 | } |
| 202 | |
| 203 | treechildren:-moz-tree-image(subjectCol, imapdeleted, offline) { |
| 204 | list-style-image: url("chrome://messenger/skin/icons/message-mail-imapdel-offline.gif"); |
| 205 | } |
| 206 | |
| 207 | treechildren:-moz-tree-image(subjectCol, news) { |
| 208 | list-style-image: url("chrome://messenger/skin/icons/message-news.gif"); |
| 209 | } |
| 210 | |
| 211 | treechildren:-moz-tree-image(subjectCol, news, attach) { |
| 212 | list-style-image: url("chrome://messenger/skin/icons/message-news-attach.gif"); |
| 213 | } |
| 214 | |
| 215 | treechildren:-moz-tree-image(subjectCol, news, attach, offline) { |
| 216 | list-style-image: url("chrome://messenger/skin/icons/message-news-attach-offline.gif"); |
| 217 | } |
| 218 | |
| 219 | treechildren:-moz-tree-image(subjectCol, news, new) { |
| 220 | list-style-image: url("chrome://messenger/skin/icons/message-news-new.gif"); |
| 221 | } |
| 222 | |
| 223 | treechildren:-moz-tree-image(subjectCol, news, new, attach, offline) { |
| 224 | list-style-image: url("chrome://messenger/skin/icons/message-news-new-attach-offline.gif"); |
| 225 | } |
| 226 | |
| 227 | treechildren:-moz-tree-image(subjectCol, news, new, offline) { |
| 228 | list-style-image: url("chrome://messenger/skin/icons/message-news-new-offline.gif"); |
| 229 | } |
| 230 | |
| 231 | treechildren:-moz-tree-image(subjectCol, news, offline) { |
| 232 | list-style-image: url("chrome://messenger/skin/icons/message-news-offline.gif"); |
| 233 | } |
| 234 | |
| 235 | /* ..... new thread icons for watch and ignore ..... */ |
| 236 | |
| 237 | treechildren:-moz-tree-image(news, threadCol, watch) { |
| 238 | list-style-image: url("chrome://messenger/skin/icons/thread-closed-eye.gif"); |
| 239 | } |
| 240 | |
| 241 | treechildren:-moz-tree-image(news, threadCol, ignore) { |
| 242 | list-style-image: url("chrome://messenger/skin/icons/thread-closed-kill.gif"); |
| 243 | } |
| 244 | |
| 245 | treechildren:-moz-tree-image(news, threadCol, watch, offline) { |
| 246 | list-style-image: url("chrome://messenger/skin/icons/thread-closed-offline-eye.gif"); |
| 247 | } |
| 248 | |
| 249 | treechildren:-moz-tree-image(news, threadCol, ignore, offline) { |
| 250 | list-style-image: url("chrome://messenger/skin/icons/thread-closed-offline-kill.gif"); |
| 251 | } |
| 252 | |
| 253 | treechildren:-moz-tree-image(news, threadCol, container, hasUnread, watch) { |
| 254 | list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-eye.gif"); |
| 255 | } |
| 256 | |
| 257 | treechildren:-moz-tree-image(news, threadCol, container, hasUnread, ignore) { |
| 258 | list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-kill.gif"); |
| 259 | } |
| 260 | |
| 261 | treechildren:-moz-tree-image(news, threadCol, container, hasUnread, watch, offline) { |
| 262 | list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-offline-eye.gif"); |
| 263 | } |
| 264 | |
| 265 | treechildren:-moz-tree-image(news, threadCol, container, hasUnread, ignore, offline) { |
| 266 | list-style-image: url("chrome://messenger/skin/icons/thread-new-closed-offline-kill.gif"); |
| 267 | } |
| 268 | |
| 269 | treechildren:-moz-tree-image(news, threadCol, container, hasUnread, watch, open) { |
| 270 | list-style-image: url("chrome://messenger/skin/icons/thread-new-open-eye.gif"); |
| 271 | } |
| 272 | |
| 273 | treechildren:-moz-tree-image(news, threadCol, container, hasUnread, ignore, open) { |
| 274 | list-style-image: url("chrome://messenger/skin/icons/thread-new-open-kill.gif"); |
| 275 | } |
| 276 | |
| 277 | treechildren:-moz-tree-image(news, threadCol, container, hasUnread, watch, open, offline) { |
| 278 | list-style-image: url("chrome://messenger/skin/icons/thread-new-open-offline-eye.gif"); |
| 279 | } |
| 280 | |
| 281 | treechildren:-moz-tree-image(news, threadCol, container, hasUnread, ignore, open, offline) { |
| 282 | list-style-image: url("chrome://messenger/skin/icons/thread-new-open-offline-kill.gif"); |
| 283 | } |
| 284 | |
| 285 | treechildren:-moz-tree-image(news, threadCol, container, watch, open) { |
| 286 | list-style-image: url("chrome://messenger/skin/icons/thread-open-eye.gif"); |
| 287 | } |
| 288 | |
| 289 | treechildren:-moz-tree-image(news, threadCol, container, ignore, open) { |
| 290 | list-style-image: url("chrome://messenger/skin/icons/thread-open-kill.gif"); |
| 291 | } |
| 292 | |
| 293 | treechildren:-moz-tree-image(news, threadCol, container, watch, open, offline) { |
| 294 | list-style-image: url("chrome://messenger/skin/icons/thread-open-offline-eye.gif"); |
| 295 | } |
| 296 | |
| 297 | treechildren:-moz-tree-image(news, threadCol, container, ignore, open, offline) { |
| 298 | list-style-image: url("chrome://messenger/skin/icons/thread-open-offline-kill.gif"); |
| 299 | } |
| 300 | |
| 301 | #sizeCol, |
| 302 | #unreadCol, |
| 303 | #totalCol { |
| 304 | text-align: right; |
| 305 | } |