update both themes to state of suite default trunk of 2010-11-14
[themes.git] / LCARStrek / messenger / messengercompose / messengercompose.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 *
3a121502 16 * The Initial Developer of the Original Code is
351107c9 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 * Robert Kaiser <KaiRo@KaiRo.at>
24 *
25 * Alternatively, the contents of this file may be used under the terms of
3a121502 26 * either the GNU General Public License Version 2 or later (the "GPL"), or
351107c9 27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the NPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the NPL, the GPL or the LGPL.
36 *
37 * ***** END LICENSE BLOCK ***** */
38
39/* ===== messengercompose.css ===========================================
40 == Styles for the main Messenger Compose window.
41 ======================================================================= */
42
43@import url("chrome://messenger/skin/");
44
45@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
46
351107c9 47/* ::::: primary toolbar buttons ::::: */
3a121502 48
b1eaa419 49#button-send {
303bd2e1
RK
50 list-style-image: url("chrome://messenger/skin/icons/messengericons.png");
51 -moz-image-region: rect(231px 25px 252px 0px);
3a121502 52}
b1eaa419 53
54#button-send[disabled="true"] {
303bd2e1 55 -moz-image-region: rect(231px 50px 252px 25px);
3a121502 56}
b1eaa419 57
303bd2e1
RK
58#button-send:not([disabled="true"]):hover,
59#button-send:not([disabled="true"]):hover:active {
60 -moz-image-region: rect(231px 75px 252px 50px);
b1eaa419 61}
351107c9 62
303bd2e1
RK
63#button-send[offline="true"] {
64 -moz-image-region: rect(273px 25px 294px 0px);
b1eaa419 65}
66
67#button-send[offline="true"][disabled="true"] {
303bd2e1 68 -moz-image-region: rect(273px 50px 294px 25px);
b1eaa419 69}
70
303bd2e1
RK
71#button-send[offline="true"]:not([disabled="true"]):hover,
72#button-send[offline="true"]:not([disabled="true"]):hover:active {
73 -moz-image-region: rect(273px 75px 294px 50px);
b1eaa419 74}
351107c9 75
303bd2e1
RK
76#button-address {
77 list-style-image: url("chrome://messenger/skin/icons/messengericons.png");
78 -moz-image-region: rect(189px 25px 210px 0px);
3a121502 79}
b1eaa419 80
81#button-address[disabled="true"] {
303bd2e1 82 -moz-image-region: rect(189px 50px 210px 25px);
3a121502 83}
b1eaa419 84
303bd2e1
RK
85#button-address:not([disabled="true"]):hover,
86#button-address:not([disabled="true"]):hover:active {
87 -moz-image-region: rect(189px 75px 210px 50px);
b1eaa419 88}
351107c9 89
303bd2e1
RK
90#button-attach {
91 list-style-image: url("chrome://messenger/skin/icons/messengericons.png");
92 -moz-image-region: rect(210px 25px 231px 0px);
3a121502 93}
b1eaa419 94
95#button-attach[disabled="true"] {
303bd2e1 96 -moz-image-region: rect(210px 50px 231px 25px);
b1eaa419 97}
351107c9 98
303bd2e1
RK
99#button-attach:not([disabled="true"]):hover,
100#button-attach:not([disabled="true"]):hover:active,
101#button-attach[open="true"] {
102 -moz-image-region: rect(210px 75px 231px 50px);
3a121502 103}
b1eaa419 104
105#spellingButton {
4db0b17b
RK
106 list-style-image: url("chrome://editor/skin/icons/editoricons.png");
107 -moz-image-region: rect(168px 25px 189px 0px);
b1eaa419 108}
351107c9 109
4db0b17b
RK
110#spellingButton[disabled="true"] {
111 -moz-image-region: rect(168px 50px 189px 25px);
b1eaa419 112}
113
4db0b17b
RK
114#spellingButton:not([disabled="true"]):hover,
115#spellingButton:not([disabled="true"]):hover:active,
116#spellingButton[open="true"] {
117 -moz-image-region: rect(168px 75px 189px 50px);
b1eaa419 118}
119
120#button-save {
303bd2e1
RK
121 list-style-image: url("chrome://messenger/skin/icons/messengericons.png");
122 -moz-image-region: rect(294px 25px 315px 0px);
b1eaa419 123}
351107c9 124
303bd2e1
RK
125#button-save[disabled="true"] {
126 -moz-image-region: rect(294px 50px 315px 25px);
3a121502 127}
b1eaa419 128
303bd2e1
RK
129#button-save:not([disabled="true"]):hover,
130#button-save:not([disabled="true"]):hover:active,
131#button-save[open="true"] {
132 -moz-image-region: rect(294px 75px 315px 50px);
3a121502 133}
b1eaa419 134
4db0b17b
RK
135/* ::::: small primary toolbar buttons ::::: */
136
137toolbar[iconsize="small"] > #button-send,
138toolbar[iconsize="small"] > toolbarpaletteitem > #button-send {
139 list-style-image: url("chrome://messenger/skin/icons/messengericons-small.png");
140 -moz-image-region: rect(176px 16px 192px 0);
141}
142
143toolbar[iconsize="small"] > #button-send[disabled="true"] {
144 -moz-image-region: rect(176px 32px 192px 16px);
145}
146
147toolbar[iconsize="small"] > #button-send:not([disabled="true"]):hover,
148toolbar[iconsize="small"] > #button-send:not([disabled="true"]):hover:active {
149 -moz-image-region: rect(176px 48px 192px 32px);
150}
151
152toolbar[iconsize="small"] > #button-send[offline="true"] {
153 -moz-image-region: rect(208px 16px 224px 0);
154}
155
156toolbar[iconsize="small"] > #button-send[offline="true"][disabled="true"] {
157 -moz-image-region: rect(208px 32px 224px 16px);
158}
159
160toolbar[iconsize="small"] > #button-send[offline="true"]:not([disabled="true"]):hover,
161toolbar[iconsize="small"] > #button-send[offline="true"]:not([disabled="true"]):hover:active {
162 -moz-image-region: rect(208px 48px 2224px 32px);
163}
164
165toolbar[iconsize="small"] > #button-address,
166toolbar[iconsize="small"] > toolbarpaletteitem > #button-address {
167 list-style-image: url("chrome://messenger/skin/icons/messengericons-small.png");
168 -moz-image-region: rect(144px 16px 160px 0);
169}
170
171toolbar[iconsize="small"] > #button-address[disabled="true"] {
172 -moz-image-region: rect(144px 32px 160px 16px);
173}
174
175toolbar[iconsize="small"] > #button-address:not([disabled="true"]):hover,
176toolbar[iconsize="small"] > #button-address:not([disabled="true"]):hover:active {
177 -moz-image-region: rect(144px 48px 160px 32px);
178}
179
180toolbar[iconsize="small"] > #button-attach,
181toolbar[iconsize="small"] > toolbarpaletteitem > #button-attach {
182 list-style-image: url("chrome://messenger/skin/icons/messengericons-small.png");
183 -moz-image-region: rect(160px 16px 176px 0);
184}
185
186toolbar[iconsize="small"] > #button-attach[disabled="true"] {
187 -moz-image-region: rect(160px 32px 176px 16px);
188}
189
190toolbar[iconsize="small"] > #button-attach:not([disabled="true"]):hover,
191toolbar[iconsize="small"] > #button-attach:not([disabled="true"]):hover:active,
192toolbar[iconsize="small"] > #button-attach[open="true"] {
193 -moz-image-region: rect(160px 48px 176px 32px);
194}
195
196toolbar[iconsize="small"] > #spellingButton,
197toolbar[iconsize="small"] > toolbarpaletteitem > #spellingButton {
198 list-style-image: url("chrome://editor/skin/icons/editoricons-small.png");
199 -moz-image-region: rect(128px 16px 144px 0);
200}
201
202toolbar[iconsize="small"] > #spellingButton[disabled="true"] {
203 -moz-image-region: rect(128px 32px 144px 16px);
204}
205
206toolbar[iconsize="small"] > #spellingButton:not([disabled="true"]):hover,
207toolbar[iconsize="small"] > #spellingButton:not([disabled="true"]):hover:active,
208toolbar[iconsize="small"] > #spellingButton[open="true"] {
209 -moz-image-region: rect(128px 48px 144px 32px);
210}
211
212toolbar[iconsize="small"] > #button-save,
213toolbar[iconsize="small"] > toolbarpaletteitem > #button-save {
214 list-style-image: url("chrome://messenger/skin/icons/messengericons-small.png");
215 -moz-image-region: rect(224px 16px 240px 0);
b1eaa419 216}
351107c9 217
4db0b17b
RK
218toolbar[iconsize="small"] > #button-save[disabled="true"] {
219 -moz-image-region: rect(224px 32px 240px 16px);
3a121502 220}
b1eaa419 221
4db0b17b
RK
222toolbar[iconsize="small"] > #button-save:not([disabled="true"]):hover,
223toolbar[iconsize="small"] > #button-save:not([disabled="true"]):hover:active,
224toolbar[iconsize="small"] > #button-save[open="true"] {
225 -moz-image-region: rect(224px 48px 240px 32px);
3a121502 226}
351107c9 227
ee6cb01c
RK
228#MsgHeadersToolbar {
229 min-height: 0px; /* this undoes the min-height in toolbar.css */
230}
231
bad6bfa4
RK
232#MsgHeadersToolbar > .toolbar-box > .toolbar-holder {
233 -moz-padding-end: 0; /* this undoes the padding in toolbar.css */
234}
235
b1eaa419 236/* ::::: autocomplete icons ::::: */
351107c9 237
01fc5c11 238treechildren::-moz-tree-cell-text(default-match) {
02920d2b
RK
239 margin-top: 2px;
240 margin-bottom: 2px;
241 -moz-margin-start: 15px;
242 -moz-margin-end: -3px;
b1eaa419 243 border: none;
244}
351107c9 245
01fc5c11 246treechildren::-moz-tree-image(local-abook) {
02920d2b
RK
247 margin-top: 2px;
248 margin-bottom: 2px;
249 -moz-margin-start: 4px;
250 -moz-margin-end: -1px;
b1eaa419 251 list-style-image: url("chrome://messenger/skin/addressbook/icons/addrbook.gif");
252}
351107c9 253
01fc5c11 254treechildren::-moz-tree-image(remote-abook) {
02920d2b
RK
255 margin: 2px;
256 -moz-margin-end: -3px;
b1eaa419 257 list-style-image: url("chrome://messenger/skin/addressbook/icons/remote-addrbook.gif");
258}
351107c9 259
01fc5c11 260treechildren::-moz-tree-image(remote-err) {
02920d2b
RK
261 margin: 2px;
262 -moz-margin-end: -3px;
b1eaa419 263 list-style-image: url("chrome://messenger/skin/addressbook/icons/remote-addrbook-error.gif");
264}
351107c9 265
b1eaa419 266/* ::::: LCARStrek layout corrections ::::: */
267
268#msgheaderstoolbar-box {
269 background-color: #E7ADE7;
270 color: #000000;
3a121502 271}
b1eaa419 272
273#addresses-box,
274#attachments-box {
275 padding: 1px 5px;
351107c9 276}
277
2b722888 278#addresses-box > hbox > label,
279#attachments-box > label {
8caa872d 280 -moz-margin-start: 0px;
2b722888 281}
282
edb23828 283#msgIdentity {
8caa872d 284 -moz-margin-end: 0px;
351107c9 285}
286
edb23828 287#msgSubject {
8caa872d 288 -moz-margin-end: 0px;
edb23828 289}
290
b1eaa419 291#attachmentBucket {
02920d2b 292 margin: 3px 0px 2px;
b1eaa419 293 color: #FF9F00;
351107c9 294}
295
b1eaa419 296#attachmentbucket-sizer {
297 width: 5px;
298 margin: 0px;
299 background-color: #000000;
351107c9 300}
301
b1eaa419 302#compose-toolbar-sizer {
303 height: 3px;
304 margin-top: 0px;
305 border: none;
306}
fb2b5761
RK
307
308/* ::::: lightweight themes ::::: */
309
310#MsgHeadersToolbar:-moz-lwtheme,
311#FormatToolbar:-moz-lwtheme,
312#compose-toolbar-sizer:-moz-lwtheme {
313 text-shadow: none;
314 /* color: -moz-dialogtext;
315 background-color: -moz-dialog; */
316}
317
318#MsgHeadersToolbar textbox:-moz-lwtheme,
319#MsgHeadersToolbar menulist:-moz-lwtheme,
320#FormatToolbar menulist:-moz-lwtheme {
321 opacity: 1;
322}