Commit | Line | Data |
---|---|---|
9099c61d RK |
1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
2 | * License, v. 2.0. If a copy of the MPL was not distributed with this | |
3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
351107c9 | 4 | |
5 | /* ===== subscribe.css ================================================== | |
6 | == Styles for the Subscribe dialog. | |
7 | ======================================================================= */ | |
8 | ||
9 | @import url("chrome://messenger/skin/"); | |
10 | ||
11 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
12 | ||
13 | /* ::::: margin adjustments :::::: */ | |
14 | ||
15 | #subscribetree { | |
02920d2b | 16 | margin: 0 !important; |
351107c9 | 17 | } |
18 | ||
19 | /* ::::: subscribed icons :::::: */ | |
20 | ||
01fc5c11 | 21 | treechildren::-moz-tree-image(subscribedColumn), |
22 | treechildren::-moz-tree-image(subscribedColumn2) { | |
b1eaa419 | 23 | list-style-image: url("chrome://messenger/skin/icons/dot.gif"); |
351107c9 | 24 | } |
25 | ||
01fc5c11 | 26 | treechildren::-moz-tree-image(subscribedColumn, Subscribed-true), |
27 | treechildren::-moz-tree-image(subscribedColumn2, subscribed) { | |
b1eaa419 | 28 | list-style-image: url("chrome://messenger/skin/icons/check.gif"); |
351107c9 | 29 | } |
30 | ||
03f6f39c | 31 | treechildren::-moz-tree-image(subscribedColumn, Subscribable-false) { |
32 | list-style-image: none; | |
33 | } | |
34 | ||
35 | treechildren::-moz-tree-cell-text(nameColumn, Subscribable-false) { | |
36 | color: #8050B0; | |
37 | font-style: italic; | |
38 | } | |
39 | ||
351107c9 | 40 | /* ::::: folder icons :::::: */ |
41 | ||
01fc5c11 | 42 | treechildren::-moz-tree-image(nameColumn) { |
8caa872d | 43 | -moz-margin-end: 2px; |
b1eaa419 | 44 | list-style-image: url("chrome://messenger/skin/icons/folder-closed.gif"); |
351107c9 | 45 | } |
46 | ||
01fc5c11 | 47 | treechildren::-moz-tree-image(nameColumn, ServerType-nntp), |
48 | treechildren::-moz-tree-image(nameColumn2, nntp) { | |
8caa872d | 49 | -moz-margin-end: 2px; |
b1eaa419 | 50 | list-style-image: url("chrome://messenger/skin/icons/folder-newsgroup.gif"); |
351107c9 | 51 | } |
52 | ||
53 | /* ::::: server icons :::::: */ | |
54 | ||
55 | .subscribeMenuItem { | |
b1eaa419 | 56 | list-style-image: url("chrome://messenger/skin/icons/server-mail.gif"); |
351107c9 | 57 | } |
58 | ||
59 | .subscribeMenuItem[ServerType="imap"][IsSecure="true"] { | |
b1eaa419 | 60 | list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif"); |
351107c9 | 61 | } |
62 | ||
63 | .subscribeMenuItem[ServerType="nntp"] { | |
b1eaa419 | 64 | list-style-image: url("chrome://messenger/skin/icons/server-news.gif"); |
351107c9 | 65 | } |
66 | ||
67 | .subscribeMenuItem[ServerType="nntp"][IsSecure="true"] { | |
b1eaa419 | 68 | list-style-image: url("chrome://messenger/skin/icons/server-news-lock.gif"); |
351107c9 | 69 | } |
3a121502 | 70 | |
71 | /* ::::: statusbar adjustments :::::: */ | |
72 | ||
73 | #statusContainerBox { | |
569543b3 | 74 | border-radius: 9px; |
3a121502 | 75 | margin-top: 3px; |
8caa872d | 76 | -moz-padding-end: 9px; |
3a121502 | 77 | background-color: #8050B0; |
78 | color: #000000; | |
79 | } |