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/. */ | |
f6e0a33f | 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; |
caf7fc11 | 17 | border-bottom: 0px; |
f6e0a33f | 18 | } |
19 | ||
20 | /* ::::: subscribed icons :::::: */ | |
21 | ||
a1f525f0 | 22 | treechildren::-moz-tree-image(subscribedColumn), |
23 | treechildren::-moz-tree-image(subscribedColumn2) { | |
74d14f90 | 24 | list-style-image: url("chrome://messenger/skin/icons/dot.gif"); |
f6e0a33f | 25 | } |
26 | ||
a1f525f0 | 27 | treechildren::-moz-tree-image(subscribedColumn, Subscribed-true), |
28 | treechildren::-moz-tree-image(subscribedColumn2, subscribed) { | |
74d14f90 | 29 | list-style-image: url("chrome://messenger/skin/icons/check.gif"); |
f6e0a33f | 30 | } |
31 | ||
aa277310 | 32 | treechildren::-moz-tree-image(subscribedColumn, Subscribable-false) { |
33 | list-style-image: none; | |
34 | } | |
35 | ||
36 | treechildren::-moz-tree-cell-text(nameColumn, Subscribable-false) { | |
37 | color: #808080; | |
38 | font-style: italic; | |
39 | } | |
40 | ||
f6e0a33f | 41 | /* ::::: folder icons :::::: */ |
42 | ||
a1f525f0 | 43 | treechildren::-moz-tree-image(nameColumn) { |
dae45075 | 44 | margin-inline-end: 2px; |
74d14f90 | 45 | list-style-image: url("chrome://messenger/skin/icons/folder-closed.gif"); |
f6e0a33f | 46 | } |
47 | ||
a1f525f0 | 48 | treechildren::-moz-tree-image(nameColumn, ServerType-nntp), |
49 | treechildren::-moz-tree-image(nameColumn2, nntp) { | |
dae45075 | 50 | margin-inline-end: 2px; |
74d14f90 | 51 | list-style-image: url("chrome://messenger/skin/icons/folder-newsgroup.gif"); |
f6e0a33f | 52 | } |
53 | ||
54 | /* ::::: server icons :::::: */ | |
55 | ||
56 | .subscribeMenuItem { | |
74d14f90 | 57 | list-style-image: url("chrome://messenger/skin/icons/server-mail.gif"); |
f6e0a33f | 58 | } |
59 | ||
60 | .subscribeMenuItem[ServerType="imap"][IsSecure="true"] { | |
74d14f90 | 61 | list-style-image: url("chrome://messenger/skin/icons/server-remote-lock.gif"); |
f6e0a33f | 62 | } |
63 | ||
64 | .subscribeMenuItem[ServerType="nntp"] { | |
74d14f90 | 65 | list-style-image: url("chrome://messenger/skin/icons/server-news.gif"); |
f6e0a33f | 66 | } |
67 | ||
68 | .subscribeMenuItem[ServerType="nntp"][IsSecure="true"] { | |
74d14f90 | 69 | list-style-image: url("chrome://messenger/skin/icons/server-news-lock.gif"); |
f6e0a33f | 70 | } |
caf7fc11 | 71 | |
72 | /* ::::: statusbar adjustments :::::: */ | |
73 | ||
74 | #statusContainerBox { | |
75 | border: 1px inset #CCD0DD; | |
76 | border-top: 1px solid #9999CC; | |
77 | background-color: #666699; | |
78 | color: #CCD0DD; | |
79 | } |