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/. */ | |
acb0e9b8 | 4 | |
5 | @import url("chrome://global/skin/"); | |
fcaeefc2 | 6 | @import url("downloads/indicator.css"); |
acb0e9b8 | 7 | |
8 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
319c6529 | 9 | @namespace html url("http://www.w3.org/1999/xhtml"); |
cae267ab | 10 | @namespace svg url("http://www.w3.org/2000/svg"); |
319c6529 RK |
11 | |
12 | toolbar { | |
13 | -moz-binding: url("chrome://global/skin/globalBindings.xml#toolbar"); | |
14 | } | |
acb0e9b8 | 15 | |
7d3f7f14 | 16 | toolbar[customizable="true"] { |
43cc2806 RK |
17 | -moz-binding: url("chrome://global/skin/globalBindings.xml#toolbar-browsercustom"); |
18 | } | |
19 | ||
ee49f520 RK |
20 | @media (-moz-mac-graphite-theme), (-moz-mac-lion-theme), (-moz-mac-yosemite-theme) { |
21 | /* This is a hackish workaround to cover most of Mac OS until bug 1060941 gets fixed. */ | |
96b206fe RK |
22 | toolbar[customizable="true"]:not([nowindowdrag="true"]) { |
23 | -moz-binding: url("chrome://global/skin/globalBindings.xml#toolbar-drag-browsercustom"); | |
24 | } | |
25 | } | |
26 | ||
41279e76 RK |
27 | toolbar[type="menubar"][autohide="true"] { |
28 | -moz-binding: url("chrome://global/skin/globalBindings.xml#toolbar-menubar-autohide"); | |
29 | } | |
30 | ||
7d3f7f14 | 31 | #toolbar-menubar[autohide="true"] { |
43cc2806 RK |
32 | -moz-binding: url("chrome://global/skin/globalBindings.xml#toolbar-menubar-autohide-browsercustom"); |
33 | } | |
34 | ||
acb0e9b8 | 35 | menubar { |
319c6529 | 36 | -moz-binding: url("chrome://global/skin/globalBindings.xml#menubar"); |
acb0e9b8 | 37 | } |
38 | ||
319c6529 RK |
39 | #menubar-items { |
40 | -moz-box-orient: vertical; /* for flex hack */ | |
acb0e9b8 | 41 | } |
42 | ||
319c6529 RK |
43 | #main-menubar { |
44 | -moz-box-flex: 1; /* make menu items expand to fill toolbar height */ | |
45 | } | |
46 | ||
63ada306 RK |
47 | /* ::::: primary toolbar ::::: */ |
48 | ||
49 | .toolbar-primary > .toolbar-box > .toolbar-holder { | |
270cbf0c | 50 | background-color: #A09090; |
63ada306 RK |
51 | } |
52 | ||
53 | .toolbar-primary > .toolbar-box > .toolbar-startcap, | |
54 | .toolbar-primary > .toolbar-box > .toolbar-endcap { | |
55 | background-color: #9C9CFF; | |
56 | } | |
57 | ||
e20c83c3 RK |
58 | /* Hides the titlebar-placeholder underneath the window caption buttons when we |
59 | are not autohiding the menubar. */ | |
60 | #toolbar-menubar:not([autohide="true"]) + #TabsToolbar > .titlebar-placeholder[type="caption-buttons"] { | |
61 | display: none; | |
62 | } | |
63 | ||
43cc2806 RK |
64 | /* We want a 4px gap between the TabsToolbar and the toolbar-menubar when the |
65 | toolbar-menu is displayed, and a 16px gap when it is not. 1px is taken care | |
66 | of by the (light) outer shadow of the tab, the remaining 3/15 are these margins. */ | |
c0f6797e RK |
67 | #toolbar-menubar:not([moz-collapsed=true]):not([autohide=true]) ~ #TabsToolbar, |
68 | #toolbar-menubar:not([moz-collapsed=true])[autohide=true]:not([inactive]) ~ #TabsToolbar { | |
43cc2806 RK |
69 | /* margin-top: 3px;*/ |
70 | } | |
71 | ||
43371c9b RK |
72 | #main-window[tabsintitlebar][sizemode="normal"]:not([inFullscreen])[chromehidden~="menubar"] #toolbar-menubar ~ #TabsToolbar, |
73 | #main-window[tabsintitlebar][sizemode="normal"]:not([inFullscreen]) #toolbar-menubar[autohide="true"][inactive] ~ #TabsToolbar { | |
43cc2806 RK |
74 | /* margin-top: 15px;*/ |
75 | } | |
76 | ||
ee49f520 RK |
77 | @media (-moz-mac-graphite-theme: 0) and (-moz-mac-lion-theme: 0) { |
78 | /* This is a hackish workaround to exclude most of Mac OS until bug 1060941 gets fixed. */ | |
8d154261 RK |
79 | #toolbar-menubar:not([autohide="true"]) { |
80 | -moz-binding: url("chrome://global/skin/globalBindings.xml#toolbar-drag-browsercustom"); | |
81 | } | |
58d9f24a RK |
82 | } |
83 | ||
ee49f520 RK |
84 | @media (-moz-mac-graphite-theme), (-moz-mac-lion-theme) { |
85 | /* This is a hackish workaround to cover most of Mac OS until bug 1060941 gets fixed. */ | |
4711fba5 | 86 | #main-window[tabsintitlebar]:not([inFullscreen="true"]) #TabsToolbar { |
54d92f05 RK |
87 | padding-left: 60px; |
88 | } | |
43cc2806 RK |
89 | } |
90 | ||
018d70fb RK |
91 | #main-window[tabsintitlebar] #toolbar-menubar .toolbar-endcap { |
92 | /* the titlebar buttons are shown right over the endcap but we have no power over the buttonbox position just for this case, so hide the endcap */ | |
93 | display: none; | |
43cc2806 | 94 | } |
63ada306 | 95 | |
e20c83c3 RK |
96 | #main-window[customize-entered][tabsintitlebar]:not([inFullscreen]) #toolbar-menubar[customizing-dragovertarget].customization-target::before, |
97 | #main-window[customize-entered][tabsintitlebar]:not([inFullscreen]) #TabsToolbar[customizing-dragovertarget].customization-target::before, | |
98 | #main-window[customize-entered][tabsintitlebar]:not([inFullscreen]) #toolbar-menubar.customization-target:hover::before, | |
99 | #main-window[customize-entered][tabsintitlebar]:not([inFullscreen]) #TabsToolbar.customization-target:hover::before { | |
100 | outline-color: #A09090; | |
101 | } | |
102 | ||
319c6529 RK |
103 | #navigator-toolbox { |
104 | } | |
105 | ||
9abeb12c RK |
106 | #navigator-toolbox::after { |
107 | content: ""; | |
108 | display: -moz-box; | |
109 | -moz-box-ordinal-group: 101; /* tabs toolbar is 100 */ | |
110 | height: 1px; | |
111 | } | |
9abeb12c | 112 | |
319c6529 RK |
113 | #navigator-toolbox > toolbar:not(:-moz-lwtheme) { |
114 | } | |
115 | ||
3d64e0ce RK |
116 | #navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar):not(:-moz-lwtheme) { |
117 | } | |
118 | ||
9168a62c RK |
119 | #navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar):not(#nav-bar):not(#addon-bar) { |
120 | overflow: -moz-hidden-unscrollable; | |
121 | max-height: 4em; | |
122 | transition: min-height 170ms ease-out, max-height 170ms ease-out; | |
123 | } | |
124 | ||
125 | #navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar):not(#nav-bar):not(#addon-bar)[collapsed=true] { | |
126 | min-height: 0.1px; | |
127 | max-height: 0; | |
128 | transition: min-height 170ms ease-out, max-height 170ms ease-out, visibility 170ms linear; | |
129 | } | |
130 | ||
ee49f520 RK |
131 | @media (-moz-mac-graphite-theme: 0) and (-moz-mac-lion-theme: 0) { |
132 | /* This is a hackish workaround to exclude most of Mac OS until bug 1060941 gets fixed. */ | |
133 | /* Indent also due to non-applicable aero rule in original Windows theme. */ | |
c0f6797e RK |
134 | #main-window[tabsintitlebar]:not([inFullscreen]) #toolbar-menubar:not(:-moz-lwtheme), |
135 | #main-window[tabsintitlebar]:not([inFullscreen]) #TabsToolbar:not(:-moz-lwtheme) { | |
136 | /* like menubar */ | |
137 | background-color: #6000CF; | |
138 | color: #FF9F00; | |
319c6529 RK |
139 | } |
140 | ||
c0f6797e RK |
141 | #main-window[tabsintitlebar]:not([inFullscreen]) #toolbar-menubar:not(:-moz-lwtheme):-moz-window-inactive, |
142 | #main-window[tabsintitlebar]:not([inFullscreen]) #TabsToolbar:not(:-moz-lwtheme):-moz-window-inactive { | |
143 | background-color: #8050B0; | |
144 | color: #FF9F00; | |
319c6529 RK |
145 | } |
146 | ||
dccbbf95 RK |
147 | #main-window[tabsintitlebar] #main-menubar > menu:not(:-moz-lwtheme) { |
148 | /*color: inherit;*/ | |
149 | } | |
150 | ||
c0f6797e RK |
151 | #main-window[tabsintitlebar] #titlebar:-moz-lwtheme { |
152 | visibility: hidden; | |
153 | } | |
319c6529 | 154 | |
c0f6797e RK |
155 | #main-window[tabsintitlebar] #titlebar-content:-moz-lwtheme { |
156 | -moz-binding: url("chrome://global/content/bindings/general.xml#windowdragbox"); | |
157 | visibility: visible; | |
158 | } | |
8d154261 RK |
159 | } |
160 | ||
ee49f520 RK |
161 | @media (-moz-mac-graphite-theme), (-moz-mac-lion-theme) { |
162 | /* This is a hackish workaround to cover most of Mac OS until bug 1060941 gets fixed. */ | |
8d154261 RK |
163 | #titlebar-buttonbox > .titlebar-button { |
164 | display: none; | |
165 | } | |
8d154261 | 166 | } |
319c6529 | 167 | |
c0f6797e RK |
168 | #nav-bar { |
169 | /* Position the toolbar above the bottom of background tabs */ | |
170 | position: relative; | |
171 | z-index: 1; | |
82b4252f RK |
172 | } |
173 | ||
c0f6797e RK |
174 | #personal-bookmarks { |
175 | /* min-height: 24px; */ | |
319c6529 RK |
176 | } |
177 | ||
c0f6797e RK |
178 | #print-preview-toolbar:not(:-moz-lwtheme) { |
179 | /* -moz-appearance: toolbox; */ | |
82b4252f RK |
180 | } |
181 | ||
c0f6797e | 182 | #browser-bottombox:not(:-moz-lwtheme) { |
319c6529 RK |
183 | } |
184 | ||
185 | /* ::::: titlebar ::::: */ | |
186 | ||
5305ef8d RK |
187 | #titlebar { |
188 | /* like menubar */ | |
189 | background-color: #6000CF; | |
190 | color: #FF9F00; | |
191 | } | |
192 | #titlebar:-moz-window-inactive { | |
193 | background-color: #8050B0; | |
194 | color: #FF9F00; | |
195 | } | |
196 | ||
319c6529 | 197 | #main-window[sizemode="normal"] > #titlebar { |
5305ef8d RK |
198 | margin-top: -3px; |
199 | margin-bottom: 3px; | |
319c6529 RK |
200 | } |
201 | ||
202 | #main-window[sizemode="maximized"] > #titlebar { | |
5305ef8d | 203 | margin-top: 4px; |
319c6529 RK |
204 | } |
205 | ||
ee49f520 RK |
206 | @media (-moz-mac-graphite-theme), (-moz-mac-lion-theme) { |
207 | /* This is a hackish workaround to cover most of Mac OS until bug 1060941 gets fixed. */ | |
58d9f24a RK |
208 | #main-window[sizemode="normal"] > #titlebar, |
209 | #main-window[sizemode="maximized"] > #titlebar { | |
4711fba5 RK |
210 | margin-top: 19px; |
211 | /* There is a margin-bottom set to -23 by code. */ | |
54d92f05 RK |
212 | } |
213 | } | |
214 | ||
43cc2806 RK |
215 | /* The button box must appear on top of the navigator-toolbox in order for |
216 | * click and hover mouse events to work properly for the button in the restored | |
217 | * window state. Otherwise, elements in the navigator-toolbox, like the menubar, | |
218 | * can swallow those events. It will also place the buttons above the fog on | |
219 | * themes with Aero Glass. | |
220 | */ | |
83ac1f44 RK |
221 | #titlebar-buttonbox, |
222 | #main-window[sizemode="maximized"] #titlebar-buttonbox { | |
b7f3670c RK |
223 | -moz-appearance: none; |
224 | margin-top: 6px; | |
225 | margin-top: 4px; | |
5305ef8d | 226 | -moz-margin-end: 3px; |
43cc2806 | 227 | z-index: 1; |
319c6529 RK |
228 | } |
229 | ||
319c6529 RK |
230 | .titlebar-placeholder[type="appmenu-button"] { |
231 | margin-left: 4px; | |
232 | } | |
233 | ||
234 | .titlebar-placeholder[type="caption-buttons"] { | |
235 | margin-left: 10px; | |
236 | } | |
237 | ||
238 | /* titlebar command buttons */ | |
239 | ||
240 | #titlebar-min { | |
5305ef8d RK |
241 | list-style-image: url("chrome://navigator/skin/icons/win-minimize.gif"); |
242 | } | |
243 | ||
244 | #titlebar-min:hover { | |
245 | list-style-image: url("chrome://navigator/skin/icons/win-minimize-hover.gif"); | |
319c6529 RK |
246 | } |
247 | ||
248 | #titlebar-max { | |
5305ef8d RK |
249 | list-style-image: url("chrome://browser/skin/win-maximize.gif"); |
250 | } | |
251 | ||
252 | #titlebar-max:hover { | |
253 | list-style-image: url("chrome://browser/skin/win-maximize-hover.gif"); | |
319c6529 RK |
254 | } |
255 | ||
256 | #main-window[sizemode="maximized"] #titlebar-max { | |
5305ef8d RK |
257 | list-style-image: url("chrome://navigator/skin/icons/win-restore.gif"); |
258 | } | |
259 | ||
260 | #main-window[sizemode="maximized"] #titlebar-max:hover { | |
261 | list-style-image: url("chrome://navigator/skin/icons/win-restore-hover.gif"); | |
319c6529 RK |
262 | } |
263 | ||
264 | #titlebar-close { | |
5305ef8d RK |
265 | list-style-image: url("chrome://navigator/skin/icons/win-close.gif"); |
266 | } | |
267 | ||
268 | #titlebar-close:hover { | |
269 | list-style-image: url("chrome://navigator/skin/icons/win-close-hover.gif"); | |
acb0e9b8 | 270 | } |
271 | ||
ee49f520 RK |
272 | @media (-moz-mac-graphite-theme), (-moz-mac-lion-theme) { |
273 | /* This is a hackish workaround to cover most of Mac OS until bug 1060941 gets fixed. */ | |
54d92f05 RK |
274 | #titlebar-fullscreen-button { |
275 | -moz-appearance: none; | |
276 | list-style-image: url("chrome://browser/skin/icons/mac-fullscreen-icon.png"); | |
277 | -moz-image-region: rect(0px, 16px, 16px, 0px); | |
278 | } | |
279 | ||
280 | #titlebar-fullscreen-button:hover { | |
281 | -moz-image-region: rect(0px, 32px, 16px, 16px); | |
282 | } | |
283 | ||
284 | @media (min-resolution: 2dppx) { | |
285 | #titlebar-fullscreen-button { | |
286 | list-style-image: url("chrome://browser/skin/icons/mac-fullscreen-icon@2x.png"); | |
287 | -moz-image-region: rect(0px, 32px, 32px, 0px); | |
288 | } | |
289 | ||
290 | #titlebar-fullscreen-button:hover { | |
291 | -moz-image-region: rect(0px, 64px, 32px, 32px); | |
292 | } | |
293 | } | |
294 | } | |
295 | ||
296 | ||
acb0e9b8 | 297 | /* ::::: bookmark buttons ::::: */ |
298 | ||
c0f6797e RK |
299 | toolbarbutton.bookmark-item:not(.subviewbutton), |
300 | #personal-bookmarks[cui-areatype="toolbar"]:not([overflowedItem=true]) > #bookmarks-toolbar-placeholder { | |
301 | /* margin: 0; | |
302 | padding: 2px 3px;*/ | |
303 | } | |
304 | ||
305 | toolbarbutton.bookmark-item:not([disabled="true"]):not(.subviewbutton):hover:active, | |
306 | toolbarbutton.bookmark-item[open="true"] { | |
307 | /* padding-top: 3px; | |
308 | padding-bottom: 1px; | |
309 | -moz-padding-start: 4px; | |
310 | -moz-padding-end: 2px;*/ | |
311 | } | |
312 | ||
26125509 RK |
313 | .bookmark-item > .toolbarbutton-icon, |
314 | #personal-bookmarks[cui-areatype="toolbar"] > #bookmarks-toolbar-placeholder > .toolbarbutton-icon { | |
acb0e9b8 | 315 | width: 16px; |
316 | height: 16px; | |
317 | } | |
318 | ||
26125509 RK |
319 | /* Force the display of the label for bookmarks */ |
320 | .bookmark-item > .toolbarbutton-text, | |
321 | #personal-bookmarks[cui-areatype="toolbar"] > #bookmarks-toolbar-placeholder > .toolbarbutton-text { | |
acb0e9b8 | 322 | display: -moz-box !important; |
323 | } | |
324 | ||
319c6529 RK |
325 | .bookmark-item > .toolbarbutton-menu-dropmarker { |
326 | display: none; | |
327 | } | |
328 | ||
26125509 | 329 | #bookmarks-toolbar-placeholder { |
8da9da4e | 330 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmarksToolbar.png") !important; |
319c6529 RK |
331 | } |
332 | ||
e20c83c3 RK |
333 | toolbarpaletteitem[place="palette"] > #personal-bookmarks > #bookmarks-toolbar-placeholder, |
334 | #personal-bookmarks[cui-areatype="menu-panel"] > #bookmarks-toolbar-placeholder { | |
335 | list-style-image: url("chrome://browser/skin/places/bookmarksToolbar-menuPanel.png") !important; | |
336 | } | |
337 | ||
338 | /* ----- BOOKMARK STAR ANIMATION ----- */ | |
339 | ||
340 | @keyframes animation-bookmarkAdded { | |
341 | from { transform: rotate(0deg) translateX(-16px) rotate(0deg) scale(1); opacity: 0; } | |
342 | 60% { transform: rotate(180deg) translateX(-16px) rotate(-180deg) scale(2.2); opacity: 1; } | |
343 | 80% { opacity: 1; } | |
344 | to { transform: rotate(180deg) translateX(-16px) rotate(-180deg) scale(1); opacity: 0; } | |
345 | } | |
346 | ||
347 | @keyframes animation-bookmarkPulse { | |
348 | from { transform: scale(1); } | |
349 | 50% { transform: scale(1.3); } | |
350 | to { transform: scale(1); } | |
351 | } | |
352 | ||
353 | #bookmarked-notification-container { | |
354 | min-height: 1px; | |
355 | min-width: 1px; | |
356 | height: 1px; | |
357 | margin-bottom: -1px; | |
358 | z-index: 5; | |
359 | position: relative; | |
360 | } | |
361 | ||
362 | #bookmarked-notification { | |
363 | background-size: 16px; | |
364 | background-position: center; | |
365 | background-repeat: no-repeat; | |
366 | width: 16px; | |
367 | height: 16px; | |
368 | opacity: 0; | |
369 | } | |
370 | ||
c0f6797e RK |
371 | #bookmarked-notification-dropmarker-anchor { |
372 | z-index: -1; | |
373 | position: relative; | |
374 | } | |
375 | ||
376 | #bookmarked-notification-dropmarker-icon { | |
377 | width: 18px; | |
378 | height: 18px; | |
379 | visibility: hidden; | |
380 | } | |
381 | ||
e20c83c3 RK |
382 | #bookmarked-notification-anchor[notification="finish"] > #bookmarked-notification { |
383 | background-image: url("chrome://browser/skin/places/bookmarks-notification-finish.png"); | |
384 | animation: animation-bookmarkAdded 800ms; | |
385 | animation-timing-function: ease, ease, ease; | |
386 | } | |
387 | ||
388 | #bookmarks-menu-button[notification="finish"] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon { | |
c0f6797e RK |
389 | list-style-image: none !important; |
390 | } | |
391 | ||
392 | #bookmarked-notification-dropmarker-anchor[notification="finish"] > #bookmarked-notification-dropmarker-icon { | |
393 | visibility: visible; | |
e20c83c3 RK |
394 | animation: animation-bookmarkPulse 300ms; |
395 | animation-delay: 600ms; | |
396 | animation-timing-function: ease-out; | |
397 | } | |
398 | ||
319c6529 RK |
399 | /* ::::: bookmark menus ::::: */ |
400 | ||
401 | menu.bookmark-item, | |
402 | menuitem.bookmark-item { | |
403 | min-width: 0; | |
ab799a7a | 404 | max-width: 32em; |
319c6529 RK |
405 | } |
406 | ||
e20c83c3 | 407 | .bookmark-item:not(.subviewbutton) > .menu-iconic-left { |
319c6529 RK |
408 | margin-top: 0; |
409 | margin-bottom: 0; | |
410 | } | |
411 | ||
412 | .bookmark-item > .menu-iconic-left > .menu-iconic-icon { | |
413 | -moz-padding-start: 0px; | |
414 | } | |
415 | ||
416 | /* ::::: bookmark items ::::: */ | |
417 | ||
418 | .bookmark-item { | |
dce90fef | 419 | list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png"); |
8da9da4e | 420 | -moz-image-region: auto; |
319c6529 RK |
421 | } |
422 | ||
423 | .bookmark-item[container] { | |
424 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-closed.gif"); | |
8da9da4e | 425 | -moz-image-region: auto; |
319c6529 RK |
426 | } |
427 | ||
428 | .bookmark-item[container][open] { | |
429 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-open.gif"); | |
8da9da4e | 430 | -moz-image-region: auto; |
319c6529 RK |
431 | } |
432 | ||
8da9da4e RK |
433 | .bookmark-item[container][livemark] { |
434 | list-style-image: url("chrome://communicator/skin/bookmarks/livemark-folder.png"); | |
319c6529 RK |
435 | -moz-image-region: auto; |
436 | } | |
437 | ||
438 | .bookmark-item[container][livemark] .bookmark-item { | |
8da9da4e | 439 | list-style-image: url("chrome://communicator/skin/bookmarks/livemark-item.png"); |
719b06bc | 440 | -moz-image-region: rect(0px, 16px, 16px, 0px); |
319c6529 RK |
441 | } |
442 | ||
eec397be | 443 | .bookmark-item[container][livemark] .bookmark-item[visited] { |
719b06bc | 444 | -moz-image-region: rect(0px, 32px, 16px, 16px); |
eec397be RK |
445 | } |
446 | ||
319c6529 | 447 | .bookmark-item[container][query] { |
8da9da4e | 448 | list-style-image: url("chrome://communicator/skin/bookmarks/query.png"); |
319c6529 RK |
449 | -moz-image-region: auto; |
450 | } | |
451 | ||
452 | .bookmark-item[query][tagContainer] { | |
453 | list-style-image: url("chrome://mozapps/skin/places/tagContainerIcon.png"); | |
454 | -moz-image-region: auto; | |
455 | } | |
456 | ||
457 | .bookmark-item[query][dayContainer] { | |
8da9da4e | 458 | list-style-image: url("chrome://communicator/skin/history/calendar.png"); |
319c6529 RK |
459 | -moz-image-region: auto; |
460 | } | |
461 | ||
462 | .bookmark-item[query][hostContainer] { | |
463 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-closed.gif"); | |
8da9da4e | 464 | -moz-image-region: auto; |
319c6529 RK |
465 | } |
466 | ||
467 | .bookmark-item[query][hostContainer][open] { | |
468 | list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-open.gif"); | |
8da9da4e | 469 | -moz-image-region: auto; |
319c6529 RK |
470 | } |
471 | ||
b1234db8 RK |
472 | .bookmark-item[cutting] > .toolbarbutton-icon, |
473 | .bookmark-item[cutting] > .menu-iconic-left > .menu-iconic-icon { | |
474 | opacity: 0.5; | |
475 | } | |
476 | ||
477 | .bookmark-item[cutting] > .toolbarbutton-text, | |
478 | .bookmark-item[cutting] > .menu-iconic-left > .menu-iconic-text { | |
479 | opacity: 0.7; | |
480 | } | |
481 | ||
319c6529 RK |
482 | /* ::::: primary toolbar buttons ::::: */ |
483 | ||
43cc2806 RK |
484 | /* === BEGIN toolbarbuttons.inc.css === */ |
485 | ||
486 | /* Whole section of this included file: */ | |
51994fad RK |
487 | :-moz-any(#back-button, #forward-button, #home-button, #print-button, #downloads-button, #bookmarks-menu-button, |
488 | #new-tab-button, #new-window-button, #fullscreen-button, #sync-button, #feed-button, #tabview-button, | |
d4d77dc0 | 489 | #social-share-button, #open-file-button, #find-button, #developer-button, |
51994fad RK |
490 | #preferences-button, #privatebrowsing-button, #save-page-button, #switch-to-metro-button, #add-ons-button, |
491 | #history-panelmenu, #nav-bar-overflow-button, #PanelUI-menu-button, #characterencoding-button, | |
492 | #email-link-button, #sidebar-button, #zoom-out-button, #zoom-reset-button, #zoom-in-button, #cut-button, | |
22180555 | 493 | #copy-button, #paste-button, #e10s-button, #panic-button, #web-apps-button), |
51994fad | 494 | |
7d3f7f14 | 495 | #bookmarks-menu-button > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon { |
43cc2806 RK |
496 | list-style-image: url("chrome://browser/skin/ToolbarFx.png"); |
497 | } | |
498 | ||
7d3f7f14 | 499 | #back-button { |
43cc2806 RK |
500 | -moz-image-region: rect(0, 36px, 18px, 18px); |
501 | } | |
502 | ||
7d3f7f14 | 503 | #back-button:hover:not([disabled="true"]) { |
43cc2806 RK |
504 | -moz-image-region: rect(18px, 36px, 36px, 18px); |
505 | } | |
506 | ||
7d3f7f14 | 507 | #back-button[disabled="true"] { |
43cc2806 RK |
508 | -moz-image-region: rect(36px, 36px, 54px, 18px); |
509 | } | |
510 | ||
7d3f7f14 | 511 | #forward-button { |
43cc2806 RK |
512 | -moz-image-region: rect(0, 72px, 18px, 54px); |
513 | } | |
514 | ||
7d3f7f14 | 515 | #forward-button:hover:not([disabled="true"]) { |
43cc2806 RK |
516 | -moz-image-region: rect(18px, 72px, 36px, 54px); |
517 | } | |
518 | ||
7d3f7f14 | 519 | #forward-button[disabled="true"] { |
43cc2806 RK |
520 | -moz-image-region: rect(36px, 72px, 54px, 54px); |
521 | } | |
522 | ||
7d3f7f14 RK |
523 | #back-button:-moz-locale-dir(rtl) > .toolbarbutton-icon, |
524 | #forward-button:-moz-locale-dir(rtl) { | |
43cc2806 RK |
525 | transform: scaleX(-1); |
526 | } | |
527 | ||
7d3f7f14 | 528 | #home-button[cui-areatype="toolbar"] { |
43cc2806 RK |
529 | -moz-image-region: rect(0, 126px, 18px, 108px); |
530 | } | |
531 | ||
7d3f7f14 | 532 | #home-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
533 | -moz-image-region: rect(18px, 126px, 36px, 108px); |
534 | } | |
535 | ||
7d3f7f14 | 536 | #bookmarks-menu-button[cui-areatype="toolbar"] { |
43cc2806 RK |
537 | -moz-image-region: rect(0, 144px, 18px, 126px); |
538 | } | |
539 | ||
7d3f7f14 RK |
540 | #bookmarks-menu-button[cui-areatype="toolbar"]:hover, |
541 | #bookmarks-menu-button[cui-areatype="toolbar"][open="true"] { | |
43cc2806 RK |
542 | -moz-image-region: rect(18px, 144px, 36px, 126px); |
543 | } | |
544 | ||
43ee1307 | 545 | /* When "new tab" page shows up, the menubutton-button (star button) is disabled */ |
7d3f7f14 | 546 | #bookmarks-menu-button[cui-areatype="toolbar"] > .toolbarbutton-menubutton-button[disabled="true"] { |
43ee1307 RK |
547 | -moz-image-region: rect(36px, 144px, 54px, 126px) !important; |
548 | background-color: transparent !important; | |
549 | } | |
550 | ||
7d3f7f14 | 551 | #bookmarks-menu-button[cui-areatype="toolbar"][starred] { |
43cc2806 RK |
552 | -moz-image-region: rect(0, 162px, 18px, 144px); |
553 | } | |
554 | ||
7d3f7f14 | 555 | #bookmarks-menu-button[cui-areatype="toolbar"][starred]:hover, |
83e3b5cf RK |
556 | #bookmarks-menu-button[cui-areatype="toolbar"][starred][open="true"], |
557 | #bookmarks-menu-button[cui-areatype="toolbar"][starred] > .toolbarbutton-menubutton-button[open="true"] { | |
558 | /* When starred and clicked (for edit/delete dialog), | |
559 | * then only the menubutton-button itself is open, but not the whole menubutton. */ | |
43cc2806 RK |
560 | -moz-image-region: rect(18px, 162px, 36px, 144px); |
561 | } | |
562 | ||
7d3f7f14 | 563 | #bookmarks-menu-button[cui-areatype="toolbar"] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon { |
43cc2806 RK |
564 | -moz-image-region: rect(0, 630px, 18px, 612px); |
565 | } | |
566 | ||
7d3f7f14 | 567 | #bookmarks-menu-button[cui-areatype="toolbar"] > .toolbarbutton-menubutton-dropmarker { |
43cc2806 RK |
568 | padding: 1px; |
569 | -moz-box-align: center; | |
570 | } | |
571 | ||
7d3f7f14 RK |
572 | #bookmarks-menu-button[cui-areatype="toolbar"]:hover > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon, |
573 | #bookmarks-menu-button[cui-areatype="toolbar"][open="true"] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon { | |
43cc2806 RK |
574 | -moz-image-region: rect(18px, 630px, 36px, 612px); |
575 | } | |
576 | ||
7d3f7f14 RK |
577 | #bookmarks-menu-button[cui-areatype="toolbar"]:hover:active > .toolbarbutton-menubutton-dropmarker, |
578 | #bookmarks-menu-button[cui-areatype="toolbar"][open="true"] > .toolbarbutton-menubutton-dropmarker { | |
43cc2806 RK |
579 | padding-top: 2px; |
580 | padding-bottom: 0px; | |
581 | -moz-padding-start: 2px; | |
582 | -moz-padding-end: 0px; | |
583 | } | |
584 | ||
7d3f7f14 | 585 | #history-panelmenu[cui-areatype="toolbar"] { |
43cc2806 RK |
586 | -moz-image-region: rect(0, 180px, 18px, 162px); |
587 | } | |
588 | ||
7d3f7f14 RK |
589 | #history-panelmenu[cui-areatype="toolbar"]:hover, |
590 | #history-panelmenu[cui-areatype="toolbar"][open="true"] { | |
43cc2806 RK |
591 | -moz-image-region: rect(18px, 180px, 36px, 162px); |
592 | } | |
593 | ||
7d3f7f14 | 594 | #downloads-button[cui-areatype="toolbar"] { |
43cc2806 RK |
595 | -moz-image-region: rect(0, 198px, 18px, 180px); |
596 | } | |
597 | ||
7d3f7f14 RK |
598 | #downloads-button[cui-areatype="toolbar"]:hover, |
599 | #downloads-button[cui-areatype="toolbar"][open="true"] { | |
43cc2806 RK |
600 | -moz-image-region: rect(18px, 198px, 36px, 180px); |
601 | } | |
602 | ||
7d3f7f14 | 603 | #add-ons-button[cui-areatype="toolbar"] { |
43cc2806 RK |
604 | -moz-image-region: rect(0, 216px, 18px, 198px); |
605 | } | |
606 | ||
7d3f7f14 | 607 | #add-ons-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
608 | -moz-image-region: rect(18px, 216px, 36px, 198px); |
609 | } | |
610 | ||
7d3f7f14 | 611 | #open-file-button[cui-areatype="toolbar"] { |
43cc2806 RK |
612 | -moz-image-region: rect(0, 234px, 18px, 216px); |
613 | } | |
614 | ||
7d3f7f14 | 615 | #open-file-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
616 | -moz-image-region: rect(18px, 234px, 36px, 216px); |
617 | } | |
618 | ||
7d3f7f14 | 619 | #save-page-button[cui-areatype="toolbar"] { |
43cc2806 RK |
620 | -moz-image-region: rect(0, 252px, 18px, 234px); |
621 | } | |
622 | ||
7d3f7f14 | 623 | #save-page-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
624 | -moz-image-region: rect(18px, 252px, 36px, 234px); |
625 | } | |
626 | ||
7d3f7f14 | 627 | #sync-button[cui-areatype="toolbar"] { |
43cc2806 RK |
628 | -moz-image-region: rect(0, 270px, 18px, 252px); |
629 | } | |
630 | ||
7d3f7f14 | 631 | #sync-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
632 | -moz-image-region: rect(18px, 270px, 36px, 252px); |
633 | } | |
634 | ||
5401f433 RK |
635 | #sync-button[cui-areatype="toolbar"][status="active"], |
636 | #sync-button[cui-areatype="toolbar"][status="active"]:hover:active:not([disabled="true"]) { | |
637 | list-style-image: url("chrome://browser/skin/syncProgress-toolbar.png"); | |
638 | -moz-image-region: rect(0, 18px, 18px, 0px); | |
639 | } | |
640 | ||
641 | /* | |
642 | #sync-button[cui-areatype="toolbar"][status="active"]:-moz-lwtheme-brighttext, | |
643 | #sync-button[cui-areatype="toolbar"][status="active"]:-moz-lwtheme-brighttext:hover:active:not([disabled="true"]) { | |
644 | list-style-image: url("chrome://browser/skin/syncProgress-toolbar-inverted.png"); | |
645 | } | |
646 | */ | |
647 | ||
7d3f7f14 | 648 | #feed-button[cui-areatype="toolbar"] { |
43cc2806 RK |
649 | -moz-image-region: rect(0, 288px, 18px, 270px); |
650 | } | |
651 | ||
7d3f7f14 | 652 | #feed-button[cui-areatype="toolbar"]:hover:not([disabled="true"]) { |
43cc2806 RK |
653 | -moz-image-region: rect(18px, 288px, 36px, 270px); |
654 | } | |
655 | ||
7d3f7f14 | 656 | #feed-button[cui-areatype="toolbar"][disabled="true"] { |
cc4b0b0d RK |
657 | -moz-image-region: rect(36px, 288px, 54px, 270px); |
658 | } | |
659 | ||
7d3f7f14 | 660 | #social-share-button[cui-areatype="toolbar"] { |
43cc2806 RK |
661 | -moz-image-region: rect(0px, 306px, 18px, 288px); |
662 | } | |
663 | ||
22180555 RK |
664 | #social-share-button[cui-areatype="toolbar"]:hover:not([disabled="true"]), |
665 | #social-share-button[cui-areatype="toolbar"][open="true"] { | |
43cc2806 RK |
666 | -moz-image-region: rect(18px, 306px, 36px, 288px); |
667 | } | |
668 | ||
22180555 RK |
669 | #social-share-button[cui-areatype="toolbar"][disabled="true"] { |
670 | -moz-image-region: rect(36px, 306px, 54px, 288px); | |
671 | } | |
672 | ||
7d3f7f14 | 673 | #characterencoding-button[cui-areatype="toolbar"] { |
43cc2806 RK |
674 | -moz-image-region: rect(0, 324px, 18px, 306px); |
675 | } | |
676 | ||
7d3f7f14 RK |
677 | #characterencoding-button[cui-areatype="toolbar"]:hover:not([disabled="true"]), |
678 | #characterencoding-button[cui-areatype="toolbar"][open="true"] { | |
43cc2806 RK |
679 | -moz-image-region: rect(18px, 324px, 36px, 306px); |
680 | } | |
681 | ||
7d3f7f14 | 682 | #characterencoding-button[cui-areatype="toolbar"][disabled="true"] { |
cc4b0b0d RK |
683 | -moz-image-region: rect(36px, 324px, 54px, 306px); |
684 | } | |
685 | ||
7d3f7f14 | 686 | #new-window-button[cui-areatype="toolbar"] { |
43cc2806 RK |
687 | -moz-image-region: rect(0, 342px, 18px, 324px); |
688 | } | |
689 | ||
7d3f7f14 | 690 | #new-window-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
691 | -moz-image-region: rect(18px, 342px, 36px, 324px); |
692 | } | |
693 | ||
46e71434 RK |
694 | #e10s-button[cui-areatype="toolbar"] { |
695 | -moz-image-region: rect(0, 342px, 18px, 324px); | |
696 | } | |
697 | ||
698 | #e10s-button[cui-areatype="toolbar"]:hover { | |
699 | -moz-image-region: rect(18px, 342px, 36px, 324px); | |
700 | } | |
701 | ||
702 | #e10s-button > .toolbarbutton-icon { | |
703 | transform: scaleY(-1); | |
704 | } | |
705 | ||
7d3f7f14 | 706 | #new-tab-button[cui-areatype="toolbar"] { |
43cc2806 RK |
707 | -moz-image-region: rect(0, 360px, 18px, 342px); |
708 | } | |
709 | ||
7d3f7f14 | 710 | #new-tab-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
711 | -moz-image-region: rect(18px, 360px, 36px, 342px); |
712 | } | |
713 | ||
7d3f7f14 | 714 | #privatebrowsing-button[cui-areatype="toolbar"] { |
43cc2806 RK |
715 | -moz-image-region: rect(0, 378px, 18px, 360px); |
716 | } | |
717 | ||
7d3f7f14 | 718 | #privatebrowsing-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
719 | -moz-image-region: rect(18px, 378px, 36px, 360px); |
720 | } | |
721 | ||
7d3f7f14 | 722 | #find-button[cui-areatype="toolbar"] { |
43cc2806 RK |
723 | -moz-image-region: rect(0, 396px, 18px, 378px); |
724 | } | |
725 | ||
7d3f7f14 | 726 | #find-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
727 | -moz-image-region: rect(18px, 396px, 36px, 378px); |
728 | } | |
729 | ||
7d3f7f14 | 730 | #print-button[cui-areatype="toolbar"] { |
43cc2806 RK |
731 | -moz-image-region: rect(0, 414px, 18px, 396px); |
732 | } | |
733 | ||
7d3f7f14 | 734 | #print-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
735 | -moz-image-region: rect(18px, 414px, 36px, 396px); |
736 | } | |
737 | ||
7d3f7f14 | 738 | #fullscreen-button[cui-areatype="toolbar"] { |
43cc2806 RK |
739 | -moz-image-region: rect(0, 432px, 18px, 414px); |
740 | } | |
741 | ||
7d3f7f14 | 742 | #fullscreen-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
743 | -moz-image-region: rect(18px, 432px, 36px, 414px); |
744 | } | |
745 | ||
7d3f7f14 | 746 | #developer-button[cui-areatype="toolbar"] { |
43cc2806 RK |
747 | -moz-image-region: rect(0, 450px, 18px, 432px); |
748 | } | |
749 | ||
7d3f7f14 RK |
750 | #developer-button[cui-areatype="toolbar"]:hover, |
751 | #developer-button[cui-areatype="toolbar"][open="true"] { | |
43cc2806 RK |
752 | -moz-image-region: rect(18px, 450px, 36px, 432px); |
753 | } | |
754 | ||
7d3f7f14 | 755 | #preferences-button[cui-areatype="toolbar"] { |
43cc2806 RK |
756 | -moz-image-region: rect(0, 468px, 18px, 450px); |
757 | } | |
758 | ||
7d3f7f14 | 759 | #preferences-button[cui-areatype="toolbar"]:hover { |
43cc2806 RK |
760 | -moz-image-region: rect(18px, 468px, 36px, 450px); |
761 | } | |
762 | ||
7d3f7f14 | 763 | #PanelUI-menu-button { |
43cc2806 RK |
764 | -moz-image-region: rect(0, 486px, 18px, 468px); |
765 | } | |
766 | ||
7d3f7f14 RK |
767 | #PanelUI-menu-button:hover, |
768 | #PanelUI-menu-button[open="true"] { | |
43cc2806 RK |
769 | -moz-image-region: rect(18px, 486px, 36px, 468px); |
770 | } | |
771 | ||
51994fad | 772 | #edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #cut-button { |
43cc2806 RK |
773 | -moz-image-region: rect(0, 504px, 18px, 486px); |
774 | } | |
775 | ||
51994fad | 776 | #edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #cut-button:hover:not([disabled="true"]) { |
43cc2806 RK |
777 | -moz-image-region: rect(18px, 504px, 36px, 486px); |
778 | } | |
779 | ||
51994fad | 780 | #edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #cut-button[disabled="true"] { |
cc4b0b0d RK |
781 | -moz-image-region: rect(36px, 504px, 54px, 486px); |
782 | } | |
783 | ||
51994fad | 784 | #edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #copy-button { |
43cc2806 RK |
785 | -moz-image-region: rect(0, 522px, 18px, 504px); |
786 | } | |
787 | ||
51994fad | 788 | #edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #copy-button:hover:not([disabled="true"]) { |
43cc2806 RK |
789 | -moz-image-region: rect(18px, 522px, 36px, 504px); |
790 | } | |
791 | ||
51994fad | 792 | #edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #copy-button[disabled="true"] { |
cc4b0b0d RK |
793 | -moz-image-region: rect(36px, 522px, 54px, 504px); |
794 | } | |
795 | ||
51994fad | 796 | #edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #paste-button { |
43cc2806 RK |
797 | -moz-image-region: rect(0, 540px, 18px, 522px); |
798 | } | |
799 | ||
51994fad | 800 | #edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #paste-button:hover:not([disabled="true"]) { |
43cc2806 RK |
801 | -moz-image-region: rect(18px, 540px, 36px, 522px); |
802 | } | |
803 | ||
51994fad | 804 | #edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #paste-button[disabled="true"] { |
cc4b0b0d RK |
805 | -moz-image-region: rect(36px, 540px, 54px, 522px); |
806 | } | |
807 | ||
51994fad | 808 | #zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-out-button { |
43cc2806 RK |
809 | -moz-image-region: rect(0, 558px, 18px, 540px); |
810 | } | |
811 | ||
51994fad | 812 | #zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-out-button:hover:not([disabled="true"]) { |
43cc2806 RK |
813 | -moz-image-region: rect(18px, 558px, 36px, 540px); |
814 | } | |
815 | ||
51994fad | 816 | #zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-out-button[disabled="true"] { |
cc4b0b0d RK |
817 | -moz-image-region: rect(36px, 558px, 54px, 540px); |
818 | } | |
819 | ||
51994fad | 820 | #zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-in-button { |
43cc2806 RK |
821 | -moz-image-region: rect(0, 576px, 18px, 558px); |
822 | } | |
823 | ||
51994fad | 824 | #zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-in-button:hover:not([disabled="true"]) { |
43cc2806 RK |
825 | -moz-image-region: rect(18px, 576px, 36px, 558px); |
826 | } | |
827 | ||
51994fad | 828 | #zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-in-button[disabled="true"] { |
cc4b0b0d RK |
829 | -moz-image-region: rect(36px, 576px, 54px, 558px); |
830 | } | |
831 | ||
7d3f7f14 | 832 | #nav-bar-overflow-button { |
43cc2806 RK |
833 | -moz-image-region: rect(0, 612px, 18px, 594px); |
834 | } | |
835 | ||
7d3f7f14 RK |
836 | #nav-bar-overflow-button:hover, |
837 | #nav-bar-overflow-button[open="true"] { | |
43cc2806 RK |
838 | -moz-image-region: rect(18px, 612px, 36px, 594px); |
839 | } | |
840 | ||
46e71434 RK |
841 | #nav-bar-overflow-button:-moz-locale-dir(rtl) > .toolbarbutton-icon { |
842 | transform: scaleX(-1); | |
843 | } | |
844 | ||
c0f6797e RK |
845 | #tabview-button { |
846 | -moz-image-region: rect(0, 648px, 18px, 630px); | |
847 | } | |
848 | ||
849 | #tabview-button:hover { | |
850 | -moz-image-region: rect(18px, 648px, 36px, 630px); | |
851 | } | |
852 | ||
853 | #email-link-button[cui-areatype="toolbar"] { | |
854 | -moz-image-region: rect(0, 666px, 18px, 648px); | |
855 | } | |
856 | ||
22180555 | 857 | #email-button[cui-areatype="toolbar"]:hover:not([disabled="true"]) { |
c0f6797e RK |
858 | -moz-image-region: rect(18px, 666px, 36px, 648px); |
859 | } | |
860 | ||
22180555 RK |
861 | #email-button[cui-areatype="toolbar"][disabled="true"] { |
862 | -moz-image-region: rect(36px, 666px, 54px, 648px); | |
863 | } | |
864 | ||
c0f6797e RK |
865 | #sidebar-button[cui-areatype="toolbar"] { |
866 | -moz-image-region: rect(0, 684px, 18px, 666px); | |
867 | } | |
868 | ||
869 | #sidebar-button[cui-areatype="toolbar"]:hover { | |
870 | -moz-image-region: rect(18px, 684px, 36px, 666px); | |
871 | } | |
872 | ||
22180555 RK |
873 | #panic-button[cui-areatype="toolbar"] { |
874 | -moz-image-region: rect(0, 702px, 18px, 684px); | |
875 | } | |
876 | ||
877 | #panic-button[cui-areatype="toolbar"]:hover, | |
878 | #panic-button[cui-areatype="toolbar"][open] { | |
879 | -moz-image-region: rect(18px, 702px, 36px, 684px); | |
880 | } | |
881 | ||
882 | #panic-button:-moz-locale-dir(rtl) > .toolbarbutton-icon { | |
883 | transform: scaleX(-1); | |
884 | } | |
885 | ||
886 | #web-apps-button[cui-areatype="toolbar"] { | |
887 | -moz-image-region: rect(0, 720px, 18px, 702px); | |
888 | } | |
889 | ||
890 | #web-apps-button[cui-areatype="toolbar"]:hover { | |
891 | -moz-image-region: rect(18px, 720px, 36px, 702px); | |
892 | } | |
893 | ||
8d1f53f0 RK |
894 | #loop-button-throttled > .toolbarbutton-badge-container, |
895 | #loop-button > .toolbarbutton-badge-container { | |
d0e580f1 RK |
896 | list-style-image: url("chrome://browser/skin/loop/toolbarfx.png"); |
897 | -moz-image-region: rect(0, 18px, 18px, 0); | |
898 | } | |
899 | ||
8d1f53f0 RK |
900 | #loop-button-throttled:not([disabled="true"]):-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container, |
901 | #loop-button:not([disabled="true"]):-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container { | |
d0e580f1 RK |
902 | -moz-image-region: rect(0, 90px, 18px, 72px); |
903 | } | |
904 | ||
86d9f20a | 905 | #loop-button-throttled[state="disabled"] > .toolbarbutton-badge-container, |
8d1f53f0 RK |
906 | #loop-button-throttled[disabled="true"] > .toolbarbutton-badge-container, |
907 | #loop-button[state="disabled"] > .toolbarbutton-badge-container, | |
908 | #loop-button[disabled="true"] > .toolbarbutton-badge-container { | |
d0e580f1 RK |
909 | -moz-image-region: rect(0, 36px, 18px, 18px); |
910 | } | |
911 | ||
8d1f53f0 RK |
912 | #loop-button-throttled[disabled="true"]:-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container, |
913 | #loop-button[disabled="true"]:-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container { | |
d0e580f1 RK |
914 | -moz-image-region: rect(0, 126px, 18px, 108px); |
915 | } | |
916 | ||
8d1f53f0 RK |
917 | #loop-button-throttled:not([disabled="true"])[state="error"] > .toolbarbutton-badge-container, |
918 | #loop-button:not([disabled="true"])[state="error"] > .toolbarbutton-badge-container { | |
d0e580f1 RK |
919 | -moz-image-region: rect(0, 54px, 18px, 36px); |
920 | } | |
921 | ||
8d1f53f0 RK |
922 | #loop-button-throttled:not([disabled="true"])[state="action"] > .toolbarbutton-badge-container, |
923 | #loop-button:not([disabled="true"])[state="action"] > .toolbarbutton-badge-container { | |
d0e580f1 RK |
924 | -moz-image-region: rect(0, 72px, 18px, 54px); |
925 | } | |
926 | ||
8d1f53f0 RK |
927 | #loop-button-throttled:not([disabled="true"])[state="active"] > .toolbarbutton-badge-container, |
928 | #loop-button:not([disabled="true"])[state="active"] > .toolbarbutton-badge-container { | |
d0e580f1 RK |
929 | -moz-image-region: rect(0, 108px, 18px, 90px); |
930 | } | |
931 | ||
43cc2806 RK |
932 | /* === END toolbarbuttons.inc.css === */ |
933 | ||
934 | /* === BEGIN menupanel.inc.css === */ | |
935 | ||
936 | /* Menu panel and palette styles */ | |
937 | ||
51994fad | 938 | toolbaritem[sdkstylewidget="true"] > toolbarbutton, |
5401f433 RK |
939 | :-moz-any(#back-button, #forward-button, #home-button, #print-button, #downloads-button, #bookmarks-menu-button, |
940 | #new-tab-button, #new-window-button, #fullscreen-button, #sync-button, #feed-button, #tabview-button, | |
1988bb88 | 941 | #social-share-button, #open-file-button, #find-button, #developer-button, |
5401f433 RK |
942 | #preferences-button, #privatebrowsing-button, #save-page-button, #switch-to-metro-button, #add-ons-button, |
943 | #history-panelmenu, #nav-bar-overflow-button, #PanelUI-menu-button, #characterencoding-button, | |
944 | #email-link-button, #sidebar-button, #zoom-out-button, #zoom-reset-button, #zoom-in-button, #cut-button, | |
22180555 | 945 | #copy-button, #paste-button, #e10s-button, #panic-button, #web-apps-button)[cui-areatype="menu-panel"], |
5401f433 RK |
946 | toolbarpaletteitem[place="palette"] > :-moz-any(#back-button, #forward-button, #home-button, #print-button, #downloads-button, #bookmarks-menu-button, |
947 | #new-tab-button, #new-window-button, #fullscreen-button, #sync-button, #feed-button, #tabview-button, | |
1988bb88 | 948 | #social-share-button, #open-file-button, #find-button, #developer-button, |
5401f433 RK |
949 | #preferences-button, #privatebrowsing-button, #save-page-button, #switch-to-metro-button, #add-ons-button, |
950 | #history-panelmenu, #nav-bar-overflow-button, #PanelUI-menu-button, #characterencoding-button, | |
951 | #email-link-button, #sidebar-button, #zoom-out-button, #zoom-reset-button, #zoom-in-button, #cut-button, | |
22180555 | 952 | #copy-button, #paste-button, #e10s-button, #panic-button, #web-apps-button) { |
d0e580f1 | 953 | list-style-image: url("chrome://browser/skin/menuPanelFx.png"); /* avoid aero overrides with changed filename */ |
43cc2806 RK |
954 | } |
955 | ||
956 | #home-button[cui-areatype="menu-panel"], | |
7d3f7f14 | 957 | toolbarpaletteitem[place="palette"] > #home-button { |
43cc2806 RK |
958 | -moz-image-region: rect(0px, 128px, 32px, 96px); |
959 | } | |
960 | ||
cc4b0b0d | 961 | #home-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 962 | toolbarpaletteitem[place="palette"] > #home-button:hover { |
cc4b0b0d RK |
963 | -moz-image-region: rect(32px, 128px, 64px, 96px); |
964 | } | |
965 | ||
43cc2806 | 966 | #bookmarks-menu-button[cui-areatype="menu-panel"], |
7d3f7f14 | 967 | toolbarpaletteitem[place="palette"] > #bookmarks-menu-button { |
46e71434 | 968 | -moz-image-region: rect(0px, 192px, 32px, 160px); |
43cc2806 RK |
969 | } |
970 | ||
cc4b0b0d | 971 | #bookmarks-menu-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 972 | toolbarpaletteitem[place="palette"] > #bookmarks-menu-button:hover { |
46e71434 RK |
973 | -moz-image-region: rect(32px, 192px, 64px, 160px); |
974 | } | |
975 | ||
976 | #bookmarks-menu-button[cui-areatype="menu-panel"][panel-multiview-anchor=true] { | |
977 | -moz-image-region: rect(32px, 192px, 64px, 160px); | |
cc4b0b0d RK |
978 | } |
979 | ||
43cc2806 | 980 | #history-panelmenu[cui-areatype="menu-panel"], |
7d3f7f14 | 981 | toolbarpaletteitem[place="palette"] > #history-panelmenu { |
43cc2806 RK |
982 | -moz-image-region: rect(0px, 224px, 32px, 192px); |
983 | } | |
984 | ||
cc4b0b0d | 985 | #history-panelmenu[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 986 | toolbarpaletteitem[place="palette"] > #history-panelmenu:hover { |
cc4b0b0d RK |
987 | -moz-image-region: rect(32px, 224px, 64px, 192px); |
988 | } | |
989 | ||
46e71434 RK |
990 | #history-panelmenu[cui-areatype="menu-panel"][panel-multiview-anchor=true] { |
991 | -moz-image-region: rect(32px, 224px, 64px, 192px); | |
992 | } | |
993 | ||
43cc2806 | 994 | #downloads-button[cui-areatype="menu-panel"], |
7d3f7f14 | 995 | toolbarpaletteitem[place="palette"] > #downloads-button { |
43cc2806 RK |
996 | -moz-image-region: rect(0px, 256px, 32px, 224px); |
997 | } | |
998 | ||
cc4b0b0d | 999 | #downloads-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1000 | toolbarpaletteitem[place="palette"] > #downloads-button:hover { |
cc4b0b0d RK |
1001 | -moz-image-region: rect(32px, 256px, 64px, 224px); |
1002 | } | |
1003 | ||
43cc2806 | 1004 | #add-ons-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1005 | toolbarpaletteitem[place="palette"] > #add-ons-button { |
43cc2806 RK |
1006 | -moz-image-region: rect(0px, 288px, 32px, 256px); |
1007 | } | |
1008 | ||
cc4b0b0d | 1009 | #add-ons-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1010 | toolbarpaletteitem[place="palette"] > #add-ons-button:hover { |
cc4b0b0d RK |
1011 | -moz-image-region: rect(32px, 288px, 64px, 256px); |
1012 | } | |
1013 | ||
43cc2806 | 1014 | #open-file-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1015 | toolbarpaletteitem[place="palette"] > #open-file-button { |
43cc2806 RK |
1016 | -moz-image-region: rect(0px, 320px, 32px, 288px); |
1017 | } | |
1018 | ||
cc4b0b0d | 1019 | #open-file-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1020 | toolbarpaletteitem[place="palette"] > #open-file-button:hover { |
cc4b0b0d RK |
1021 | -moz-image-region: rect(32px, 320px, 64px, 288px); |
1022 | } | |
1023 | ||
43cc2806 | 1024 | #save-page-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1025 | toolbarpaletteitem[place="palette"] > #save-page-button { |
43cc2806 RK |
1026 | -moz-image-region: rect(0px, 352px, 32px, 320px); |
1027 | } | |
1028 | ||
cc4b0b0d | 1029 | #save-page-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1030 | toolbarpaletteitem[place="palette"] > #save-page-button:hover { |
cc4b0b0d RK |
1031 | -moz-image-region: rect(32px, 352px, 64px, 320px); |
1032 | } | |
1033 | ||
43cc2806 | 1034 | #sync-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1035 | toolbarpaletteitem[place="palette"] > #sync-button { |
43cc2806 RK |
1036 | -moz-image-region: rect(0px, 384px, 32px, 352px); |
1037 | } | |
1038 | ||
cc4b0b0d | 1039 | #sync-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1040 | toolbarpaletteitem[place="palette"] > #sync-button:hover { |
cc4b0b0d RK |
1041 | -moz-image-region: rect(32px, 384px, 64px, 352px); |
1042 | } | |
1043 | ||
5401f433 RK |
1044 | #sync-button[cui-areatype="menu-panel"][status="active"] { |
1045 | list-style-image: url("chrome://browser/skin/syncProgress-menuPanel.png"); | |
1046 | -moz-image-region: rect(0px, 32px, 32px, 0px); | |
1047 | } | |
1048 | ||
43cc2806 | 1049 | #feed-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1050 | toolbarpaletteitem[place="palette"] > #feed-button { |
43cc2806 RK |
1051 | -moz-image-region: rect(0px, 416px, 32px, 384px); |
1052 | } | |
1053 | ||
cc4b0b0d | 1054 | #feed-button[cui-areatype="menu-panel"]:hover:not([disabled="true"]), |
7d3f7f14 | 1055 | toolbarpaletteitem[place="palette"] > #feed-button:hover:not([disabled="true"]) { |
cc4b0b0d RK |
1056 | -moz-image-region: rect(32px, 416px, 64px, 384px); |
1057 | } | |
1058 | ||
1059 | #feed-button[cui-areatype="menu-panel"][disabled="true"], | |
7d3f7f14 | 1060 | toolbarpaletteitem[place="palette"] > #feed-button[disabled="true"] { |
cc4b0b0d RK |
1061 | -moz-image-region: rect(64px, 416px, 96px, 384px); |
1062 | } | |
1063 | ||
43cc2806 | 1064 | #social-share-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1065 | toolbarpaletteitem[place="palette"] > #social-share-button { |
43cc2806 RK |
1066 | -moz-image-region: rect(0px, 448px, 32px, 416px); |
1067 | } | |
1068 | ||
22180555 RK |
1069 | #social-share-button[cui-areatype="menu-panel"]:hover:not([disabled="true"]), |
1070 | toolbarpaletteitem[place="palette"] > #social-share-button:hover:not([disabled="true"]) { | |
cc4b0b0d RK |
1071 | -moz-image-region: rect(32px, 448px, 64px, 416px); |
1072 | } | |
1073 | ||
22180555 RK |
1074 | #social-share-button[cui-areatype="menu-panel"][disabled="true"], |
1075 | toolbarpaletteitem[place="palette"] > #social-share-button[disabled="true"] { | |
1076 | -moz-image-region: rect(64px, 448px, 96px, 416px); | |
1077 | } | |
1078 | ||
43cc2806 | 1079 | #characterencoding-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1080 | toolbarpaletteitem[place="palette"] > #characterencoding-button { |
43cc2806 RK |
1081 | -moz-image-region: rect(0px, 480px, 32px, 448px); |
1082 | } | |
1083 | ||
cc4b0b0d | 1084 | #characterencoding-button[cui-areatype="menu-panel"]:hover:not([disabled="true"]), |
7d3f7f14 | 1085 | toolbarpaletteitem[place="palette"] > #characterencoding-button:hover:not([disabled="true"]) { |
cc4b0b0d RK |
1086 | -moz-image-region: rect(32px, 480px, 64px, 448px); |
1087 | } | |
1088 | ||
1089 | #characterencoding-button[cui-areatype="menu-panel"][disabled="true"], | |
7d3f7f14 | 1090 | toolbarpaletteitem[place="palette"] > #characterencoding-button[disabled="true"] { |
cc4b0b0d RK |
1091 | -moz-image-region: rect(64px, 480px, 96px, 448px); |
1092 | } | |
1093 | ||
46e71434 RK |
1094 | #characterencoding-button[cui-areatype="menu-panel"][panel-multiview-anchor=true] { |
1095 | -moz-image-region: rect(32px, 480px, 64px, 448px); | |
1096 | } | |
1097 | ||
43cc2806 | 1098 | #new-window-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1099 | toolbarpaletteitem[place="palette"] > #new-window-button { |
43cc2806 RK |
1100 | -moz-image-region: rect(0px, 512px, 32px, 480px); |
1101 | } | |
1102 | ||
cc4b0b0d | 1103 | #new-window-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1104 | toolbarpaletteitem[place="palette"] > #new-window-button:hover { |
cc4b0b0d RK |
1105 | -moz-image-region: rect(32px, 512px, 64px, 480px); |
1106 | } | |
1107 | ||
5401f433 RK |
1108 | #e10s-button[cui-areatype="menu-panel"], |
1109 | toolbarpaletteitem[place="palette"] > #e10s-button { | |
1110 | -moz-image-region: rect(0px, 512px, 32px, 480px); | |
1111 | } | |
1112 | ||
1113 | #e10s-button[cui-areatype="menu-panel"]:hover, | |
1114 | toolbarpaletteitem[place="palette"] > #e10s-button:hover { | |
1115 | -moz-image-region: rect(32px, 512px, 64px, 480px); | |
1116 | } | |
1117 | ||
43cc2806 | 1118 | #new-tab-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1119 | toolbarpaletteitem[place="palette"] > #new-tab-button { |
43cc2806 RK |
1120 | -moz-image-region: rect(0px, 544px, 32px, 512px); |
1121 | } | |
1122 | ||
cc4b0b0d | 1123 | #new-tab-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1124 | toolbarpaletteitem[place="palette"] > #new-tab-button:hover { |
cc4b0b0d RK |
1125 | -moz-image-region: rect(32px, 544px, 64px, 512px); |
1126 | } | |
1127 | ||
43cc2806 | 1128 | #privatebrowsing-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1129 | toolbarpaletteitem[place="palette"] > #privatebrowsing-button { |
43cc2806 RK |
1130 | -moz-image-region: rect(0px, 576px, 32px, 544px); |
1131 | } | |
1132 | ||
cc4b0b0d | 1133 | #privatebrowsing-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1134 | toolbarpaletteitem[place="palette"] > #privatebrowsing-button:hover { |
cc4b0b0d RK |
1135 | -moz-image-region: rect(32px, 576px, 64px, 544px); |
1136 | } | |
1137 | ||
46e71434 RK |
1138 | #tabview-button[cui-areatype="menu-panel"], |
1139 | toolbarpaletteitem[place="palette"] > #tabview-button { | |
1140 | -moz-image-region: rect(0px, 608px, 32px, 576px); | |
1141 | } | |
1142 | ||
1143 | #tabview-button[cui-areatype="menu-panel"]:hover, | |
1144 | toolbarpaletteitem[place="palette"] > #tabview-button:hover { | |
1145 | -moz-image-region: rect(32px, 608px, 64px, 576px); | |
1146 | } | |
1147 | ||
43cc2806 | 1148 | #find-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1149 | toolbarpaletteitem[place="palette"] > #find-button { |
43cc2806 RK |
1150 | -moz-image-region: rect(0px, 640px, 32px, 608px); |
1151 | } | |
1152 | ||
cc4b0b0d | 1153 | #find-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1154 | toolbarpaletteitem[place="palette"] > #find-button:hover { |
cc4b0b0d RK |
1155 | -moz-image-region: rect(32px, 640px, 64px, 608px); |
1156 | } | |
1157 | ||
43cc2806 | 1158 | #print-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1159 | toolbarpaletteitem[place="palette"] > #print-button { |
43cc2806 RK |
1160 | -moz-image-region: rect(0px, 672px, 32px, 640px); |
1161 | } | |
1162 | ||
cc4b0b0d | 1163 | #print-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1164 | toolbarpaletteitem[place="palette"] > #print-button:hover { |
cc4b0b0d RK |
1165 | -moz-image-region: rect(32px, 672px, 64px, 640px); |
1166 | } | |
1167 | ||
43cc2806 | 1168 | #fullscreen-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1169 | toolbarpaletteitem[place="palette"] > #fullscreen-button { |
43cc2806 RK |
1170 | -moz-image-region: rect(0px, 704px, 32px, 672px); |
1171 | } | |
1172 | ||
cc4b0b0d | 1173 | #fullscreen-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1174 | toolbarpaletteitem[place="palette"] > #fullscreen-button:hover { |
cc4b0b0d RK |
1175 | -moz-image-region: rect(32px, 704px, 64px, 672px); |
1176 | } | |
1177 | ||
43cc2806 | 1178 | #developer-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1179 | toolbarpaletteitem[place="palette"] > #developer-button { |
43cc2806 RK |
1180 | -moz-image-region: rect(0px, 736px, 32px, 704px); |
1181 | } | |
1182 | ||
cc4b0b0d | 1183 | #developer-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1184 | toolbarpaletteitem[place="palette"] > #developer-button:hover { |
cc4b0b0d RK |
1185 | -moz-image-region: rect(32px, 736px, 64px, 704px); |
1186 | } | |
1187 | ||
46e71434 RK |
1188 | #developer-button[cui-areatype="menu-panel"][panel-multiview-anchor=true] { |
1189 | -moz-image-region: rect(32px, 736px, 64px, 704px); | |
1190 | } | |
1191 | ||
43cc2806 | 1192 | #preferences-button[cui-areatype="menu-panel"], |
7d3f7f14 | 1193 | toolbarpaletteitem[place="palette"] > #preferences-button { |
43cc2806 RK |
1194 | -moz-image-region: rect(0px, 768px, 32px, 736px); |
1195 | } | |
1196 | ||
cc4b0b0d | 1197 | #preferences-button[cui-areatype="menu-panel"]:hover, |
7d3f7f14 | 1198 | toolbarpaletteitem[place="palette"] > #preferences-button:hover { |
cc4b0b0d RK |
1199 | -moz-image-region: rect(32px, 768px, 64px, 736px); |
1200 | } | |
1201 | ||
46e71434 RK |
1202 | #email-link-button[cui-areatype="menu-panel"], |
1203 | toolbarpaletteitem[place="palette"] > #email-link-button { | |
1204 | -moz-image-region: rect(0, 800px, 32px, 768px); | |
1205 | } | |
1206 | ||
22180555 RK |
1207 | #email-link-button[cui-areatype="menu-panel"]:hover:not([disabled="true"]), |
1208 | toolbarpaletteitem[place="palette"] > #email-link-button:hover:not([disabled="true"]) { | |
46e71434 RK |
1209 | -moz-image-region: rect(32px, 800px, 64px, 768px); |
1210 | } | |
1211 | ||
22180555 RK |
1212 | #email-link-button[cui-areatype="menu-panel"][disabled="true"], |
1213 | toolbarpaletteitem[place="palette"] > #email-link-button[disabled="true"] { | |
1214 | -moz-image-region: rect(64px, 800px, 96px, 768px); | |
1215 | } | |
1216 | ||
46e71434 RK |
1217 | #sidebar-button[cui-areatype="menu-panel"], |
1218 | toolbarpaletteitem[place="palette"] > #sidebar-button { | |
1219 | -moz-image-region: rect(0, 864px, 32px, 832px); | |
1220 | } | |
1221 | ||
1222 | #sidebar-button[cui-areatype="menu-panel"]:hover, | |
22180555 RK |
1223 | toolbarpaletteitem[place="palette"] > #sidebar-button:hover, |
1224 | #sidebar-button[cui-areatype="menu-panel"][panel-multiview-anchor=true] { | |
46e71434 RK |
1225 | -moz-image-region: rect(32px, 864px, 64px, 832px); |
1226 | } | |
1227 | ||
22180555 RK |
1228 | #panic-button[cui-areatype="menu-panel"], |
1229 | toolbarpaletteitem[place="palette"] > #panic-button { | |
1230 | -moz-image-region: rect(0, 896px, 32px, 864px); | |
1231 | } | |
1232 | ||
1233 | #panic-button[cui-areatype="menu-panel"]:hover, | |
1234 | toolbarpaletteitem[place="palette"] > #panic-button:hover, | |
1235 | #panic-button[cui-areatype="menu-panel"][panel-multiview-anchor=true] { | |
1236 | -moz-image-region: rect(32px, 896px, 64px, 864px); | |
1237 | } | |
1238 | ||
1239 | #web-apps-button[cui-areatype="menu-panel"], | |
1240 | toolbarpaletteitem[place="palette"] > #web-apps-button { | |
1241 | -moz-image-region: rect(0, 928px, 32px, 896px); | |
1242 | } | |
1243 | ||
1244 | #web-apps-button[cui-areatype="menu-panel"]:hover, | |
1245 | toolbarpaletteitem[place="palette"] > #web-apps-button:hover { | |
1246 | -moz-image-region: rect(32px, 928px, 64px, 896px); | |
46e71434 RK |
1247 | } |
1248 | ||
1249 | toolbaritem[sdkstylewidget="true"] > toolbarbutton { | |
1250 | -moz-image-region: rect(0, 832px, 32px, 800px); | |
1251 | } | |
1252 | ||
86d9f20a | 1253 | #loop-button-throttled[cui-areatype="menu-panel"] > .toolbarbutton-badge-container, |
8d1f53f0 RK |
1254 | toolbarpaletteitem[place="palette"] > #loop-button-throttled > .toolbarbutton-badge-container, |
1255 | #loop-button[cui-areatype="menu-panel"] > .toolbarbutton-badge-container, | |
1256 | toolbarpaletteitem[place="palette"] > #loop-button > .toolbarbutton-badge-container { | |
d0e580f1 RK |
1257 | list-style-image: url("chrome://browser/skin/loop/menuPanel.png"); |
1258 | -moz-image-region: rect(0, 32px, 32px, 0); | |
1259 | } | |
1260 | ||
1261 | /* Make sure that the state icons are not shown in the customization palette. */ | |
8d1f53f0 RK |
1262 | toolbarpaletteitem[place="palette"] > #loop-button-throttled > .toolbarbutton-badge-container, |
1263 | toolbarpaletteitem[place="palette"] > #loop-button > .toolbarbutton-badge-container { | |
d0e580f1 RK |
1264 | -moz-image-region: rect(0, 32px, 32px, 0) !important; |
1265 | } | |
1266 | ||
8d1f53f0 RK |
1267 | #loop-button-throttled[cui-areatype="menu-panel"]:not([disabled="true"]):-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container, |
1268 | #loop-button[cui-areatype="menu-panel"]:not([disabled="true"]):-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container { | |
d0e580f1 RK |
1269 | -moz-image-region: rect(0, 160px, 32px, 128px); |
1270 | } | |
1271 | ||
86d9f20a | 1272 | #loop-button-throttled[cui-areatype="menu-panel"][state="disabled"] > .toolbarbutton-badge-container, |
8d1f53f0 RK |
1273 | #loop-button-throttled[cui-areatype="menu-panel"][disabled="true"] > .toolbarbutton-badge-container, |
1274 | #loop-button[cui-areatype="menu-panel"][state="disabled"] > .toolbarbutton-badge-container, | |
1275 | #loop-button[cui-areatype="menu-panel"][disabled="true"] > .toolbarbutton-badge-container { | |
d0e580f1 RK |
1276 | -moz-image-region: rect(0, 64px, 32px, 32px); |
1277 | } | |
1278 | ||
8d1f53f0 RK |
1279 | #loop-button-throttled[cui-areatype="menu-panel"][disabled="true"]:-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container, |
1280 | #loop-button[cui-areatype="menu-panel"][disabled="true"]:-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container { | |
d0e580f1 RK |
1281 | -moz-image-region: rect(0, 224px, 32px, 192px); |
1282 | } | |
1283 | ||
8d1f53f0 RK |
1284 | #loop-button-throttled[cui-areatype="menu-panel"]:not([disabled="true"])[state="error"] > .toolbarbutton-badge-container, |
1285 | #loop-button[cui-areatype="menu-panel"]:not([disabled="true"])[state="error"] > .toolbarbutton-badge-container { | |
d0e580f1 RK |
1286 | -moz-image-region: rect(0, 96px, 32px, 64px); |
1287 | } | |
1288 | ||
8d1f53f0 RK |
1289 | #loop-button-throttled[cui-areatype="menu-panel"]:not([disabled="true"])[state="action"] > .toolbarbutton-badge-container, |
1290 | #loop-button[cui-areatype="menu-panel"]:not([disabled="true"])[state="action"] > .toolbarbutton-badge-container { | |
d0e580f1 RK |
1291 | -moz-image-region: rect(0, 128px, 32px, 96px); |
1292 | } | |
1293 | ||
8d1f53f0 RK |
1294 | #loop-button-throttled[cui-areatype="menu-panel"]:not([disabled="true"])[state="active"] > .toolbarbutton-badge-container, |
1295 | #loop-button[cui-areatype="menu-panel"]:not([disabled="true"])[state="active"] > .toolbarbutton-badge-container { | |
d0e580f1 RK |
1296 | -moz-image-region: rect(0, 192px, 32px, 160px); |
1297 | } | |
1298 | ||
43cc2806 RK |
1299 | /* Wide panel control icons */ |
1300 | ||
51994fad RK |
1301 | #edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > toolbarbutton, |
1302 | #zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > toolbarbutton, | |
7d3f7f14 RK |
1303 | toolbarpaletteitem[place="palette"] > #edit-controls > toolbarbutton, |
1304 | toolbarpaletteitem[place="palette"] > #zoom-controls > toolbarbutton { | |
d0e580f1 | 1305 | list-style-image: url("chrome://browser/skin/menuPanelFx-small.png"); /* avoid aero overrides with changed filename */ |
43cc2806 RK |
1306 | } |
1307 | ||
51994fad | 1308 | #edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #cut-button, |
7d3f7f14 | 1309 | toolbarpaletteitem[place="palette"] > #edit-controls > #cut-button { |
43cc2806 RK |
1310 | -moz-image-region: rect(0px, 32px, 16px, 16px); |
1311 | } | |
1312 | ||
51994fad | 1313 | #edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #cut-button:hover:not([disabled="true"]), |
7d3f7f14 | 1314 | toolbarpaletteitem[place="palette"] > #edit-controls > #cut-button:hover:not([disabled="true"]) { |
cc4b0b0d RK |
1315 | -moz-image-region: rect(16px, 32px, 32px, 16px); |
1316 | } | |
1317 | ||
51994fad | 1318 | #edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #cut-button[disabled="true"], |
7d3f7f14 | 1319 | toolbarpaletteitem[place="palette"] > #edit-controls > #cut-button[disabled="true"] { |
cc4b0b0d RK |
1320 | -moz-image-region: rect(32px, 32px, 48px, 16px); |
1321 | } | |
1322 | ||
51994fad | 1323 | #edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #copy-button, |
7d3f7f14 | 1324 | toolbarpaletteitem[place="palette"] > #edit-controls > #copy-button { |
43cc2806 RK |
1325 | -moz-image-region: rect(0px, 48px, 16px, 32px); |
1326 | } | |
1327 | ||
51994fad | 1328 | #edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #copy-button:hover:not([disabled="true"]), |
7d3f7f14 | 1329 | toolbarpaletteitem[place="palette"] > #edit-controls > #copy-button:hover:not([disabled="true"]) { |
cc4b0b0d RK |
1330 | -moz-image-region: rect(16px, 48px, 32px, 32px); |
1331 | } | |
1332 | ||
51994fad | 1333 | #edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #copy-button[disabled="true"], |
7d3f7f14 | 1334 | toolbarpaletteitem[place="palette"] > #edit-controls > #copy-button[disabled="true"] { |
cc4b0b0d RK |
1335 | -moz-image-region: rect(32px, 48px, 48px, 32px); |
1336 | } | |
1337 | ||
51994fad | 1338 | #edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #paste-button, |
7d3f7f14 | 1339 | toolbarpaletteitem[place="palette"] > #edit-controls > #paste-button { |
43cc2806 RK |
1340 | -moz-image-region: rect(0px, 64px, 16px, 48px); |
1341 | } | |
1342 | ||
51994fad | 1343 | #edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #paste-button:hover:not([disabled="true"]), |
7d3f7f14 | 1344 | toolbarpaletteitem[place="palette"] > #edit-controls > #paste-button:hover:not([disabled="true"]) { |
cc4b0b0d RK |
1345 | -moz-image-region: rect(16px, 64px, 32px, 48px); |
1346 | } | |
1347 | ||
51994fad | 1348 | #edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #paste-button[disabled="true"], |
7d3f7f14 | 1349 | toolbarpaletteitem[place="palette"] > #edit-controls > #paste-button[disabled="true"] { |
cc4b0b0d RK |
1350 | -moz-image-region: rect(32px, 64px, 48px, 48px); |
1351 | } | |
1352 | ||
51994fad | 1353 | #zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-out-button, |
7d3f7f14 | 1354 | toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-out-button { |
43cc2806 RK |
1355 | -moz-image-region: rect(0px, 80px, 16px, 64px); |
1356 | } | |
1357 | ||
51994fad | 1358 | #zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-out-button:hover:not([disabled="true"]), |
7d3f7f14 | 1359 | toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-out-button:hover:not([disabled="true"]) { |
cc4b0b0d RK |
1360 | -moz-image-region: rect(16px, 80px, 32px, 64px); |
1361 | } | |
1362 | ||
51994fad | 1363 | #zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-out-button[disabled="true"], |
7d3f7f14 | 1364 | toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-out-button[disabled="true"] { |
cc4b0b0d RK |
1365 | -moz-image-region: rect(32px, 80px, 48px, 64px); |
1366 | } | |
1367 | ||
51994fad | 1368 | #zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-in-button, |
7d3f7f14 | 1369 | toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-in-button { |
43cc2806 RK |
1370 | -moz-image-region: rect(0px, 96px, 16px, 80px); |
1371 | } | |
1372 | ||
51994fad | 1373 | #zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-in-button:hover:not([disabled="true"]), |
7d3f7f14 | 1374 | toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-in-button:hover:not([disabled="true"]) { |
cc4b0b0d RK |
1375 | -moz-image-region: rect(16px, 96px, 32px, 80px); |
1376 | } | |
1377 | ||
51994fad | 1378 | #zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-in-button[disabled="true"], |
7d3f7f14 | 1379 | toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-in-button[disabled="true"] { |
cc4b0b0d RK |
1380 | -moz-image-region: rect(32px, 96px, 48px, 80px); |
1381 | } | |
1382 | ||
43cc2806 RK |
1383 | /* === END menupanel.inc.css === */ |
1384 | ||
63ada306 RK |
1385 | .toolbarbutton-1:not([type="menu-button"]) { |
1386 | -moz-box-orient: vertical; | |
1387 | } | |
1388 | ||
319c6529 RK |
1389 | .toolbarbutton-1, |
1390 | .toolbarbutton-1 > .toolbarbutton-menubutton-button { | |
c0f6797e RK |
1391 | /* min-width: 36px; |
1392 | min-height: 36px;*/ | |
319c6529 RK |
1393 | } |
1394 | ||
1395 | .toolbarbutton-1, | |
1396 | .toolbarbutton-1 > .toolbarbutton-menubutton-button, | |
1397 | .toolbarbutton-1[disabled="true"]:hover:active, | |
1398 | .toolbarbutton-1[disabled="true"]:hover:active > .toolbarbutton-menubutton-button { | |
1399 | padding: 1px 2px; | |
1400 | } | |
1401 | ||
1402 | .toolbarbutton-1:hover:active, | |
1403 | .toolbarbutton-1[open="true"], | |
1404 | .toolbarbutton-1:hover:active > .toolbarbutton-menubutton-button { | |
1405 | padding-top: 2px; | |
1406 | padding-bottom: 0px; | |
1407 | -moz-padding-start: 3px; | |
1408 | -moz-padding-end: 1px; | |
1409 | } | |
1410 | ||
c0f6797e RK |
1411 | #main-window:not([customizing]) .toolbarbutton-1[disabled=true] > .toolbarbutton-icon, |
1412 | #main-window:not([customizing]) .toolbarbutton-1[disabled=true] > .toolbarbutton-menu-dropmarker, | |
1413 | #main-window:not([customizing]) .toolbarbutton-1[disabled=true] > .toolbarbutton-menubutton-dropmarker, | |
1414 | #main-window:not([customizing]) .toolbarbutton-1[disabled=true] > .toolbarbutton-menubutton-button > .toolbarbutton-icon, | |
1415 | #main-window:not([customizing]) .toolbarbutton-1 > .toolbarbutton-menubutton-button[disabled=true] > .toolbarbutton-icon { | |
e20c83c3 RK |
1416 | } |
1417 | ||
c0f6797e RK |
1418 | .toolbarbutton-1 > .toolbarbutton-menu-dropmarker, |
1419 | .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker { | |
e20c83c3 RK |
1420 | } |
1421 | ||
c0f6797e RK |
1422 | toolbar .toolbarbutton-1 > .toolbarbutton-menu-dropmarker:-moz-lwtheme-brighttext, |
1423 | toolbar .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker:-moz-lwtheme-brighttext { | |
319c6529 RK |
1424 | } |
1425 | ||
c0f6797e RK |
1426 | .toolbarbutton-1 > .toolbarbutton-icon, |
1427 | .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-icon { | |
319c6529 RK |
1428 | } |
1429 | ||
c0f6797e RK |
1430 | #nav-bar .toolbarbutton-1, |
1431 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button { | |
319c6529 RK |
1432 | } |
1433 | ||
c0f6797e RK |
1434 | #nav-bar .toolbarbutton-1:not([type=menu-button]), |
1435 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button, | |
1436 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker { | |
319c6529 RK |
1437 | } |
1438 | ||
c0f6797e RK |
1439 | #nav-bar #PanelUI-menu-button { |
1440 | /* -moz-padding-start: 7px; | |
1441 | -moz-padding-end: 5px;*/ | |
319c6529 RK |
1442 | } |
1443 | ||
c0f6797e RK |
1444 | #nav-bar .toolbarbutton-1[type=menu]:not(#back-button):not(#forward-button):not(#feed-button):not(#social-provider-button):not(#PanelUI-menu-button) { |
1445 | /* padding-left: 5px; | |
1446 | padding-right: 5px;*/ | |
319c6529 RK |
1447 | } |
1448 | ||
c0f6797e RK |
1449 | #nav-bar .toolbarbutton-1 > menupopup { |
1450 | /* margin-top: -3px;*/ | |
319c6529 RK |
1451 | } |
1452 | ||
c0f6797e | 1453 | #nav-bar .toolbarbutton-1 > menupopup.cui-widget-panel { |
c1d2ce3e | 1454 | margin-top: -4px; |
319c6529 RK |
1455 | } |
1456 | ||
c0f6797e RK |
1457 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button { |
1458 | /* -moz-padding-end: 0;*/ | |
319c6529 RK |
1459 | } |
1460 | ||
c0f6797e RK |
1461 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker { |
1462 | /* -moz-padding-start: 0; | |
1463 | -moz-box-align: center;*/ | |
319c6529 RK |
1464 | } |
1465 | ||
c0f6797e RK |
1466 | #nav-bar .toolbarbutton-1 > .toolbarbutton-icon, |
1467 | #nav-bar .toolbarbutton-1 > .toolbarbutton-text, | |
1468 | #nav-bar .toolbarbutton-1 > .toolbarbutton-badge-container, | |
1469 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-icon, | |
1470 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon, | |
2c62526c | 1471 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > .toolbarbutton-1:-moz-any([disabled=true],:not([open]):not([disabled=true]):not(:active)) > .toolbarbutton-icon { |
c0f6797e RK |
1472 | /* padding: 2px 6px; |
1473 | border: 1px solid; | |
1474 | border-color: transparent; | |
1475 | transition-property: background-color, border-color; | |
1476 | transition-duration: 150ms;*/ | |
d54f5b23 | 1477 | } |
c0f6797e RK |
1478 | /* |
1479 | #nav-bar .toolbarbutton-1:not(:-moz-any(@primaryToolbarButtons@)) > .toolbarbutton-icon, | |
1480 | #nav-bar .toolbarbutton-1:not(:-moz-any(@primaryToolbarButtons@)) > .toolbarbutton-badge-container, | |
1481 | #nav-bar .toolbarbutton-1:not(:-moz-any(@primaryToolbarButtons@)) > .toolbarbutton-menubutton-button > .toolbarbutton-icon { | |
1482 | padding: 3px 7px; | |
d54f5b23 | 1483 | } |
c0f6797e | 1484 | */ |
d54f5b23 | 1485 | |
c0f6797e RK |
1486 | /* Help SDK icons fit: */ |
1487 | toolbarbutton[sdk-button="true"][cui-areatype="toolbar"] > .toolbarbutton-icon { | |
1488 | width: 16px; | |
26125509 RK |
1489 | } |
1490 | ||
c0f6797e RK |
1491 | #nav-bar toolbarbutton[sdk-button="true"][cui-areatype="toolbar"] > .toolbarbutton-icon { |
1492 | /* XXXgijs box models strike again: this is 16px + 2 * 7px padding + 2 * 1px border (from the rules above) */ | |
1493 | width: 32px; | |
26125509 | 1494 | } |
26125509 | 1495 | |
c0f6797e RK |
1496 | #nav-bar .toolbarbutton-1[type=menu]:not(#back-button):not(#forward-button):not(#feed-button):not(#social-provider-button):not(#PanelUI-menu-button) > .toolbarbutton-icon, |
1497 | #nav-bar .toolbarbutton-1[type=menu] > .toolbarbutton-text /* hack for add-ons that forcefully display the label */ { | |
1498 | /* -moz-padding-end: 17px;*/ | |
319c6529 RK |
1499 | } |
1500 | ||
c0f6797e | 1501 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menu-dropmarker { |
319c6529 RK |
1502 | } |
1503 | ||
c0f6797e | 1504 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-icon { |
319c6529 RK |
1505 | } |
1506 | ||
c0f6797e | 1507 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon { |
38cfeb47 RK |
1508 | } |
1509 | ||
c0f6797e RK |
1510 | #nav-bar .toolbaritem-combined-buttons { |
1511 | /* margin-left: 2px; | |
1512 | margin-right: 2px;*/ | |
38cfeb47 RK |
1513 | } |
1514 | ||
c0f6797e RK |
1515 | #nav-bar .toolbaritem-combined-buttons > .toolbarbutton-1 { |
1516 | /* padding-left: 0; | |
1517 | padding-right: 0;*/ | |
319c6529 RK |
1518 | } |
1519 | ||
c0f6797e RK |
1520 | #nav-bar .toolbarbutton-1:not(:hover):not(:active):not([open]) > .toolbarbutton-menubutton-dropmarker::before, |
1521 | #nav-bar .toolbaritem-combined-buttons > .toolbarbutton-1:-moz-any(:not(:hover):not([open]),[disabled=true]) + .toolbarbutton-1:-moz-any(:not(:hover):not([open]),[disabled=true])::before { | |
1522 | /* | |
1523 | content: ""; | |
1524 | display: -moz-box; | |
1525 | width: 1px; | |
1526 | height: 16px; | |
1527 | -moz-margin-end: -1px; | |
1528 | */ | |
319c6529 RK |
1529 | } |
1530 | ||
2c62526c | 1531 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > .toolbarbutton-1:-moz-any([disabled=true],:not([open]):not([disabled=true]):not(:active)) > .toolbarbutton-icon { |
319c6529 RK |
1532 | } |
1533 | ||
43371c9b | 1534 | #nav-bar .toolbarbutton-1:not([disabled=true]) > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon, |
c0f6797e RK |
1535 | #nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-button > .toolbarbutton-icon, |
1536 | #nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon, | |
1537 | #nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-icon, | |
1538 | #nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-text, | |
1539 | #nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-badge-container, | |
2c62526c | 1540 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #forward-button:not([open]):not(:active):not([disabled=true]):hover > .toolbarbutton-icon, |
46e71434 | 1541 | #nav-bar .toolbarbutton-1:not([buttonover]):not([open]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled=true]) > .dropmarker-icon { |
319c6529 RK |
1542 | } |
1543 | ||
43371c9b | 1544 | #nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled=true]):-moz-any(:hover:active, [open]) > .toolbarbutton-icon, |
c0f6797e RK |
1545 | #nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker:not([disabled=true]) > .dropmarker-icon, |
1546 | #nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active) > .toolbarbutton-icon, | |
1547 | #nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active) > .toolbarbutton-text, | |
1548 | #nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active) > .toolbarbutton-badge-container { | |
319c6529 RK |
1549 | } |
1550 | ||
c0f6797e RK |
1551 | #TabsToolbar .toolbarbutton-1, |
1552 | #TabsToolbar .toolbarbutton-1 > .toolbarbutton-menubutton-button, | |
1553 | .tabbrowser-arrowscrollbox > .scrollbutton-up, | |
1554 | .tabbrowser-arrowscrollbox > .scrollbutton-down { | |
e8519ae0 RK |
1555 | } |
1556 | ||
c0f6797e RK |
1557 | #TabsToolbar .toolbarbutton-1:not([disabled=true]):hover, |
1558 | #TabsToolbar .toolbarbutton-1[open], | |
1559 | #TabsToolbar .toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled=true]):hover, | |
1560 | .tabbrowser-arrowscrollbox > .scrollbutton-up:not([disabled=true]):hover, | |
1561 | .tabbrowser-arrowscrollbox > .scrollbutton-down:not([disabled=true]):hover { | |
e8519ae0 RK |
1562 | } |
1563 | ||
c0f6797e | 1564 | /* unified back/forward button */ |
319c6529 | 1565 | |
c0f6797e | 1566 | #forward-button { |
589b5528 | 1567 | -moz-box-align: stretch; /* let the button shape grow vertically with the location bar */ |
71bac478 RK |
1568 | } |
1569 | ||
c0f6797e RK |
1570 | #forward-button > menupopup { |
1571 | margin-top: 1px !important; | |
319c6529 RK |
1572 | } |
1573 | ||
c0f6797e RK |
1574 | #forward-button > .toolbarbutton-icon { |
1575 | background-clip: padding-box !important; | |
1576 | /*mask: url(keyhole-forward-mask.svg#mask); XXX: this regresses twinopen */ | |
5401f433 | 1577 | /*clip-path: url(chrome://browser/content/browser.xul#keyhole-forward-clip-path) !important;*/ |
71bac478 RK |
1578 | } |
1579 | ||
c0f6797e | 1580 | #forward-button { |
aec5dfad RK |
1581 | -moz-margin-start: -4px !important; |
1582 | padding-left: 4px; | |
1583 | padding-right: 2px; | |
c0f6797e RK |
1584 | margin-top: 3px; |
1585 | margin-bottom: 3px; | |
1586 | border-radius: 0 10000px 10000px 0; | |
319c6529 RK |
1587 | } |
1588 | ||
c0f6797e RK |
1589 | #forward-button:-moz-locale-dir(rtl) { |
1590 | border-radius: 10000px 0 0 10000px; | |
8ad8bf83 RK |
1591 | } |
1592 | ||
2c62526c | 1593 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper:not([switchingtabs]) > #forward-button { |
aec5dfad | 1594 | transition: margin-left 150ms ease-out; |
2c62526c RK |
1595 | } |
1596 | ||
1597 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #forward-button[disabled] { | |
aec5dfad | 1598 | margin-left: -27px !important; |
2c62526c RK |
1599 | } |
1600 | ||
1601 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper:hover:not([switchingtabs]) > #forward-button[disabled] { | |
1602 | /* delay the hiding of the forward button when hovered to avoid accidental clicks on the url bar */ | |
1603 | transition-delay: 100s; | |
1604 | } | |
1605 | ||
1606 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper:not(:hover) > #forward-button[disabled] { | |
1607 | /* when not hovered anymore, trigger a new transition to hide the forward button immediately */ | |
aec5dfad | 1608 | margin-left: -27.01px !important; |
2c62526c RK |
1609 | } |
1610 | ||
c0f6797e RK |
1611 | #back-button { |
1612 | /* padding-top: 3px !important; | |
1613 | padding-bottom: 3px !important; | |
1614 | -moz-padding-start: 5px !important; | |
1615 | -moz-padding-end: 0 !important;*/ | |
1616 | position: relative; | |
1617 | z-index: 1; | |
1618 | border-radius: 10000px; | |
1619 | width: 30px; | |
1620 | height: 30px; | |
1621 | margin-top: -2px; | |
1622 | margin-bottom: -2px; | |
143c5409 RK |
1623 | } |
1624 | ||
c0f6797e | 1625 | #back-button:-moz-locale-dir(rtl) { |
319c6529 RK |
1626 | } |
1627 | ||
c0f6797e RK |
1628 | #back-button > menupopup { |
1629 | margin-top: -1px !important; | |
b36fc72e RK |
1630 | } |
1631 | ||
c0f6797e RK |
1632 | #back-button > .toolbarbutton-icon { |
1633 | border-radius: 10000px !important; | |
1634 | background-clip: padding-box !important; | |
1635 | /* background-color: hsla(210,25%,98%,.08) !important; | |
1636 | padding: 6px !important; | |
589b5528 RK |
1637 | border-style: none !important; |
1638 | box-shadow: 0 1px 0 0 hsla(210,4%,10%,.25), | |
1639 | 0 0 0 1px hsla(210,4%,10%,.25);*/ | |
1640 | transition-property: background-color, box-shadow !important; | |
c0f6797e | 1641 | transition-duration: 250ms !important; |
143c5409 RK |
1642 | } |
1643 | ||
c0f6797e | 1644 | #back-button:not([disabled="true"]):not([open="true"]):not(:active):hover > .toolbarbutton-icon { |
589b5528 | 1645 | /* background-color: hsla(210,4%,10%,.08) !important;*/ |
143c5409 RK |
1646 | } |
1647 | ||
c0f6797e RK |
1648 | #back-button:not([disabled="true"]):hover:active > .toolbarbutton-icon, |
1649 | #back-button[open="true"] > .toolbarbutton-icon { | |
1650 | /* background-color: hsla(210,4%,10%,.12) !important; | |
589b5528 RK |
1651 | box-shadow: 0 1px 0 0 hsla(210,4%,10%,.25), |
1652 | 0 0 0 1px hsla(210,4%,10%,.25), | |
1653 | 0 1px 0 0 hsla(210,80%,20%,.1) inset !important;*/ | |
143c5409 RK |
1654 | } |
1655 | ||
2c62526c | 1656 | #back-button:-moz-locale-dir(rtl) > .toolbarbutton-icon { |
c0f6797e | 1657 | transform: scaleX(-1); |
143c5409 | 1658 | } |
c0f6797e RK |
1659 | /* |
1660 | .unified-nav-back[_moz-menuactive]:-moz-locale-dir(ltr), | |
1661 | .unified-nav-forward[_moz-menuactive]:-moz-locale-dir(rtl) { | |
1662 | list-style-image: url("chrome://browser/skin/menu-back.png") !important; | |
6adbc9a6 RK |
1663 | } |
1664 | ||
c0f6797e RK |
1665 | .unified-nav-forward[_moz-menuactive]:-moz-locale-dir(ltr), |
1666 | .unified-nav-back[_moz-menuactive]:-moz-locale-dir(rtl) { | |
1667 | list-style-image: url("chrome://browser/skin/menu-forward.png") !important; | |
6adbc9a6 RK |
1668 | } |
1669 | ||
c0f6797e RK |
1670 | #home-button.bookmark-item { |
1671 | list-style-image: url("chrome://browser/skin/Toolbar.png"); | |
6adbc9a6 RK |
1672 | } |
1673 | ||
c0f6797e RK |
1674 | #main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > #bookmarks-menu-button > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon:-moz-system-metric(windows-classic):not(:-moz-lwtheme), |
1675 | #main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > toolbarpaletteitem > #bookmarks-menu-button > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon:-moz-system-metric(windows-classic):not(:-moz-lwtheme), | |
1676 | #main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > toolbarpaletteitem > toolbaritem > :-moz-any(@nestedButtons@):-moz-system-metric(windows-classic):not(:-moz-lwtheme), | |
1677 | #main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > toolbaritem > :-moz-any(@nestedButtons@):-moz-system-metric(windows-classic):not(:-moz-lwtheme), | |
1678 | #main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > toolbarpaletteitem > :-moz-any(@primaryToolbarButtons@):-moz-system-metric(windows-classic):not(:-moz-lwtheme), | |
1679 | #main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > :-moz-any(@primaryToolbarButtons@):-moz-system-metric(windows-classic):not(:-moz-lwtheme), | |
1680 | #home-button.bookmark-item:-moz-lwtheme-brighttext { | |
1681 | position: relative; | |
1682 | z-index: 1; | |
1683 | list-style-image: url("chrome://browser/skin/Toolbar-inverted.png"); | |
6adbc9a6 RK |
1684 | } |
1685 | ||
c0f6797e RK |
1686 | #main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > #sync-button[status="active"]:-moz-system-metric(windows-classic):not(:-moz-lwtheme), |
1687 | #main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > toolbarpaletteitem > #sync-button[status="active"]:-moz-system-metric(windows-classic):not(:-moz-lwtheme) { | |
1688 | list-style-image: url("chrome://browser/skin/syncProgress-toolbar-inverted.png"); | |
6adbc9a6 | 1689 | } |
c0f6797e | 1690 | */ |
6adbc9a6 | 1691 | |
c0f6797e RK |
1692 | #downloads-button > .toolbarbutton-icon { |
1693 | margin: 0; | |
6adbc9a6 RK |
1694 | } |
1695 | ||
9168a62c | 1696 | /* tabview menu item */ |
c0f6797e | 1697 | |
6adbc9a6 | 1698 | #menu_tabview { |
c0f6797e | 1699 | list-style-image: url("chrome://browser/skin/tabview/tabview.png"); |
6adbc9a6 RK |
1700 | -moz-image-region: rect(1px, 89px, 17px, 73px); |
1701 | } | |
1702 | ||
1703 | #menu_tabview[groups="0"] { | |
1704 | -moz-image-region: rect(1px, 17px, 17px, 1px); | |
1705 | } | |
1706 | ||
1707 | #menu_tabview[groups="1"] { | |
1708 | -moz-image-region: rect(1px, 35px, 17px, 19px); | |
1709 | } | |
1710 | ||
1711 | #menu_tabview[groups="2"] { | |
1712 | -moz-image-region: rect(1px, 53px, 17px, 37px); | |
1713 | } | |
1714 | ||
1715 | #menu_tabview[groups="3"] { | |
1716 | -moz-image-region: rect(1px, 71px, 17px, 55px); | |
1717 | } | |
1718 | ||
9168a62c RK |
1719 | /* undo close tab menu item */ |
1720 | #alltabs_undoCloseTab { | |
1721 | list-style-image: url(chrome://browser/skin/undoCloseTab.png); | |
1722 | } | |
1723 | ||
1724 | @media (min-resolution: 1.25dppx) { | |
1725 | #alltabs_undoCloseTab { | |
1726 | list-style-image: url(chrome://browser/skin/undoCloseTab@2x.png); | |
1727 | } | |
1728 | #alltabs_undoCloseTab > .toolbarbutton-icon { | |
1729 | width: 16px; | |
1730 | } | |
1731 | } | |
1732 | ||
5401f433 RK |
1733 | /* zoom control text (reset) button special case: */ |
1734 | ||
1735 | #nav-bar #zoom-reset-button > .toolbarbutton-text { | |
1736 | /* To make this line up with the icons, it needs the same height (18px) + | |
1737 | * padding (2 * 2px) + border (2 * 1px), but as a minimum because otherwise | |
1738 | * increase in text sizes would break things... | |
1739 | */ | |
1740 | min-height: 20px; | |
1741 | } | |
1742 | ||
319c6529 RK |
1743 | /* ::::: fullscreen window controls ::::: */ |
1744 | ||
8d7ef0d9 | 1745 | #window-controls { |
ab799a7a RK |
1746 | -moz-margin-start: 4px; |
1747 | } | |
1748 | ||
319c6529 RK |
1749 | #minimize-button, |
1750 | #restore-button, | |
1751 | #close-button { | |
c0f6797e RK |
1752 | /* list-style-image: url("chrome://global/skin/icons/windowControls.png"); |
1753 | padding: 0; */ | |
319c6529 RK |
1754 | } |
1755 | ||
1756 | #minimize-button { | |
1757 | list-style-image: url("chrome://navigator/skin/icons/win-minimize.gif"); | |
1758 | } | |
1759 | ||
1760 | #minimize-button:hover { | |
1761 | list-style-image: url("chrome://navigator/skin/icons/win-minimize-hover.gif"); | |
1762 | } | |
1763 | ||
1764 | #restore-button { | |
1765 | list-style-image: url("chrome://navigator/skin/icons/win-restore.gif"); | |
1766 | } | |
1767 | ||
1768 | #restore-button:hover { | |
1769 | list-style-image: url("chrome://navigator/skin/icons/win-restore-hover.gif"); | |
1770 | } | |
1771 | ||
1772 | #close-button { | |
1773 | list-style-image: url("chrome://navigator/skin/icons/win-close.gif"); | |
1774 | } | |
1775 | ||
1776 | #close-button:hover { | |
1777 | list-style-image: url("chrome://navigator/skin/icons/win-close-hover.gif"); | |
1778 | } | |
1779 | ||
1780 | /* ::::: Location Bar ::::: */ | |
1781 | ||
319c6529 RK |
1782 | #urlbar, |
1783 | .searchbar-textbox { | |
1784 | border-radius: 5px; | |
aec5dfad | 1785 | margin: 2px 0; |
319c6529 RK |
1786 | -moz-margin-start: 3px; |
1787 | } | |
1788 | ||
ffce2402 | 1789 | #urlbar { |
f0071a71 RK |
1790 | /* make color as light as possible to deal with dark non-domain parts */ |
1791 | color: #FFBFFF; | |
ffce2402 RK |
1792 | } |
1793 | ||
319c6529 RK |
1794 | #urlbar:-moz-lwtheme, |
1795 | .searchbar-textbox:-moz-lwtheme { | |
1796 | /* background-color: rgba(255,255,255,.8); | |
1797 | @navbarTextboxCustomBorder@ | |
1798 | color: black; */ | |
1799 | } | |
1800 | ||
c0f6797e RK |
1801 | #urlbar:-moz-lwtheme:hover:not([focused]):not([readonly]), |
1802 | .searchbar-textbox:-moz-lwtheme:hover:not([focused]) { | |
1803 | /* background-color: rgba(255,255,255,.9);*/ | |
1804 | } | |
1805 | ||
1806 | #urlbar:-moz-lwtheme[focused]:not([readonly]), | |
1807 | .searchbar-textbox:-moz-lwtheme[focused] { | |
1808 | /* background-color: white;*/ | |
1809 | } | |
1810 | ||
2c62526c | 1811 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar { |
2299146f RK |
1812 | /* -moz-border-start: none; |
1813 | margin-left: 0;*/ | |
2c62526c RK |
1814 | } |
1815 | ||
1816 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar:-moz-locale-dir(ltr) { | |
1817 | /* border-top-left-radius: 0; | |
1818 | border-bottom-left-radius: 0; */ | |
1819 | } | |
1820 | ||
1821 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar:-moz-locale-dir(rtl) { | |
1822 | /* border-top-right-radius: 0; | |
1823 | border-bottom-right-radius: 0; */ | |
1824 | } | |
1825 | ||
1826 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper { | |
1827 | /* clip-path: url("chrome://browser/content/browser.xul#urlbar-back-button-clip-path");*/ | |
aec5dfad | 1828 | /* -moz-margin-start: -5px; */ |
2c62526c RK |
1829 | } |
1830 | ||
fff8097b RK |
1831 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper:-moz-locale-dir(rtl), |
1832 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar:-moz-locale-dir(rtl) { | |
2c62526c | 1833 | /* let urlbar-back-button-clip-path clip the urlbar's right side for RTL */ |
71a617ff | 1834 | transform: scaleX(-1); |
8ad8bf83 RK |
1835 | } |
1836 | ||
2c62526c RK |
1837 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper:-moz-locale-dir(rtl) { |
1838 | -moz-box-direction: reverse; | |
1839 | } | |
1840 | ||
a7145e95 RK |
1841 | html|*.urlbar-input:-moz-lwtheme::-moz-placeholder, |
1842 | .searchbar-textbox:-moz-lwtheme > .autocomplete-textbox-container > .textbox-input-box > html|*.textbox-input::-moz-placeholder { | |
319c6529 RK |
1843 | color: #E7ADE7; |
1844 | } | |
1845 | ||
319c6529 RK |
1846 | #urlbar-container { |
1847 | -moz-box-orient: horizontal; | |
1848 | -moz-box-align: stretch; | |
1849 | } | |
1850 | ||
9abeb12c RK |
1851 | .urlbar-textbox-container { |
1852 | -moz-box-align: stretch; | |
1853 | } | |
1854 | ||
a40f6a79 RK |
1855 | .urlbar-input-box { |
1856 | -moz-margin-start: 0; | |
1857 | } | |
1858 | ||
319c6529 | 1859 | #urlbar-icons { |
319c6529 RK |
1860 | -moz-box-align: center; |
1861 | } | |
1862 | ||
1863 | .urlbar-icon { | |
b8384c33 | 1864 | padding: 0 2px; |
ffce2402 RK |
1865 | } |
1866 | ||
1867 | .searchbar-engine-button, | |
1868 | .search-go-container { | |
4b686546 RK |
1869 | padding: 2px; |
1870 | } | |
1871 | ||
1872 | .search-go-container > .search-go-button { | |
1873 | padding: 0; | |
319c6529 RK |
1874 | } |
1875 | ||
ffce2402 RK |
1876 | .urlbar-icon:hover { |
1877 | } | |
1878 | ||
1879 | .urlbar-icon[open="true"], | |
1880 | .urlbar-icon:hover:active { | |
1881 | } | |
1882 | ||
319c6529 RK |
1883 | #urlbar-search-splitter { |
1884 | min-width: 6px; | |
1885 | -moz-margin-start: -3px; | |
1886 | border: none; | |
1887 | background: transparent; | |
1888 | } | |
1889 | ||
f0071a71 | 1890 | #urlbar-search-splitter + #urlbar-container > #urlbar, |
319c6529 RK |
1891 | #urlbar-search-splitter + #search-container > #searchbar > .searchbar-textbox { |
1892 | -moz-margin-start: 0; | |
1893 | } | |
1894 | ||
e20c83c3 RK |
1895 | #urlbar-display-box { |
1896 | } | |
1897 | ||
8922acc9 | 1898 | .urlbar-display { |
319c6529 RK |
1899 | -moz-border-end: 1px solid #9C9CFF; |
1900 | -moz-margin-end: 3px; | |
ab799a7a RK |
1901 | margin-top: 0; |
1902 | margin-bottom: 0; | |
a40f6a79 | 1903 | -moz-margin-start: 0; |
ab799a7a RK |
1904 | color: #8050B0; |
1905 | } | |
1906 | ||
26125509 RK |
1907 | #search-container { |
1908 | min-width: calc(54px + 11ch); | |
1909 | } | |
1910 | ||
319c6529 RK |
1911 | /* identity box */ |
1912 | ||
1913 | #identity-box { | |
319c6529 | 1914 | border-radius: 2px; |
85cfb236 | 1915 | font-size: .9em; |
319c6529 RK |
1916 | } |
1917 | ||
e20c83c3 RK |
1918 | #identity-box:-moz-locale-dir(ltr) { |
1919 | /* border-top-left-radius: 1.5px; | |
1920 | border-bottom-left-radius: 1.5px;*/ | |
1921 | } | |
1922 | ||
1923 | #identity-box:-moz-locale-dir(rtl) { | |
1924 | /* border-top-right-radius: 1.5px; | |
1925 | border-bottom-right-radius: 1.5px;*/ | |
1926 | } | |
1927 | ||
8ad8bf83 | 1928 | #notification-popup-box:not([hidden]) + #identity-box { |
5517da5a | 1929 | -moz-padding-start: 10px !important; |
8ad8bf83 RK |
1930 | border-radius: 0; |
1931 | } | |
1932 | ||
fff8097b | 1933 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar > #identity-box { |
d15d08bf | 1934 | /* border-radius: 0; */ |
2a5b7882 RK |
1935 | -moz-padding-start: 2px; |
1936 | -moz-padding-end: 2px; | |
1937 | -moz-margin-end: 1px; | |
8ad8bf83 RK |
1938 | } |
1939 | ||
2c62526c RK |
1940 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper:not([switchingtabs]) > #urlbar > #identity-box { |
1941 | transition: padding-left, padding-right; | |
1942 | } | |
1943 | ||
2c62526c | 1944 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #forward-button[disabled] + #urlbar > |
26125509 | 1945 | #notification-popup-box[hidden] + #identity-box:-moz-locale-dir(ltr) { |
2a5b7882 | 1946 | padding-left: 2px; |
8ad8bf83 RK |
1947 | } |
1948 | ||
2c62526c | 1949 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #forward-button[disabled] + #urlbar > |
26125509 | 1950 | #notification-popup-box[hidden] + #identity-box:-moz-locale-dir(rtl) { |
2a5b7882 | 1951 | padding-right: 2px; |
8ad8bf83 RK |
1952 | } |
1953 | ||
2c62526c | 1954 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper:hover:not([switchingtabs]) > #forward-button[disabled] + #urlbar > |
26125509 | 1955 | #notification-popup-box[hidden] + #identity-box { |
8ad8bf83 | 1956 | /* forward button hiding is delayed when hovered */ |
71a617ff | 1957 | transition-delay: 100s; |
8ad8bf83 RK |
1958 | } |
1959 | ||
2c62526c | 1960 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper:not(:hover) > #forward-button[disabled] + #urlbar > |
26125509 | 1961 | #notification-popup-box[hidden] + #identity-box:-moz-locale-dir(ltr) { |
8ad8bf83 | 1962 | /* when not hovered anymore, trigger a new non-delayed transition to react to the forward button hiding */ |
2a5b7882 | 1963 | padding-left: 2.01px; |
8ad8bf83 RK |
1964 | } |
1965 | ||
2c62526c | 1966 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper:not(:hover) > #forward-button[disabled] + #urlbar > |
26125509 | 1967 | #notification-popup-box[hidden] + #identity-box:-moz-locale-dir(rtl) { |
8ad8bf83 | 1968 | /* when not hovered anymore, trigger a new non-delayed transition to react to the forward button hiding */ |
2a5b7882 | 1969 | padding-right: 2.01px; |
8ad8bf83 RK |
1970 | } |
1971 | ||
56859d76 RK |
1972 | #urlbar[pageproxystate="valid"] > #identity-box.chromeUI, |
1973 | #urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity { | |
a40f6a79 | 1974 | -moz-margin-end: 3px; |
319c6529 RK |
1975 | } |
1976 | ||
56859d76 | 1977 | #urlbar[pageproxystate="valid"] > #identity-box.chromeUI:-moz-locale-dir(ltr), |
37953ab4 | 1978 | #urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity:-moz-locale-dir(ltr) { |
a40f6a79 RK |
1979 | border-top-right-radius: 0; |
1980 | border-bottom-right-radius: 0; | |
319c6529 RK |
1981 | } |
1982 | ||
56859d76 | 1983 | #urlbar[pageproxystate="valid"] > #identity-box.chromeUI:-moz-locale-dir(rtl), |
37953ab4 | 1984 | #urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity:-moz-locale-dir(rtl) { |
a40f6a79 RK |
1985 | border-top-left-radius: 0; |
1986 | border-bottom-left-radius: 0; | |
319c6529 RK |
1987 | } |
1988 | ||
a40f6a79 RK |
1989 | #identity-box.verifiedIdentity:not(:-moz-lwtheme) { |
1990 | background-color: #000000; | |
319c6529 RK |
1991 | } |
1992 | ||
1993 | #identity-box:-moz-focusring { | |
1994 | outline: 1px dotted #008484; | |
f993773d | 1995 | outline-offset: -1px; |
319c6529 RK |
1996 | } |
1997 | ||
1998 | #identity-box.verifiedDomain:-moz-focusring, | |
1999 | #identity-box.verifiedIdentity:-moz-focusring { | |
2000 | outline-color: #000000; | |
2001 | } | |
2002 | ||
2003 | #identity-icon-labels { | |
2004 | -moz-margin-start: 1px; | |
2005 | -moz-margin-end: 3px; | |
319c6529 RK |
2006 | } |
2007 | ||
2008 | /* Location bar dropmarker */ | |
2009 | ||
38cfeb47 | 2010 | .urlbar-history-dropmarker:not(:hover):not([open="true"]) { |
319c6529 | 2011 | background-color: transparent; |
319c6529 RK |
2012 | } |
2013 | ||
00f971bc RK |
2014 | #urlbar-container[combined="true"] > #urlbar > .urlbar-history-dropmarker, |
2015 | #urlbar-wrapper > #urlbar > .urlbar-history-dropmarker { | |
38cfeb47 RK |
2016 | border: none; |
2017 | border-radius: 0px; | |
319c6529 RK |
2018 | } |
2019 | ||
ffce2402 RK |
2020 | .urlbar-history-dropmarker:hover { |
2021 | } | |
2022 | ||
2023 | .urlbar-history-dropmarker:hover:active, | |
2024 | .urlbar-history-dropmarker[open="true"] { | |
2025 | } | |
2026 | ||
319c6529 RK |
2027 | /* page proxy icon */ |
2028 | ||
e7c8bab1 RK |
2029 | /* === BEGIN identity-block.inc.css === */ |
2030 | ||
2031 | #urlbar[pageproxystate="valid"] > #identity-box.chromeUI { | |
2032 | /* Default theme does different color per channel, we can't as they do it build-time. */ | |
2033 | color: #9C9CFF; | |
2034 | -moz-border-end: 1px solid #9C9CFF; | |
2035 | } | |
2036 | ||
2037 | #urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity { | |
2038 | color: #008484; | |
2039 | -moz-border-end: 1px solid #008484; | |
2040 | } | |
2041 | ||
2042 | #urlbar[pageproxystate="valid"] > #identity-box.chromeUI, | |
2043 | #urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity { | |
2044 | background-position: right; | |
2045 | background-size: 1px; | |
2046 | background-repeat: no-repeat; | |
2047 | } | |
2048 | ||
2049 | /* page proxy icon */ | |
2050 | ||
4d58ff64 | 2051 | #page-proxy-favicon { |
319c6529 RK |
2052 | width: 16px; |
2053 | height: 16px; | |
a40f6a79 | 2054 | list-style-image: url("chrome://browser/skin/identity-icons-generic.png"); |
00f971bc | 2055 | margin: 2px; |
e7c8bab1 RK |
2056 | } |
2057 | ||
2058 | .chromeUI > #page-proxy-favicon[pageproxystate="valid"] { | |
2059 | list-style-image: url("chrome://branding/content/identity-icons-brand.png"); | |
319c6529 RK |
2060 | } |
2061 | ||
2a5b7882 | 2062 | .verifiedDomain > #page-proxy-favicon[pageproxystate="valid"] { |
a40f6a79 RK |
2063 | list-style-image: url("chrome://browser/skin/identity-icons-https.png"); |
2064 | } | |
2065 | ||
2a5b7882 | 2066 | .verifiedIdentity > #page-proxy-favicon[pageproxystate="valid"] { |
a40f6a79 RK |
2067 | list-style-image: url("chrome://browser/skin/identity-icons-https-ev.png"); |
2068 | } | |
2069 | ||
56ab361a RK |
2070 | .mixedActiveContent > #page-proxy-favicon[pageproxystate="valid"] { |
2071 | list-style-image: url("chrome://browser/skin/identity-icons-https-mixed-active.png"); | |
2072 | } | |
2073 | ||
e7c8bab1 RK |
2074 | .mixedDisplayContent > #page-proxy-favicon[pageproxystate="valid"] { |
2075 | list-style-image: url("chrome://browser/skin/identity-icons-https-mixed-display.png"); | |
2076 | } | |
2077 | ||
2078 | .mixedDisplayContentLoadedActiveBlocked > #page-proxy-favicon[pageproxystate="valid"] { | |
2079 | list-style-image: url("chrome://browser/skin/identity-icons-https-mixed-display.png"); | |
2080 | } | |
2081 | ||
2082 | #page-proxy-favicon[pageproxystate="invalid"] { | |
2083 | opacity: 0.3; | |
2084 | } | |
2085 | ||
2086 | #identity-popup.chromeUI > #identity-popup-container > #identity-popup-icon { | |
2087 | list-style-image: url("chrome://branding/content/icon64.png"); | |
2088 | } | |
2089 | ||
2090 | #identity-popup-brandName { | |
2091 | font-weight: bold; | |
2092 | font-size: 1.25em; | |
2093 | margin-top: .5em; | |
2094 | margin-bottom: .5em; | |
2095 | } | |
2096 | ||
2097 | #identity-popup-content-box { | |
2098 | max-width: 50ch; | |
2099 | } | |
2100 | ||
2101 | /* === END identity-block.inc.css === */ | |
2102 | ||
2103 | #page-proxy-favicon { | |
2104 | -moz-image-region: rect(0, 16px, 16px, 0); | |
2105 | } | |
2106 | ||
3b1da406 | 2107 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar > #identity-box > #page-proxy-favicon { |
c0f6797e RK |
2108 | /* -moz-margin-end: 1px;*/ |
2109 | } | |
2110 | ||
2a5b7882 | 2111 | #identity-box:hover > #page-proxy-favicon { |
a40f6a79 RK |
2112 | -moz-image-region: rect(0, 32px, 16px, 16px); |
2113 | } | |
2114 | ||
2a5b7882 RK |
2115 | #identity-box:hover:active > #page-proxy-favicon, |
2116 | #identity-box[open=true] > #page-proxy-favicon { | |
a40f6a79 | 2117 | -moz-image-region: rect(0, 48px, 16px, 32px); |
acb0e9b8 | 2118 | } |
2119 | ||
2a5b7882 RK |
2120 | #identity-box:hover { |
2121 | background-color: #FFCF00; | |
7092015d | 2122 | color: #000000; |
2a5b7882 RK |
2123 | } |
2124 | ||
2125 | #identity-box:hover:active, | |
2126 | #identity-box[open=true] { | |
2127 | background-color: #FF9F00; | |
7092015d | 2128 | color: #000000; |
2a5b7882 RK |
2129 | } |
2130 | ||
56859d76 RK |
2131 | #urlbar[pageproxystate="valid"] > #identity-box.chromeUI:hover, |
2132 | #urlbar[pageproxystate="valid"] > #identity-box.chromeUI:hover:active, | |
2133 | #urlbar[pageproxystate="valid"] > #identity-box.chromeUI[open=true] { | |
2134 | background-color: #9C9CFF; | |
2135 | color: #000000; | |
2136 | } | |
2137 | ||
387e6560 RK |
2138 | #urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity:hover, |
2139 | #urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity:hover:active, | |
2140 | #urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity[open=true] { | |
2a5b7882 RK |
2141 | background-color: #008484; |
2142 | color: #000000; | |
2143 | } | |
2144 | ||
319c6529 RK |
2145 | /* autocomplete */ |
2146 | ||
319c6529 RK |
2147 | #treecolAutoCompleteImage { |
2148 | max-width: 36px; | |
2149 | } | |
acb0e9b8 | 2150 | |
319c6529 RK |
2151 | .ac-result-type-bookmark, |
2152 | .autocomplete-treebody::-moz-tree-image(bookmark, treecolAutoCompleteImage) { | |
71bac478 | 2153 | list-style-image: url("chrome://browser/skin/places/bookmark.png"); |
319c6529 | 2154 | -moz-image-region: rect(0px 16px 16px 0px); |
c1f7cc84 | 2155 | width: 16px; |
319c6529 | 2156 | height: 16px; |
acb0e9b8 | 2157 | } |
2158 | ||
c0f6797e RK |
2159 | richlistitem[selected="true"][current="true"] > .ac-title-box > .ac-result-type-bookmark, |
2160 | .autocomplete-treebody::-moz-tree-image(selected, current, bookmark, treecolAutoCompleteImage) { | |
2161 | /* -moz-image-region: rect(0px 48px 16px 32px);*/ | |
2162 | } | |
2163 | ||
319c6529 | 2164 | .ac-result-type-keyword, |
8922acc9 RK |
2165 | .autocomplete-treebody::-moz-tree-image(keyword, treecolAutoCompleteImage), |
2166 | richlistitem[type~="action"][actiontype="searchengine"] > .ac-title-box > .ac-site-icon { | |
2167 | list-style-image: url("chrome://global/skin/icons/autocomplete-search.svg#search-icon"); | |
acb0e9b8 | 2168 | width: 16px; |
2169 | height: 16px; | |
2170 | } | |
2171 | ||
8922acc9 RK |
2172 | .ac-result-type-keyword[selected="true"], |
2173 | .autocomplete-treebody::-moz-tree-image(keyword, treecolAutoCompleteImage, selected), | |
2174 | richlistitem[type~="action"][actiontype="searchengine"][selected="true"] > .ac-title-box > .ac-site-icon { | |
2175 | list-style-image: url("chrome://global/skin/icons/autocomplete-search.svg#search-icon-inverted"); | |
2176 | } | |
2177 | ||
319c6529 RK |
2178 | .ac-result-type-tag, |
2179 | .autocomplete-treebody::-moz-tree-image(tag, treecolAutoCompleteImage) { | |
8da9da4e | 2180 | list-style-image: url("chrome://mozapps/skin/places/tagContainerIcon.png"); |
c1f7cc84 | 2181 | width: 16px; |
319c6529 RK |
2182 | height: 16px; |
2183 | } | |
acb0e9b8 | 2184 | |
319c6529 | 2185 | .ac-comment { |
c0f6797e | 2186 | font-size: 1.06em; |
acb0e9b8 | 2187 | } |
319c6529 RK |
2188 | |
2189 | .ac-extra > .ac-comment { | |
c0f6797e | 2190 | font-size: 1em; |
acb0e9b8 | 2191 | } |
319c6529 RK |
2192 | |
2193 | .ac-url-text, | |
2194 | .ac-action-text { | |
c0f6797e | 2195 | font-size: 1em; |
319c6529 | 2196 | color: #9C9CFF; |
acb0e9b8 | 2197 | } |
319c6529 RK |
2198 | |
2199 | richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action-icon { | |
2200 | list-style-image: url("chrome://browser/skin/actionicon-tab.png"); | |
85cfb236 RK |
2201 | -moz-image-region: rect(0, 16px, 16px, 0); |
2202 | padding: 0 3px; | |
2203 | } | |
2204 | ||
2205 | richlistitem[type~="action"][actiontype="switchtab"][selected="true"] > .ac-url-box > .ac-action-icon { | |
2206 | -moz-image-region: rect(16px, 16px, 32px, 0); | |
acb0e9b8 | 2207 | } |
2208 | ||
319c6529 RK |
2209 | .autocomplete-treebody::-moz-tree-cell-text(treecolAutoCompleteComment) { |
2210 | color: #8050B0; | |
2211 | } | |
acb0e9b8 | 2212 | |
319c6529 RK |
2213 | .ac-comment[selected="true"], |
2214 | .ac-url-text[selected="true"], | |
2215 | .ac-action-text[selected="true"] { | |
2216 | color: inherit !important; | |
acb0e9b8 | 2217 | } |
2218 | ||
c1f7cc84 RK |
2219 | .autocomplete-treebody::-moz-tree-cell-text(suggesthint, treecolAutoCompleteComment), |
2220 | .autocomplete-treebody::-moz-tree-cell-text(suggestfirst, treecolAutoCompleteComment) | |
319c6529 RK |
2221 | { |
2222 | color: #8050B0; | |
2223 | font-size: smaller; | |
acb0e9b8 | 2224 | } |
319c6529 RK |
2225 | |
2226 | .autocomplete-treebody::-moz-tree-cell(suggesthint) { | |
2227 | border-top: 1px solid #9C9CFF; | |
acb0e9b8 | 2228 | } |
2229 | ||
319c6529 RK |
2230 | /* combined go/reload/stop button in location bar */ |
2231 | ||
2232 | #urlbar > toolbarbutton { | |
9abeb12c | 2233 | -moz-margin-start: 0; |
ffce2402 | 2234 | padding: 0 2px; |
319c6529 RK |
2235 | background-origin: border-box; |
2236 | border: none; | |
c0f6797e | 2237 | list-style-image: url("chrome://browser/skin/reload-stop-go.png"); |
9abeb12c RK |
2238 | -moz-border-start: 1px solid #9C9CFF; |
2239 | } | |
2240 | ||
2241 | #urlbar:-moz-locale-dir(ltr) > toolbarbutton { | |
38cfeb47 RK |
2242 | border-top-left-radius: 0px; |
2243 | border-bottom-left-radius: 0px; | |
acb0e9b8 | 2244 | } |
acb0e9b8 | 2245 | |
9abeb12c | 2246 | #urlbar:-moz-locale-dir(rtl) > toolbarbutton { |
38cfeb47 RK |
2247 | border-top-right-radius: 0px; |
2248 | border-bottom-right-radius: 0px; | |
9abeb12c RK |
2249 | } |
2250 | ||
46e71434 | 2251 | #urlbar > toolbarbutton:not([disabled=true]):active:hover, |
dce90fef RK |
2252 | #urlbar-reload-button:not(:hover) { |
2253 | -moz-border-start-style: none; | |
714b11f6 | 2254 | -moz-padding-start: 3px; |
dce90fef RK |
2255 | } |
2256 | ||
c0f6797e RK |
2257 | #urlbar-reload-button { |
2258 | -moz-image-region: rect(0px, 14px, 14px, 0px); | |
acb0e9b8 | 2259 | } |
2260 | ||
46e71434 | 2261 | #urlbar-reload-button[disabled=true] { |
c0f6797e | 2262 | -moz-image-region: rect(28px, 14px, 42px, 0px); |
acb0e9b8 | 2263 | } |
2264 | ||
46e71434 | 2265 | #urlbar-reload-button:not([disabled=true]):hover { |
c0f6797e | 2266 | -moz-image-region: rect(14px, 14px, 28px, 0px); |
ffce2402 RK |
2267 | } |
2268 | ||
c0f6797e RK |
2269 | #urlbar-reload-button:-moz-locale-dir(rtl) > .toolbarbutton-icon { |
2270 | transform: scaleX(-1); | |
acb0e9b8 | 2271 | } |
2272 | ||
c0f6797e RK |
2273 | #urlbar-go-button { |
2274 | -moz-image-region: rect(0, 42px, 14px, 28px); | |
38cfeb47 RK |
2275 | } |
2276 | ||
fff8097b | 2277 | #urlbar-go-button:hover { |
c0f6797e | 2278 | -moz-image-region: rect(14px, 42px, 28px, 28px); |
acb0e9b8 | 2279 | } |
2280 | ||
c0f6797e RK |
2281 | #urlbar-go-button:-moz-locale-dir(rtl) > .toolbarbutton-icon { |
2282 | transform: scaleX(-1); | |
acb0e9b8 | 2283 | } |
319c6529 RK |
2284 | |
2285 | #urlbar-stop-button { | |
ffce2402 | 2286 | -moz-image-region: rect(0px, 28px, 14px, 14px); |
acb0e9b8 | 2287 | } |
319c6529 RK |
2288 | |
2289 | #urlbar-stop-button:hover { | |
ffce2402 | 2290 | -moz-image-region: rect(14px, 28px, 28px, 14px); |
acb0e9b8 | 2291 | } |
2292 | ||
319c6529 RK |
2293 | /* popup blocker button */ |
2294 | ||
2295 | #page-report-button { | |
2296 | list-style-image: url("chrome://browser/skin/urlbar-popup-blocked.png"); | |
2297 | -moz-image-region: rect(0, 16px, 16px, 0); | |
acb0e9b8 | 2298 | } |
319c6529 | 2299 | |
71bac478 | 2300 | #page-report-button:hover , |
319c6529 RK |
2301 | #page-report-button:hover:active, |
2302 | #page-report-button[open="true"] { | |
71bac478 | 2303 | -moz-image-region: rect(0, 32px, 16px, 16px); |
acb0e9b8 | 2304 | } |
2305 | ||
c4460289 RK |
2306 | /* social share panel */ |
2307 | ||
2308 | #social-share-panel > iframe { | |
2309 | /* background: linear-gradient(to bottom, #f0f4f7, #fafbfc);*/ | |
2310 | width: 300px; | |
2311 | height: 150px; | |
2312 | } | |
2313 | ||
c4460289 RK |
2314 | .social-share-toolbar { |
2315 | border-right: 1px solid #9C9CFF; | |
2316 | /* background-color: #000000; */ | |
2317 | } | |
2318 | ||
2319 | #social-share-provider-buttons { | |
2320 | padding: 6px; | |
2321 | } | |
2322 | ||
2323 | #social-share-provider-buttons > .share-provider-button { | |
2324 | -moz-appearance: none; | |
2325 | padding: 5px; | |
2326 | margin: 1px; | |
2327 | border: none; | |
2328 | background: none; | |
2329 | border-radius: 2px; | |
2330 | } | |
2331 | ||
2332 | #social-share-provider-buttons > .share-provider-button[checked="true"]:not([disabled="true"]), | |
2333 | #social-share-provider-buttons > .share-provider-button:hover, | |
2334 | #social-share-provider-buttons > .share-provider-button:active { | |
2335 | padding: 4px; | |
2336 | } | |
2337 | ||
2338 | #social-share-provider-buttons > .share-provider-button[checked="true"]:not([disabled="true"]) { | |
2339 | } | |
2340 | ||
2341 | #social-share-provider-buttons > .share-provider-button > .toolbarbutton-text { | |
2342 | display: none; | |
2343 | } | |
2344 | #social-share-provider-buttons > .share-provider-button > .toolbarbutton-icon { | |
2345 | width: 16px; | |
2346 | min-height: 16px; | |
2347 | max-height: 16px; | |
2348 | } | |
2349 | ||
5a199ba1 RK |
2350 | toolbarbutton[type="socialmark"] > .toolbarbutton-icon { |
2351 | width: auto; | |
2352 | height: auto; | |
2353 | max-width: 32px; | |
2354 | max-height: 24px; | |
2355 | } | |
2356 | ||
c4460289 RK |
2357 | /* fixup corners for share panel */ |
2358 | .social-panel > .social-panel-frame { | |
2359 | border-radius: inherit; | |
2360 | } | |
2361 | ||
2362 | #social-share-panel { | |
2363 | max-height: 600px; | |
2364 | min-height: 100px; | |
2365 | max-width: 800px; | |
2366 | min-width: 300px; | |
2367 | } | |
2368 | ||
2369 | .social-share-frame { | |
2370 | /* background: linear-gradient(to bottom, #f0f4f7, #fafbfc); */ | |
2371 | width: 330px; | |
2372 | height: 150px; | |
c4460289 RK |
2373 | /* we resize our panels dynamically, make it look nice */ |
2374 | transition: height 100ms ease-out, width 100ms ease-out; | |
2375 | } | |
2376 | ||
e2734cc7 RK |
2377 | .social-share-frame:-moz-locale-dir(ltr) { |
2378 | border-top-left-radius: 0; | |
2379 | border-bottom-left-radius: 0; | |
2380 | border-top-right-radius: inherit; | |
2381 | border-bottom-right-radius: inherit; | |
2382 | } | |
2383 | ||
2384 | .social-share-frame:-moz-locale-dir(rtl) { | |
c4460289 RK |
2385 | border-top-left-radius: inherit; |
2386 | border-bottom-left-radius: inherit; | |
e2734cc7 RK |
2387 | border-top-right-radius: 0; |
2388 | border-bottom-right-radius: 0; | |
c4460289 RK |
2389 | } |
2390 | ||
e2734cc7 RK |
2391 | #social-share-panel > .social-share-toolbar:-moz-locale-dir(ltr) { |
2392 | border-top-left-radius: inherit; | |
2393 | border-bottom-left-radius: inherit; | |
2394 | } | |
2395 | ||
2396 | #social-share-panel > .social-share-toolbar:-moz-locale-dir(rtl) { | |
2397 | border-top-right-radius: inherit; | |
2398 | border-bottom-right-radius: inherit; | |
2399 | } | |
2400 | ||
2401 | #social-share-provider-buttons:-moz-locale-dir(ltr) { | |
c4460289 RK |
2402 | border-top-left-radius: inherit; |
2403 | border-bottom-left-radius: inherit; | |
2404 | } | |
2405 | ||
e2734cc7 RK |
2406 | #social-share-provider-buttons:-moz-locale-dir(rtl) { |
2407 | border-top-right-radius: inherit; | |
2408 | border-bottom-right-radius: inherit; | |
2409 | } | |
2410 | ||
889649fd RK |
2411 | /* social recommending panel */ |
2412 | ||
a6757852 | 2413 | #social-mark-button { |
d7cfd768 | 2414 | -moz-image-region: rect(0, 16px, 16px, 0); |
889649fd RK |
2415 | } |
2416 | ||
c0f6797e | 2417 | /* bookmarks menu-button */ |
319c6529 | 2418 | |
c0f6797e RK |
2419 | #bookmarks-menu-button.bookmark-item { |
2420 | list-style-image: url("chrome://browser/skin/places/bookmark.png"); | |
2421 | -moz-image-region: rect(0px 16px 16px 0px); | |
acb0e9b8 | 2422 | } |
319c6529 | 2423 | |
c0f6797e RK |
2424 | #bookmarks-menu-button.bookmark-item[starred] { |
2425 | -moz-image-region: rect(0px 32px 16px 16px); | |
acb0e9b8 | 2426 | } |
319c6529 | 2427 | |
c0f6797e RK |
2428 | #bookmarks-menu-button.bookmark-item > .toolbarbutton-menubutton-button > .toolbarbutton-icon { |
2429 | -moz-margin-start: 5px; | |
acb0e9b8 | 2430 | } |
2431 | ||
c0f6797e RK |
2432 | #bookmarks-menu-button[cui-areatype="toolbar"]:not(.bookmark-item):not([overflowedItem=true]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon { |
2433 | padding-top: 2px; | |
2434 | padding-bottom: 2px; | |
71bac478 RK |
2435 | } |
2436 | ||
c0f6797e RK |
2437 | #BMB_bookmarksPopup[side="top"], |
2438 | #BMB_bookmarksPopup[side="bottom"] { | |
2439 | margin-left: -20px; | |
2440 | margin-right: -20px; | |
71bac478 RK |
2441 | } |
2442 | ||
c0f6797e RK |
2443 | #BMB_bookmarksPopup[side="left"], |
2444 | #BMB_bookmarksPopup[side="right"] { | |
2445 | margin-top: -20px; | |
2446 | margin-bottom: -20px; | |
acb0e9b8 | 2447 | } |
319c6529 RK |
2448 | |
2449 | /* bookmarking panel */ | |
c0f6797e | 2450 | |
319c6529 RK |
2451 | #editBookmarkPanelStarIcon { |
2452 | list-style-image: url("chrome://browser/skin/places/starred48.png"); | |
2453 | width: 48px; | |
2454 | height: 48px; | |
acb0e9b8 | 2455 | } |
319c6529 RK |
2456 | |
2457 | #editBookmarkPanelStarIcon[unstarred] { | |
2458 | list-style-image: url("chrome://browser/skin/places/unstarred48.png"); | |
acb0e9b8 | 2459 | } |
2460 | ||
319c6529 RK |
2461 | #editBookmarkPanelTitle { |
2462 | font-size: 130%; | |
acb0e9b8 | 2463 | } |
319c6529 RK |
2464 | |
2465 | #editBookmarkPanelHeader, | |
2466 | #editBookmarkPanelContent { | |
2467 | margin-bottom: .5em; | |
acb0e9b8 | 2468 | } |
319c6529 RK |
2469 | |
2470 | /* Implements editBookmarkPanel resizing on folderTree un-collapse. */ | |
2471 | #editBMPanel_folderTree { | |
2472 | min-width: 27em; | |
acb0e9b8 | 2473 | } |
2474 | ||
f993773d | 2475 | .panel-promo-box { |
46e71434 RK |
2476 | margin: 5px 0 -6px; |
2477 | padding: 5px 0; | |
889649fd | 2478 | border-top: 1px solid #9C9CFF; |
f0eab82c RK |
2479 | border-bottom-left-radius: 5px; |
2480 | border-bottom-right-radius: 5px; | |
f993773d RK |
2481 | } |
2482 | ||
2483 | .panel-promo-icon { | |
2484 | list-style-image: url("chrome://browser/skin/sync-notification-24.png"); | |
2485 | -moz-margin-end: 10px; | |
2486 | vertical-align: middle; | |
2487 | } | |
2488 | ||
2489 | .panel-promo-closebutton { | |
2490 | list-style-image: url("chrome://global/skin/icons/close-button.gif"); | |
f0eab82c RK |
2491 | -moz-margin-end: -3px; |
2492 | margin-top: -3px; | |
f993773d RK |
2493 | } |
2494 | ||
2495 | .panel-promo-closebutton:hover { | |
2496 | list-style-image: url("chrome://global/skin/icons/close-button-hover.gif"); | |
2497 | } | |
2498 | ||
2499 | .panel-promo-closebutton:hover:active { | |
2500 | list-style-image: url("chrome://global/skin/icons/close-button-hover.gif"); | |
2501 | } | |
2502 | ||
2503 | .panel-promo-closebutton > .toolbarbutton-text { | |
2504 | padding: 0; | |
f993773d RK |
2505 | } |
2506 | ||
319c6529 RK |
2507 | /* ::::: content area ::::: */ |
2508 | ||
2509 | #sidebar { | |
2510 | background-color: Window; | |
acb0e9b8 | 2511 | } |
319c6529 RK |
2512 | |
2513 | #sidebar-title { | |
2514 | -moz-padding-start: 0px; | |
acb0e9b8 | 2515 | } |
319c6529 | 2516 | |
589b5528 RK |
2517 | #sidebar-header > .close-icon { |
2518 | /* padding: 4px 2px; | |
2519 | margin: 0; | |
2520 | border: none;*/ | |
2521 | list-style-image: url("chrome://global/skin/icons/close-button.gif"); | |
2522 | } | |
2523 | ||
2524 | #sidebar-header > .close-icon:hover, | |
2525 | #sidebar-header > .close-icon:hover:active { | |
2526 | list-style-image: url("chrome://global/skin/icons/close-button-hover.gif"); | |
2527 | } | |
2528 | ||
fe524e0c RK |
2529 | .browserContainer > findbar { |
2530 | /* | |
2531 | background-color: -moz-dialog; | |
2532 | color: -moz-DialogText; | |
2533 | */ | |
2534 | } | |
2535 | ||
319c6529 | 2536 | /* Tabstrip */ |
b36fc72e | 2537 | |
c0f6797e | 2538 | #TabsToolbar { |
e20c83c3 RK |
2539 | min-height: 0; |
2540 | padding: 0; | |
2541 | -moz-binding: url("chrome://browser/content/customizableui/toolbar.xml#toolbar"); | |
2542 | } | |
2543 | ||
b36fc72e | 2544 | #TabsToolbar .toolbar-holder { |
c1f7cc84 | 2545 | background-color: #000000; /* correct effect of being an actual toolbar */ |
acb0e9b8 | 2546 | } |
2547 | ||
b36fc72e | 2548 | #main-window[disablechrome] #TabsToolbar, |
319c6529 | 2549 | #TabsToolbar[tabsontop="false"] { |
8b5fc82e | 2550 | border-bottom: 1px solid #008484; |
acb0e9b8 | 2551 | } |
319c6529 | 2552 | |
6dc70335 RK |
2553 | /* === BEGIN tabs.inc.css === */ |
2554 | ||
319c6529 | 2555 | .tabbrowser-tab, |
43ee1307 RK |
2556 | .tabs-newtab-button, |
2557 | #TabsToolbar > #new-tab-button { | |
319c6529 | 2558 | margin-top: 0px; |
acb0e9b8 | 2559 | } |
319c6529 | 2560 | |
43ee1307 | 2561 | .tabbrowser-tab { |
57fc408c RK |
2562 | padding: 1px 4px 2px; |
2563 | } | |
2564 | ||
2565 | .tabbrowser-tab:first-of-type { | |
2566 | -moz-margin-start: 2px; | |
2567 | } | |
2568 | ||
43ee1307 RK |
2569 | .tabs-newtab-button, |
2570 | #TabsToolbar > #new-tab-button { | |
57fc408c RK |
2571 | border-radius: 8px 8px 0px 0px; |
2572 | -moz-margin-start: 0; | |
2573 | } | |
2574 | ||
43ee1307 RK |
2575 | .tabs-newtab-button:not(:hover), |
2576 | #TabsToolbar > #new-tab-button:not(:hover) { | |
57fc408c RK |
2577 | background-color: #C09070; |
2578 | } | |
2579 | ||
fe524e0c RK |
2580 | .tabbrowser-tab[remote] { |
2581 | text-decoration: underline; | |
2582 | } | |
2583 | ||
c0f6797e RK |
2584 | /* The selected tab should appear above adjacent tabs, .tabs-newtab-button and the highlight of #nav-bar */ |
2585 | .tabbrowser-tab[selected=true] { | |
2586 | /* position: relative; | |
2587 | z-index: 2;*/ | |
acb0e9b8 | 2588 | } |
2589 | ||
c0f6797e | 2590 | .tab-background-middle { |
acb0e9b8 | 2591 | } |
2592 | ||
c0f6797e | 2593 | .tab-content { |
acb0e9b8 | 2594 | } |
319c6529 | 2595 | |
46e71434 | 2596 | .tab-/*throbber*/, |
c0f6797e RK |
2597 | .tab-icon-image, |
2598 | .tab-close-button { | |
acb0e9b8 | 2599 | } |
2600 | ||
319c6529 RK |
2601 | .tab-throbber, |
2602 | .tab-icon-image { | |
319c6529 | 2603 | height: 16px; |
c0f6797e RK |
2604 | width: 16px; |
2605 | } | |
2606 | ||
2607 | .tab-icon-image { | |
dce90fef | 2608 | list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png"); |
613daf44 | 2609 | } |
2610 | ||
3d64e0ce | 2611 | .tab-throbber[busy] { |
95f333af | 2612 | list-style-image: url("chrome://communicator/skin/brand/throbber16-anim-connect.png"); |
613daf44 | 2613 | } |
319c6529 RK |
2614 | |
2615 | .tab-throbber[progress] { | |
95f333af | 2616 | list-style-image: url("chrome://communicator/skin/brand/throbber16-anim.png"); |
613daf44 | 2617 | } |
319c6529 | 2618 | |
c0f6797e RK |
2619 | .tab-throbber:not([pinned]), |
2620 | .tab-icon-image:not([pinned]) { | |
2621 | -moz-margin-end: 3px; | |
2622 | } | |
2623 | ||
319c6529 RK |
2624 | .tab-throbber[pinned], |
2625 | .tab-icon-image[pinned] { | |
2626 | -moz-margin-start: 2px; | |
2627 | -moz-margin-end: 2px; | |
613daf44 | 2628 | } |
319c6529 | 2629 | |
c0f6797e | 2630 | .tab-label { |
aec5dfad RK |
2631 | /* this needs to add up to the 16px of the icon image */ |
2632 | height: 12px; | |
2633 | margin-top: 2px !important; | |
2634 | margin-bottom: 2px !important; | |
c0f6797e RK |
2635 | } |
2636 | ||
2637 | .tab-close-button { | |
2638 | margin-top: 1px; | |
2639 | padding: 0; | |
2640 | } | |
2641 | ||
2642 | .tab-background, | |
2643 | .tabs-newtab-button { | |
2644 | /* overlap the tab curves */ | |
2645 | } | |
2646 | ||
2647 | .tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox { | |
2648 | } | |
2649 | ||
93c91f62 RK |
2650 | /* Tab Overflow */ |
2651 | .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator:not([collapsed]), | |
2652 | .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator:not([collapsed]) { | |
2653 | } | |
2654 | ||
2655 | .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator:-moz-locale-dir(rtl), | |
2656 | .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator:-moz-locale-dir(ltr) { | |
2657 | } | |
2658 | ||
2659 | .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator:not([collapsed]) { | |
2660 | } | |
2661 | ||
2662 | .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator:not([collapsed]) { | |
2663 | } | |
2664 | ||
2665 | .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator[collapsed], | |
2666 | .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator[collapsed] { | |
2667 | } | |
2668 | ||
2669 | .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator, | |
2670 | .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator { | |
2671 | } | |
2672 | ||
c0f6797e RK |
2673 | .tab-background-start[selected=true]::after, |
2674 | .tab-background-start[selected=true]::before, | |
2675 | .tab-background-start, | |
2676 | .tab-background-end, | |
2677 | .tab-background-end[selected=true]::after, | |
2678 | .tab-background-end[selected=true]::before { | |
2679 | } | |
2680 | ||
2681 | .tabbrowser-tab:not([selected=true]), | |
2682 | .tabbrowser-tab:-moz-lwtheme { | |
2683 | } | |
2684 | ||
319c6529 | 2685 | /* tabbrowser-tab focus ring */ |
c0f6797e | 2686 | .tabbrowser-tab:focus { |
319c6529 | 2687 | outline: 1px dotted; |
613daf44 | 2688 | } |
319c6529 | 2689 | |
c0f6797e RK |
2690 | /* Selected tab */ |
2691 | ||
2692 | .tabbrowser-tab[selected="true"] { | |
2693 | } | |
2694 | ||
2695 | /* End selected tab */ | |
2696 | ||
c0f6797e RK |
2697 | /* Tab pointer-events */ |
2698 | /* | |
2699 | .tabbrowser-tab { | |
2700 | pointer-events: none; | |
2701 | } | |
2702 | ||
2703 | .tab-background-middle, | |
2704 | .tabs-newtab-button, | |
2705 | .tab-close-button { | |
2706 | pointer-events: auto; | |
2707 | } | |
2708 | */ | |
2709 | /* Pinned tabs */ | |
2710 | ||
2711 | .tabbrowser-tab[pinned][titlechanged]:not([selected="true"]) { | |
2712 | background-color: #E7ADE7; | |
2713 | } | |
2714 | ||
2715 | .tabbrowser-tab[pinned][titlechanged]:not([selected="true"]):hover { | |
2716 | background-color: #3333FF; | |
2717 | color: #000000; | |
2718 | } | |
2719 | ||
2720 | /* New tab button */ | |
2721 | ||
2722 | .tabs-newtab-button { | |
2723 | width: 28px; | |
2724 | } | |
2725 | ||
2726 | /* === END tabs.inc.css === */ | |
2727 | ||
43371c9b RK |
2728 | /* Background tabs: |
2729 | * | |
2730 | * Decrease the height of the hoverable region of background tabs whenever the tabs are at the top | |
2731 | * of the window (e.g. no menubar, tabs in titlebar, etc.) to make it easier to drag the window by | |
2732 | * the titlebar. We don't need this in fullscreen since window dragging is not an issue there. | |
2733 | */ | |
2734 | #main-window[tabsintitlebar][sizemode=normal] #toolbar-menubar[autohide="true"][inactive] + #TabsToolbar .tab-background-middle:not([selected=true]) { | |
2735 | /* clip-path: url(chrome://browser/content/browser.xul#tab-hover-clip-path);*/ | |
2736 | } | |
2737 | ||
8ad8bf83 | 2738 | /* Tab DnD indicator */ |
319c6529 RK |
2739 | .tab-drop-indicator { |
2740 | list-style-image: url("chrome://browser/skin/tabbrowser/tabDragIndicator.png"); | |
9abeb12c | 2741 | margin-bottom: -11px; |
613daf44 | 2742 | } |
2743 | ||
319c6529 RK |
2744 | /* Tab close button */ |
2745 | .tab-close-button { | |
319c6529 RK |
2746 | list-style-image: url("chrome://global/skin/icons/close-button.gif"); |
2747 | } | |
acb0e9b8 | 2748 | |
319c6529 RK |
2749 | .tab-close-button:hover, |
2750 | .tab-close-button:hover[selected="true"] { | |
2751 | list-style-image: url("chrome://global/skin/icons/close-button-hover.gif"); | |
acb0e9b8 | 2752 | } |
319c6529 RK |
2753 | |
2754 | .tab-close-button:hover:active, | |
2755 | .tab-close-button:hover:active[selected="true"] { | |
2756 | list-style-image: url("chrome://global/skin/icons/close-button-hover.gif"); | |
acb0e9b8 | 2757 | } |
319c6529 | 2758 | |
319c6529 RK |
2759 | /* Tab scrollbox arrow, tabstrip new tab and all-tabs buttons */ |
2760 | ||
319c6529 RK |
2761 | .tabbrowser-arrowscrollbox > .scrollbutton-up, |
2762 | .tabbrowser-arrowscrollbox > .scrollbutton-down { | |
319c6529 RK |
2763 | margin: 0; |
2764 | padding-top: 0; | |
2765 | padding-bottom: 0; | |
c0f6797e RK |
2766 | background-origin: border-box; |
2767 | } | |
2768 | ||
2769 | #main-window[tabsintitlebar]:not([inFullscreen]) .tabbrowser-arrowscrollbox > .scrollbutton-up:-moz-system-metric(windows-classic):not(:-moz-lwtheme), | |
2770 | #main-window[tabsintitlebar]:not([inFullscreen]) .tabbrowser-arrowscrollbox > .scrollbutton-down:-moz-system-metric(windows-classic):not(:-moz-lwtheme), | |
2771 | .tabbrowser-arrowscrollbox > .scrollbutton-up:-moz-lwtheme-brighttext, | |
2772 | .tabbrowser-arrowscrollbox > .scrollbutton-down:-moz-lwtheme-brighttext { | |
2773 | } | |
b7f3670c | 2774 | |
c0f6797e RK |
2775 | .tabbrowser-arrowscrollbox > .scrollbutton-up[disabled], |
2776 | .tabbrowser-arrowscrollbox > .scrollbutton-down[disabled] { | |
2777 | } | |
2778 | ||
2779 | .tabbrowser-arrowscrollbox > .scrollbutton-up:-moz-locale-dir(rtl), | |
2780 | .tabbrowser-arrowscrollbox > .scrollbutton-down:-moz-locale-dir(ltr) { | |
2781 | /* transform: scaleX(-1);*/ | |
2782 | } | |
2783 | ||
2784 | .tabbrowser-arrowscrollbox > .scrollbutton-down { | |
2785 | transition: 1s background-color ease-out; | |
acb0e9b8 | 2786 | } |
319c6529 | 2787 | |
319c6529 RK |
2788 | .tabbrowser-arrowscrollbox > .scrollbutton-down[notifybgtab] { |
2789 | background-color: #008484; | |
acb0e9b8 | 2790 | } |
319c6529 | 2791 | |
c0f6797e RK |
2792 | .tabbrowser-arrowscrollbox > .scrollbutton-up:not([disabled]), |
2793 | .tabbrowser-arrowscrollbox > .scrollbutton-down:not([disabled]) { | |
2794 | /* border-width: 0 2px 0 0; | |
2795 | border-style: solid; | |
2796 | border-image: url("chrome://browser/skin/tabbrowser/tab-overflow-border.png") 0 2 0 2 fill;*/ | |
2797 | } | |
2798 | ||
319c6529 RK |
2799 | .tabs-newtab-button > .toolbarbutton-icon { |
2800 | margin-top: -1px; | |
2801 | margin-bottom: -1px; | |
acb0e9b8 | 2802 | } |
319c6529 RK |
2803 | |
2804 | .tabs-newtab-button, | |
2805 | #TabsToolbar > #new-tab-button, | |
e20c83c3 RK |
2806 | #TabsToolbar > toolbarpaletteitem > #new-tab-button, |
2807 | #TabsToolbar > toolbarpaletteitem > #new-tab-button[cui-areatype="toolbar"] { | |
38cfeb47 | 2808 | list-style-image: url("chrome://browser/skin/tabbrowser/newtab.png"); |
319c6529 | 2809 | -moz-image-region: rect(0, 16px, 18px, 0); |
acb0e9b8 | 2810 | } |
2811 | ||
8b5fc82e | 2812 | .tabs-newtab-button, |
38cfeb47 | 2813 | .tabs-newtab-button:hover, |
c0f6797e | 2814 | #TabsToolbar > #new-tab-button, |
38cfeb47 | 2815 | #TabsToolbar > #new-tab-button:hover { |
319c6529 | 2816 | -moz-image-region: rect(0, 32px, 18px, 16px); |
acb0e9b8 | 2817 | } |
319c6529 | 2818 | |
c0f6797e RK |
2819 | #main-window[tabsintitlebar]:not([inFullscreen]) .tabs-newtab-button:-moz-system-metric(windows-classic):not(:-moz-lwtheme), |
2820 | #main-window[tabsintitlebar]:not([inFullscreen]) #TabsToolbar > #new-tab-button:-moz-system-metric(windows-classic):not(:-moz-lwtheme), | |
2821 | #main-window[tabsintitlebar]:not([inFullscreen]) #TabsToolbar > toolbarpaletteitem > #new-tab-button:-moz-system-metric(windows-classic):not(:-moz-lwtheme), | |
2822 | .tabs-newtab-button:-moz-lwtheme-brighttext, | |
2823 | #TabsToolbar > #new-tab-button:-moz-lwtheme-brighttext, | |
2824 | #TabsToolbar > toolbarpaletteitem > #new-tab-button:-moz-lwtheme-brighttext { | |
acb0e9b8 | 2825 | } |
2826 | ||
c0f6797e RK |
2827 | #TabsToolbar > #new-tab-button { |
2828 | width: 26px; | |
2829 | } | |
2830 | ||
2831 | #alltabs-button { | |
2832 | list-style-image: url("chrome://global/skin/arrow/arrow-down.gif"); | |
acb0e9b8 | 2833 | } |
319c6529 | 2834 | |
f9fc08c7 RK |
2835 | #alltabs-button:hover, |
2836 | #alltabs-button:hover:active, | |
2837 | #alltabs-button[open="true"] { | |
8da9da4e | 2838 | list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif"); |
acb0e9b8 | 2839 | } |
319c6529 | 2840 | |
c0f6797e RK |
2841 | #main-window[tabsintitlebar]:not([inFullscreen]) #alltabs-button:-moz-system-metric(windows-classic):not(:-moz-lwtheme), |
2842 | #alltabs-button:-moz-lwtheme-brighttext { | |
2843 | } | |
2844 | ||
2845 | #alltabs-button > .toolbarbutton-icon { | |
2846 | /* margin: 0 2px;*/ | |
2847 | } | |
2848 | ||
2849 | #alltabs-button > .toolbarbutton-menu-dropmarker { | |
2850 | display: none; | |
2851 | } | |
2852 | ||
319c6529 RK |
2853 | /* All tabs menupopup */ |
2854 | .alltabs-item > .menu-iconic-left > .menu-iconic-icon { | |
dce90fef | 2855 | list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png"); |
8da9da4e | 2856 | -moz-image-region: auto; |
acb0e9b8 | 2857 | } |
2858 | ||
319c6529 RK |
2859 | .alltabs-item[selected="true"] { |
2860 | font-weight: bold; | |
acb0e9b8 | 2861 | } |
319c6529 RK |
2862 | |
2863 | .alltabs-item[busy] > .menu-iconic-left > .menu-iconic-icon { | |
2864 | list-style-image: url("chrome://global/skin/icons/loading.gif"); | |
acb0e9b8 | 2865 | } |
319c6529 | 2866 | |
85cfb236 | 2867 | .alltabs-item[tabIsVisible]:not([_moz-menuactive="true"]) { |
b1234db8 RK |
2868 | background-color: #402800; |
2869 | } | |
2870 | ||
319c6529 RK |
2871 | toolbarbutton.chevron { |
2872 | list-style-image: url("chrome://global/skin/toolbar/chevron.gif") !important; | |
acb0e9b8 | 2873 | } |
319c6529 RK |
2874 | |
2875 | toolbarbutton.chevron:hover { | |
2876 | list-style-image: url("chrome://global/skin/toolbar/chevron-hover.gif") !important; | |
acb0e9b8 | 2877 | } |
2878 | ||
319c6529 RK |
2879 | toolbarbutton.chevron:-moz-locale-dir(rtl) > .toolbarbutton-icon, |
2880 | toolbarbutton.chevron:-moz-locale-dir(rtl):hover > .toolbarbutton-icon { | |
71a617ff | 2881 | transform: scaleX(-1); |
acb0e9b8 | 2882 | } |
319c6529 RK |
2883 | |
2884 | toolbarbutton.chevron > .toolbarbutton-text, | |
2885 | toolbarbutton.chevron > .toolbarbutton-menu-dropmarker { | |
2886 | display: none; | |
acb0e9b8 | 2887 | } |
319c6529 RK |
2888 | |
2889 | toolbarbutton.chevron > .toolbarbutton-icon { | |
2890 | margin: 0; | |
acb0e9b8 | 2891 | } |
2892 | ||
319c6529 RK |
2893 | #sidebar-throbber[loading="true"] { |
2894 | list-style-image: url("chrome://global/skin/icons/loading.gif"); | |
2895 | -moz-margin-end: 4px; | |
acb0e9b8 | 2896 | } |
319c6529 RK |
2897 | |
2898 | /* Bookmarks toolbar */ | |
2899 | #PlacesToolbarDropIndicator { | |
8da9da4e | 2900 | list-style-image: url("chrome://communicator/skin/bookmarks/toolbarDropMarker.png"); |
acb0e9b8 | 2901 | } |
2902 | ||
319c6529 RK |
2903 | toolbarbutton.bookmark-item[dragover="true"][open="true"] { |
2904 | background-color: #008484 !important; | |
2905 | color: #FFCF00 !important; | |
613daf44 | 2906 | } |
319c6529 RK |
2907 | |
2908 | /* rules for menupopup drop indicators */ | |
2909 | .menupopup-drop-indicator-bar { | |
2910 | position: relative; | |
2911 | /* these two margins must together compensate the indicator's height */ | |
2912 | margin-top: -1px; | |
2913 | margin-bottom: -1px; | |
613daf44 | 2914 | } |
319c6529 RK |
2915 | |
2916 | .menupopup-drop-indicator { | |
2917 | list-style-image: none; | |
2918 | height: 2px; | |
2919 | -moz-margin-end: -4em; | |
2920 | background-color: #008484; | |
613daf44 | 2921 | } |
2922 | ||
319c6529 RK |
2923 | /* ::::: Identity Indicator Styling ::::: */ |
2924 | ||
2925 | /* Popup Icons */ | |
2926 | #identity-popup-icon { | |
2927 | height: 64px; | |
2928 | width: 64px; | |
2929 | padding: 0; | |
2930 | list-style-image: url("chrome://browser/skin/identity.png"); | |
2931 | -moz-image-region: rect(0px, 64px, 64px, 0px); | |
613daf44 | 2932 | } |
319c6529 RK |
2933 | |
2934 | #identity-popup.verifiedDomain > #identity-popup-container > #identity-popup-icon { | |
2935 | -moz-image-region: rect(64px, 64px, 128px, 0px); | |
613daf44 | 2936 | } |
319c6529 RK |
2937 | |
2938 | #identity-popup.verifiedIdentity > #identity-popup-container > #identity-popup-icon { | |
2939 | -moz-image-region: rect(128px, 64px, 192px, 0px); | |
613daf44 | 2940 | } |
2941 | ||
319c6529 RK |
2942 | /* Popup Body Text */ |
2943 | .identity-popup-description { | |
2944 | white-space: pre-wrap; | |
2945 | -moz-padding-start: 15px; | |
2946 | margin: 2px 0 4px; | |
613daf44 | 2947 | } |
319c6529 RK |
2948 | |
2949 | .identity-popup-label { | |
2950 | white-space: pre-wrap; | |
2951 | -moz-padding-start: 15px; | |
2952 | margin: 0; | |
613daf44 | 2953 | } |
319c6529 | 2954 | |
5517da5a | 2955 | #identity-popup-content-host, |
319c6529 RK |
2956 | #identity-popup-content-box.verifiedIdentity > #identity-popup-content-owner { |
2957 | font-size: 1.2em; | |
613daf44 | 2958 | } |
2959 | ||
319c6529 RK |
2960 | #identity-popup-content-host { |
2961 | margin-top: 3px; | |
2962 | margin-bottom: 5px; | |
2963 | font-weight: bold; | |
2964 | max-width: 300px; | |
2965 | } | |
613daf44 | 2966 | |
319c6529 RK |
2967 | #identity-popup-content-owner { |
2968 | margin-top: 4px; | |
2969 | margin-bottom: 0 !important; | |
2970 | font-weight: bold; | |
2971 | max-width: 300px; | |
2972 | } | |
613daf44 | 2973 | |
319c6529 RK |
2974 | .verifiedDomain > #identity-popup-content-owner { |
2975 | font-weight: normal; | |
613daf44 | 2976 | } |
2977 | ||
319c6529 RK |
2978 | #identity-popup-content-verifier { |
2979 | margin: 4px 0 2px; | |
613daf44 | 2980 | } |
2981 | ||
319c6529 RK |
2982 | #identity-popup-content-box.verifiedIdentity > #identity-popup-encryption , |
2983 | #identity-popup-content-box.verifiedDomain > #identity-popup-encryption { | |
2984 | margin-top: 10px; | |
2985 | -moz-margin-start: -24px; | |
613daf44 | 2986 | } |
2987 | ||
319c6529 RK |
2988 | #identity-popup-content-box.verifiedIdentity > #identity-popup-encryption > vbox > #identity-popup-encryption-icon , |
2989 | #identity-popup-content-box.verifiedDomain > #identity-popup-encryption > vbox > #identity-popup-encryption-icon { | |
2990 | list-style-image: url("chrome://browser/skin/Secure24.png"); | |
613daf44 | 2991 | } |
2992 | ||
3a0880a9 RK |
2993 | #identity-popup-help-icon { |
2994 | border: none; | |
2995 | margin: 7px 0 0 -3px; | |
2996 | background: none; | |
2997 | min-width: 0; | |
2998 | list-style-image: url("chrome://global/skin/icons/question-16.png"); | |
2999 | cursor: pointer; | |
3000 | } | |
3001 | ||
3002 | #identity-popup-help-icon > .button-box > .button-text { | |
3003 | display: none; | |
3004 | } | |
3005 | ||
3006 | #identity-popup-help-icon > .button-box > .button-icon { | |
3007 | height: 16px; | |
3008 | width: 16px; | |
3009 | } | |
3010 | ||
319c6529 RK |
3011 | #identity-popup-more-info-button { |
3012 | margin-top: 6px; | |
3013 | margin-bottom: 0; | |
3014 | -moz-margin-end: 0; | |
613daf44 | 3015 | } |
acb0e9b8 | 3016 | |
fe524e0c RK |
3017 | #identity-popup > .panel-arrowcontainer > .panel-arrowcontent { |
3018 | padding: 0; | |
3019 | } | |
3020 | ||
3021 | #identity-popup-container { | |
3022 | min-width: 280px; | |
3023 | padding: 10px; | |
3024 | } | |
3025 | ||
3026 | #identity-popup-button-container { | |
3027 | /* background: linear-gradient(to bottom, rgba(0,0,0,0.04) 60%, transparent);*/ | |
3028 | padding: 10px; | |
3029 | margin-top: 5px; | |
3030 | } | |
3031 | ||
319c6529 RK |
3032 | .popup-notification-icon { |
3033 | width: 64px; | |
3034 | height: 64px; | |
3035 | -moz-margin-end: 10px; | |
3036 | } | |
acb0e9b8 | 3037 | |
319c6529 RK |
3038 | .popup-notification-icon[popupid="geolocation"] { |
3039 | list-style-image: url("chrome://browser/skin/Geolocation-64.png"); | |
acb0e9b8 | 3040 | } |
3041 | ||
319c6529 RK |
3042 | .popup-notification-icon[popupid="xpinstall-disabled"], |
3043 | .popup-notification-icon[popupid="addon-progress"], | |
3044 | .popup-notification-icon[popupid="addon-install-cancelled"], | |
3045 | .popup-notification-icon[popupid="addon-install-blocked"], | |
3046 | .popup-notification-icon[popupid="addon-install-failed"], | |
a40f6a79 | 3047 | .popup-notification-icon[popupid="addon-install-complete"] { |
319c6529 RK |
3048 | list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png"); |
3049 | width: 32px; | |
3050 | height: 32px; | |
acb0e9b8 | 3051 | } |
319c6529 | 3052 | |
a40f6a79 | 3053 | .popup-notification-icon[popupid="click-to-play-plugins"] { |
fcfb76ce | 3054 | list-style-image: url("chrome://mozapps/skin/plugins/pluginBlocked-64.png"); |
a40f6a79 RK |
3055 | } |
3056 | ||
82b4252f RK |
3057 | .popup-notification-icon[popupid="web-notifications"] { |
3058 | list-style-image: url("chrome://browser/skin/notification-64.png"); | |
3059 | } | |
3060 | ||
319c6529 RK |
3061 | .addon-progress-description { |
3062 | width: 350px; | |
3063 | max-width: 350px; | |
acb0e9b8 | 3064 | } |
319c6529 RK |
3065 | |
3066 | .popup-progress-label, | |
3067 | .popup-progress-meter { | |
3068 | -moz-margin-start: 0; | |
3069 | -moz-margin-end: 0; | |
acb0e9b8 | 3070 | } |
319c6529 RK |
3071 | |
3072 | .popup-progress-cancel { | |
3073 | -moz-appearance: none; | |
3074 | background: transparent; | |
3075 | border: none; | |
3076 | padding: 0; | |
3077 | margin: 0; | |
3078 | min-height: 0; | |
3079 | min-width: 0; | |
3080 | list-style-image: url("chrome://mozapps/skin/downloads/downloadButtons.png"); | |
3081 | -moz-image-region: rect(0px, 32px, 16px, 16px); | |
acb0e9b8 | 3082 | } |
319c6529 RK |
3083 | |
3084 | .popup-progress-cancel:hover { | |
3085 | -moz-image-region: rect(16px, 32px, 32px, 16px); | |
acb0e9b8 | 3086 | } |
3087 | ||
319c6529 RK |
3088 | .popup-progress-cancel:active { |
3089 | -moz-image-region: rect(32px, 32px, 48px, 16px); | |
3090 | } | |
acb0e9b8 | 3091 | |
319c6529 | 3092 | .popup-notification-icon[popupid="indexedDB-permissions-prompt"], |
a6757852 | 3093 | .popup-notification-icon[popupid="indexedDB-quota-prompt"], |
e2734cc7 RK |
3094 | .popup-notification-icon[popupid*="offline-app-requested"], |
3095 | .popup-notification-icon[popupid="offline-app-usage"] { | |
319c6529 | 3096 | list-style-image: url("chrome://global/skin/icons/alert-question.gif"); |
acb0e9b8 | 3097 | } |
3098 | ||
319c6529 RK |
3099 | .popup-notification-icon[popupid="password-save"], |
3100 | .popup-notification-icon[popupid="password-change"] { | |
3101 | list-style-image: url("chrome://mozapps/skin/passwordmgr/key-64.png"); | |
acb0e9b8 | 3102 | } |
3103 | ||
1b13529a | 3104 | .popup-notification-icon[popupid="webapps-install-progress"], |
8d7ef0d9 | 3105 | .popup-notification-icon[popupid="webapps-install"] { |
87a1144f | 3106 | list-style-image: url("chrome://global/skin/icons/webapps-64.png"); |
8d7ef0d9 RK |
3107 | } |
3108 | ||
c066e743 RK |
3109 | .popup-notification-icon[popupid="bad-content"] { |
3110 | list-style-image: url("chrome://browser/skin/bad-content-blocked-64.png"); | |
3111 | } | |
3112 | ||
3113 | .popup-notification-icon[popupid="bad-content"][mixedblockdisabled], | |
3114 | .popup-notification-icon[popupid="bad-content"][trackingblockdisabled] { | |
3115 | list-style-image: url(chrome://browser/skin/bad-content-unblocked-64.png); | |
56ab361a RK |
3116 | } |
3117 | ||
0142a07b | 3118 | .popup-notification-icon[popupid="webRTC-sharingDevices"], |
7bc075b6 RK |
3119 | .popup-notification-icon[popupid="webRTC-shareDevices"] { |
3120 | list-style-image: url("chrome://browser/skin/webRTC-shareDevice-64.png"); | |
3121 | } | |
3122 | ||
c1d2ce3e RK |
3123 | .popup-notification-icon[popupid="webRTC-sharingMicrophone"], |
3124 | .popup-notification-icon[popupid="webRTC-shareMicrophone"] { | |
3125 | list-style-image: url("chrome://browser/skin/webRTC-shareMicrophone-64.png"); | |
3126 | } | |
3127 | ||
9168a62c RK |
3128 | .popup-notification-icon[popupid="webRTC-sharingScreen"], |
3129 | .popup-notification-icon[popupid="webRTC-shareScreen"] { | |
3130 | list-style-image: url(chrome://browser/skin/webRTC-shareScreen-64.png); | |
3131 | } | |
3132 | ||
82b4252f RK |
3133 | .popup-notification-icon[popupid="pointerLock"] { |
3134 | list-style-image: url("chrome://browser/skin/pointerLock-64.png"); | |
3135 | } | |
3136 | ||
319c6529 | 3137 | /* Notification icon box */ |
cae267ab RK |
3138 | #notification-popup .panel-promo-box { |
3139 | /* margin: 10px -10px -10px; */ | |
3140 | } | |
3141 | ||
319c6529 | 3142 | #notification-popup-box { |
f993773d RK |
3143 | position: relative; |
3144 | background-color: #000000; | |
3145 | background-clip: padding-box; | |
3146 | padding-left: 3px; | |
5517da5a | 3147 | padding-right: 8px; |
f0eab82c | 3148 | border-radius: 3px 0 0 3px; |
82b4252f | 3149 | border-image: url("chrome://browser/skin/urlbar-arrow.png") 0 8 0 0 / 0 8px 0 0; |
f993773d | 3150 | -moz-margin-end: -8px; |
5517da5a | 3151 | border-right-width: 8px; |
f993773d RK |
3152 | } |
3153 | ||
589b5528 RK |
3154 | window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #forward-button[disabled] + #urlbar > #notification-popup-box { |
3155 | /* padding-left: 7px; */ | |
f993773d RK |
3156 | } |
3157 | ||
3158 | #notification-popup-box:-moz-locale-dir(rtl), | |
3159 | .notification-anchor-icon:-moz-locale-dir(rtl) { | |
71a617ff | 3160 | transform: scaleX(-1); |
319c6529 | 3161 | } |
acb0e9b8 | 3162 | |
319c6529 | 3163 | .notification-anchor-icon { |
acb0e9b8 | 3164 | width: 16px; |
3165 | height: 16px; | |
85cfb236 | 3166 | margin: 0 2px; |
acb0e9b8 | 3167 | } |
3168 | ||
319c6529 | 3169 | .notification-anchor-icon:-moz-focusring { |
f0eab82c | 3170 | outline: 1px dotted #008484; |
acb0e9b8 | 3171 | } |
3172 | ||
e2734cc7 | 3173 | .default-notification-icon, |
ab799a7a RK |
3174 | #default-notification-icon { |
3175 | list-style-image: url("chrome://global/skin/icons/information-16.png"); | |
3176 | } | |
3177 | ||
e2734cc7 | 3178 | .identity-notification-icon, |
9585a561 RK |
3179 | #identity-notification-icon { |
3180 | list-style-image: url("chrome://mozapps/skin/profile/profileicon.png"); | |