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