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 | |
351107c9 | 5 | @import url("chrome://messenger/skin/"); |
6 | ||
7 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
8 | ||
b1eaa419 | 9 | /* ===== accountCentral.css ========================================== |
10 | == Styles for the Messenger Account Central panel. | |
11 | ======================================================================= */ | |
12 | ||
1e32332f RK |
13 | page { |
14 | padding: 0; | |
15 | } | |
16 | ||
351107c9 | 17 | #acctCentralGrid { |
351107c9 | 18 | } |
19 | ||
150efe45 | 20 | spacer { |
1e32332f | 21 | max-height: 3px; |
b1eaa419 | 22 | } |
23 | ||
150efe45 RK |
24 | spacer.big { |
25 | max-height: 4em; | |
b1eaa419 | 26 | } |
27 | ||
28 | /* ::::: rows ::::: */ | |
29 | ||
351107c9 | 30 | #acctCentralHeaderRow { |
1e32332f RK |
31 | background-color: #A09090; |
32 | border-radius: 1000px; | |
351107c9 | 33 | color: #000000; |
34 | font-weight: bold; | |
35 | font-size: 20px; | |
1e32332f RK |
36 | } |
37 | ||
38 | #acctCentralHeaderRow > label { | |
39 | -moz-margin-start: 30px; | |
40 | } | |
41 | ||
42 | #acctCentralHeaderRow + spacer { | |
43 | max-height: 15px; | |
351107c9 | 44 | } |
45 | ||
46 | .acctCentralRow { | |
1e32332f | 47 | -moz-margin-start: 10px; |
351107c9 | 48 | } |
49 | ||
50 | .acctCentralRowTitleBox { | |
351107c9 | 51 | background-color: #9C9CFF; |
52 | padding-top: 3px; | |
1e32332f RK |
53 | padding-bottom: 3px; |
54 | border-radius: 1000px; | |
351107c9 | 55 | color: #000000; |
56 | } | |
57 | ||
1e32332f RK |
58 | .acctCentralRowTitleBox > description { |
59 | -moz-margin-start: 30px; | |
60 | } | |
61 | ||
351107c9 | 62 | .acctCentralTitleRow { |
8caa872d | 63 | -moz-margin-start: 10px; |
351107c9 | 64 | font-weight: bold; |
65 | font-size: 15px; | |
66 | } | |
67 | ||
1e32332f RK |
68 | .acctCentralTitleRow+ spacer { |
69 | max-height: 10px; | |
70 | } | |
71 | ||
351107c9 | 72 | .acctCentralText { |
73 | font-size: 15px; | |
74 | } | |
75 | ||
b1eaa419 | 76 | /* ::::: links ::::: */ |
77 | ||
351107c9 | 78 | .acctCentralLinkText { |
1e32332f RK |
79 | margin: 0; |
80 | -moz-margin-start: 20px; | |
351107c9 | 81 | cursor: pointer; |
1e32332f RK |
82 | background-color: #C09070; |
83 | color: #000000; | |
84 | padding: 0px 10px; | |
85 | border-radius: 1000px; | |
ee6cb01c | 86 | text-decoration: none; |
351107c9 | 87 | } |
88 | ||
89 | .acctCentralLinkText:hover { | |
90 | background-color: #FFCF00; | |
91 | color: #000000; | |
351107c9 | 92 | } |
347db3eb RK |
93 | |
94 | /* ::::: row icons ::::: */ | |
95 | /* XXX: to be implemented in this theme! | |
96 | #ReadMessages { | |
97 | list-style-image: url("chrome://messenger/skin/icons/acct-read.png"); | |
98 | } | |
99 | ||
100 | #ComposeMessage { | |
101 | list-style-image: url("chrome://messenger/skin/icons/acct-compose.png"); | |
102 | } | |
103 | ||
104 | #SubscribeNewsgroups { | |
105 | list-style-image: url("chrome://messenger/skin/icons/acct-subscribe.png"); | |
106 | } | |
107 | ||
108 | #SubscribeImapFolders { | |
109 | list-style-image: url("chrome://messenger/skin/icons/acct-subscribe.png"); | |
110 | } | |
111 | ||
112 | #SubscribeRSS { | |
113 | list-style-image: url("chrome://messenger/skin/icons/acct-subscribe.png"); | |
114 | } | |
115 | ||
116 | #SearchMessages { | |
117 | list-style-image: url("chrome://messenger/skin/icons/acct-search.png"); | |
118 | } | |
119 | ||
120 | #AccountSettings { | |
121 | list-style-image: url("chrome://messenger/skin/icons/acct-prefs.png"); | |
122 | } | |
123 | ||
124 | #CreateAccount { | |
125 | list-style-image: url("chrome://messenger/skin/icons/acct-newaccount.png"); | |
126 | } | |
127 | ||
128 | #CreateFilters { | |
129 | list-style-image: url("chrome://messenger/skin/icons/acct-filters.png"); | |
130 | } | |
131 | ||
132 | #OfflineSettings { | |
133 | list-style-image: url("chrome://messenger/skin/icons/acct-prefs.png"); | |
134 | } | |
135 | ||
136 | #JunkSettingsMail { | |
137 | list-style-image: url("chrome://messenger/skin/icons/acct-filters.png"); | |
138 | } | |
139 | ||
140 | #JunkSettingsNews { | |
141 | list-style-image: url("chrome://messenger/skin/icons/acct-filters.png"); | |
142 | } | |
143 | */ |