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 | |
3d6dd546 | 5 | /** Contains style definitions for the navigator application |
351107c9 | 6 | **/ |
7 | ||
b1eaa419 | 8 | @import url("chrome://navigator/content/navigator.css"); |
9 | @import url("chrome://communicator/skin/"); | |
b1eaa419 | 10 | @import url("chrome://communicator/skin/bookmarks/bookmarksToolbar.css"); |
351107c9 | 11 | |
12 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
13 | ||
b1eaa419 | 14 | /* ::::: primary toolbar buttons ::::: */ |
351107c9 | 15 | |
b1eaa419 | 16 | #back-button { |
e10e7add RK |
17 | list-style-image: url("chrome://communicator/skin/icons/communicatoricons.png"); |
18 | -moz-image-region: rect(42px 25px 63px 0px); | |
b1eaa419 | 19 | } |
351107c9 | 20 | |
c710949d RK |
21 | #back-button[disabled="true"] { |
22 | -moz-image-region: rect(42px 50px 63px 25px); | |
b1eaa419 | 23 | } |
24 | ||
c710949d RK |
25 | #back-button:not([disabled="true"]):hover, |
26 | #back-button:not([disabled="true"]):hover:active, | |
27 | #back-button[open="true"] { | |
28 | -moz-image-region: rect(42px 75px 63px 50px); | |
b1eaa419 | 29 | } |
30 | ||
31 | #forward-button { | |
e10e7add RK |
32 | list-style-image: url("chrome://communicator/skin/icons/communicatoricons.png"); |
33 | -moz-image-region: rect(63px 25px 84px 0px); | |
b1eaa419 | 34 | } |
351107c9 | 35 | |
c710949d RK |
36 | #forward-button[disabled="true"] { |
37 | -moz-image-region: rect(63px 50px 84px 25px); | |
b1eaa419 | 38 | } |
351107c9 | 39 | |
c710949d RK |
40 | #forward-button:not([disabled="true"]):hover, |
41 | #forward-button:not([disabled="true"]):hover:active, | |
42 | #forward-button[open="true"] { | |
43 | -moz-image-region: rect(63px 75px 84px 50px); | |
b1eaa419 | 44 | } |
45 | ||
46 | #reload-button { | |
c710949d RK |
47 | list-style-image: url("chrome://navigator/skin/icons/navigatoricons.png"); |
48 | -moz-image-region: rect(0px 25px 21px 0px); | |
b1eaa419 | 49 | } |
351107c9 | 50 | |
c710949d RK |
51 | #reload-button[disabled="true"] { |
52 | -moz-image-region: rect(0px 50px 21px 25px); | |
b1eaa419 | 53 | } |
54 | ||
c710949d RK |
55 | #reload-button:not([disabled="true"]):hover, |
56 | #reload-button:not([disabled="true"]):hover:active { | |
57 | -moz-image-region: rect(0px 75px 21px 50px); | |
b1eaa419 | 58 | } |
59 | ||
60 | #stop-button { | |
e10e7add RK |
61 | list-style-image: url("chrome://communicator/skin/icons/communicatoricons.png"); |
62 | -moz-image-region: rect(21px 25px 42px 0px); | |
b1eaa419 | 63 | } |
351107c9 | 64 | |
c710949d RK |
65 | #stop-button[disabled="true"] { |
66 | -moz-image-region: rect(21px 50px 42px 25px); | |
3d6dd546 | 67 | } |
351107c9 | 68 | |
c710949d RK |
69 | #stop-button:not([disabled="true"]):hover, |
70 | #stop-button:not([disabled="true"]):hover:active { | |
71 | -moz-image-region: rect(21px 75px 42px 50px); | |
3d6dd546 | 72 | } |
b1eaa419 | 73 | |
0ef1663c RK |
74 | #home-button { |
75 | list-style-image: url("chrome://communicator/skin/icons/communicatoricons.png"); | |
76 | -moz-image-region: rect(84px 25px 105px 0px); | |
77 | } | |
78 | ||
79 | #home-button[disabled="true"] { | |
80 | -moz-image-region: rect(84px 50px 105px 25px); | |
81 | } | |
82 | ||
83 | #home-button:not([disabled="true"]):hover, | |
84 | #home-button:not([disabled="true"]):hover:active { | |
85 | -moz-image-region: rect(84px 75px 105px 50px); | |
86 | } | |
87 | ||
c2e1f790 RK |
88 | #sync-button { |
89 | list-style-image: url("chrome://communicator/skin/sync/sync-32.png"); | |
90 | } | |
91 | ||
92 | #sync-button[status=active] { | |
93 | list-style-image: url("chrome://communicator/skin/sync/sync-32-throbber.png"); | |
94 | } | |
95 | ||
b1e5c9b1 | 96 | #clear-button { |
97 | list-style-image: url("chrome://global/skin/icons/close-button.gif"); | |
98 | } | |
99 | ||
61290d60 | 100 | #clear-button:hover { |
101 | list-style-image: url("chrome://global/skin/icons/close-button-hover.gif"); | |
102 | } | |
103 | ||
80916bc4 | 104 | /* ::::: small primary toolbar buttons ::::: */ |
105 | ||
0ef1663c RK |
106 | toolbar[iconsize="small"] > #back-button { |
107 | list-style-image: url("chrome://communicator/skin/icons/communicatoricons-small.png"); | |
108 | -moz-image-region: rect(32px 16px 48px 0); | |
109 | } | |
110 | ||
111 | toolbar[iconsize="small"] > #back-button[disabled="true"] { | |
112 | -moz-image-region: rect(32px 32px 48px 16px) !important; | |
113 | } | |
114 | ||
115 | toolbar[iconsize="small"] > #back-button:not([disabled="true"]):hover, | |
116 | toolbar[iconsize="small"] > #back-button:not([disabled="true"]):hover:active { | |
117 | -moz-image-region: rect(32px 48px 48px 32px); | |
118 | } | |
119 | ||
120 | toolbar[iconsize="small"] > #forward-button { | |
121 | list-style-image: url("chrome://communicator/skin/icons/communicatoricons-small.png"); | |
122 | -moz-image-region: rect(48px 16px 64px 0); | |
123 | } | |
124 | ||
125 | toolbar[iconsize="small"] > #forward-button[disabled="true"] { | |
126 | -moz-image-region: rect(48px 32px 64px 16px) !important; | |
127 | } | |
128 | ||
129 | toolbar[iconsize="small"] > #forward-button:not([disabled="true"]):hover, | |
130 | toolbar[iconsize="small"] > #forward-button:not([disabled="true"]):hover:active { | |
131 | -moz-image-region: rect(48px 48px 64px 32px); | |
132 | } | |
133 | ||
134 | toolbar[iconsize="small"] > #reload-button { | |
135 | list-style-image: url("chrome://navigator/skin/icons/navigatoricons-small.png"); | |
136 | -moz-image-region: rect(0 16px 16px 0); | |
137 | } | |
138 | ||
139 | toolbar[iconsize="small"] > #reload-button[disabled="true"] { | |
140 | -moz-image-region: rect(0 32px 16px 16px) !important; | |
141 | } | |
142 | ||
143 | toolbar[iconsize="small"] > #reload-button:not([disabled="true"]):hover, | |
144 | toolbar[iconsize="small"] > #reload-button:not([disabled="true"]):hover:active { | |
145 | -moz-image-region: rect(0 48px 16px 32px); | |
146 | } | |
147 | ||
148 | toolbar[iconsize="small"] > #stop-button { | |
149 | list-style-image: url("chrome://communicator/skin/icons/communicatoricons-small.png"); | |
150 | -moz-image-region: rect(16px 16px 32px 0); | |
151 | } | |
152 | ||
153 | toolbar[iconsize="small"] > #stop-button[disabled="true"] { | |
154 | -moz-image-region: rect(16px 32px 32px 16px) !important; | |
155 | } | |
156 | ||
157 | toolbar[iconsize="small"] > #stop-button:not([disabled="true"]):hover, | |
158 | toolbar[iconsize="small"] > #stop-button:not([disabled="true"]):hover:active { | |
159 | -moz-image-region: rect(16px 48px 32px 32px); | |
160 | } | |
161 | ||
0ef1663c RK |
162 | toolbar[iconsize="small"] > #home-button { |
163 | list-style-image: url("chrome://communicator/skin/icons/communicatoricons-small.png"); | |
164 | -moz-image-region: rect(64px 16px 80px 0); | |
165 | } | |
166 | ||
167 | toolbar[iconsize="small"] > #home-button[disabled="true"] { | |
168 | -moz-image-region: rect(64px 32px 80px 16px) !important; | |
169 | } | |
170 | ||
171 | toolbar[iconsize="small"] > #home-button:not([disabled="true"]):hover, | |
172 | toolbar[iconsize="small"] > #home-button:not([disabled="true"]):hover:active { | |
173 | -moz-image-region: rect(64px 48px 80px 32px); | |
174 | } | |
175 | ||
c2e1f790 RK |
176 | toolbar[iconsize="small"] > toolbarpaletteitem > #sync-button, |
177 | toolbar[iconsize="small"] > #sync-button { | |
178 | list-style-image: url("chrome://communicator/skin/sync/sync-16.png"); | |
179 | } | |
180 | ||
181 | toolbar[iconsize="small"] > toolbarpaletteitem > #sync-button[status=active], | |
182 | toolbar[iconsize="small"] > #sync-button[status=active] { | |
183 | list-style-image: url("chrome://communicator/skin/sync/sync-16-throbber.png"); | |
184 | } | |
185 | ||
f1b199d6 RK |
186 | #FindToolbar:-moz-lwtheme { |
187 | /* -moz-border-top-colors: transparent; | |
188 | -moz-border-bottom-colors: transparent; */ | |
189 | } | |
190 | ||
80916bc4 | 191 | /* ::::: fullscreen window controls ::::: */ |
192 | ||
193 | #window-controls { | |
194 | -moz-box-align: center; | |
862a6f44 | 195 | padding: 0 1px; |
e20d243c | 196 | border-left: 3px solid #000000; |
862a6f44 | 197 | -moz-margin-start: 2px; |
e20d243c | 198 | } |
199 | ||
200 | #window-controls > toolbarbutton { | |
862a6f44 RK |
201 | padding: 3px; |
202 | -moz-padding-start: 2px; | |
203 | -moz-padding-end: 1px; | |
80916bc4 | 204 | } |
205 | ||
7a7b11b3 RK |
206 | toolbar[mode="text"] > #window-controls > toolbarbutton > .toolbarbutton-icon { |
207 | display: -moz-box; | |
208 | } | |
209 | ||
80916bc4 | 210 | #minimize-button { |
211 | list-style-image: url("chrome://navigator/skin/icons/win-minimize.gif"); | |
212 | } | |
213 | ||
e20d243c | 214 | #minimize-button:hover { |
215 | list-style-image: url("chrome://navigator/skin/icons/win-minimize-hover.gif"); | |
216 | } | |
217 | ||
80916bc4 | 218 | #restore-button { |
219 | list-style-image: url("chrome://navigator/skin/icons/win-restore.gif"); | |
220 | } | |
221 | ||
e20d243c | 222 | #restore-button:hover { |
223 | list-style-image: url("chrome://navigator/skin/icons/win-restore-hover.gif"); | |
224 | } | |
225 | ||
80916bc4 | 226 | #close-button { |
227 | list-style-image: url("chrome://navigator/skin/icons/win-close.gif"); | |
228 | } | |
229 | ||
e20d243c | 230 | #close-button:hover { |
231 | list-style-image: url("chrome://navigator/skin/icons/win-close-hover.gif"); | |
232 | } | |
233 | ||
b1eaa419 | 234 | /* ::::: nav-bar-inner ::::: */ |
235 | ||
d1476608 | 236 | .nav-bar-class { |
c710949d RK |
237 | -moz-padding-start: 1px; |
238 | -moz-padding-end: 1px; | |
b1eaa419 | 239 | min-width: 0px; |
c710949d | 240 | -moz-box-align: center; |
b1eaa419 | 241 | } |
242 | ||
243 | #urlbar { | |
569543b3 | 244 | border-radius: 5px; |
c710949d RK |
245 | margin: 0; |
246 | -moz-margin-start: 3px; | |
f0071a71 RK |
247 | /* make color as light as possible to deal with dark non-domain parts */ |
248 | color: #FFBFFF; | |
2c8f3260 RK |
249 | } |
250 | ||
7197fc13 | 251 | .urlbar-security-level { |
569543b3 | 252 | border-radius: 3px 0 0 3px; |
2c8f3260 | 253 | padding: 2px; |
b1eaa419 | 254 | } |
255 | ||
cf89ee7b | 256 | .urlbar-security-level[level="high"] { |
d84b9613 | 257 | background-color: #FFCF00; |
258 | color: #000000; | |
259 | } | |
260 | ||
e8fc8e8e RK |
261 | #wrapper-nav-bar-inner[place="palette"] > #nav-bar-inner > .button-toolbar, |
262 | #wrapper-nav-bar-inner[place="palette"] > #nav-bar-inner > #urlbar > .urlbar-icons { | |
263 | display: none; | |
264 | } | |
265 | ||
fb2b5761 RK |
266 | /* ::::: notification popups ::::: */ |
267 | ||
fb2b5761 RK |
268 | .popup-notification-icon { |
269 | width: 64px; | |
270 | height: 64px; | |
271 | -moz-margin-end: 10px; | |
272 | } | |
273 | ||
274 | .popup-notification-icon[popupid="geolocation"] { | |
275 | list-style-image: url("chrome://communicator/skin/icons/geolocation-64.png"); | |
276 | } | |
277 | ||
a3b6328b RK |
278 | .popup-notification-icon[popupid="addon-install-disabled"], |
279 | .popup-notification-icon[popupid="addon-install-blocked"], | |
b4af54ca RK |
280 | .popup-notification-icon[popupid="addon-install-started"], |
281 | .popup-notification-icon[popupid="addon-install-cancelled"], | |
a3b6328b | 282 | .popup-notification-icon[popupid="addon-install-failed"], |
c1f7cc84 RK |
283 | .popup-notification-icon[popupid="addon-install-complete"], |
284 | .popup-notification-icon[popupid="lwtheme-install-request"], | |
285 | .popup-notification-icon[popupid="lwtheme-install-notification"] { | |
a3b6328b RK |
286 | list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png"); |
287 | width: 32px; | |
288 | height: 32px; | |
289 | } | |
290 | ||
c2e1f790 RK |
291 | .popup-notification-icon[popupid="indexedDB-permissions-prompt"], |
292 | .popup-notification-icon[popupid="indexedDB-quota-prompt"] { | |
293 | list-style-image: url("chrome://global/skin/icons/question-64.png"); | |
294 | } | |
295 | ||
296 | .popup-notification-icon[popupid="password-change"], | |
fb2b5761 RK |
297 | .popup-notification-icon[popupid="password-save"] { |
298 | list-style-image: url("chrome://mozapps/skin/passwordmgr/key-64.png"); | |
299 | } | |
300 | ||
719b06bc RK |
301 | .popup-notification-icon[popupid="click-to-play-plugins"] { |
302 | list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png"); | |
303 | width: 32px; | |
304 | height: 32px; | |
305 | } | |
306 | ||
307 | .addon-progress-description { | |
308 | width: 350px; | |
309 | max-width: 350px; | |
310 | } | |
311 | ||
fb2b5761 RK |
312 | /* Notification icon box */ |
313 | #notification-popup-box { | |
314 | -moz-margin-end: 3px; | |
315 | } | |
316 | ||
317 | .notification-anchor-icon:-moz-focusring { | |
318 | outline: 1px dotted; | |
319 | } | |
320 | ||
c2e1f790 RK |
321 | #default-notification-icon { |
322 | list-style-image: url("chrome://global/skin/icons/information-16.png"); | |
323 | width: 16px; | |
324 | height: 16px; | |
325 | } | |
326 | ||
fb2b5761 RK |
327 | #geo-notification-icon { |
328 | list-style-image: url("chrome://communicator/skin/icons/geolocation-16.png"); | |
329 | width: 16px; | |
330 | height: 16px; | |
331 | } | |
332 | ||
a3b6328b RK |
333 | #addons-notification-icon { |
334 | list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric-16.png"); | |
335 | width: 16px; | |
336 | height: 16px; | |
337 | } | |
338 | ||
c2e1f790 RK |
339 | #indexedDB-notification-icon { |
340 | list-style-image: url("chrome://global/skin/icons/question-16.png"); | |
341 | width: 16px; | |
342 | height: 16px; | |
343 | } | |
344 | ||
fb2b5761 RK |
345 | #password-notification-icon { |
346 | list-style-image: url("chrome://mozapps/skin/passwordmgr/key-16.png"); | |
347 | width: 16px; | |
348 | height: 16px; | |
349 | } | |
350 | ||
719b06bc RK |
351 | #plugins-notification-icon { |
352 | list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric-16.png"); | |
353 | width: 16px; | |
354 | height: 16px; | |
355 | } | |
356 | ||
b1eaa419 | 357 | /* ::::: page proxy icon ::::: */ |
3d6dd546 | 358 | |
b1eaa419 | 359 | #page-proxy-deck, |
360 | #page-proxy-favicon, | |
361 | #page-proxy-button { | |
362 | width: 16px; | |
363 | height: 16px; | |
364 | } | |
351107c9 | 365 | |
366 | #page-proxy-deck { | |
d2f0d128 | 367 | cursor: -moz-grab; |
2c8f3260 | 368 | margin: 0; |
3d6dd546 | 369 | } |
351107c9 | 370 | |
b1eaa419 | 371 | #page-proxy-button { |
3d6dd546 | 372 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-item.gif"); |
3d6dd546 | 373 | } |
374 | ||
b1eaa419 | 375 | #page-proxy-favicon { |
376 | list-style-image: none; | |
3d6dd546 | 377 | } |
351107c9 | 378 | |
b1eaa419 | 379 | /* ::::: autocomplete ::::: */ |
380 | ||
01fc5c11 | 381 | .autocomplete-treebody::-moz-tree-cell-text(value) { |
e8fc8e8e | 382 | -moz-padding-start: 13px; |
b1eaa419 | 383 | } |
384 | ||
01fc5c11 | 385 | .autocomplete-treebody::-moz-tree-cell-text(comment) { |
b1eaa419 | 386 | color: #E7ADE7; |
387 | /* font-style: italic; */ | |
351107c9 | 388 | } |
389 | ||
b1eaa419 | 390 | .autocomplete-search-box { |
391 | border-top: 1px solid #FF9F00; | |
392 | background-color: #9C9CFF; | |
393 | color: #000000; | |
3d6dd546 | 394 | } |
351107c9 | 395 | |
b1eaa419 | 396 | .autocomplete-result-popup[nomatch] > .autocomplete-search-box { |
397 | border-top: 1px solid #9C9CFF; | |
351107c9 | 398 | } |
351107c9 | 399 | |
b1eaa419 | 400 | .autocomplete-search-engine { |
401 | padding: 2px; | |
3d6dd546 | 402 | } |
351107c9 | 403 | |
b1eaa419 | 404 | .autocomplete-search-engine[menuactive="true"] { |
405 | background-color: #008484; | |
406 | color: #FFCF00; | |
3d6dd546 | 407 | } |
351107c9 | 408 | |
b1eaa419 | 409 | .autocomplete-search-engine-img { |
8caa872d | 410 | -moz-margin-end: 4px; |
b1eaa419 | 411 | } |
412 | ||
f8bb6584 RK |
413 | .autocomplete-history-dropmarker:hover { |
414 | background-color: #FFCF00; | |
415 | } | |
416 | ||
417 | .autocomplete-history-dropmarker:hover:active, | |
418 | .autocomplete-history-dropmarker[open="true"] { | |
419 | background-color: #FF9F00; | |
420 | } | |
421 | ||
5ddff932 RK |
422 | .autocomplete-treebody::-moz-tree-cell-text(treecolAutoCompleteComment) { |
423 | color: #E7ADE7; | |
424 | } | |
425 | ||
b1eaa419 | 426 | /* ::::: go and searchbuttons ::::: */ |
427 | ||
3d6dd546 | 428 | #search-button, |
351107c9 | 429 | #go-button { |
c710949d | 430 | margin: 0; |
6d73bd65 | 431 | padding: 2px 0; |
c710949d | 432 | -moz-margin-start: 2px; |
b1eaa419 | 433 | background-color: #000000; |
351107c9 | 434 | } |
435 | ||
3d6dd546 | 436 | #search-button:hover, |
351107c9 | 437 | #go-button:hover { |
b1eaa419 | 438 | background-color: #FFCF00; |
351107c9 | 439 | } |
440 | ||
2c8f3260 RK |
441 | /* care that those buttons base on the same min height of 16px that the urlbar |
442 | autocomplete box gets through site icon and urlbar icons at the right */ | |
d1476608 | 443 | #search-button > .button-box, |
2c8f3260 RK |
444 | #go-button > .button-box { |
445 | min-height: 16px; | |
446 | } | |
447 | ||
b1eaa419 | 448 | #search-button { |
449 | /* list-style-image: url("chrome://communicator/skin/icons/search.gif"); */ | |
b1eaa419 | 450 | } |
351107c9 | 451 | |
c1f7cc84 RK |
452 | #search-button > .button-box > .button-icon { |
453 | display: -moz-box; | |
454 | } | |
455 | ||
7a7b11b3 RK |
456 | /* |
457 | toolbar[mode="text"] #search-button > .button-box > .button-icon, | |
458 | toolbar[mode="icons"] #search-button > .button-box > .button-text { | |
459 | display: none; | |
460 | } | |
461 | */ | |
462 | ||
5ddff932 RK |
463 | /* ::::: search bar ::::: */ |
464 | ||
465 | .autocomplete-treebody::-moz-tree-cell-text(suggesthint, treecolAutoCompleteComment), | |
466 | .autocomplete-treebody::-moz-tree-cell-text(suggestfirst, treecolAutoCompleteComment) { | |
467 | color: #E7ADE7; | |
468 | font-size: smaller; | |
469 | } | |
470 | ||
471 | .autocomplete-treebody::-moz-tree-cell(suggesthint) { | |
472 | border-top: 1px solid #E7ADE7; | |
473 | } | |
474 | ||
31e46317 RK |
475 | /* ::::: throbber ::::: */ |
476 | ||
477 | #throbber-box { | |
478 | -moz-margin-start: 2px; | |
479 | } | |
480 | ||
dc8e1207 | 481 | /* ::::: security button ::::: */ |
351107c9 | 482 | |
aeb317b8 RK |
483 | #security-button { |
484 | list-style-image: url("chrome://communicator/skin/icons/lock-insecure.gif"); | |
485 | } | |
486 | ||
81012713 | 487 | #security-button > .statusbarpanel-contentbox > .statusbarpanel-text { |
aeb317b8 | 488 | margin: 0px; |
b1eaa419 | 489 | } |
351107c9 | 490 | |
57d23eae | 491 | /* |high| and |low| styles could be different, to better reflect the secure level... */ |
cf89ee7b | 492 | #security-button[level="high"] > .statusbarpanel-contentbox { |
aeb317b8 RK |
493 | list-style-image: url("chrome://communicator/skin/icons/lock-secure-hover.png"); |
494 | background-color: #FFCF00; | |
dc8e1207 | 495 | } |
496 | ||
ff5bd775 | 497 | #security-button[level="broken"] > .statusbarpanel-contentbox { |
aeb317b8 RK |
498 | list-style-image: url("chrome://communicator/skin/icons/lock-broken.gif"); |
499 | background-color: #FF0000; | |
500 | } | |
501 | ||
ff5bd775 | 502 | #security-button[label][level="high"] > .statusbarpanel-contentbox { |
aeb317b8 RK |
503 | list-style-image: url("chrome://communicator/skin/icons/lock-secure.gif"); |
504 | background-color: #008484; | |
505 | color: #FFCF00; | |
b1eaa419 | 506 | } |
351107c9 | 507 | |
d9954aaf RK |
508 | #ev-button { |
509 | list-style-image: url("chrome://communicator/skin/icons/identity.png"); | |
510 | } | |
511 | ||
a3b3d4d6 | 512 | #popupIcon { |
513 | list-style-image:url("chrome://navigator/skin/icons/popup-blocked.gif"); | |
514 | } | |
515 | ||
fb2b5761 RK |
516 | #invalid-form-popup { |
517 | border: 1px solid #FFCF00; | |
518 | border : 1px outset #FFFFCC; | |
519 | padding: 2px 3px 0px 3px; | |
520 | max-width: 40em; | |
521 | background-color: #9C9CFF; | |
522 | color: #000000; | |
523 | font-weight: bold; | |
524 | } | |
525 | ||
dc8e1207 | 526 | /* ::::: personal toolbar ::::: */ |
351107c9 | 527 | |
dc8e1207 | 528 | #bookmarks-button { |
529 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-closed.gif"); | |
b1eaa419 | 530 | } |
351107c9 | 531 | |
dc8e1207 | 532 | #bookmarks-button[open="true"] { |
533 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-open.gif"); | |
b1eaa419 | 534 | } |
351107c9 | 535 | |
c710949d | 536 | toolbarbutton.chevron { |
e10e7add | 537 | list-style-image: url("chrome://navigator/skin/icons/chevron.gif") !important; |
ac1cdf20 | 538 | } |
539 | ||
c710949d RK |
540 | toolbarbutton.chevron:hover, |
541 | toolbarbutton.chevron[open="true"] { | |
e10e7add | 542 | list-style-image: url("chrome://navigator/skin/icons/chevron-hover.gif") !important; |
ac1cdf20 | 543 | } |
544 | ||
7a7b11b3 | 545 | toolbarbutton.chevron > .toolbarbutton-menu-dropmarker { |
ac1cdf20 | 546 | display: none; |
547 | } | |
e10e7add | 548 | |
7a7b11b3 RK |
549 | toolbarbutton.chevron > .toolbarbutton-text { |
550 | display: none; /* hide chevron label which has a width even if blank */ | |
551 | } | |
552 | ||
553 | toolbar[mode="text"] toolbarbutton.chevron > .toolbarbutton-icon { | |
554 | display: -moz-box; /* display chevron icon in text mode */ | |
555 | } | |
556 | ||
557 | /* Prevent [mode="icons"|"text"] from hiding the label and icon */ | |
558 | #bookmarks-ptf .bookmark-item > .toolbarbutton-text, | |
559 | #bookmarks-ptf .bookmark-item > .toolbarbutton-icon { | |
560 | display: -moz-box !important; | |
561 | } | |
562 | ||
e8fc8e8e | 563 | #PersonalToolbar[iconsize="small"] > toolbarpaletteitem > #home-button > .toolbarbutton-icon, |
0ef1663c RK |
564 | #PersonalToolbar[iconsize="small"] > #home-button > .toolbarbutton-icon { |
565 | /* width: 16px; | |
566 | height: 16px; */ | |
567 | } | |
568 | ||
569 | #PersonalToolbar > #home-button { | |
570 | cursor: pointer; | |
571 | } | |
572 | ||
573 | #PersonalToolbar > #home-button[disabled="true"] { | |
574 | cursor: default !important; | |
575 | } | |
576 | ||
e8fc8e8e RK |
577 | /* |
578 | In customize mode we hide the normal bookmark items and show a placeholder | |
579 | for the drag/drop UI. | |
580 | */ | |
581 | .bookmarks-toolbar-customize { | |
d3d79c39 | 582 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmarksToolbar.png"); |
e8fc8e8e RK |
583 | display: none; |
584 | max-width: 15em !important; | |
585 | } | |
586 | ||
d3d79c39 RK |
587 | #wrapper-personal-bookmarks[place="palette"] > .toolbarpaletteitem-box { |
588 | width: 16px; | |
589 | height: 16px; | |
590 | background: url("chrome://communicator/skin/bookmarks/bookmarksToolbar.png") no-repeat; | |
e8fc8e8e RK |
591 | } |
592 | ||
1b3c8528 RK |
593 | /* ::::: star button ::::: */ |
594 | ||
595 | #star-button { | |
596 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark.png"); | |
597 | -moz-image-region: rect(16px 16px 32px 0px); | |
598 | } | |
599 | ||
600 | #star-button:hover { | |
601 | -moz-image-region: rect(16px 32px 32px 16px); | |
602 | } | |
603 | ||
604 | #star-button:hover:active { | |
605 | -moz-image-region: rect(16px 48px 32px 32px); | |
606 | } | |
607 | ||
608 | #star-button[starred="true"] { | |
609 | -moz-image-region: rect(0px 16px 16px 0px); | |
610 | } | |
611 | ||
612 | #star-button[starred="true"]:hover { | |
613 | -moz-image-region: rect(0px 32px 16px 16px); | |
614 | } | |
615 | ||
616 | #star-button[starred="true"]:hover:active { | |
617 | -moz-image-region: rect(0px 48px 16px 32px); | |
618 | } | |
619 | ||
a3b6328b RK |
620 | #editBookmarkPanelStarIcon { |
621 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark.png"); | |
622 | -moz-image-region: rect(0px 16px 16px 0px); | |
623 | } | |
624 | ||
e10e7add RK |
625 | /* ::::: feeds ::::: */ |
626 | ||
cf3319d7 RK |
627 | .feedsMenu { |
628 | list-style-image: url("chrome://navigator/skin/linkButtons/feeds.png"); | |
e10e7add RK |
629 | -moz-image-region: rect(0px 16px 16px 0px); |
630 | } | |
631 | ||
cf3319d7 | 632 | .feedsMenu[disabled="true"] { |
e10e7add RK |
633 | -moz-image-region: rect(32px 16px 48px 0px); |
634 | } | |
635 | ||
cf3319d7 | 636 | .feedsButton { |
e10e7add RK |
637 | list-style-image: url("chrome://navigator/skin/linkButtons/feeds.png"); |
638 | -moz-image-region: rect(0px 32px 16px 16px); | |
639 | } | |
640 | ||
cf3319d7 | 641 | .feedsButton:hover { |
e10e7add RK |
642 | -moz-image-region: rect(16px 32px 32px 16px); |
643 | } | |
644 | ||
cf3319d7 | 645 | .feedsButton:hover:active { |
e10e7add RK |
646 | -moz-image-region: rect(48px 32px 64px 16px); |
647 | } |