fifth part of syncing LCARStrek with Firefox 36 windows theme changes
[themes.git] / LCARStrek / browser / browser.css
CommitLineData
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
12toolbar {
13 -moz-binding: url("chrome://global/skin/globalBindings.xml#toolbar");
14}
acb0e9b8 15
7d3f7f14 16toolbar[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
27toolbar[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 35menubar {
319c6529 36 -moz-binding: url("chrome://global/skin/globalBindings.xml#menubar");
acb0e9b8 37}
38
e548e22e
RK
39:root {
40 --verified-identity-box-backgroundcolor: #000000;
41}
42
319c6529
RK
43#menubar-items {
44 -moz-box-orient: vertical; /* for flex hack */
acb0e9b8 45}
46
319c6529
RK
47#main-menubar {
48 -moz-box-flex: 1; /* make menu items expand to fill toolbar height */
49}
50
63ada306
RK
51/* ::::: primary toolbar ::::: */
52
53.toolbar-primary > .toolbar-box > .toolbar-holder {
270cbf0c 54 background-color: #A09090;
63ada306
RK
55}
56
57.toolbar-primary > .toolbar-box > .toolbar-startcap,
58.toolbar-primary > .toolbar-box > .toolbar-endcap {
59 background-color: #9C9CFF;
60}
61
e20c83c3
RK
62/* Hides the titlebar-placeholder underneath the window caption buttons when we
63 are not autohiding the menubar. */
64#toolbar-menubar:not([autohide="true"]) + #TabsToolbar > .titlebar-placeholder[type="caption-buttons"] {
65 display: none;
66}
67
43cc2806
RK
68/* We want a 4px gap between the TabsToolbar and the toolbar-menubar when the
69 toolbar-menu is displayed, and a 16px gap when it is not. 1px is taken care
70 of by the (light) outer shadow of the tab, the remaining 3/15 are these margins. */
c0f6797e
RK
71#toolbar-menubar:not([moz-collapsed=true]):not([autohide=true]) ~ #TabsToolbar,
72#toolbar-menubar:not([moz-collapsed=true])[autohide=true]:not([inactive]) ~ #TabsToolbar {
43cc2806
RK
73/* margin-top: 3px;*/
74}
75
43371c9b
RK
76#main-window[tabsintitlebar][sizemode="normal"]:not([inFullscreen])[chromehidden~="menubar"] #toolbar-menubar ~ #TabsToolbar,
77#main-window[tabsintitlebar][sizemode="normal"]:not([inFullscreen]) #toolbar-menubar[autohide="true"][inactive] ~ #TabsToolbar {
43cc2806
RK
78/* margin-top: 15px;*/
79}
80
ee49f520
RK
81@media (-moz-mac-graphite-theme: 0) and (-moz-mac-lion-theme: 0) {
82 /* This is a hackish workaround to exclude most of Mac OS until bug 1060941 gets fixed. */
8d154261
RK
83 #toolbar-menubar:not([autohide="true"]) {
84 -moz-binding: url("chrome://global/skin/globalBindings.xml#toolbar-drag-browsercustom");
85 }
58d9f24a
RK
86}
87
ee49f520
RK
88@media (-moz-mac-graphite-theme), (-moz-mac-lion-theme) {
89 /* This is a hackish workaround to cover most of Mac OS until bug 1060941 gets fixed. */
4711fba5 90 #main-window[tabsintitlebar]:not([inFullscreen="true"]) #TabsToolbar {
54d92f05
RK
91 padding-left: 60px;
92 }
43cc2806
RK
93}
94
018d70fb
RK
95#main-window[tabsintitlebar] #toolbar-menubar .toolbar-endcap {
96 /* 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 */
97 display: none;
43cc2806 98}
63ada306 99
e20c83c3
RK
100#main-window[customize-entered][tabsintitlebar]:not([inFullscreen]) #toolbar-menubar[customizing-dragovertarget].customization-target::before,
101#main-window[customize-entered][tabsintitlebar]:not([inFullscreen]) #TabsToolbar[customizing-dragovertarget].customization-target::before,
102#main-window[customize-entered][tabsintitlebar]:not([inFullscreen]) #toolbar-menubar.customization-target:hover::before,
103#main-window[customize-entered][tabsintitlebar]:not([inFullscreen]) #TabsToolbar.customization-target:hover::before {
104 outline-color: #A09090;
105}
106
319c6529
RK
107#navigator-toolbox {
108}
109
9abeb12c
RK
110#navigator-toolbox::after {
111 content: "";
112 display: -moz-box;
113 -moz-box-ordinal-group: 101; /* tabs toolbar is 100 */
114 height: 1px;
115}
9abeb12c 116
6f5a7408 117#navigator-toolbox > toolbar {
319c6529
RK
118}
119
3d64e0ce
RK
120#navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar):not(:-moz-lwtheme) {
121}
122
9168a62c
RK
123#navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar):not(#nav-bar):not(#addon-bar) {
124 overflow: -moz-hidden-unscrollable;
125 max-height: 4em;
126 transition: min-height 170ms ease-out, max-height 170ms ease-out;
127}
128
129#navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar):not(#nav-bar):not(#addon-bar)[collapsed=true] {
130 min-height: 0.1px;
131 max-height: 0;
132 transition: min-height 170ms ease-out, max-height 170ms ease-out, visibility 170ms linear;
133}
134
ee49f520
RK
135@media (-moz-mac-graphite-theme: 0) and (-moz-mac-lion-theme: 0) {
136 /* This is a hackish workaround to exclude most of Mac OS until bug 1060941 gets fixed. */
137 /* Indent also due to non-applicable aero rule in original Windows theme. */
c0f6797e
RK
138 #main-window[tabsintitlebar]:not([inFullscreen]) #toolbar-menubar:not(:-moz-lwtheme),
139 #main-window[tabsintitlebar]:not([inFullscreen]) #TabsToolbar:not(:-moz-lwtheme) {
140 /* like menubar */
141 background-color: #6000CF;
142 color: #FF9F00;
319c6529
RK
143 }
144
c0f6797e
RK
145 #main-window[tabsintitlebar]:not([inFullscreen]) #toolbar-menubar:not(:-moz-lwtheme):-moz-window-inactive,
146 #main-window[tabsintitlebar]:not([inFullscreen]) #TabsToolbar:not(:-moz-lwtheme):-moz-window-inactive {
147 background-color: #8050B0;
148 color: #FF9F00;
319c6529
RK
149 }
150
dccbbf95
RK
151 #main-window[tabsintitlebar] #main-menubar > menu:not(:-moz-lwtheme) {
152 /*color: inherit;*/
153 }
154
c0f6797e
RK
155 #main-window[tabsintitlebar] #titlebar:-moz-lwtheme {
156 visibility: hidden;
157 }
319c6529 158
c0f6797e
RK
159 #main-window[tabsintitlebar] #titlebar-content:-moz-lwtheme {
160 -moz-binding: url("chrome://global/content/bindings/general.xml#windowdragbox");
161 visibility: visible;
162 }
8d154261
RK
163}
164
ee49f520
RK
165@media (-moz-mac-graphite-theme), (-moz-mac-lion-theme) {
166 /* This is a hackish workaround to cover most of Mac OS until bug 1060941 gets fixed. */
8d154261
RK
167 #titlebar-buttonbox > .titlebar-button {
168 display: none;
169 }
8d154261 170}
319c6529 171
c0f6797e
RK
172#nav-bar {
173 /* Position the toolbar above the bottom of background tabs */
174 position: relative;
175 z-index: 1;
82b4252f
RK
176}
177
c0f6797e
RK
178#personal-bookmarks {
179/* min-height: 24px; */
319c6529
RK
180}
181
c0f6797e
RK
182#print-preview-toolbar:not(:-moz-lwtheme) {
183 /* -moz-appearance: toolbox; */
82b4252f
RK
184}
185
c0f6797e 186#browser-bottombox:not(:-moz-lwtheme) {
319c6529
RK
187}
188
189/* ::::: titlebar ::::: */
190
5305ef8d
RK
191#titlebar {
192 /* like menubar */
193 background-color: #6000CF;
194 color: #FF9F00;
195}
196#titlebar:-moz-window-inactive {
197 background-color: #8050B0;
198 color: #FF9F00;
199}
200
319c6529 201#main-window[sizemode="normal"] > #titlebar {
5305ef8d
RK
202 margin-top: -3px;
203 margin-bottom: 3px;
319c6529
RK
204}
205
206#main-window[sizemode="maximized"] > #titlebar {
5305ef8d 207 margin-top: 4px;
319c6529
RK
208}
209
ee49f520
RK
210@media (-moz-mac-graphite-theme), (-moz-mac-lion-theme) {
211 /* This is a hackish workaround to cover most of Mac OS until bug 1060941 gets fixed. */
58d9f24a
RK
212 #main-window[sizemode="normal"] > #titlebar,
213 #main-window[sizemode="maximized"] > #titlebar {
4711fba5
RK
214 margin-top: 19px;
215 /* There is a margin-bottom set to -23 by code. */
54d92f05
RK
216 }
217}
218
43cc2806
RK
219/* The button box must appear on top of the navigator-toolbox in order for
220 * click and hover mouse events to work properly for the button in the restored
221 * window state. Otherwise, elements in the navigator-toolbox, like the menubar,
222 * can swallow those events. It will also place the buttons above the fog on
223 * themes with Aero Glass.
224 */
83ac1f44
RK
225#titlebar-buttonbox,
226#main-window[sizemode="maximized"] #titlebar-buttonbox {
b7f3670c
RK
227 -moz-appearance: none;
228 margin-top: 6px;
229 margin-top: 4px;
5305ef8d 230 -moz-margin-end: 3px;
43cc2806 231 z-index: 1;
319c6529
RK
232}
233
319c6529
RK
234.titlebar-placeholder[type="appmenu-button"] {
235 margin-left: 4px;
236}
237
238.titlebar-placeholder[type="caption-buttons"] {
239 margin-left: 10px;
240}
241
242/* titlebar command buttons */
243
244#titlebar-min {
5305ef8d
RK
245 list-style-image: url("chrome://navigator/skin/icons/win-minimize.gif");
246}
247
248#titlebar-min:hover {
249 list-style-image: url("chrome://navigator/skin/icons/win-minimize-hover.gif");
319c6529
RK
250}
251
252#titlebar-max {
5305ef8d
RK
253 list-style-image: url("chrome://browser/skin/win-maximize.gif");
254}
255
256#titlebar-max:hover {
257 list-style-image: url("chrome://browser/skin/win-maximize-hover.gif");
319c6529
RK
258}
259
260#main-window[sizemode="maximized"] #titlebar-max {
5305ef8d
RK
261 list-style-image: url("chrome://navigator/skin/icons/win-restore.gif");
262}
263
264#main-window[sizemode="maximized"] #titlebar-max:hover {
265 list-style-image: url("chrome://navigator/skin/icons/win-restore-hover.gif");
319c6529
RK
266}
267
268#titlebar-close {
5305ef8d
RK
269 list-style-image: url("chrome://navigator/skin/icons/win-close.gif");
270}
271
272#titlebar-close:hover {
273 list-style-image: url("chrome://navigator/skin/icons/win-close-hover.gif");
acb0e9b8 274}
275
ee49f520
RK
276@media (-moz-mac-graphite-theme), (-moz-mac-lion-theme) {
277 /* This is a hackish workaround to cover most of Mac OS until bug 1060941 gets fixed. */
54d92f05
RK
278 #titlebar-fullscreen-button {
279 -moz-appearance: none;
280 list-style-image: url("chrome://browser/skin/icons/mac-fullscreen-icon.png");
281 -moz-image-region: rect(0px, 16px, 16px, 0px);
282 }
283
284 #titlebar-fullscreen-button:hover {
285 -moz-image-region: rect(0px, 32px, 16px, 16px);
286 }
287
288 @media (min-resolution: 2dppx) {
289 #titlebar-fullscreen-button {
290 list-style-image: url("chrome://browser/skin/icons/mac-fullscreen-icon@2x.png");
291 -moz-image-region: rect(0px, 32px, 32px, 0px);
292 }
293
294 #titlebar-fullscreen-button:hover {
295 -moz-image-region: rect(0px, 64px, 32px, 32px);
296 }
297 }
298}
299
300
acb0e9b8 301/* ::::: bookmark buttons ::::: */
302
c0f6797e
RK
303toolbarbutton.bookmark-item:not(.subviewbutton),
304#personal-bookmarks[cui-areatype="toolbar"]:not([overflowedItem=true]) > #bookmarks-toolbar-placeholder {
305/* margin: 0;
306 padding: 2px 3px;*/
307}
308
309toolbarbutton.bookmark-item:not([disabled="true"]):not(.subviewbutton):hover:active,
310toolbarbutton.bookmark-item[open="true"] {
311/* padding-top: 3px;
312 padding-bottom: 1px;
313 -moz-padding-start: 4px;
314 -moz-padding-end: 2px;*/
315}
316
26125509
RK
317.bookmark-item > .toolbarbutton-icon,
318#personal-bookmarks[cui-areatype="toolbar"] > #bookmarks-toolbar-placeholder > .toolbarbutton-icon {
acb0e9b8 319 width: 16px;
320 height: 16px;
832af407
RK
321 -moz-margin-start: 1px;
322 -moz-margin-end: 2px;
acb0e9b8 323}
324
26125509
RK
325/* Force the display of the label for bookmarks */
326.bookmark-item > .toolbarbutton-text,
327#personal-bookmarks[cui-areatype="toolbar"] > #bookmarks-toolbar-placeholder > .toolbarbutton-text {
acb0e9b8 328 display: -moz-box !important;
329}
330
319c6529
RK
331.bookmark-item > .toolbarbutton-menu-dropmarker {
332 display: none;
333}
334
26125509 335#bookmarks-toolbar-placeholder {
8da9da4e 336 list-style-image: url("chrome://communicator/skin/bookmarks/bookmarksToolbar.png") !important;
319c6529
RK
337}
338
e20c83c3
RK
339toolbarpaletteitem[place="palette"] > #personal-bookmarks > #bookmarks-toolbar-placeholder,
340#personal-bookmarks[cui-areatype="menu-panel"] > #bookmarks-toolbar-placeholder {
341 list-style-image: url("chrome://browser/skin/places/bookmarksToolbar-menuPanel.png") !important;
342}
343
344/* ----- BOOKMARK STAR ANIMATION ----- */
345
346@keyframes animation-bookmarkAdded {
347 from { transform: rotate(0deg) translateX(-16px) rotate(0deg) scale(1); opacity: 0; }
348 60% { transform: rotate(180deg) translateX(-16px) rotate(-180deg) scale(2.2); opacity: 1; }
349 80% { opacity: 1; }
350 to { transform: rotate(180deg) translateX(-16px) rotate(-180deg) scale(1); opacity: 0; }
351}
352
353@keyframes animation-bookmarkPulse {
354 from { transform: scale(1); }
355 50% { transform: scale(1.3); }
356 to { transform: scale(1); }
357}
358
359#bookmarked-notification-container {
360 min-height: 1px;
361 min-width: 1px;
362 height: 1px;
363 margin-bottom: -1px;
364 z-index: 5;
365 position: relative;
366}
367
368#bookmarked-notification {
369 background-size: 16px;
370 background-position: center;
371 background-repeat: no-repeat;
372 width: 16px;
373 height: 16px;
374 opacity: 0;
375}
376
c0f6797e
RK
377#bookmarked-notification-dropmarker-anchor {
378 z-index: -1;
379 position: relative;
380}
381
382#bookmarked-notification-dropmarker-icon {
383 width: 18px;
384 height: 18px;
385 visibility: hidden;
386}
387
e20c83c3
RK
388#bookmarked-notification-anchor[notification="finish"] > #bookmarked-notification {
389 background-image: url("chrome://browser/skin/places/bookmarks-notification-finish.png");
390 animation: animation-bookmarkAdded 800ms;
391 animation-timing-function: ease, ease, ease;
392}
393
394#bookmarks-menu-button[notification="finish"] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon {
c0f6797e
RK
395 list-style-image: none !important;
396}
397
398#bookmarked-notification-dropmarker-anchor[notification="finish"] > #bookmarked-notification-dropmarker-icon {
399 visibility: visible;
e20c83c3
RK
400 animation: animation-bookmarkPulse 300ms;
401 animation-delay: 600ms;
402 animation-timing-function: ease-out;
403}
404
319c6529
RK
405/* ::::: bookmark menus ::::: */
406
407menu.bookmark-item,
408menuitem.bookmark-item {
409 min-width: 0;
ab799a7a 410 max-width: 32em;
319c6529
RK
411}
412
e20c83c3 413.bookmark-item:not(.subviewbutton) > .menu-iconic-left {
319c6529
RK
414 margin-top: 0;
415 margin-bottom: 0;
416}
417
418.bookmark-item > .menu-iconic-left > .menu-iconic-icon {
419 -moz-padding-start: 0px;
420}
421
422/* ::::: bookmark items ::::: */
423
424.bookmark-item {
dce90fef 425 list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
8da9da4e 426 -moz-image-region: auto;
319c6529
RK
427}
428
429.bookmark-item[container] {
430 list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-closed.gif");
8da9da4e 431 -moz-image-region: auto;
319c6529
RK
432}
433
434.bookmark-item[container][open] {
435 list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-open.gif");
8da9da4e 436 -moz-image-region: auto;
319c6529
RK
437}
438
8da9da4e
RK
439.bookmark-item[container][livemark] {
440 list-style-image: url("chrome://communicator/skin/bookmarks/livemark-folder.png");
319c6529
RK
441 -moz-image-region: auto;
442}
443
444.bookmark-item[container][livemark] .bookmark-item {
8da9da4e 445 list-style-image: url("chrome://communicator/skin/bookmarks/livemark-item.png");
719b06bc 446 -moz-image-region: rect(0px, 16px, 16px, 0px);
319c6529
RK
447}
448
eec397be 449.bookmark-item[container][livemark] .bookmark-item[visited] {
719b06bc 450 -moz-image-region: rect(0px, 32px, 16px, 16px);
eec397be
RK
451}
452
319c6529 453.bookmark-item[container][query] {
8da9da4e 454 list-style-image: url("chrome://communicator/skin/bookmarks/query.png");
319c6529
RK
455 -moz-image-region: auto;
456}
457
458.bookmark-item[query][tagContainer] {
459 list-style-image: url("chrome://mozapps/skin/places/tagContainerIcon.png");
460 -moz-image-region: auto;
461}
462
463.bookmark-item[query][dayContainer] {
8da9da4e 464 list-style-image: url("chrome://communicator/skin/history/calendar.png");
319c6529
RK
465 -moz-image-region: auto;
466}
467
468.bookmark-item[query][hostContainer] {
469 list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-closed.gif");
8da9da4e 470 -moz-image-region: auto;
319c6529
RK
471}
472
473.bookmark-item[query][hostContainer][open] {
474 list-style-image: url("chrome://communicator/skin/bookmarks/bookmark-folder-open.gif");
8da9da4e 475 -moz-image-region: auto;
319c6529
RK
476}
477
b1234db8
RK
478.bookmark-item[cutting] > .toolbarbutton-icon,
479.bookmark-item[cutting] > .menu-iconic-left > .menu-iconic-icon {
480 opacity: 0.5;
481}
482
483.bookmark-item[cutting] > .toolbarbutton-text,
484.bookmark-item[cutting] > .menu-iconic-left > .menu-iconic-text {
485 opacity: 0.7;
486}
487
319c6529
RK
488/* ::::: primary toolbar buttons ::::: */
489
43cc2806
RK
490/* === BEGIN toolbarbuttons.inc.css === */
491
492/* Whole section of this included file: */
51994fad
RK
493:-moz-any(#back-button, #forward-button, #home-button, #print-button, #downloads-button, #bookmarks-menu-button,
494 #new-tab-button, #new-window-button, #fullscreen-button, #sync-button, #feed-button, #tabview-button,
d4d77dc0 495 #social-share-button, #open-file-button, #find-button, #developer-button,
51994fad
RK
496 #preferences-button, #privatebrowsing-button, #save-page-button, #switch-to-metro-button, #add-ons-button,
497 #history-panelmenu, #nav-bar-overflow-button, #PanelUI-menu-button, #characterencoding-button,
498 #email-link-button, #sidebar-button, #zoom-out-button, #zoom-reset-button, #zoom-in-button, #cut-button,
e548e22e 499 #copy-button, #paste-button, #e10s-button, #panic-button, #web-apps-button, #webide-button),
51994fad 500
7d3f7f14 501#bookmarks-menu-button > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon {
43cc2806
RK
502 list-style-image: url("chrome://browser/skin/ToolbarFx.png");
503}
504
7d3f7f14 505#back-button {
43cc2806
RK
506 -moz-image-region: rect(0, 36px, 18px, 18px);
507}
508
7d3f7f14 509#back-button:hover:not([disabled="true"]) {
43cc2806
RK
510 -moz-image-region: rect(18px, 36px, 36px, 18px);
511}
512
7d3f7f14 513#back-button[disabled="true"] {
43cc2806
RK
514 -moz-image-region: rect(36px, 36px, 54px, 18px);
515}
516
7d3f7f14 517#forward-button {
43cc2806
RK
518 -moz-image-region: rect(0, 72px, 18px, 54px);
519}
520
7d3f7f14 521#forward-button:hover:not([disabled="true"]) {
43cc2806
RK
522 -moz-image-region: rect(18px, 72px, 36px, 54px);
523}
524
7d3f7f14 525#forward-button[disabled="true"] {
43cc2806
RK
526 -moz-image-region: rect(36px, 72px, 54px, 54px);
527}
528
7d3f7f14
RK
529#back-button:-moz-locale-dir(rtl) > .toolbarbutton-icon,
530#forward-button:-moz-locale-dir(rtl) {
43cc2806
RK
531 transform: scaleX(-1);
532}
533
7d3f7f14 534#home-button[cui-areatype="toolbar"] {
43cc2806
RK
535 -moz-image-region: rect(0, 126px, 18px, 108px);
536}
537
7d3f7f14 538#home-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
539 -moz-image-region: rect(18px, 126px, 36px, 108px);
540}
541
7d3f7f14 542#bookmarks-menu-button[cui-areatype="toolbar"] {
43cc2806
RK
543 -moz-image-region: rect(0, 144px, 18px, 126px);
544}
545
7d3f7f14
RK
546#bookmarks-menu-button[cui-areatype="toolbar"]:hover,
547#bookmarks-menu-button[cui-areatype="toolbar"][open="true"] {
43cc2806
RK
548 -moz-image-region: rect(18px, 144px, 36px, 126px);
549}
550
43ee1307 551/* When "new tab" page shows up, the menubutton-button (star button) is disabled */
7d3f7f14 552#bookmarks-menu-button[cui-areatype="toolbar"] > .toolbarbutton-menubutton-button[disabled="true"] {
43ee1307
RK
553 -moz-image-region: rect(36px, 144px, 54px, 126px) !important;
554 background-color: transparent !important;
555}
556
7d3f7f14 557#bookmarks-menu-button[cui-areatype="toolbar"][starred] {
43cc2806
RK
558 -moz-image-region: rect(0, 162px, 18px, 144px);
559}
560
7d3f7f14 561#bookmarks-menu-button[cui-areatype="toolbar"][starred]:hover,
83e3b5cf
RK
562#bookmarks-menu-button[cui-areatype="toolbar"][starred][open="true"],
563#bookmarks-menu-button[cui-areatype="toolbar"][starred] > .toolbarbutton-menubutton-button[open="true"] {
564 /* When starred and clicked (for edit/delete dialog),
565 * then only the menubutton-button itself is open, but not the whole menubutton. */
43cc2806
RK
566 -moz-image-region: rect(18px, 162px, 36px, 144px);
567}
568
7d3f7f14 569#bookmarks-menu-button[cui-areatype="toolbar"] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon {
43cc2806
RK
570 -moz-image-region: rect(0, 630px, 18px, 612px);
571}
572
7d3f7f14 573#bookmarks-menu-button[cui-areatype="toolbar"] > .toolbarbutton-menubutton-dropmarker {
43cc2806
RK
574 padding: 1px;
575 -moz-box-align: center;
576}
577
7d3f7f14
RK
578#bookmarks-menu-button[cui-areatype="toolbar"]:hover > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
579#bookmarks-menu-button[cui-areatype="toolbar"][open="true"] > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon {
43cc2806
RK
580 -moz-image-region: rect(18px, 630px, 36px, 612px);
581}
582
7d3f7f14
RK
583#bookmarks-menu-button[cui-areatype="toolbar"]:hover:active > .toolbarbutton-menubutton-dropmarker,
584#bookmarks-menu-button[cui-areatype="toolbar"][open="true"] > .toolbarbutton-menubutton-dropmarker {
43cc2806
RK
585 padding-top: 2px;
586 padding-bottom: 0px;
587 -moz-padding-start: 2px;
588 -moz-padding-end: 0px;
589}
590
7d3f7f14 591#history-panelmenu[cui-areatype="toolbar"] {
43cc2806
RK
592 -moz-image-region: rect(0, 180px, 18px, 162px);
593}
594
7d3f7f14
RK
595#history-panelmenu[cui-areatype="toolbar"]:hover,
596#history-panelmenu[cui-areatype="toolbar"][open="true"] {
43cc2806
RK
597 -moz-image-region: rect(18px, 180px, 36px, 162px);
598}
599
7d3f7f14 600#downloads-button[cui-areatype="toolbar"] {
43cc2806
RK
601 -moz-image-region: rect(0, 198px, 18px, 180px);
602}
603
7d3f7f14
RK
604#downloads-button[cui-areatype="toolbar"]:hover,
605#downloads-button[cui-areatype="toolbar"][open="true"] {
43cc2806
RK
606 -moz-image-region: rect(18px, 198px, 36px, 180px);
607}
608
7d3f7f14 609#add-ons-button[cui-areatype="toolbar"] {
43cc2806
RK
610 -moz-image-region: rect(0, 216px, 18px, 198px);
611}
612
7d3f7f14 613#add-ons-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
614 -moz-image-region: rect(18px, 216px, 36px, 198px);
615}
616
7d3f7f14 617#open-file-button[cui-areatype="toolbar"] {
43cc2806
RK
618 -moz-image-region: rect(0, 234px, 18px, 216px);
619}
620
7d3f7f14 621#open-file-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
622 -moz-image-region: rect(18px, 234px, 36px, 216px);
623}
624
7d3f7f14 625#save-page-button[cui-areatype="toolbar"] {
43cc2806
RK
626 -moz-image-region: rect(0, 252px, 18px, 234px);
627}
628
7d3f7f14 629#save-page-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
630 -moz-image-region: rect(18px, 252px, 36px, 234px);
631}
632
7d3f7f14 633#sync-button[cui-areatype="toolbar"] {
43cc2806
RK
634 -moz-image-region: rect(0, 270px, 18px, 252px);
635}
636
7d3f7f14 637#sync-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
638 -moz-image-region: rect(18px, 270px, 36px, 252px);
639}
640
5401f433
RK
641#sync-button[cui-areatype="toolbar"][status="active"],
642#sync-button[cui-areatype="toolbar"][status="active"]:hover:active:not([disabled="true"]) {
643 list-style-image: url("chrome://browser/skin/syncProgress-toolbar.png");
644 -moz-image-region: rect(0, 18px, 18px, 0px);
645}
646
647/*
648#sync-button[cui-areatype="toolbar"][status="active"]:-moz-lwtheme-brighttext,
649#sync-button[cui-areatype="toolbar"][status="active"]:-moz-lwtheme-brighttext:hover:active:not([disabled="true"]) {
650 list-style-image: url("chrome://browser/skin/syncProgress-toolbar-inverted.png");
651}
652*/
653
7d3f7f14 654#feed-button[cui-areatype="toolbar"] {
43cc2806
RK
655 -moz-image-region: rect(0, 288px, 18px, 270px);
656}
657
7d3f7f14 658#feed-button[cui-areatype="toolbar"]:hover:not([disabled="true"]) {
43cc2806
RK
659 -moz-image-region: rect(18px, 288px, 36px, 270px);
660}
661
7d3f7f14 662#feed-button[cui-areatype="toolbar"][disabled="true"] {
cc4b0b0d
RK
663 -moz-image-region: rect(36px, 288px, 54px, 270px);
664}
665
7d3f7f14 666#social-share-button[cui-areatype="toolbar"] {
43cc2806
RK
667 -moz-image-region: rect(0px, 306px, 18px, 288px);
668}
669
22180555
RK
670#social-share-button[cui-areatype="toolbar"]:hover:not([disabled="true"]),
671#social-share-button[cui-areatype="toolbar"][open="true"] {
43cc2806
RK
672 -moz-image-region: rect(18px, 306px, 36px, 288px);
673}
674
22180555
RK
675#social-share-button[cui-areatype="toolbar"][disabled="true"] {
676 -moz-image-region: rect(36px, 306px, 54px, 288px);
677}
678
7d3f7f14 679#characterencoding-button[cui-areatype="toolbar"] {
43cc2806
RK
680 -moz-image-region: rect(0, 324px, 18px, 306px);
681}
682
7d3f7f14
RK
683#characterencoding-button[cui-areatype="toolbar"]:hover:not([disabled="true"]),
684#characterencoding-button[cui-areatype="toolbar"][open="true"] {
43cc2806
RK
685 -moz-image-region: rect(18px, 324px, 36px, 306px);
686}
687
7d3f7f14 688#characterencoding-button[cui-areatype="toolbar"][disabled="true"] {
cc4b0b0d
RK
689 -moz-image-region: rect(36px, 324px, 54px, 306px);
690}
691
7d3f7f14 692#new-window-button[cui-areatype="toolbar"] {
43cc2806
RK
693 -moz-image-region: rect(0, 342px, 18px, 324px);
694}
695
7d3f7f14 696#new-window-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
697 -moz-image-region: rect(18px, 342px, 36px, 324px);
698}
699
46e71434
RK
700#e10s-button[cui-areatype="toolbar"] {
701 -moz-image-region: rect(0, 342px, 18px, 324px);
702}
703
704#e10s-button[cui-areatype="toolbar"]:hover {
705 -moz-image-region: rect(18px, 342px, 36px, 324px);
706}
707
708#e10s-button > .toolbarbutton-icon {
709 transform: scaleY(-1);
710}
711
7d3f7f14 712#new-tab-button[cui-areatype="toolbar"] {
43cc2806
RK
713 -moz-image-region: rect(0, 360px, 18px, 342px);
714}
715
7d3f7f14 716#new-tab-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
717 -moz-image-region: rect(18px, 360px, 36px, 342px);
718}
719
7d3f7f14 720#privatebrowsing-button[cui-areatype="toolbar"] {
43cc2806
RK
721 -moz-image-region: rect(0, 378px, 18px, 360px);
722}
723
7d3f7f14 724#privatebrowsing-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
725 -moz-image-region: rect(18px, 378px, 36px, 360px);
726}
727
7d3f7f14 728#find-button[cui-areatype="toolbar"] {
43cc2806
RK
729 -moz-image-region: rect(0, 396px, 18px, 378px);
730}
731
7d3f7f14 732#find-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
733 -moz-image-region: rect(18px, 396px, 36px, 378px);
734}
735
7d3f7f14 736#print-button[cui-areatype="toolbar"] {
43cc2806
RK
737 -moz-image-region: rect(0, 414px, 18px, 396px);
738}
739
7d3f7f14 740#print-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
741 -moz-image-region: rect(18px, 414px, 36px, 396px);
742}
743
7d3f7f14 744#fullscreen-button[cui-areatype="toolbar"] {
43cc2806
RK
745 -moz-image-region: rect(0, 432px, 18px, 414px);
746}
747
7d3f7f14 748#fullscreen-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
749 -moz-image-region: rect(18px, 432px, 36px, 414px);
750}
751
7d3f7f14 752#developer-button[cui-areatype="toolbar"] {
43cc2806
RK
753 -moz-image-region: rect(0, 450px, 18px, 432px);
754}
755
7d3f7f14
RK
756#developer-button[cui-areatype="toolbar"]:hover,
757#developer-button[cui-areatype="toolbar"][open="true"] {
43cc2806
RK
758 -moz-image-region: rect(18px, 450px, 36px, 432px);
759}
760
7d3f7f14 761#preferences-button[cui-areatype="toolbar"] {
43cc2806
RK
762 -moz-image-region: rect(0, 468px, 18px, 450px);
763}
764
7d3f7f14 765#preferences-button[cui-areatype="toolbar"]:hover {
43cc2806
RK
766 -moz-image-region: rect(18px, 468px, 36px, 450px);
767}
768
7d3f7f14 769#PanelUI-menu-button {
43cc2806
RK
770 -moz-image-region: rect(0, 486px, 18px, 468px);
771}
772
7d3f7f14
RK
773#PanelUI-menu-button:hover,
774#PanelUI-menu-button[open="true"] {
43cc2806
RK
775 -moz-image-region: rect(18px, 486px, 36px, 468px);
776}
777
51994fad 778#edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #cut-button {
43cc2806
RK
779 -moz-image-region: rect(0, 504px, 18px, 486px);
780}
781
51994fad 782#edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #cut-button:hover:not([disabled="true"]) {
43cc2806
RK
783 -moz-image-region: rect(18px, 504px, 36px, 486px);
784}
785
51994fad 786#edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #cut-button[disabled="true"] {
cc4b0b0d
RK
787 -moz-image-region: rect(36px, 504px, 54px, 486px);
788}
789
51994fad 790#edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #copy-button {
43cc2806
RK
791 -moz-image-region: rect(0, 522px, 18px, 504px);
792}
793
51994fad 794#edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #copy-button:hover:not([disabled="true"]) {
43cc2806
RK
795 -moz-image-region: rect(18px, 522px, 36px, 504px);
796}
797
51994fad 798#edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #copy-button[disabled="true"] {
cc4b0b0d
RK
799 -moz-image-region: rect(36px, 522px, 54px, 504px);
800}
801
51994fad 802#edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #paste-button {
43cc2806
RK
803 -moz-image-region: rect(0, 540px, 18px, 522px);
804}
805
51994fad 806#edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #paste-button:hover:not([disabled="true"]) {
43cc2806
RK
807 -moz-image-region: rect(18px, 540px, 36px, 522px);
808}
809
51994fad 810#edit-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #paste-button[disabled="true"] {
cc4b0b0d
RK
811 -moz-image-region: rect(36px, 540px, 54px, 522px);
812}
813
51994fad 814#zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-out-button {
43cc2806
RK
815 -moz-image-region: rect(0, 558px, 18px, 540px);
816}
817
51994fad 818#zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-out-button:hover:not([disabled="true"]) {
43cc2806
RK
819 -moz-image-region: rect(18px, 558px, 36px, 540px);
820}
821
51994fad 822#zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-out-button[disabled="true"] {
cc4b0b0d
RK
823 -moz-image-region: rect(36px, 558px, 54px, 540px);
824}
825
51994fad 826#zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-in-button {
43cc2806
RK
827 -moz-image-region: rect(0, 576px, 18px, 558px);
828}
829
51994fad 830#zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-in-button:hover:not([disabled="true"]) {
43cc2806
RK
831 -moz-image-region: rect(18px, 576px, 36px, 558px);
832}
833
51994fad 834#zoom-controls:not(:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])) > #zoom-in-button[disabled="true"] {
cc4b0b0d
RK
835 -moz-image-region: rect(36px, 576px, 54px, 558px);
836}
837
7d3f7f14 838#nav-bar-overflow-button {
43cc2806
RK
839 -moz-image-region: rect(0, 612px, 18px, 594px);
840}
841
7d3f7f14
RK
842#nav-bar-overflow-button:hover,
843#nav-bar-overflow-button[open="true"] {
43cc2806
RK
844 -moz-image-region: rect(18px, 612px, 36px, 594px);
845}
846
46e71434
RK
847#nav-bar-overflow-button:-moz-locale-dir(rtl) > .toolbarbutton-icon {
848 transform: scaleX(-1);
849}
850
c0f6797e
RK
851#tabview-button {
852 -moz-image-region: rect(0, 648px, 18px, 630px);
853}
854
855#tabview-button:hover {
856 -moz-image-region: rect(18px, 648px, 36px, 630px);
857}
858
859#email-link-button[cui-areatype="toolbar"] {
860 -moz-image-region: rect(0, 666px, 18px, 648px);
861}
862
22180555 863#email-button[cui-areatype="toolbar"]:hover:not([disabled="true"]) {
c0f6797e
RK
864 -moz-image-region: rect(18px, 666px, 36px, 648px);
865}
866
22180555
RK
867#email-button[cui-areatype="toolbar"][disabled="true"] {
868 -moz-image-region: rect(36px, 666px, 54px, 648px);
869}
870
c0f6797e
RK
871#sidebar-button[cui-areatype="toolbar"] {
872 -moz-image-region: rect(0, 684px, 18px, 666px);
873}
874
875#sidebar-button[cui-areatype="toolbar"]:hover {
876 -moz-image-region: rect(18px, 684px, 36px, 666px);
877}
878
22180555
RK
879#panic-button[cui-areatype="toolbar"] {
880 -moz-image-region: rect(0, 702px, 18px, 684px);
881}
882
883#panic-button[cui-areatype="toolbar"]:hover,
884#panic-button[cui-areatype="toolbar"][open] {
885 -moz-image-region: rect(18px, 702px, 36px, 684px);
886}
887
888#panic-button:-moz-locale-dir(rtl) > .toolbarbutton-icon {
889 transform: scaleX(-1);
890}
891
892#web-apps-button[cui-areatype="toolbar"] {
893 -moz-image-region: rect(0, 720px, 18px, 702px);
894}
895
896#web-apps-button[cui-areatype="toolbar"]:hover {
897 -moz-image-region: rect(18px, 720px, 36px, 702px);
898}
899
8d1f53f0
RK
900#loop-button-throttled > .toolbarbutton-badge-container,
901#loop-button > .toolbarbutton-badge-container {
d0e580f1
RK
902 list-style-image: url("chrome://browser/skin/loop/toolbarfx.png");
903 -moz-image-region: rect(0, 18px, 18px, 0);
904}
905
8d1f53f0
RK
906#loop-button-throttled:not([disabled="true"]):-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container,
907#loop-button:not([disabled="true"]):-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container {
d0e580f1
RK
908 -moz-image-region: rect(0, 90px, 18px, 72px);
909}
910
86d9f20a 911#loop-button-throttled[state="disabled"] > .toolbarbutton-badge-container,
8d1f53f0
RK
912#loop-button-throttled[disabled="true"] > .toolbarbutton-badge-container,
913#loop-button[state="disabled"] > .toolbarbutton-badge-container,
914#loop-button[disabled="true"] > .toolbarbutton-badge-container {
d0e580f1
RK
915 -moz-image-region: rect(0, 36px, 18px, 18px);
916}
917
8d1f53f0
RK
918#loop-button-throttled[disabled="true"]:-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container,
919#loop-button[disabled="true"]:-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container {
d0e580f1
RK
920 -moz-image-region: rect(0, 126px, 18px, 108px);
921}
922
8d1f53f0
RK
923#loop-button-throttled:not([disabled="true"])[state="error"] > .toolbarbutton-badge-container,
924#loop-button:not([disabled="true"])[state="error"] > .toolbarbutton-badge-container {
d0e580f1
RK
925 -moz-image-region: rect(0, 54px, 18px, 36px);
926}
927
8d1f53f0
RK
928#loop-button-throttled:not([disabled="true"])[state="action"] > .toolbarbutton-badge-container,
929#loop-button:not([disabled="true"])[state="action"] > .toolbarbutton-badge-container {
d0e580f1
RK
930 -moz-image-region: rect(0, 72px, 18px, 54px);
931}
932
8d1f53f0
RK
933#loop-button-throttled:not([disabled="true"])[state="active"] > .toolbarbutton-badge-container,
934#loop-button:not([disabled="true"])[state="active"] > .toolbarbutton-badge-container {
d0e580f1
RK
935 -moz-image-region: rect(0, 108px, 18px, 90px);
936}
937
e548e22e
RK
938#webide-button[cui-areatype="toolbar"] {
939 -moz-image-region: rect(0, 738px, 18px, 720px);
940}
941
942#webide-button[cui-areatype="toolbar"]:hover {
943 -moz-image-region: rect(18px, 738px, 36px, 720px);
944}
945
43cc2806
RK
946/* === END toolbarbuttons.inc.css === */
947
948/* === BEGIN menupanel.inc.css === */
949
950/* Menu panel and palette styles */
951
e548e22e
RK
952:root {
953 /* avoid aero overrides with changed filenames */
954 --menupanel-list-style-image: url(chrome://browser/skin/menuPanelFx.png);
955 --menupanel-small-list-style-image: url(chrome://browser/skin/menuPanelFx-small.png);
956}
957
51994fad 958toolbaritem[sdkstylewidget="true"] > toolbarbutton,
5401f433
RK
959:-moz-any(#back-button, #forward-button, #home-button, #print-button, #downloads-button, #bookmarks-menu-button,
960 #new-tab-button, #new-window-button, #fullscreen-button, #sync-button, #feed-button, #tabview-button,
1988bb88 961 #social-share-button, #open-file-button, #find-button, #developer-button,
5401f433
RK
962 #preferences-button, #privatebrowsing-button, #save-page-button, #switch-to-metro-button, #add-ons-button,
963 #history-panelmenu, #nav-bar-overflow-button, #PanelUI-menu-button, #characterencoding-button,
964 #email-link-button, #sidebar-button, #zoom-out-button, #zoom-reset-button, #zoom-in-button, #cut-button,
e548e22e 965 #copy-button, #paste-button, #e10s-button, #panic-button, #web-apps-button, #webide-button)[cui-areatype="menu-panel"],
5401f433
RK
966toolbarpaletteitem[place="palette"] > :-moz-any(#back-button, #forward-button, #home-button, #print-button, #downloads-button, #bookmarks-menu-button,
967 #new-tab-button, #new-window-button, #fullscreen-button, #sync-button, #feed-button, #tabview-button,
1988bb88 968 #social-share-button, #open-file-button, #find-button, #developer-button,
5401f433
RK
969 #preferences-button, #privatebrowsing-button, #save-page-button, #switch-to-metro-button, #add-ons-button,
970 #history-panelmenu, #nav-bar-overflow-button, #PanelUI-menu-button, #characterencoding-button,
971 #email-link-button, #sidebar-button, #zoom-out-button, #zoom-reset-button, #zoom-in-button, #cut-button,
e548e22e
RK
972 #copy-button, #paste-button, #e10s-button, #panic-button, #web-apps-button, #webide-button) {
973 list-style-image: var(--menupanel-list-style-image);
43cc2806
RK
974}
975
976#home-button[cui-areatype="menu-panel"],
7d3f7f14 977toolbarpaletteitem[place="palette"] > #home-button {
43cc2806
RK
978 -moz-image-region: rect(0px, 128px, 32px, 96px);
979}
980
cc4b0b0d 981#home-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 982toolbarpaletteitem[place="palette"] > #home-button:hover {
cc4b0b0d
RK
983 -moz-image-region: rect(32px, 128px, 64px, 96px);
984}
985
43cc2806 986#bookmarks-menu-button[cui-areatype="menu-panel"],
7d3f7f14 987toolbarpaletteitem[place="palette"] > #bookmarks-menu-button {
46e71434 988 -moz-image-region: rect(0px, 192px, 32px, 160px);
43cc2806
RK
989}
990
cc4b0b0d 991#bookmarks-menu-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 992toolbarpaletteitem[place="palette"] > #bookmarks-menu-button:hover {
46e71434
RK
993 -moz-image-region: rect(32px, 192px, 64px, 160px);
994}
995
996#bookmarks-menu-button[cui-areatype="menu-panel"][panel-multiview-anchor=true] {
997 -moz-image-region: rect(32px, 192px, 64px, 160px);
cc4b0b0d
RK
998}
999
43cc2806 1000#history-panelmenu[cui-areatype="menu-panel"],
7d3f7f14 1001toolbarpaletteitem[place="palette"] > #history-panelmenu {
43cc2806
RK
1002 -moz-image-region: rect(0px, 224px, 32px, 192px);
1003}
1004
cc4b0b0d 1005#history-panelmenu[cui-areatype="menu-panel"]:hover,
7d3f7f14 1006toolbarpaletteitem[place="palette"] > #history-panelmenu:hover {
cc4b0b0d
RK
1007 -moz-image-region: rect(32px, 224px, 64px, 192px);
1008}
1009
46e71434
RK
1010#history-panelmenu[cui-areatype="menu-panel"][panel-multiview-anchor=true] {
1011 -moz-image-region: rect(32px, 224px, 64px, 192px);
1012}
1013
43cc2806 1014#downloads-button[cui-areatype="menu-panel"],
7d3f7f14 1015toolbarpaletteitem[place="palette"] > #downloads-button {
43cc2806
RK
1016 -moz-image-region: rect(0px, 256px, 32px, 224px);
1017}
1018
cc4b0b0d 1019#downloads-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1020toolbarpaletteitem[place="palette"] > #downloads-button:hover {
cc4b0b0d
RK
1021 -moz-image-region: rect(32px, 256px, 64px, 224px);
1022}
1023
43cc2806 1024#add-ons-button[cui-areatype="menu-panel"],
7d3f7f14 1025toolbarpaletteitem[place="palette"] > #add-ons-button {
43cc2806
RK
1026 -moz-image-region: rect(0px, 288px, 32px, 256px);
1027}
1028
cc4b0b0d 1029#add-ons-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1030toolbarpaletteitem[place="palette"] > #add-ons-button:hover {
cc4b0b0d
RK
1031 -moz-image-region: rect(32px, 288px, 64px, 256px);
1032}
1033
43cc2806 1034#open-file-button[cui-areatype="menu-panel"],
7d3f7f14 1035toolbarpaletteitem[place="palette"] > #open-file-button {
43cc2806
RK
1036 -moz-image-region: rect(0px, 320px, 32px, 288px);
1037}
1038
cc4b0b0d 1039#open-file-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1040toolbarpaletteitem[place="palette"] > #open-file-button:hover {
cc4b0b0d
RK
1041 -moz-image-region: rect(32px, 320px, 64px, 288px);
1042}
1043
43cc2806 1044#save-page-button[cui-areatype="menu-panel"],
7d3f7f14 1045toolbarpaletteitem[place="palette"] > #save-page-button {
43cc2806
RK
1046 -moz-image-region: rect(0px, 352px, 32px, 320px);
1047}
1048
cc4b0b0d 1049#save-page-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1050toolbarpaletteitem[place="palette"] > #save-page-button:hover {
cc4b0b0d
RK
1051 -moz-image-region: rect(32px, 352px, 64px, 320px);
1052}
1053
43cc2806 1054#sync-button[cui-areatype="menu-panel"],
7d3f7f14 1055toolbarpaletteitem[place="palette"] > #sync-button {
43cc2806
RK
1056 -moz-image-region: rect(0px, 384px, 32px, 352px);
1057}
1058
cc4b0b0d 1059#sync-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1060toolbarpaletteitem[place="palette"] > #sync-button:hover {
cc4b0b0d
RK
1061 -moz-image-region: rect(32px, 384px, 64px, 352px);
1062}
1063
5401f433
RK
1064#sync-button[cui-areatype="menu-panel"][status="active"] {
1065 list-style-image: url("chrome://browser/skin/syncProgress-menuPanel.png");
1066 -moz-image-region: rect(0px, 32px, 32px, 0px);
1067}
1068
43cc2806 1069#feed-button[cui-areatype="menu-panel"],
7d3f7f14 1070toolbarpaletteitem[place="palette"] > #feed-button {
43cc2806
RK
1071 -moz-image-region: rect(0px, 416px, 32px, 384px);
1072}
1073
cc4b0b0d 1074#feed-button[cui-areatype="menu-panel"]:hover:not([disabled="true"]),
7d3f7f14 1075toolbarpaletteitem[place="palette"] > #feed-button:hover:not([disabled="true"]) {
cc4b0b0d
RK
1076 -moz-image-region: rect(32px, 416px, 64px, 384px);
1077}
1078
1079#feed-button[cui-areatype="menu-panel"][disabled="true"],
7d3f7f14 1080toolbarpaletteitem[place="palette"] > #feed-button[disabled="true"] {
cc4b0b0d
RK
1081 -moz-image-region: rect(64px, 416px, 96px, 384px);
1082}
1083
43cc2806 1084#social-share-button[cui-areatype="menu-panel"],
7d3f7f14 1085toolbarpaletteitem[place="palette"] > #social-share-button {
43cc2806
RK
1086 -moz-image-region: rect(0px, 448px, 32px, 416px);
1087}
1088
22180555
RK
1089#social-share-button[cui-areatype="menu-panel"]:hover:not([disabled="true"]),
1090toolbarpaletteitem[place="palette"] > #social-share-button:hover:not([disabled="true"]) {
cc4b0b0d
RK
1091 -moz-image-region: rect(32px, 448px, 64px, 416px);
1092}
1093
22180555
RK
1094#social-share-button[cui-areatype="menu-panel"][disabled="true"],
1095toolbarpaletteitem[place="palette"] > #social-share-button[disabled="true"] {
1096 -moz-image-region: rect(64px, 448px, 96px, 416px);
1097}
1098
43cc2806 1099#characterencoding-button[cui-areatype="menu-panel"],
7d3f7f14 1100toolbarpaletteitem[place="palette"] > #characterencoding-button {
43cc2806
RK
1101 -moz-image-region: rect(0px, 480px, 32px, 448px);
1102}
1103
cc4b0b0d 1104#characterencoding-button[cui-areatype="menu-panel"]:hover:not([disabled="true"]),
7d3f7f14 1105toolbarpaletteitem[place="palette"] > #characterencoding-button:hover:not([disabled="true"]) {
cc4b0b0d
RK
1106 -moz-image-region: rect(32px, 480px, 64px, 448px);
1107}
1108
1109#characterencoding-button[cui-areatype="menu-panel"][disabled="true"],
7d3f7f14 1110toolbarpaletteitem[place="palette"] > #characterencoding-button[disabled="true"] {
cc4b0b0d
RK
1111 -moz-image-region: rect(64px, 480px, 96px, 448px);
1112}
1113
46e71434
RK
1114#characterencoding-button[cui-areatype="menu-panel"][panel-multiview-anchor=true] {
1115 -moz-image-region: rect(32px, 480px, 64px, 448px);
1116}
1117
43cc2806 1118#new-window-button[cui-areatype="menu-panel"],
7d3f7f14 1119toolbarpaletteitem[place="palette"] > #new-window-button {
43cc2806
RK
1120 -moz-image-region: rect(0px, 512px, 32px, 480px);
1121}
1122
cc4b0b0d 1123#new-window-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1124toolbarpaletteitem[place="palette"] > #new-window-button:hover {
cc4b0b0d
RK
1125 -moz-image-region: rect(32px, 512px, 64px, 480px);
1126}
1127
5401f433
RK
1128#e10s-button[cui-areatype="menu-panel"],
1129toolbarpaletteitem[place="palette"] > #e10s-button {
1130 -moz-image-region: rect(0px, 512px, 32px, 480px);
1131}
1132
1133#e10s-button[cui-areatype="menu-panel"]:hover,
1134toolbarpaletteitem[place="palette"] > #e10s-button:hover {
1135 -moz-image-region: rect(32px, 512px, 64px, 480px);
1136}
1137
43cc2806 1138#new-tab-button[cui-areatype="menu-panel"],
7d3f7f14 1139toolbarpaletteitem[place="palette"] > #new-tab-button {
43cc2806
RK
1140 -moz-image-region: rect(0px, 544px, 32px, 512px);
1141}
1142
cc4b0b0d 1143#new-tab-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1144toolbarpaletteitem[place="palette"] > #new-tab-button:hover {
cc4b0b0d
RK
1145 -moz-image-region: rect(32px, 544px, 64px, 512px);
1146}
1147
43cc2806 1148#privatebrowsing-button[cui-areatype="menu-panel"],
7d3f7f14 1149toolbarpaletteitem[place="palette"] > #privatebrowsing-button {
43cc2806
RK
1150 -moz-image-region: rect(0px, 576px, 32px, 544px);
1151}
1152
cc4b0b0d 1153#privatebrowsing-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1154toolbarpaletteitem[place="palette"] > #privatebrowsing-button:hover {
cc4b0b0d
RK
1155 -moz-image-region: rect(32px, 576px, 64px, 544px);
1156}
1157
46e71434
RK
1158#tabview-button[cui-areatype="menu-panel"],
1159toolbarpaletteitem[place="palette"] > #tabview-button {
1160 -moz-image-region: rect(0px, 608px, 32px, 576px);
1161}
1162
1163#tabview-button[cui-areatype="menu-panel"]:hover,
1164toolbarpaletteitem[place="palette"] > #tabview-button:hover {
1165 -moz-image-region: rect(32px, 608px, 64px, 576px);
1166}
1167
43cc2806 1168#find-button[cui-areatype="menu-panel"],
7d3f7f14 1169toolbarpaletteitem[place="palette"] > #find-button {
43cc2806
RK
1170 -moz-image-region: rect(0px, 640px, 32px, 608px);
1171}
1172
cc4b0b0d 1173#find-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1174toolbarpaletteitem[place="palette"] > #find-button:hover {
cc4b0b0d
RK
1175 -moz-image-region: rect(32px, 640px, 64px, 608px);
1176}
1177
43cc2806 1178#print-button[cui-areatype="menu-panel"],
7d3f7f14 1179toolbarpaletteitem[place="palette"] > #print-button {
43cc2806
RK
1180 -moz-image-region: rect(0px, 672px, 32px, 640px);
1181}
1182
cc4b0b0d 1183#print-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1184toolbarpaletteitem[place="palette"] > #print-button:hover {
cc4b0b0d
RK
1185 -moz-image-region: rect(32px, 672px, 64px, 640px);
1186}
1187
43cc2806 1188#fullscreen-button[cui-areatype="menu-panel"],
7d3f7f14 1189toolbarpaletteitem[place="palette"] > #fullscreen-button {
43cc2806
RK
1190 -moz-image-region: rect(0px, 704px, 32px, 672px);
1191}
1192
cc4b0b0d 1193#fullscreen-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1194toolbarpaletteitem[place="palette"] > #fullscreen-button:hover {
cc4b0b0d
RK
1195 -moz-image-region: rect(32px, 704px, 64px, 672px);
1196}
1197
43cc2806 1198#developer-button[cui-areatype="menu-panel"],
7d3f7f14 1199toolbarpaletteitem[place="palette"] > #developer-button {
43cc2806
RK
1200 -moz-image-region: rect(0px, 736px, 32px, 704px);
1201}
1202
cc4b0b0d 1203#developer-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1204toolbarpaletteitem[place="palette"] > #developer-button:hover {
cc4b0b0d
RK
1205 -moz-image-region: rect(32px, 736px, 64px, 704px);
1206}
1207
46e71434
RK
1208#developer-button[cui-areatype="menu-panel"][panel-multiview-anchor=true] {
1209 -moz-image-region: rect(32px, 736px, 64px, 704px);
1210}
1211
43cc2806 1212#preferences-button[cui-areatype="menu-panel"],
7d3f7f14 1213toolbarpaletteitem[place="palette"] > #preferences-button {
43cc2806
RK
1214 -moz-image-region: rect(0px, 768px, 32px, 736px);
1215}
1216
cc4b0b0d 1217#preferences-button[cui-areatype="menu-panel"]:hover,
7d3f7f14 1218toolbarpaletteitem[place="palette"] > #preferences-button:hover {
cc4b0b0d
RK
1219 -moz-image-region: rect(32px, 768px, 64px, 736px);
1220}
1221
46e71434
RK
1222#email-link-button[cui-areatype="menu-panel"],
1223toolbarpaletteitem[place="palette"] > #email-link-button {
1224 -moz-image-region: rect(0, 800px, 32px, 768px);
1225}
1226
22180555
RK
1227#email-link-button[cui-areatype="menu-panel"]:hover:not([disabled="true"]),
1228toolbarpaletteitem[place="palette"] > #email-link-button:hover:not([disabled="true"]) {
46e71434
RK
1229 -moz-image-region: rect(32px, 800px, 64px, 768px);
1230}
1231
22180555
RK
1232#email-link-button[cui-areatype="menu-panel"][disabled="true"],
1233toolbarpaletteitem[place="palette"] > #email-link-button[disabled="true"] {
1234 -moz-image-region: rect(64px, 800px, 96px, 768px);
1235}
1236
46e71434
RK
1237#sidebar-button[cui-areatype="menu-panel"],
1238toolbarpaletteitem[place="palette"] > #sidebar-button {
1239 -moz-image-region: rect(0, 864px, 32px, 832px);
1240}
1241
1242#sidebar-button[cui-areatype="menu-panel"]:hover,
22180555
RK
1243toolbarpaletteitem[place="palette"] > #sidebar-button:hover,
1244#sidebar-button[cui-areatype="menu-panel"][panel-multiview-anchor=true] {
46e71434
RK
1245 -moz-image-region: rect(32px, 864px, 64px, 832px);
1246}
1247
22180555
RK
1248#panic-button[cui-areatype="menu-panel"],
1249toolbarpaletteitem[place="palette"] > #panic-button {
1250 -moz-image-region: rect(0, 896px, 32px, 864px);
1251}
1252
1253#panic-button[cui-areatype="menu-panel"]:hover,
1254toolbarpaletteitem[place="palette"] > #panic-button:hover,
1255#panic-button[cui-areatype="menu-panel"][panel-multiview-anchor=true] {
1256 -moz-image-region: rect(32px, 896px, 64px, 864px);
1257}
1258
1259#web-apps-button[cui-areatype="menu-panel"],
1260toolbarpaletteitem[place="palette"] > #web-apps-button {
1261 -moz-image-region: rect(0, 928px, 32px, 896px);
1262}
1263
1264#web-apps-button[cui-areatype="menu-panel"]:hover,
1265toolbarpaletteitem[place="palette"] > #web-apps-button:hover {
1266 -moz-image-region: rect(32px, 928px, 64px, 896px);
46e71434
RK
1267}
1268
e548e22e
RK
1269#webide-button[cui-areatype="menu-panel"],
1270toolbarpaletteitem[place="palette"] > #webide-button {
1271 -moz-image-region: rect(0px, 960px, 32px, 928px);
1272}
1273
1274#webide-button[cui-areatype="menu-panel"]:hover,
1275toolbarpaletteitem[place="palette"] > #webide-button:hover {
1276 -moz-image-region: rect(32px, 960px, 64px, 928px);
1277}
1278
46e71434
RK
1279toolbaritem[sdkstylewidget="true"] > toolbarbutton {
1280 -moz-image-region: rect(0, 832px, 32px, 800px);
1281}
1282
86d9f20a 1283#loop-button-throttled[cui-areatype="menu-panel"] > .toolbarbutton-badge-container,
8d1f53f0
RK
1284toolbarpaletteitem[place="palette"] > #loop-button-throttled > .toolbarbutton-badge-container,
1285#loop-button[cui-areatype="menu-panel"] > .toolbarbutton-badge-container,
1286toolbarpaletteitem[place="palette"] > #loop-button > .toolbarbutton-badge-container {
d0e580f1
RK
1287 list-style-image: url("chrome://browser/skin/loop/menuPanel.png");
1288 -moz-image-region: rect(0, 32px, 32px, 0);
1289}
1290
1291/* Make sure that the state icons are not shown in the customization palette. */
8d1f53f0
RK
1292toolbarpaletteitem[place="palette"] > #loop-button-throttled > .toolbarbutton-badge-container,
1293toolbarpaletteitem[place="palette"] > #loop-button > .toolbarbutton-badge-container {
d0e580f1
RK
1294 -moz-image-region: rect(0, 32px, 32px, 0) !important;
1295}
1296
8d1f53f0
RK
1297#loop-button-throttled[cui-areatype="menu-panel"]:not([disabled="true"]):-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container,
1298#loop-button[cui-areatype="menu-panel"]:not([disabled="true"]):-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container {
d0e580f1
RK
1299 -moz-image-region: rect(0, 160px, 32px, 128px);
1300}
1301
86d9f20a 1302#loop-button-throttled[cui-areatype="menu-panel"][state="disabled"] > .toolbarbutton-badge-container,
8d1f53f0
RK
1303#loop-button-throttled[cui-areatype="menu-panel"][disabled="true"] > .toolbarbutton-badge-container,
1304#loop-button[cui-areatype="menu-panel"][state="disabled"] > .toolbarbutton-badge-container,
1305#loop-button[cui-areatype="menu-panel"][disabled="true"] > .toolbarbutton-badge-container {
d0e580f1
RK
1306 -moz-image-region: rect(0, 64px, 32px, 32px);
1307}
1308
8d1f53f0
RK
1309#loop-button-throttled[cui-areatype="menu-panel"][disabled="true"]:-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container,
1310#loop-button[cui-areatype="menu-panel"][disabled="true"]:-moz-any(:hover,:hover:active,[open]) > .toolbarbutton-badge-container {
d0e580f1
RK
1311 -moz-image-region: rect(0, 224px, 32px, 192px);
1312}
1313
8d1f53f0
RK
1314#loop-button-throttled[cui-areatype="menu-panel"]:not([disabled="true"])[state="error"] > .toolbarbutton-badge-container,
1315#loop-button[cui-areatype="menu-panel"]:not([disabled="true"])[state="error"] > .toolbarbutton-badge-container {
d0e580f1
RK
1316 -moz-image-region: rect(0, 96px, 32px, 64px);
1317}
1318
8d1f53f0
RK
1319#loop-button-throttled[cui-areatype="menu-panel"]:not([disabled="true"])[state="action"] > .toolbarbutton-badge-container,
1320#loop-button[cui-areatype="menu-panel"]:not([disabled="true"])[state="action"] > .toolbarbutton-badge-container {
d0e580f1
RK
1321 -moz-image-region: rect(0, 128px, 32px, 96px);
1322}
1323
8d1f53f0
RK
1324#loop-button-throttled[cui-areatype="menu-panel"]:not([disabled="true"])[state="active"] > .toolbarbutton-badge-container,
1325#loop-button[cui-areatype="menu-panel"]:not([disabled="true"])[state="active"] > .toolbarbutton-badge-container {
d0e580f1
RK
1326 -moz-image-region: rect(0, 192px, 32px, 160px);
1327}
1328
43cc2806
RK
1329/* Wide panel control icons */
1330
51994fad
RK
1331#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > toolbarbutton,
1332#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > toolbarbutton,
7d3f7f14
RK
1333toolbarpaletteitem[place="palette"] > #edit-controls > toolbarbutton,
1334toolbarpaletteitem[place="palette"] > #zoom-controls > toolbarbutton {
e548e22e 1335 list-style-image: var(--menupanel-small-list-style-image);
43cc2806
RK
1336}
1337
51994fad 1338#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #cut-button,
7d3f7f14 1339toolbarpaletteitem[place="palette"] > #edit-controls > #cut-button {
43cc2806
RK
1340 -moz-image-region: rect(0px, 32px, 16px, 16px);
1341}
1342
51994fad 1343#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #cut-button:hover:not([disabled="true"]),
7d3f7f14 1344toolbarpaletteitem[place="palette"] > #edit-controls > #cut-button:hover:not([disabled="true"]) {
cc4b0b0d
RK
1345 -moz-image-region: rect(16px, 32px, 32px, 16px);
1346}
1347
51994fad 1348#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #cut-button[disabled="true"],
7d3f7f14 1349toolbarpaletteitem[place="palette"] > #edit-controls > #cut-button[disabled="true"] {
cc4b0b0d
RK
1350 -moz-image-region: rect(32px, 32px, 48px, 16px);
1351}
1352
51994fad 1353#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #copy-button,
7d3f7f14 1354toolbarpaletteitem[place="palette"] > #edit-controls > #copy-button {
43cc2806
RK
1355 -moz-image-region: rect(0px, 48px, 16px, 32px);
1356}
1357
51994fad 1358#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #copy-button:hover:not([disabled="true"]),
7d3f7f14 1359toolbarpaletteitem[place="palette"] > #edit-controls > #copy-button:hover:not([disabled="true"]) {
cc4b0b0d
RK
1360 -moz-image-region: rect(16px, 48px, 32px, 32px);
1361}
1362
51994fad 1363#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #copy-button[disabled="true"],
7d3f7f14 1364toolbarpaletteitem[place="palette"] > #edit-controls > #copy-button[disabled="true"] {
cc4b0b0d
RK
1365 -moz-image-region: rect(32px, 48px, 48px, 32px);
1366}
1367
51994fad 1368#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #paste-button,
7d3f7f14 1369toolbarpaletteitem[place="palette"] > #edit-controls > #paste-button {
43cc2806
RK
1370 -moz-image-region: rect(0px, 64px, 16px, 48px);
1371}
1372
51994fad 1373#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #paste-button:hover:not([disabled="true"]),
7d3f7f14 1374toolbarpaletteitem[place="palette"] > #edit-controls > #paste-button:hover:not([disabled="true"]) {
cc4b0b0d
RK
1375 -moz-image-region: rect(16px, 64px, 32px, 48px);
1376}
1377
51994fad 1378#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #paste-button[disabled="true"],
7d3f7f14 1379toolbarpaletteitem[place="palette"] > #edit-controls > #paste-button[disabled="true"] {
cc4b0b0d
RK
1380 -moz-image-region: rect(32px, 64px, 48px, 48px);
1381}
1382
51994fad 1383#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-out-button,
7d3f7f14 1384toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-out-button {
43cc2806
RK
1385 -moz-image-region: rect(0px, 80px, 16px, 64px);
1386}
1387
51994fad 1388#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-out-button:hover:not([disabled="true"]),
7d3f7f14 1389toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-out-button:hover:not([disabled="true"]) {
cc4b0b0d
RK
1390 -moz-image-region: rect(16px, 80px, 32px, 64px);
1391}
1392
51994fad 1393#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-out-button[disabled="true"],
7d3f7f14 1394toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-out-button[disabled="true"] {
cc4b0b0d
RK
1395 -moz-image-region: rect(32px, 80px, 48px, 64px);
1396}
1397
51994fad 1398#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-in-button,
7d3f7f14 1399toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-in-button {
43cc2806
RK
1400 -moz-image-region: rect(0px, 96px, 16px, 80px);
1401}
1402
51994fad 1403#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-in-button:hover:not([disabled="true"]),
7d3f7f14 1404toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-in-button:hover:not([disabled="true"]) {
cc4b0b0d
RK
1405 -moz-image-region: rect(16px, 96px, 32px, 80px);
1406}
1407
51994fad 1408#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-in-button[disabled="true"],
7d3f7f14 1409toolbarpaletteitem[place="palette"] > #zoom-controls > #zoom-in-button[disabled="true"] {
cc4b0b0d
RK
1410 -moz-image-region: rect(32px, 96px, 48px, 80px);
1411}
1412
e548e22e
RK
1413#add-share-provider {
1414 list-style-image: var(--menupanel-small-list-style-image);
1415 -moz-image-region: rect(0px, 96px, 16px, 80px);
1416}
1417
43cc2806
RK
1418/* === END menupanel.inc.css === */
1419
63ada306
RK
1420.toolbarbutton-1:not([type="menu-button"]) {
1421 -moz-box-orient: vertical;
1422}
1423
319c6529
RK
1424.toolbarbutton-1,
1425.toolbarbutton-1 > .toolbarbutton-menubutton-button {
c0f6797e
RK
1426/* min-width: 36px;
1427 min-height: 36px;*/
319c6529
RK
1428}
1429
1430.toolbarbutton-1,
1431.toolbarbutton-1 > .toolbarbutton-menubutton-button,
1432.toolbarbutton-1[disabled="true"]:hover:active,
1433.toolbarbutton-1[disabled="true"]:hover:active > .toolbarbutton-menubutton-button {
1434 padding: 1px 2px;
1435}
1436
1437.toolbarbutton-1:hover:active,
1438.toolbarbutton-1[open="true"],
1439.toolbarbutton-1:hover:active > .toolbarbutton-menubutton-button {
1440 padding-top: 2px;
1441 padding-bottom: 0px;
1442 -moz-padding-start: 3px;
1443 -moz-padding-end: 1px;
1444}
1445
c0f6797e
RK
1446#main-window:not([customizing]) .toolbarbutton-1[disabled=true] > .toolbarbutton-icon,
1447#main-window:not([customizing]) .toolbarbutton-1[disabled=true] > .toolbarbutton-menu-dropmarker,
1448#main-window:not([customizing]) .toolbarbutton-1[disabled=true] > .toolbarbutton-menubutton-dropmarker,
1449#main-window:not([customizing]) .toolbarbutton-1[disabled=true] > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
1450#main-window:not([customizing]) .toolbarbutton-1 > .toolbarbutton-menubutton-button[disabled=true] > .toolbarbutton-icon {
e20c83c3
RK
1451}
1452
c0f6797e
RK
1453.toolbarbutton-1 > .toolbarbutton-menu-dropmarker,
1454.toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker {
e20c83c3
RK
1455}
1456
c0f6797e
RK
1457toolbar .toolbarbutton-1 > .toolbarbutton-menu-dropmarker:-moz-lwtheme-brighttext,
1458toolbar .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker:-moz-lwtheme-brighttext {
319c6529
RK
1459}
1460
c0f6797e
RK
1461.toolbarbutton-1 > .toolbarbutton-icon,
1462.toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-icon {
319c6529
RK
1463}
1464
c0f6797e
RK
1465#nav-bar .toolbarbutton-1,
1466#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button {
319c6529
RK
1467}
1468
c0f6797e
RK
1469#nav-bar .toolbarbutton-1:not([type=menu-button]),
1470#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button,
1471#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker {
319c6529
RK
1472}
1473
c0f6797e
RK
1474#nav-bar #PanelUI-menu-button {
1475/* -moz-padding-start: 7px;
1476 -moz-padding-end: 5px;*/
319c6529
RK
1477}
1478
8c5bee4f 1479#nav-bar .toolbarbutton-1[type=menu]:not(#back-button):not(#forward-button):not(#feed-button):not(#PanelUI-menu-button) {
c0f6797e
RK
1480/* padding-left: 5px;
1481 padding-right: 5px;*/
319c6529
RK
1482}
1483
c0f6797e
RK
1484#nav-bar .toolbarbutton-1 > menupopup {
1485/* margin-top: -3px;*/
319c6529
RK
1486}
1487
c0f6797e 1488#nav-bar .toolbarbutton-1 > menupopup.cui-widget-panel {
c1d2ce3e 1489 margin-top: -4px;
319c6529
RK
1490}
1491
c0f6797e
RK
1492#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button {
1493/* -moz-padding-end: 0;*/
319c6529
RK
1494}
1495
c0f6797e
RK
1496#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker {
1497/* -moz-padding-start: 0;
1498 -moz-box-align: center;*/
319c6529
RK
1499}
1500
c0f6797e
RK
1501#nav-bar .toolbarbutton-1 > .toolbarbutton-icon,
1502#nav-bar .toolbarbutton-1 > .toolbarbutton-text,
1503#nav-bar .toolbarbutton-1 > .toolbarbutton-badge-container,
1504#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
1505#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
2c62526c 1506window:not([chromehidden~="toolbar"]) #urlbar-wrapper > .toolbarbutton-1:-moz-any([disabled=true],:not([open]):not([disabled=true]):not(:active)) > .toolbarbutton-icon {
c0f6797e
RK
1507/* padding: 2px 6px;
1508 border: 1px solid;
1509 border-color: transparent;
1510 transition-property: background-color, border-color;
1511 transition-duration: 150ms;*/
d54f5b23 1512}
c0f6797e
RK
1513/*
1514#nav-bar .toolbarbutton-1:not(:-moz-any(@primaryToolbarButtons@)) > .toolbarbutton-icon,
1515#nav-bar .toolbarbutton-1:not(:-moz-any(@primaryToolbarButtons@)) > .toolbarbutton-badge-container,
1516#nav-bar .toolbarbutton-1:not(:-moz-any(@primaryToolbarButtons@)) > .toolbarbutton-menubutton-button > .toolbarbutton-icon {
1517 padding: 3px 7px;
d54f5b23 1518}
c0f6797e 1519*/
d54f5b23 1520
c0f6797e
RK
1521/* Help SDK icons fit: */
1522toolbarbutton[sdk-button="true"][cui-areatype="toolbar"] > .toolbarbutton-icon {
1523 width: 16px;
26125509
RK
1524}
1525
c0f6797e
RK
1526#nav-bar toolbarbutton[sdk-button="true"][cui-areatype="toolbar"] > .toolbarbutton-icon {
1527 /* XXXgijs box models strike again: this is 16px + 2 * 7px padding + 2 * 1px border (from the rules above) */
1528 width: 32px;
26125509 1529}
26125509 1530
8c5bee4f 1531#nav-bar .toolbarbutton-1[type=menu]:not(#back-button):not(#forward-button):not(#feed-button):not(#PanelUI-menu-button) > .toolbarbutton-icon,
c0f6797e
RK
1532#nav-bar .toolbarbutton-1[type=menu] > .toolbarbutton-text /* hack for add-ons that forcefully display the label */ {
1533/* -moz-padding-end: 17px;*/
319c6529
RK
1534}
1535
c0f6797e 1536#nav-bar .toolbarbutton-1 > .toolbarbutton-menu-dropmarker {
319c6529
RK
1537}
1538
c0f6797e 1539#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-icon {
319c6529
RK
1540}
1541
c0f6797e 1542#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon {
38cfeb47
RK
1543}
1544
c0f6797e
RK
1545#nav-bar .toolbaritem-combined-buttons {
1546/* margin-left: 2px;
1547 margin-right: 2px;*/
38cfeb47
RK
1548}
1549
c0f6797e
RK
1550#nav-bar .toolbaritem-combined-buttons > .toolbarbutton-1 {
1551/* padding-left: 0;
1552 padding-right: 0;*/
319c6529
RK
1553}
1554
c0f6797e
RK
1555#nav-bar .toolbarbutton-1:not(:hover):not(:active):not([open]) > .toolbarbutton-menubutton-dropmarker::before,
1556#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 {
1557/*
1558 content: "";
1559 display: -moz-box;
1560 width: 1px;
1561 height: 16px;
1562 -moz-margin-end: -1px;
1563*/
319c6529
RK
1564}
1565
2c62526c 1566window:not([chromehidden~="toolbar"]) #urlbar-wrapper > .toolbarbutton-1:-moz-any([disabled=true],:not([open]):not([disabled=true]):not(:active)) > .toolbarbutton-icon {
319c6529
RK
1567}
1568
43371c9b 1569#nav-bar .toolbarbutton-1:not([disabled=true]) > .toolbarbutton-menubutton-button[open] + .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
c0f6797e
RK
1570#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
1571#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any(:hover,[open]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon,
1572#nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-icon,
1573#nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-text,
1574#nav-bar .toolbarbutton-1:not([disabled=true]):not([checked]):not([open]):not(:active):hover > .toolbarbutton-badge-container,
2c62526c 1575window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #forward-button:not([open]):not(:active):not([disabled=true]):hover > .toolbarbutton-icon,
46e71434 1576#nav-bar .toolbarbutton-1:not([buttonover]):not([open]):not(:active):hover > .toolbarbutton-menubutton-dropmarker:not([disabled=true]) > .dropmarker-icon {
319c6529
RK
1577}
1578
43371c9b 1579#nav-bar .toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled=true]):-moz-any(:hover:active, [open]) > .toolbarbutton-icon,
c0f6797e
RK
1580#nav-bar .toolbarbutton-1[open] > .toolbarbutton-menubutton-dropmarker:not([disabled=true]) > .dropmarker-icon,
1581#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active) > .toolbarbutton-icon,
1582#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active) > .toolbarbutton-text,
1583#nav-bar .toolbarbutton-1:not([disabled=true]):-moz-any([open],[checked],:hover:active) > .toolbarbutton-badge-container {
319c6529
RK
1584}
1585
c0f6797e
RK
1586#TabsToolbar .toolbarbutton-1,
1587#TabsToolbar .toolbarbutton-1 > .toolbarbutton-menubutton-button,
1588.tabbrowser-arrowscrollbox > .scrollbutton-up,
1589.tabbrowser-arrowscrollbox > .scrollbutton-down {
e8519ae0
RK
1590}
1591
c0f6797e
RK
1592#TabsToolbar .toolbarbutton-1:not([disabled=true]):hover,
1593#TabsToolbar .toolbarbutton-1[open],
1594#TabsToolbar .toolbarbutton-1 > .toolbarbutton-menubutton-button:not([disabled=true]):hover,
1595.tabbrowser-arrowscrollbox > .scrollbutton-up:not([disabled=true]):hover,
1596.tabbrowser-arrowscrollbox > .scrollbutton-down:not([disabled=true]):hover {
e8519ae0
RK
1597}
1598
c0f6797e 1599/* unified back/forward button */
319c6529 1600
c0f6797e 1601#forward-button {
589b5528 1602 -moz-box-align: stretch; /* let the button shape grow vertically with the location bar */
71bac478
RK
1603}
1604
c0f6797e
RK
1605#forward-button > menupopup {
1606 margin-top: 1px !important;
319c6529
RK
1607}
1608
c0f6797e
RK
1609#forward-button > .toolbarbutton-icon {
1610 background-clip: padding-box !important;
1611 /*mask: url(keyhole-forward-mask.svg#mask); XXX: this regresses twinopen */
5401f433 1612 /*clip-path: url(chrome://browser/content/browser.xul#keyhole-forward-clip-path) !important;*/
71bac478
RK
1613}
1614
c0f6797e 1615#forward-button {
aec5dfad
RK
1616 -moz-margin-start: -4px !important;
1617 padding-left: 4px;
1618 padding-right: 2px;
c0f6797e
RK
1619 margin-top: 3px;
1620 margin-bottom: 3px;
1621 border-radius: 0 10000px 10000px 0;
319c6529
RK
1622}
1623
c0f6797e
RK
1624#forward-button:-moz-locale-dir(rtl) {
1625 border-radius: 10000px 0 0 10000px;
8ad8bf83
RK
1626}
1627
2c62526c 1628window:not([chromehidden~="toolbar"]) #urlbar-wrapper:not([switchingtabs]) > #forward-button {
aec5dfad 1629 transition: margin-left 150ms ease-out;
2c62526c
RK
1630}
1631
1632window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #forward-button[disabled] {
aec5dfad 1633 margin-left: -27px !important;
2c62526c
RK
1634}
1635
1636window:not([chromehidden~="toolbar"]) #urlbar-wrapper:hover:not([switchingtabs]) > #forward-button[disabled] {
1637 /* delay the hiding of the forward button when hovered to avoid accidental clicks on the url bar */
1638 transition-delay: 100s;
1639}
1640
1641window:not([chromehidden~="toolbar"]) #urlbar-wrapper:not(:hover) > #forward-button[disabled] {
1642 /* when not hovered anymore, trigger a new transition to hide the forward button immediately */
aec5dfad 1643 margin-left: -27.01px !important;
2c62526c
RK
1644}
1645
c0f6797e
RK
1646#back-button {
1647/* padding-top: 3px !important;
1648 padding-bottom: 3px !important;
1649 -moz-padding-start: 5px !important;
1650 -moz-padding-end: 0 !important;*/
1651 position: relative;
1652 z-index: 1;
1653 border-radius: 10000px;
1654 width: 30px;
1655 height: 30px;
1656 margin-top: -2px;
1657 margin-bottom: -2px;
143c5409
RK
1658}
1659
c0f6797e 1660#back-button:-moz-locale-dir(rtl) {
319c6529
RK
1661}
1662
c0f6797e
RK
1663#back-button > menupopup {
1664 margin-top: -1px !important;
b36fc72e
RK
1665}
1666
c0f6797e
RK
1667#back-button > .toolbarbutton-icon {
1668 border-radius: 10000px !important;
1669 background-clip: padding-box !important;
1670/* background-color: hsla(210,25%,98%,.08) !important;
1671 padding: 6px !important;
589b5528
RK
1672 border-style: none !important;
1673 box-shadow: 0 1px 0 0 hsla(210,4%,10%,.25),
1674 0 0 0 1px hsla(210,4%,10%,.25);*/
1675 transition-property: background-color, box-shadow !important;
c0f6797e 1676 transition-duration: 250ms !important;
143c5409
RK
1677}
1678
c0f6797e 1679#back-button:not([disabled="true"]):not([open="true"]):not(:active):hover > .toolbarbutton-icon {
589b5528 1680/* background-color: hsla(210,4%,10%,.08) !important;*/
143c5409
RK
1681}
1682
c0f6797e
RK
1683#back-button:not([disabled="true"]):hover:active > .toolbarbutton-icon,
1684#back-button[open="true"] > .toolbarbutton-icon {
1685/* background-color: hsla(210,4%,10%,.12) !important;
589b5528
RK
1686 box-shadow: 0 1px 0 0 hsla(210,4%,10%,.25),
1687 0 0 0 1px hsla(210,4%,10%,.25),
1688 0 1px 0 0 hsla(210,80%,20%,.1) inset !important;*/
143c5409
RK
1689}
1690
2c62526c 1691#back-button:-moz-locale-dir(rtl) > .toolbarbutton-icon {
c0f6797e 1692 transform: scaleX(-1);
143c5409 1693}
c0f6797e
RK
1694/*
1695.unified-nav-back[_moz-menuactive]:-moz-locale-dir(ltr),
1696.unified-nav-forward[_moz-menuactive]:-moz-locale-dir(rtl) {
1697 list-style-image: url("chrome://browser/skin/menu-back.png") !important;
6adbc9a6
RK
1698}
1699
c0f6797e
RK
1700.unified-nav-forward[_moz-menuactive]:-moz-locale-dir(ltr),
1701.unified-nav-back[_moz-menuactive]:-moz-locale-dir(rtl) {
1702 list-style-image: url("chrome://browser/skin/menu-forward.png") !important;
6adbc9a6
RK
1703}
1704
c0f6797e
RK
1705#home-button.bookmark-item {
1706 list-style-image: url("chrome://browser/skin/Toolbar.png");
6adbc9a6
RK
1707}
1708
c0f6797e
RK
1709#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),
1710#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),
1711#main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > toolbarpaletteitem > toolbaritem > :-moz-any(@nestedButtons@):-moz-system-metric(windows-classic):not(:-moz-lwtheme),
1712#main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > toolbaritem > :-moz-any(@nestedButtons@):-moz-system-metric(windows-classic):not(:-moz-lwtheme),
1713#main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > toolbarpaletteitem > :-moz-any(@primaryToolbarButtons@):-moz-system-metric(windows-classic):not(:-moz-lwtheme),
1714#main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > :-moz-any(@primaryToolbarButtons@):-moz-system-metric(windows-classic):not(:-moz-lwtheme),
1715#home-button.bookmark-item:-moz-lwtheme-brighttext {
1716 position: relative;
1717 z-index: 1;
1718 list-style-image: url("chrome://browser/skin/Toolbar-inverted.png");
6adbc9a6
RK
1719}
1720
c0f6797e
RK
1721#main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > #sync-button[status="active"]:-moz-system-metric(windows-classic):not(:-moz-lwtheme),
1722#main-window[tabsintitlebar]:not([inFullscreen]) :-moz-any(#TabsToolbar, #toolbar-menubar) > toolbarpaletteitem > #sync-button[status="active"]:-moz-system-metric(windows-classic):not(:-moz-lwtheme) {
1723 list-style-image: url("chrome://browser/skin/syncProgress-toolbar-inverted.png");
6adbc9a6 1724}
c0f6797e 1725*/
6adbc9a6 1726
c0f6797e
RK
1727#downloads-button > .toolbarbutton-icon {
1728 margin: 0;
6adbc9a6
RK
1729}
1730
9168a62c 1731/* tabview menu item */
c0f6797e 1732
6adbc9a6 1733#menu_tabview {
832af407 1734 list-style-image: url("chrome://browser/skin/tabview/tabviewFx.png");
6adbc9a6
RK
1735 -moz-image-region: rect(1px, 89px, 17px, 73px);
1736}
1737
1738#menu_tabview[groups="0"] {
1739 -moz-image-region: rect(1px, 17px, 17px, 1px);
1740}
1741
1742#menu_tabview[groups="1"] {
1743 -moz-image-region: rect(1px, 35px, 17px, 19px);
1744}
1745
1746#menu_tabview[groups="2"] {
1747 -moz-image-region: rect(1px, 53px, 17px, 37px);
1748}
1749
1750#menu_tabview[groups="3"] {
1751 -moz-image-region: rect(1px, 71px, 17px, 55px);
1752}
1753
9168a62c
RK
1754/* undo close tab menu item */
1755#alltabs_undoCloseTab {
1756 list-style-image: url(chrome://browser/skin/undoCloseTab.png);
1757}
1758
1759@media (min-resolution: 1.25dppx) {
1760 #alltabs_undoCloseTab {
1761 list-style-image: url(chrome://browser/skin/undoCloseTab@2x.png);
1762 }
1763 #alltabs_undoCloseTab > .toolbarbutton-icon {
1764 width: 16px;
1765 }
1766}
1767
5401f433
RK
1768/* zoom control text (reset) button special case: */
1769
1770#nav-bar #zoom-reset-button > .toolbarbutton-text {
1771 /* To make this line up with the icons, it needs the same height (18px) +
1772 * padding (2 * 2px) + border (2 * 1px), but as a minimum because otherwise
1773 * increase in text sizes would break things...
1774 */
1775 min-height: 20px;
1776}
1777
319c6529
RK
1778/* ::::: fullscreen window controls ::::: */
1779
8d7ef0d9 1780#window-controls {
ab799a7a
RK
1781 -moz-margin-start: 4px;
1782}
1783
319c6529
RK
1784#minimize-button,
1785#restore-button,
1786#close-button {
c0f6797e
RK
1787/* list-style-image: url("chrome://global/skin/icons/windowControls.png");
1788 padding: 0; */
319c6529
RK
1789}
1790
1791#minimize-button {
1792 list-style-image: url("chrome://navigator/skin/icons/win-minimize.gif");
1793}
1794
1795#minimize-button:hover {
1796 list-style-image: url("chrome://navigator/skin/icons/win-minimize-hover.gif");
1797}
1798
1799#restore-button {
1800 list-style-image: url("chrome://navigator/skin/icons/win-restore.gif");
1801}
1802
1803#restore-button:hover {
1804 list-style-image: url("chrome://navigator/skin/icons/win-restore-hover.gif");
1805}
1806
1807#close-button {
1808 list-style-image: url("chrome://navigator/skin/icons/win-close.gif");
1809}
1810
1811#close-button:hover {
1812 list-style-image: url("chrome://navigator/skin/icons/win-close-hover.gif");
1813}
1814
1815/* ::::: Location Bar ::::: */
1816
319c6529
RK
1817#urlbar,
1818.searchbar-textbox {
1819 border-radius: 5px;
aec5dfad 1820 margin: 2px 0;
319c6529
RK
1821 -moz-margin-start: 3px;
1822}
1823
ffce2402 1824#urlbar {
f0071a71
RK
1825 /* make color as light as possible to deal with dark non-domain parts */
1826 color: #FFBFFF;
ffce2402
RK
1827}
1828
319c6529
RK
1829#urlbar:-moz-lwtheme,
1830.searchbar-textbox:-moz-lwtheme {
1831 /* background-color: rgba(255,255,255,.8);
1832 @navbarTextboxCustomBorder@
1833 color: black; */
1834}
1835
c0f6797e
RK
1836#urlbar:-moz-lwtheme:hover:not([focused]):not([readonly]),
1837.searchbar-textbox:-moz-lwtheme:hover:not([focused]) {
1838/* background-color: rgba(255,255,255,.9);*/
1839}
1840
1841#urlbar:-moz-lwtheme[focused]:not([readonly]),
1842.searchbar-textbox:-moz-lwtheme[focused] {
1843/* background-color: white;*/
1844}
1845
2c62526c 1846window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar {
2299146f
RK
1847/* -moz-border-start: none;
1848 margin-left: 0;*/
2c62526c
RK
1849}
1850
1851window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar:-moz-locale-dir(ltr) {
1852/* border-top-left-radius: 0;
1853 border-bottom-left-radius: 0; */
1854}
1855
1856window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar:-moz-locale-dir(rtl) {
1857/* border-top-right-radius: 0;
1858 border-bottom-right-radius: 0; */
1859}
1860
1861window:not([chromehidden~="toolbar"]) #urlbar-wrapper {
1862/* clip-path: url("chrome://browser/content/browser.xul#urlbar-back-button-clip-path");*/
aec5dfad 1863/* -moz-margin-start: -5px; */
2c62526c
RK
1864}
1865
fff8097b
RK
1866window:not([chromehidden~="toolbar"]) #urlbar-wrapper:-moz-locale-dir(rtl),
1867window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar:-moz-locale-dir(rtl) {
2c62526c 1868 /* let urlbar-back-button-clip-path clip the urlbar's right side for RTL */
71a617ff 1869 transform: scaleX(-1);
8ad8bf83
RK
1870}
1871
2c62526c
RK
1872window:not([chromehidden~="toolbar"]) #urlbar-wrapper:-moz-locale-dir(rtl) {
1873 -moz-box-direction: reverse;
1874}
1875
a7145e95
RK
1876html|*.urlbar-input:-moz-lwtheme::-moz-placeholder,
1877.searchbar-textbox:-moz-lwtheme > .autocomplete-textbox-container > .textbox-input-box > html|*.textbox-input::-moz-placeholder {
319c6529
RK
1878 color: #E7ADE7;
1879}
1880
319c6529
RK
1881#urlbar-container {
1882 -moz-box-orient: horizontal;
1883 -moz-box-align: stretch;
1884}
1885
9abeb12c
RK
1886.urlbar-textbox-container {
1887 -moz-box-align: stretch;
1888}
1889
a40f6a79
RK
1890.urlbar-input-box {
1891 -moz-margin-start: 0;
1892}
1893
319c6529 1894#urlbar-icons {
319c6529
RK
1895 -moz-box-align: center;
1896}
1897
1898.urlbar-icon {
b8384c33 1899 padding: 0 2px;
ffce2402
RK
1900}
1901
1902.searchbar-engine-button,
1903.search-go-container {
4b686546
RK
1904 padding: 2px;
1905}
1906
1907.search-go-container > .search-go-button {
1908 padding: 0;
319c6529
RK
1909}
1910
ffce2402
RK
1911.urlbar-icon:hover {
1912}
1913
1914.urlbar-icon[open="true"],
1915.urlbar-icon:hover:active {
1916}
1917
319c6529
RK
1918#urlbar-search-splitter {
1919 min-width: 6px;
1920 -moz-margin-start: -3px;
1921 border: none;
1922 background: transparent;
1923}
1924
f0071a71 1925#urlbar-search-splitter + #urlbar-container > #urlbar,
319c6529
RK
1926#urlbar-search-splitter + #search-container > #searchbar > .searchbar-textbox {
1927 -moz-margin-start: 0;
1928}
1929
e20c83c3
RK
1930#urlbar-display-box {
1931}
1932
8922acc9 1933.urlbar-display {
319c6529
RK
1934 -moz-border-end: 1px solid #9C9CFF;
1935 -moz-margin-end: 3px;
ab799a7a
RK
1936 margin-top: 0;
1937 margin-bottom: 0;
a40f6a79 1938 -moz-margin-start: 0;
ab799a7a
RK
1939 color: #8050B0;
1940}
1941
26125509
RK
1942#search-container {
1943 min-width: calc(54px + 11ch);
1944}
1945
319c6529
RK
1946/* identity box */
1947
1948#identity-box {
319c6529 1949 border-radius: 2px;
85cfb236 1950 font-size: .9em;
319c6529
RK
1951}
1952
e20c83c3
RK
1953#identity-box:-moz-locale-dir(ltr) {
1954/* border-top-left-radius: 1.5px;
1955 border-bottom-left-radius: 1.5px;*/
1956}
1957
1958#identity-box:-moz-locale-dir(rtl) {
1959/* border-top-right-radius: 1.5px;
1960 border-bottom-right-radius: 1.5px;*/
1961}
1962
8ad8bf83 1963#notification-popup-box:not([hidden]) + #identity-box {
5517da5a 1964 -moz-padding-start: 10px !important;
8ad8bf83
RK
1965 border-radius: 0;
1966}
1967
fff8097b 1968window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar > #identity-box {
d15d08bf 1969/* border-radius: 0; */
2a5b7882
RK
1970 -moz-padding-start: 2px;
1971 -moz-padding-end: 2px;
1972 -moz-margin-end: 1px;
8ad8bf83
RK
1973}
1974
2c62526c
RK
1975window:not([chromehidden~="toolbar"]) #urlbar-wrapper:not([switchingtabs]) > #urlbar > #identity-box {
1976 transition: padding-left, padding-right;
1977}
1978
2c62526c 1979window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #forward-button[disabled] + #urlbar >
26125509 1980 #notification-popup-box[hidden] + #identity-box:-moz-locale-dir(ltr) {
2a5b7882 1981 padding-left: 2px;
8ad8bf83
RK
1982}
1983
2c62526c 1984window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #forward-button[disabled] + #urlbar >
26125509 1985 #notification-popup-box[hidden] + #identity-box:-moz-locale-dir(rtl) {
2a5b7882 1986 padding-right: 2px;
8ad8bf83
RK
1987}
1988
2c62526c 1989window:not([chromehidden~="toolbar"]) #urlbar-wrapper:hover:not([switchingtabs]) > #forward-button[disabled] + #urlbar >
26125509 1990 #notification-popup-box[hidden] + #identity-box {
8ad8bf83 1991 /* forward button hiding is delayed when hovered */
71a617ff 1992 transition-delay: 100s;
8ad8bf83
RK
1993}
1994
2c62526c 1995window:not([chromehidden~="toolbar"]) #urlbar-wrapper:not(:hover) > #forward-button[disabled] + #urlbar >
26125509 1996 #notification-popup-box[hidden] + #identity-box:-moz-locale-dir(ltr) {
8ad8bf83 1997 /* when not hovered anymore, trigger a new non-delayed transition to react to the forward button hiding */
2a5b7882 1998 padding-left: 2.01px;
8ad8bf83
RK
1999}
2000
2c62526c 2001window:not([chromehidden~="toolbar"]) #urlbar-wrapper:not(:hover) > #forward-button[disabled] + #urlbar >
26125509 2002 #notification-popup-box[hidden] + #identity-box:-moz-locale-dir(rtl) {
8ad8bf83 2003 /* when not hovered anymore, trigger a new non-delayed transition to react to the forward button hiding */
2a5b7882 2004 padding-right: 2.01px;
8ad8bf83
RK
2005}
2006
56859d76
RK
2007#urlbar[pageproxystate="valid"] > #identity-box.chromeUI,
2008#urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity {
a40f6a79 2009 -moz-margin-end: 3px;
319c6529
RK
2010}
2011
56859d76 2012#urlbar[pageproxystate="valid"] > #identity-box.chromeUI:-moz-locale-dir(ltr),
37953ab4 2013#urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity:-moz-locale-dir(ltr) {
a40f6a79
RK
2014 border-top-right-radius: 0;
2015 border-bottom-right-radius: 0;
319c6529
RK
2016}
2017
56859d76 2018#urlbar[pageproxystate="valid"] > #identity-box.chromeUI:-moz-locale-dir(rtl),
37953ab4 2019#urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity:-moz-locale-dir(rtl) {
a40f6a79
RK
2020 border-top-left-radius: 0;
2021 border-bottom-left-radius: 0;
319c6529
RK
2022}
2023
a40f6a79 2024#identity-box.verifiedIdentity:not(:-moz-lwtheme) {
e548e22e 2025 var(--verified-identity-box-backgroundcolor);
319c6529
RK
2026}
2027
2028#identity-box:-moz-focusring {
2029 outline: 1px dotted #008484;
f993773d 2030 outline-offset: -1px;
319c6529
RK
2031}
2032
2033#identity-box.verifiedDomain:-moz-focusring,
2034#identity-box.verifiedIdentity:-moz-focusring {
2035 outline-color: #000000;
2036}
2037
2038#identity-icon-labels {
2039 -moz-margin-start: 1px;
2040 -moz-margin-end: 3px;
319c6529
RK
2041}
2042
2043/* Location bar dropmarker */
2044
38cfeb47 2045.urlbar-history-dropmarker:not(:hover):not([open="true"]) {
319c6529 2046 background-color: transparent;
319c6529
RK
2047}
2048
00f971bc
RK
2049#urlbar-container[combined="true"] > #urlbar > .urlbar-history-dropmarker,
2050#urlbar-wrapper > #urlbar > .urlbar-history-dropmarker {
38cfeb47
RK
2051 border: none;
2052 border-radius: 0px;
319c6529
RK
2053}
2054
ffce2402
RK
2055.urlbar-history-dropmarker:hover {
2056}
2057
2058.urlbar-history-dropmarker:hover:active,
2059.urlbar-history-dropmarker[open="true"] {
2060}
2061
319c6529
RK
2062/* page proxy icon */
2063
e7c8bab1
RK
2064/* === BEGIN identity-block.inc.css === */
2065
e548e22e
RK
2066:root {
2067 --identity-box-verified-color: #008484;
e7c8bab1 2068 /* Default theme does different color per channel, we can't as they do it build-time. */
e548e22e
RK
2069 --identity-box-chrome-color: #9C9CFF;
2070}
2071
2072#urlbar[pageproxystate="valid"] > #identity-box.chromeUI {
2073 color: var(--identity-box-chrome-color);
2074 -moz-border-end: 1px solid var(--identity-box-chrome-color);
e7c8bab1
RK
2075}
2076
2077#urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity {
e548e22e
RK
2078 color: var(--identity-box-verified-color);
2079 -moz-border-end: 1px solid var(--identity-box-verified-color);
e7c8bab1
RK
2080}
2081
2082#urlbar[pageproxystate="valid"] > #identity-box.chromeUI,
2083#urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity {
2084 background-position: right;
2085 background-size: 1px;
2086 background-repeat: no-repeat;
2087}
2088
2089/* page proxy icon */
2090
4d58ff64 2091#page-proxy-favicon {
319c6529
RK
2092 width: 16px;
2093 height: 16px;
a40f6a79 2094 list-style-image: url("chrome://browser/skin/identity-icons-generic.png");
00f971bc 2095 margin: 2px;
e7c8bab1
RK
2096}
2097
2098.chromeUI > #page-proxy-favicon[pageproxystate="valid"] {
2099 list-style-image: url("chrome://branding/content/identity-icons-brand.png");
319c6529
RK
2100}
2101
2a5b7882 2102.verifiedDomain > #page-proxy-favicon[pageproxystate="valid"] {
a40f6a79
RK
2103 list-style-image: url("chrome://browser/skin/identity-icons-https.png");
2104}
2105
2a5b7882 2106.verifiedIdentity > #page-proxy-favicon[pageproxystate="valid"] {
a40f6a79
RK
2107 list-style-image: url("chrome://browser/skin/identity-icons-https-ev.png");
2108}
2109
56ab361a
RK
2110.mixedActiveContent > #page-proxy-favicon[pageproxystate="valid"] {
2111 list-style-image: url("chrome://browser/skin/identity-icons-https-mixed-active.png");
2112}
2113
e7c8bab1
RK
2114.mixedDisplayContent > #page-proxy-favicon[pageproxystate="valid"] {
2115 list-style-image: url("chrome://browser/skin/identity-icons-https-mixed-display.png");
2116}
2117
2118.mixedDisplayContentLoadedActiveBlocked > #page-proxy-favicon[pageproxystate="valid"] {
2119 list-style-image: url("chrome://browser/skin/identity-icons-https-mixed-display.png");
2120}
2121
2122#page-proxy-favicon[pageproxystate="invalid"] {
2123 opacity: 0.3;
2124}
2125
2126#identity-popup.chromeUI > #identity-popup-container > #identity-popup-icon {
2127 list-style-image: url("chrome://branding/content/icon64.png");
2128}
2129
2130#identity-popup-brandName {
2131 font-weight: bold;
2132 font-size: 1.25em;
2133 margin-top: .5em;
2134 margin-bottom: .5em;
2135}
2136
2137#identity-popup-content-box {
2138 max-width: 50ch;
2139}
2140
2141/* === END identity-block.inc.css === */
2142
2143#page-proxy-favicon {
2144 -moz-image-region: rect(0, 16px, 16px, 0);
2145}
2146
3b1da406 2147window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #urlbar > #identity-box > #page-proxy-favicon {
c0f6797e
RK
2148/* -moz-margin-end: 1px;*/
2149}
2150
2a5b7882 2151#identity-box:hover > #page-proxy-favicon {
a40f6a79
RK
2152 -moz-image-region: rect(0, 32px, 16px, 16px);
2153}
2154
2a5b7882
RK
2155#identity-box:hover:active > #page-proxy-favicon,
2156#identity-box[open=true] > #page-proxy-favicon {
a40f6a79 2157 -moz-image-region: rect(0, 48px, 16px, 32px);
acb0e9b8 2158}
2159
2a5b7882
RK
2160#identity-box:hover {
2161 background-color: #FFCF00;
7092015d 2162 color: #000000;
2a5b7882
RK
2163}
2164
2165#identity-box:hover:active,
2166#identity-box[open=true] {
2167 background-color: #FF9F00;
7092015d 2168 color: #000000;
2a5b7882
RK
2169}
2170
56859d76
RK
2171#urlbar[pageproxystate="valid"] > #identity-box.chromeUI:hover,
2172#urlbar[pageproxystate="valid"] > #identity-box.chromeUI:hover:active,
2173#urlbar[pageproxystate="valid"] > #identity-box.chromeUI[open=true] {
2174 background-color: #9C9CFF;
2175 color: #000000;
2176}
2177
387e6560
RK
2178#urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity:hover,
2179#urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity:hover:active,
2180#urlbar[pageproxystate="valid"] > #identity-box.verifiedIdentity[open=true] {
2a5b7882
RK
2181 background-color: #008484;
2182 color: #000000;
2183}
2184
319c6529
RK
2185/* autocomplete */
2186
319c6529
RK
2187#treecolAutoCompleteImage {
2188 max-width: 36px;
2189}
acb0e9b8 2190
319c6529
RK
2191.ac-result-type-bookmark,
2192.autocomplete-treebody::-moz-tree-image(bookmark, treecolAutoCompleteImage) {
71bac478 2193 list-style-image: url("chrome://browser/skin/places/bookmark.png");
319c6529 2194 -moz-image-region: rect(0px 16px 16px 0px);
c1f7cc84 2195 width: 16px;
319c6529 2196 height: 16px;
acb0e9b8 2197}
2198
c0f6797e
RK
2199richlistitem[selected="true"][current="true"] > .ac-title-box > .ac-result-type-bookmark,
2200.autocomplete-treebody::-moz-tree-image(selected, current, bookmark, treecolAutoCompleteImage) {
2201/* -moz-image-region: rect(0px 48px 16px 32px);*/
2202}
2203
319c6529 2204.ac-result-type-keyword,
8922acc9
RK
2205.autocomplete-treebody::-moz-tree-image(keyword, treecolAutoCompleteImage),
2206richlistitem[type~="action"][actiontype="searchengine"] > .ac-title-box > .ac-site-icon {
2207 list-style-image: url("chrome://global/skin/icons/autocomplete-search.svg#search-icon");
acb0e9b8 2208 width: 16px;
2209 height: 16px;
2210}
2211
8922acc9
RK
2212 .ac-result-type-keyword[selected="true"],
2213 .autocomplete-treebody::-moz-tree-image(keyword, treecolAutoCompleteImage, selected),
2214 richlistitem[type~="action"][actiontype="searchengine"][selected="true"] > .ac-title-box > .ac-site-icon {
2215 list-style-image: url("chrome://global/skin/icons/autocomplete-search.svg#search-icon-inverted");
2216 }
2217
319c6529
RK
2218.ac-result-type-tag,
2219.autocomplete-treebody::-moz-tree-image(tag, treecolAutoCompleteImage) {
8da9da4e 2220 list-style-image: url("chrome://mozapps/skin/places/tagContainerIcon.png");
c1f7cc84 2221 width: 16px;
319c6529
RK
2222 height: 16px;
2223}
acb0e9b8 2224
319c6529 2225.ac-comment {
c0f6797e 2226 font-size: 1.06em;
acb0e9b8 2227}
319c6529
RK
2228
2229.ac-extra > .ac-comment {
c0f6797e 2230 font-size: 1em;
acb0e9b8 2231}
319c6529
RK
2232
2233.ac-url-text,
2234.ac-action-text {
c0f6797e 2235 font-size: 1em;
319c6529 2236 color: #9C9CFF;
acb0e9b8 2237}
319c6529
RK
2238
2239richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action-icon {
2240 list-style-image: url("chrome://browser/skin/actionicon-tab.png");
85cfb236
RK
2241 -moz-image-region: rect(0, 16px, 16px, 0);
2242 padding: 0 3px;
2243}
2244
2245richlistitem[type~="action"][actiontype="switchtab"][selected="true"] > .ac-url-box > .ac-action-icon {
2246 -moz-image-region: rect(16px, 16px, 32px, 0);
acb0e9b8 2247}
2248
319c6529
RK
2249.autocomplete-treebody::-moz-tree-cell-text(treecolAutoCompleteComment) {
2250 color: #8050B0;
2251}
acb0e9b8 2252
319c6529
RK
2253.ac-comment[selected="true"],
2254.ac-url-text[selected="true"],
2255.ac-action-text[selected="true"] {
2256 color: inherit !important;
acb0e9b8 2257}
2258
c1f7cc84
RK
2259.autocomplete-treebody::-moz-tree-cell-text(suggesthint, treecolAutoCompleteComment),
2260.autocomplete-treebody::-moz-tree-cell-text(suggestfirst, treecolAutoCompleteComment)
319c6529
RK
2261{
2262 color: #8050B0;
2263 font-size: smaller;
acb0e9b8 2264}
319c6529
RK
2265
2266.autocomplete-treebody::-moz-tree-cell(suggesthint) {
2267 border-top: 1px solid #9C9CFF;
acb0e9b8 2268}
2269
319c6529
RK
2270/* combined go/reload/stop button in location bar */
2271
2272#urlbar > toolbarbutton {
9abeb12c 2273 -moz-margin-start: 0;
ffce2402 2274 padding: 0 2px;
319c6529
RK
2275 background-origin: border-box;
2276 border: none;
52d7b436 2277 list-style-image: url("chrome://browser/skin/reload-stop-goFx.png");
9abeb12c
RK
2278 -moz-border-start: 1px solid #9C9CFF;
2279}
2280
2281#urlbar:-moz-locale-dir(ltr) > toolbarbutton {
38cfeb47
RK
2282 border-top-left-radius: 0px;
2283 border-bottom-left-radius: 0px;
acb0e9b8 2284}
acb0e9b8 2285
9abeb12c 2286#urlbar:-moz-locale-dir(rtl) > toolbarbutton {
38cfeb47
RK
2287 border-top-right-radius: 0px;
2288 border-bottom-right-radius: 0px;
9abeb12c
RK
2289}
2290
46e71434 2291#urlbar > toolbarbutton:not([disabled=true]):active:hover,
dce90fef
RK
2292#urlbar-reload-button:not(:hover) {
2293 -moz-border-start-style: none;
714b11f6 2294 -moz-padding-start: 3px;
dce90fef
RK
2295}
2296
c0f6797e
RK
2297#urlbar-reload-button {
2298 -moz-image-region: rect(0px, 14px, 14px, 0px);
acb0e9b8 2299}
2300
46e71434 2301#urlbar-reload-button[disabled=true] {
c0f6797e 2302 -moz-image-region: rect(28px, 14px, 42px, 0px);
acb0e9b8 2303}
2304
46e71434 2305#urlbar-reload-button:not([disabled=true]):hover {
c0f6797e 2306 -moz-image-region: rect(14px, 14px, 28px, 0px);
ffce2402
RK
2307}
2308
c0f6797e
RK
2309#urlbar-reload-button:-moz-locale-dir(rtl) > .toolbarbutton-icon {
2310 transform: scaleX(-1);
acb0e9b8 2311}
2312
c0f6797e
RK
2313#urlbar-go-button {
2314 -moz-image-region: rect(0, 42px, 14px, 28px);
38cfeb47
RK
2315}
2316
fff8097b 2317#urlbar-go-button:hover {
c0f6797e 2318 -moz-image-region: rect(14px, 42px, 28px, 28px);
acb0e9b8 2319}
2320
c0f6797e
RK
2321#urlbar-go-button:-moz-locale-dir(rtl) > .toolbarbutton-icon {
2322 transform: scaleX(-1);
acb0e9b8 2323}
319c6529
RK
2324
2325#urlbar-stop-button {
ffce2402 2326 -moz-image-region: rect(0px, 28px, 14px, 14px);
acb0e9b8 2327}
319c6529
RK
2328
2329#urlbar-stop-button:hover {
ffce2402 2330 -moz-image-region: rect(14px, 28px, 28px, 14px);
acb0e9b8 2331}
2332
319c6529
RK
2333/* popup blocker button */
2334
2335#page-report-button {
2336 list-style-image: url("chrome://browser/skin/urlbar-popup-blocked.png");
2337 -moz-image-region: rect(0, 16px, 16px, 0);
acb0e9b8 2338}
319c6529 2339
71bac478 2340#page-report-button:hover ,
319c6529
RK
2341#page-report-button:hover:active,
2342#page-report-button[open="true"] {
71bac478 2343 -moz-image-region: rect(0, 32px, 16px, 16px);
acb0e9b8 2344}
2345
c4460289
RK
2346/* social share panel */
2347
2348#social-share-panel > iframe {
2349/* background: linear-gradient(to bottom, #f0f4f7, #fafbfc);*/
2350 width: 300px;
2351 height: 150px;
2352}
2353
c4460289
RK
2354.social-share-toolbar {
2355 border-right: 1px solid #9C9CFF;
2356/* background-color: #000000; */
2357}
2358
2359#social-share-provider-buttons {
2360 padding: 6px;
2361}
2362
2363#social-share-provider-buttons > .share-provider-button {
2364 -moz-appearance: none;
2365 padding: 5px;
2366 margin: 1px;
2367 border: none;
2368 background: none;
2369 border-radius: 2px;
2370}
2371
2372#social-share-provider-buttons > .share-provider-button[checked="true"]:not([disabled="true"]),
2373#social-share-provider-buttons > .share-provider-button:hover,
2374#social-share-provider-buttons > .share-provider-button:active {
2375 padding: 4px;
2376}
2377
2378#social-share-provider-buttons > .share-provider-button[checked="true"]:not([disabled="true"]) {
2379}
2380
2381#social-share-provider-buttons > .share-provider-button > .toolbarbutton-text {
2382 display: none;
2383}
2384#social-share-provider-buttons > .share-provider-button > .toolbarbutton-icon {
2385 width: 16px;
2386 min-height: 16px;
2387 max-height: 16px;
2388}
2389
5a199ba1
RK
2390toolbarbutton[type="socialmark"] > .toolbarbutton-icon {
2391 width: auto;
2392 height: auto;
2393 max-width: 32px;
2394 max-height: 24px;
2395}
2396
c4460289
RK
2397/* fixup corners for share panel */
2398.social-panel > .social-panel-frame {
2399 border-radius: inherit;
2400}
2401
2402#social-share-panel {
2403 max-height: 600px;
2404 min-height: 100px;
2405 max-width: 800px;
2406 min-width: 300px;
2407}
2408
2409.social-share-frame {
2410/* background: linear-gradient(to bottom, #f0f4f7, #fafbfc); */
2411 width: 330px;
2412 height: 150px;
c4460289
RK
2413 /* we resize our panels dynamically, make it look nice */
2414 transition: height 100ms ease-out, width 100ms ease-out;
2415}
2416
e2734cc7
RK
2417.social-share-frame:-moz-locale-dir(ltr) {
2418 border-top-left-radius: 0;
2419 border-bottom-left-radius: 0;
2420 border-top-right-radius: inherit;
2421 border-bottom-right-radius: inherit;
2422}
2423
2424.social-share-frame:-moz-locale-dir(rtl) {
c4460289
RK
2425 border-top-left-radius: inherit;
2426 border-bottom-left-radius: inherit;
e2734cc7
RK
2427 border-top-right-radius: 0;
2428 border-bottom-right-radius: 0;
c4460289
RK
2429}
2430
e2734cc7
RK
2431#social-share-panel > .social-share-toolbar:-moz-locale-dir(ltr) {
2432 border-top-left-radius: inherit;
2433 border-bottom-left-radius: inherit;
2434}
2435
2436#social-share-panel > .social-share-toolbar:-moz-locale-dir(rtl) {
2437 border-top-right-radius: inherit;
2438 border-bottom-right-radius: inherit;
2439}
2440
2441#social-share-provider-buttons:-moz-locale-dir(ltr) {
c4460289
RK
2442 border-top-left-radius: inherit;
2443 border-bottom-left-radius: inherit;
2444}
2445
e2734cc7
RK
2446#social-share-provider-buttons:-moz-locale-dir(rtl) {
2447 border-top-right-radius: inherit;
2448 border-bottom-right-radius: inherit;
2449}
2450
889649fd
RK
2451/* social recommending panel */
2452
a6757852 2453#social-mark-button {
d7cfd768 2454 -moz-image-region: rect(0, 16px, 16px, 0);
889649fd
RK
2455}
2456
c0f6797e 2457/* bookmarks menu-button */
319c6529 2458
c0f6797e
RK
2459#bookmarks-menu-button.bookmark-item {
2460 list-style-image: url("chrome://browser/skin/places/bookmark.png");
2461 -moz-image-region: rect(0px 16px 16px 0px);
acb0e9b8 2462}
319c6529 2463
c0f6797e
RK
2464#bookmarks-menu-button.bookmark-item[starred] {
2465 -moz-image-region: rect(0px 32px 16px 16px);
acb0e9b8 2466}
319c6529 2467
c0f6797e
RK
2468#bookmarks-menu-button.bookmark-item > .toolbarbutton-menubutton-button > .toolbarbutton-icon {
2469 -moz-margin-start: 5px;
acb0e9b8 2470}
2471
c0f6797e
RK
2472#bookmarks-menu-button[cui-areatype="toolbar"]:not(.bookmark-item):not([overflowedItem=true]) > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon {
2473 padding-top: 2px;
2474 padding-bottom: 2px;
71bac478
RK
2475}
2476
c0f6797e
RK
2477#BMB_bookmarksPopup[side="top"],
2478#BMB_bookmarksPopup[side="bottom"] {
2479 margin-left: -20px;
2480 margin-right: -20px;
71bac478
RK
2481}
2482
c0f6797e
RK
2483#BMB_bookmarksPopup[side="left"],
2484#BMB_bookmarksPopup[side="right"] {
2485 margin-top: -20px;
2486 margin-bottom: -20px;
acb0e9b8 2487}
319c6529
RK
2488
2489/* bookmarking panel */
c0f6797e 2490
319c6529
RK
2491#editBookmarkPanelStarIcon {
2492 list-style-image: url("chrome://browser/skin/places/starred48.png");
2493 width: 48px;
2494 height: 48px;
acb0e9b8 2495}
319c6529
RK
2496
2497#editBookmarkPanelStarIcon[unstarred] {
2498 list-style-image: url("chrome://browser/skin/places/unstarred48.png");
acb0e9b8 2499}
2500
319c6529
RK
2501#editBookmarkPanelTitle {
2502 font-size: 130%;
acb0e9b8 2503}
319c6529
RK
2504
2505#editBookmarkPanelHeader,
2506#editBookmarkPanelContent {
2507 margin-bottom: .5em;
acb0e9b8 2508}
319c6529
RK
2509
2510/* Implements editBookmarkPanel resizing on folderTree un-collapse. */
2511#editBMPanel_folderTree {
2512 min-width: 27em;
acb0e9b8 2513}
2514
f993773d 2515.panel-promo-box {
46e71434
RK
2516 margin: 5px 0 -6px;
2517 padding: 5px 0;
889649fd 2518 border-top: 1px solid #9C9CFF;
f0eab82c
RK
2519 border-bottom-left-radius: 5px;
2520 border-bottom-right-radius: 5px;
f993773d
RK
2521}
2522
2523.panel-promo-icon {
2524 list-style-image: url("chrome://browser/skin/sync-notification-24.png");
2525 -moz-margin-end: 10px;
2526 vertical-align: middle;
2527}
2528
2529.panel-promo-closebutton {
2530 list-style-image: url("chrome://global/skin/icons/close-button.gif");
f0eab82c
RK
2531 -moz-margin-end: -3px;
2532 margin-top: -3px;
f993773d
RK
2533}
2534
2535.panel-promo-closebutton:hover {
2536 list-style-image: url("chrome://global/skin/icons/close-button-hover.gif");
2537}
2538
2539.panel-promo-closebutton:hover:active {
2540 list-style-image: url("chrome://global/skin/icons/close-button-hover.gif");
2541}
2542
2543.panel-promo-closebutton > .toolbarbutton-text {
2544 padding: 0;
f993773d
RK
2545}
2546
319c6529
RK
2547/* ::::: content area ::::: */
2548
2549#sidebar {
2550 background-color: Window;
acb0e9b8 2551}
319c6529
RK
2552
2553#sidebar-title {
2554 -moz-padding-start: 0px;
acb0e9b8 2555}
319c6529 2556
589b5528
RK
2557#sidebar-header > .close-icon {
2558/* padding: 4px 2px;
2559 margin: 0;
2560 border: none;*/
2561 list-style-image: url("chrome://global/skin/icons/close-button.gif");
2562}
2563
2564#sidebar-header > .close-icon:hover,
2565#sidebar-header > .close-icon:hover:active {
2566 list-style-image: url("chrome://global/skin/icons/close-button-hover.gif");
2567}
2568
fe524e0c
RK
2569.browserContainer > findbar {
2570/*
2571 background-color: -moz-dialog;
2572 color: -moz-DialogText;
2573*/
2574}
2575
319c6529 2576/* Tabstrip */
b36fc72e 2577
c0f6797e 2578#TabsToolbar {
e20c83c3
RK
2579 min-height: 0;
2580 padding: 0;
2581 -moz-binding: url("chrome://browser/content/customizableui/toolbar.xml#toolbar");
2582}
2583
b36fc72e 2584#TabsToolbar .toolbar-holder {
c1f7cc84 2585 background-color: #000000; /* correct effect of being an actual toolbar */
acb0e9b8 2586}
2587
b36fc72e 2588#main-window[disablechrome] #TabsToolbar,
319c6529 2589#TabsToolbar[tabsontop="false"] {
8b5fc82e 2590 border-bottom: 1px solid #008484;
acb0e9b8 2591}
319c6529 2592
6dc70335
RK
2593/* === BEGIN tabs.inc.css === */
2594
319c6529 2595.tabbrowser-tab,
43ee1307
RK
2596.tabs-newtab-button,
2597#TabsToolbar > #new-tab-button {
319c6529 2598 margin-top: 0px;
acb0e9b8 2599}
319c6529 2600
43ee1307 2601.tabbrowser-tab {
57fc408c
RK
2602 padding: 1px 4px 2px;
2603}
2604
2605.tabbrowser-tab:first-of-type {
2606 -moz-margin-start: 2px;
2607}
2608
43ee1307
RK
2609.tabs-newtab-button,
2610#TabsToolbar > #new-tab-button {
57fc408c
RK
2611 border-radius: 8px 8px 0px 0px;
2612 -moz-margin-start: 0;
2613}
2614
43ee1307
RK
2615.tabs-newtab-button:not(:hover),
2616#TabsToolbar > #new-tab-button:not(:hover) {
57fc408c
RK
2617 background-color: #C09070;
2618}
2619
fe524e0c
RK
2620.tabbrowser-tab[remote] {
2621 text-decoration: underline;
2622}
2623
c0f6797e
RK
2624/* The selected tab should appear above adjacent tabs, .tabs-newtab-button and the highlight of #nav-bar */
2625.tabbrowser-tab[selected=true] {
2626/* position: relative;
2627 z-index: 2;*/
acb0e9b8 2628}
2629
c0f6797e 2630.tab-background-middle {
acb0e9b8 2631}
2632
c0f6797e 2633.tab-content {
acb0e9b8 2634}
319c6529 2635
46e71434 2636.tab-/*throbber*/,
c0f6797e
RK
2637.tab-icon-image,
2638.tab-close-button {
acb0e9b8 2639}
2640
319c6529
RK
2641.tab-throbber,
2642.tab-icon-image {
319c6529 2643 height: 16px;
c0f6797e
RK
2644 width: 16px;
2645}
2646
2647.tab-icon-image {
dce90fef 2648 list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
613daf44 2649}
2650
3d64e0ce 2651.tab-throbber[busy] {
95f333af 2652 list-style-image: url("chrome://communicator/skin/brand/throbber16-anim-connect.png");
613daf44 2653}
319c6529
RK
2654
2655.tab-throbber[progress] {
95f333af 2656 list-style-image: url("chrome://communicator/skin/brand/throbber16-anim.png");
613daf44 2657}
319c6529 2658
c0f6797e
RK
2659.tab-throbber:not([pinned]),
2660.tab-icon-image:not([pinned]) {
2661 -moz-margin-end: 3px;
2662}
2663
319c6529
RK
2664.tab-throbber[pinned],
2665.tab-icon-image[pinned] {
2666 -moz-margin-start: 2px;
2667 -moz-margin-end: 2px;
613daf44 2668}
319c6529 2669
c0f6797e 2670.tab-label {
aec5dfad
RK
2671 /* this needs to add up to the 16px of the icon image */
2672 height: 12px;
2673 margin-top: 2px !important;
2674 margin-bottom: 2px !important;
c0f6797e
RK
2675}
2676
2677.tab-close-button {
2678 margin-top: 1px;
2679 padding: 0;
2680}
2681
2682.tab-background,
2683.tabs-newtab-button {
2684 /* overlap the tab curves */
2685}
2686
2687.tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox {
2688}
2689
93c91f62
RK
2690/* Tab Overflow */
2691.tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator:not([collapsed]),
2692.tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator:not([collapsed]) {
2693}
2694
2695.tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator:-moz-locale-dir(rtl),
2696.tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator:-moz-locale-dir(ltr) {
2697}
2698
2699.tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator:not([collapsed]) {
2700}
2701
2702.tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator:not([collapsed]) {
2703}
2704
2705.tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator[collapsed],
2706.tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator[collapsed] {
2707}
2708
2709.tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator,
2710.tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator {
2711}
2712
c0f6797e
RK
2713.tab-background-start[selected=true]::after,
2714.tab-background-start[selected=true]::before,
2715.tab-background-start,
2716.tab-background-end,
2717.tab-background-end[selected=true]::after,
2718.tab-background-end[selected=true]::before {
2719}
2720
2721.tabbrowser-tab:not([selected=true]),
2722.tabbrowser-tab:-moz-lwtheme {
2723}
2724
319c6529 2725/* tabbrowser-tab focus ring */
c0f6797e 2726.tabbrowser-tab:focus {
319c6529 2727 outline: 1px dotted;
613daf44 2728}
319c6529 2729
c0f6797e
RK
2730/* Selected tab */
2731
2732.tabbrowser-tab[selected="true"] {
2733}
2734
2735/* End selected tab */
2736
c0f6797e
RK
2737/* Tab pointer-events */
2738/*
2739.tabbrowser-tab {
2740 pointer-events: none;
2741}
2742
2743.tab-background-middle,
2744.tabs-newtab-button,
2745.tab-close-button {
2746 pointer-events: auto;
2747}
2748*/
2749/* Pinned tabs */
2750
2751.tabbrowser-tab[pinned][titlechanged]:not([selected="true"]) {
2752 background-color: #E7ADE7;
2753}
2754
2755.tabbrowser-tab[pinned][titlechanged]:not([selected="true"]):hover {
2756 background-color: #3333FF;
2757 color: #000000;
2758}
2759
2760/* New tab button */
2761
2762.tabs-newtab-button {
2763 width: 28px;
de5e780d 2764 /* width: calc(36px + @tabCurveWidth@); */
c0f6797e
RK
2765}
2766
2767/* === END tabs.inc.css === */
2768
43371c9b
RK
2769/* Background tabs:
2770 *
2771 * Decrease the height of the hoverable region of background tabs whenever the tabs are at the top
2772 * of the window (e.g. no menubar, tabs in titlebar, etc.) to make it easier to drag the window by
2773 * the titlebar. We don't need this in fullscreen since window dragging is not an issue there.
2774 */
2775#main-window[tabsintitlebar][sizemode=normal] #toolbar-menubar[autohide="true"][inactive] + #TabsToolbar .tab-background-middle:not([selected=true]) {
2776/* clip-path: url(chrome://browser/content/browser.xul#tab-hover-clip-path);*/
2777}
2778
8ad8bf83 2779/* Tab DnD indicator */
319c6529
RK
2780.tab-drop-indicator {
2781 list-style-image: url("chrome://browser/skin/tabbrowser/tabDragIndicator.png");
9abeb12c 2782 margin-bottom: -11px;
613daf44 2783}
2784
319c6529
RK
2785/* Tab close button */
2786.tab-close-button {
319c6529
RK
2787 list-style-image: url("chrome://global/skin/icons/close-button.gif");
2788}
acb0e9b8 2789
319c6529
RK
2790.tab-close-button:hover,
2791.tab-close-button:hover[selected="true"] {
2792 list-style-image: url("chrome://global/skin/icons/close-button-hover.gif");
acb0e9b8 2793}
319c6529
RK
2794
2795.tab-close-button:hover:active,
2796.tab-close-button:hover:active[selected="true"] {
2797 list-style-image: url("chrome://global/skin/icons/close-button-hover.gif");
acb0e9b8 2798}
319c6529 2799
319c6529
RK
2800/* Tab scrollbox arrow, tabstrip new tab and all-tabs buttons */
2801
319c6529
RK
2802.tabbrowser-arrowscrollbox > .scrollbutton-up,
2803.tabbrowser-arrowscrollbox > .scrollbutton-down {
319c6529
RK
2804 margin: 0;
2805 padding-top: 0;
2806 padding-bottom: 0;
c0f6797e
RK
2807 background-origin: border-box;
2808}
2809
2810#main-window[tabsintitlebar]:not([inFullscreen]) .tabbrowser-arrowscrollbox > .scrollbutton-up:-moz-system-metric(windows-classic):not(:-moz-lwtheme),
2811#main-window[tabsintitlebar]:not([inFullscreen]) .tabbrowser-arrowscrollbox > .scrollbutton-down:-moz-system-metric(windows-classic):not(:-moz-lwtheme),
2812.tabbrowser-arrowscrollbox > .scrollbutton-up:-moz-lwtheme-brighttext,
2813.tabbrowser-arrowscrollbox > .scrollbutton-down:-moz-lwtheme-brighttext {
2814 }
b7f3670c 2815
c0f6797e
RK
2816.tabbrowser-arrowscrollbox > .scrollbutton-up[disabled],
2817.tabbrowser-arrowscrollbox > .scrollbutton-down[disabled] {
2818 }
2819
2820.tabbrowser-arrowscrollbox > .scrollbutton-up:-moz-locale-dir(rtl),
2821.tabbrowser-arrowscrollbox > .scrollbutton-down:-moz-locale-dir(ltr) {
2822/* transform: scaleX(-1);*/
2823}
2824
2825.tabbrowser-arrowscrollbox > .scrollbutton-down {
2826 transition: 1s background-color ease-out;
acb0e9b8 2827}
319c6529 2828
319c6529
RK
2829.tabbrowser-arrowscrollbox > .scrollbutton-down[notifybgtab] {
2830 background-color: #008484;
acb0e9b8 2831}
319c6529 2832
c0f6797e
RK
2833.tabbrowser-arrowscrollbox > .scrollbutton-up:not([disabled]),
2834.tabbrowser-arrowscrollbox > .scrollbutton-down:not([disabled]) {
2835/* border-width: 0 2px 0 0;
2836 border-style: solid;
2837 border-image: url("chrome://browser/skin/tabbrowser/tab-overflow-border.png") 0 2 0 2 fill;*/
2838}
2839
319c6529
RK
2840.tabs-newtab-button > .toolbarbutton-icon {
2841 margin-top: -1px;
2842 margin-bottom: -1px;
acb0e9b8 2843}
319c6529
RK
2844
2845.tabs-newtab-button,
2846#TabsToolbar > #new-tab-button,
e20c83c3
RK
2847#TabsToolbar > toolbarpaletteitem > #new-tab-button,
2848#TabsToolbar > toolbarpaletteitem > #new-tab-button[cui-areatype="toolbar"] {
832af407 2849 list-style-image: url("chrome://browser/skin/tabbrowser/newtabFx.png");
319c6529 2850 -moz-image-region: rect(0, 16px, 18px, 0);
acb0e9b8 2851}
2852
8b5fc82e 2853.tabs-newtab-button,
38cfeb47 2854.tabs-newtab-button:hover,
c0f6797e 2855#TabsToolbar > #new-tab-button,
38cfeb47 2856#TabsToolbar > #new-tab-button:hover {
319c6529 2857 -moz-image-region: rect(0, 32px, 18px, 16px);
acb0e9b8 2858}
319c6529 2859
c0f6797e
RK
2860#main-window[tabsintitlebar]:not([inFullscreen]) .tabs-newtab-button:-moz-system-metric(windows-classic):not(:-moz-lwtheme),
2861#main-window[tabsintitlebar]:not([inFullscreen]) #TabsToolbar > #new-tab-button:-moz-system-metric(windows-classic):not(:-moz-lwtheme),
2862#main-window[tabsintitlebar]:not([inFullscreen]) #TabsToolbar > toolbarpaletteitem > #new-tab-button:-moz-system-metric(windows-classic):not(:-moz-lwtheme),
2863.tabs-newtab-button:-moz-lwtheme-brighttext,
2864#TabsToolbar > #new-tab-button:-moz-lwtheme-brighttext,
2865#TabsToolbar > toolbarpaletteitem > #new-tab-button:-moz-lwtheme-brighttext {
acb0e9b8 2866}
2867
c0f6797e
RK
2868#TabsToolbar > #new-tab-button {
2869 width: 26px;
2870}
2871
2872#alltabs-button {
2873 list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
acb0e9b8 2874}
319c6529 2875
f9fc08c7
RK
2876#alltabs-button:hover,
2877#alltabs-button:hover:active,
2878#alltabs-button[open="true"] {
8da9da4e 2879 list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
acb0e9b8 2880}
319c6529 2881
c0f6797e
RK
2882#main-window[tabsintitlebar]:not([inFullscreen]) #alltabs-button:-moz-system-metric(windows-classic):not(:-moz-lwtheme),
2883#alltabs-button:-moz-lwtheme-brighttext {
2884}
2885
2886#alltabs-button > .toolbarbutton-icon {
2887/* margin: 0 2px;*/
2888}
2889
2890#alltabs-button > .toolbarbutton-menu-dropmarker {
2891 display: none;
2892}
2893
319c6529
RK
2894/* All tabs menupopup */
2895.alltabs-item > .menu-iconic-left > .menu-iconic-icon {
dce90fef 2896 list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
8da9da4e 2897 -moz-image-region: auto;
acb0e9b8 2898}
2899
319c6529
RK
2900.alltabs-item[selected="true"] {
2901 font-weight: bold;
acb0e9b8 2902}
319c6529
RK
2903
2904.alltabs-item[busy] > .menu-iconic-left > .menu-iconic-icon {
2905 list-style-image: url("chrome://global/skin/icons/loading.gif");
acb0e9b8 2906}
319c6529 2907
85cfb236 2908.alltabs-item[tabIsVisible]:not([_moz-menuactive="true"]) {
b1234db8
RK
2909 background-color: #402800;
2910}
2911
319c6529
RK
2912toolbarbutton.chevron {
2913 list-style-image: url("chrome://global/skin/toolbar/chevron.gif") !important;
acb0e9b8 2914}
319c6529
RK
2915
2916toolbarbutton.chevron:hover {
2917 list-style-image: url("chrome://global/skin/toolbar/chevron-hover.gif") !important;
acb0e9b8 2918}
e548e22e
RK
2919/*
2920toolbar[brighttext] toolbarbutton.chevron {
2921 list-style-image: url("chrome://global/skin/toolbar/chevron-inverted.png") !important;
2922}
2923*/
319c6529
RK
2924toolbarbutton.chevron:-moz-locale-dir(rtl) > .toolbarbutton-icon,
2925toolbarbutton.chevron:-moz-locale-dir(rtl):hover > .toolbarbutton-icon {
71a617ff 2926 transform: scaleX(-1);
acb0e9b8 2927}
319c6529
RK
2928
2929toolbarbutton.chevron > .toolbarbutton-text,
2930toolbarbutton.chevron > .toolbarbutton-menu-dropmarker {
2931 display: none;
acb0e9b8 2932}
319c6529
RK
2933
2934toolbarbutton.chevron > .toolbarbutton-icon {
2935 margin: 0;
acb0e9b8 2936}
2937
319c6529
RK
2938#sidebar-throbber[loading="true"] {
2939 list-style-image: url("chrome://global/skin/icons/loading.gif");
2940 -moz-margin-end: 4px;
acb0e9b8 2941}
319c6529
RK
2942
2943/* Bookmarks toolbar */
2944#PlacesToolbarDropIndicator {
8da9da4e 2945 list-style-image: url("chrome://communicator/skin/bookmarks/toolbarDropMarker.png");
acb0e9b8 2946}
2947
319c6529
RK
2948toolbarbutton.bookmark-item[dragover="true"][open="true"] {
2949 background-color: #008484 !important;
2950 color: #FFCF00 !important;
613daf44 2951}
319c6529
RK
2952
2953/* rules for menupopup drop indicators */
2954.menupopup-drop-indicator-bar {
2955 position: relative;
2956 /* these two margins must together compensate the indicator's height */
2957 margin-top: -1px;
2958 margin-bottom: -1px;
613daf44 2959}
319c6529
RK
2960
2961.menupopup-drop-indicator {
2962 list-style-image: none;
2963 height: 2px;
2964 -moz-margin-end: -4em;
2965 background-color: #008484;
613daf44 2966}
2967
319c6529
RK
2968/* ::::: Identity Indicator Styling ::::: */
2969
2970/* Popup Icons */
2971#identity-popup-icon {
2972 height: 64px;
2973 width: 64px;
2974 padding: 0;
2975 list-style-image: url("chrome://browser/skin/identity.png");
2976 -moz-image-region: rect(0px, 64px, 64px, 0px);
613daf44 2977}
319c6529
RK
2978
2979#identity-popup.verifiedDomain > #identity-popup-container > #identity-popup-icon {
2980 -moz-image-region: rect(64px, 64px, 128px, 0px);
613daf44 2981}
319c6529
RK
2982
2983#identity-popup.verifiedIdentity > #identity-popup-container > #identity-popup-icon {
2984 -moz-image-region: rect(128px, 64px, 192px, 0px);
613daf44 2985}
2986
319c6529
RK
2987/* Popup Body Text */
2988.identity-popup-description {
2989 white-space: pre-wrap;
2990 -moz-padding-start: 15px;
2991 margin: 2px 0 4px;
613daf44 2992}
319c6529
RK
2993
2994.identity-popup-label {
2995 white-space: pre-wrap;
2996 -moz-padding-start: 15px;
2997 margin: 0;
613daf44 2998}
319c6529 2999
5517da5a 3000#identity-popup-content-host,
319c6529
RK
3001#identity-popup-content-box.verifiedIdentity > #identity-popup-content-owner {
3002 font-size: 1.2em;
613daf44 3003}
3004
319c6529
RK
3005#identity-popup-content-host {
3006 margin-top: 3px;
3007 margin-bottom: 5px;
3008 font-weight: bold;
3009 max-width: 300px;
3010}
613daf44 3011
319c6529
RK
3012#identity-popup-content-owner {
3013 margin-top: 4px;
3014 margin-bottom: 0 !important;
3015 font-weight: bold;
3016 max-width: 300px;
3017}
613daf44 3018
319c6529
RK
3019.verifiedDomain > #identity-popup-content-owner {
3020 font-weight: normal;
613daf44 3021}
3022
319c6529
RK
3023#identity-popup-content-verifier {
3024 margin: 4px 0 2px;
613daf44 3025}
3026
319c6529
RK
3027#identity-popup-content-box.verifiedIdentity > #identity-popup-encryption ,
3028#identity-popup-content-box.verifiedDomain > #identity-popup-encryption {
3029 margin-top: 10px;
3030 -moz-margin-start: -24px;
613daf44 3031}
3032
319c6529
RK
3033#identity-popup-content-box.verifiedIdentity > #identity-popup-encryption > vbox > #identity-popup-encryption-icon ,
3034#identity-popup-content-box.verifiedDomain > #identity-popup-encryption > vbox > #identity-popup-encryption-icon {
3035 list-style-image: url("chrome://browser/skin/Secure24.png");
613daf44 3036}
3037
3a0880a9
RK
3038#identity-popup-help-icon {
3039 border: none;
3040 margin: 7px 0 0 -3px;
3041 background: none;
3042 min-width: 0;
3043 list-style-image: url("chrome://global/skin/icons/question-16.png");
3044 cursor: pointer;
3045}
3046
3047#identity-popup-help-icon > .button-box > .button-text {
3048 display: none;
3049}
3050
3051#identity-popup-help-icon > .button-box > .button-icon {
3052 height: 16px;
3053 width: 16px;
3054}
3055
319c6529
RK
3056#identity-popup-more-info-button {
3057 margin-top: 6px;
3058 margin-bottom: 0;
3059 -moz-margin-end: 0;
613daf44 3060}
acb0e9b8 3061
fe524e0c
RK
3062#identity-popup > .panel-arrowcontainer > .panel-arrowcontent {
3063 padding: 0;
3064}
3065
3066#identity-popup-container {
3067 min-width: 280px;
3068 padding: 10px;
3069}
3070
3071#identity-popup-button-container {
3072/* background: linear-gradient(to bottom, rgba(0,0,0,0.04) 60%, transparent);*/
3073 padding: 10px;
3074 margin-top: 5px;
3075}
3076
319c6529
RK
3077.popup-notification-icon {
3078 width: 64px;
3079 height: 64px;
3080 -moz-margin-end: 10px;
3081}
acb0e9b8 3082
319c6529
RK
3083.popup-notification-icon[popupid="geolocation"] {
3084 list-style-image: url("chrome://browser/skin/Geolocation-64.png");
acb0e9b8 3085}
3086
319c6529
RK
3087.popup-notification-icon[popupid="xpinstall-disabled"],
3088.popup-notification-icon[popupid="addon-progress"],
3089.popup-notification-icon[popupid="addon-install-cancelled"],
3090.popup-notification-icon[popupid="addon-install-blocked"],
3091.popup-notification-icon[popupid="addon-install-failed"],
a40f6a79 3092.popup-notification-icon[popupid="addon-install-complete"] {
319c6529
RK
3093 list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png");
3094 width: 32px;
3095 height: 32px;
acb0e9b8 3096}
319c6529 3097
a40f6a79 3098.popup-notification-icon[popupid="click-to-play-plugins"] {
fcfb76ce 3099 list-style-image: url("chrome://mozapps/skin/plugins/pluginBlocked-64.png");
a40f6a79
RK
3100}
3101
82b4252f
RK
3102.popup-notification-icon[popupid="web-notifications"] {
3103 list-style-image: url("chrome://browser/skin/notification-64.png");
3104}
3105
319c6529
RK
3106.addon-progress-description {
3107 width: 350px;
3108 max-width: 350px;
acb0e9b8 3109}
319c6529
RK
3110
3111.popup-progress-label,
3112.popup-progress-meter {
3113 -moz-margin-start: 0;
3114 -moz-margin-end: 0;
acb0e9b8 3115}
319c6529
RK
3116
3117.popup-progress-cancel {
3118 -moz-appearance: none;
3119 background: transparent;
3120 border: none;
3121 padding: 0;
3122 margin: 0;
3123 min-height: 0;
3124 min-width: 0;
3125 list-style-image: url("chrome://mozapps/skin/downloads/downloadButtons.png");
3126 -moz-image-region: rect(0px, 32px, 16px, 16px);
acb0e9b8 3127}
319c6529
RK
3128
3129.popup-progress-cancel:hover {
3130 -moz-image-region: rect(16px, 32px, 32px, 16px);
acb0e9b8 3131}
3132
319c6529
RK
3133.popup-progress-cancel:active {
3134 -moz-image-region: rect(32px, 32px, 48px, 16px);
3135}
acb0e9b8 3136
319c6529 3137.popup-notification-icon[popupid="indexedDB-permissions-prompt"],
a6757852 3138.popup-notification-icon[popupid="indexedDB-quota-prompt"],
e2734cc7
RK
3139.popup-notification-icon[popupid*="offline-app-requested"],
3140.popup-notification-icon[popupid="offline-app-usage"] {
319c6529 3141 list-style-image: url("chrome://global/skin/icons/alert-question.gif");
acb0e9b8 3142}
3143
319c6529
RK
3144.popup-notification-icon[popupid="password-save"],
3145.popup-notification-icon[popupid="password-change"] {
3146 list-style-image: url("chrome://mozapps/skin/passwordmgr/key-64.png");
acb0e9b8 3147}
3148
1b13529a 3149.popup-notification-icon[popupid="webapps-install-progress"],
8d7ef0d9 3150.popup-notification-icon[popupid="webapps-install"] {
87a1144f 3151 list-style-image: url("chrome://global/skin/icons/webapps-64.png");
8d7ef0d9
RK
3152}
3153
c066e743
RK
3154.popup-notification-icon[popupid="bad-content"] {
3155 list-style-image: url("chrome://browser/skin/bad-content-blocked-64.png");
3156}
3157
3158.popup-notification-icon[popupid="bad-content"][mixedblockdisabled],
3159.popup-notification-icon[popupid="bad-content"][trackingblockdisabled] {
3160 list-style-image: url(chrome://browser/skin/bad-content-unblocked-64.png);
56ab361a
RK
3161}
3162
0142a07b 3163.popup-notification-icon[popupid="webRTC-sharingDevices"],
7bc075b6
RK
3164.popup-notification-icon[popupid="webRTC-shareDevices"] {
3165 list-style-image: url("chrome://browser/skin/webRTC-shareDevice-64.png");
3166}
3167
c1d2ce3e
RK
3168.popup-notification-icon[popupid="webRTC-sharingMicrophone"],
3169.popup-notification-icon[popupid="webRTC-shareMicrophone"] {
3170 list-style-image: url("chrome://browser/skin/webRTC-shareMicrophone-64.png");
3171}
3172
9168a62c
RK
3173.popup-notification-icon[popupid="webRTC-sharingScreen"],
3174.popup-notification-icon[popupid="webRTC-shareScreen"] {
3175 list-style-image: url(chrome://browser/skin/webRTC-shareScreen-64.png);
3176}
3177
82b4252f
RK
3178.popup-notification-icon[popupid="pointerLock"] {
3179 list-style-image: url("chrome://browser/skin/pointerLock-64.png");
3180}
3181
319c6529 3182/* Notification icon box */
cae267ab
RK
3183#notification-popup .panel-promo-box {
3184/* margin: 10px -10px -10px; */
3185}
3186
319c6529 3187#notification-popup-box {
f993773d
RK
3188 position: relative;
3189 background-color: #000000;
3190 background-clip: padding-box;
3191 padding-left: 3px;
5517da5a 3192 padding-right: 8px;
f0eab82c 3193 border-radius: 3px 0 0 3px;
82b4252f 3194 border-image: url("chrome://browser/skin/urlbar-arrow.png") 0 8 0 0 / 0 8px 0 0;
f993773d 3195 -moz-margin-end: -8px;
5517da5a 3196 border-right-width: 8px;
f993773d
RK
3197}
3198
589b5528
RK
3199window:not([chromehidden~="toolbar"]) #urlbar-wrapper > #forward-button[disabled] + #urlbar > #notification-popup-box {
3200/* padding-left: 7px; */
f993773d
RK
3201}
3202
3203#notification-popup-box:-moz-locale-dir(rtl),
3204.notification-anchor-icon:-moz-locale-dir(rtl) {
71a617ff 3205 transform: scaleX(-1);
319c6529 3206}
acb0e9b8 3207
319c6529 3208.notification-anchor-icon {
acb0e9b8 3209 width: 16px;
3210 height: 16px;
85cfb236 3211 margin: 0 2px;
acb0e9b8 3212}
3213
319c6529 3214.notification-anchor-icon:-moz-focusring {
f0eab82c 3215 outline: 1px dotted #008484;
acb0e9b8 3216}
3217
e2734cc7 3218.default-notification-icon,
ab799a7a
RK
3219#default-notification-icon {
3220 list-style-image: url("chrome://global/skin/icons/information-16.png");
3221}
3222
e2734cc7 3223.identity-notification-icon,
9585a561
RK
3224#identity-notification-icon {
3225 list-style-image: url("chrome://mozapps/skin/profile/profileicon.png");
3226}
3227
e2734cc7 3228.geo-notification-icon,
319c6529
RK
3229#geo-notification-icon {
3230 list-style-image: url("chrome://browser/skin/Geolocation-16.png");
acb0e9b8 3231}
3232
319c6529
RK
3233#addons-notification-icon {
3234 list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric-16.png");
acb0e9b8 3235}
3236
e2734cc7 3237.indexedDB-notification-icon,
319c6529
RK
3238#indexedDB-notification-icon {
3239 list-style-image: url("chrome://global/skin/icons/question-16.png");
acb0e9b8 3240}
3241
319c6529
RK
3242#password-notification-icon {
3243 list-style-image: url("chrome://mozapps/skin/passwordmgr/key-16.png");
acb0e9b8 3244}
3245
8d7ef0d9 3246#webapps-notification-icon {
87a1144f 3247 list-style-image: url("chrome://gobal/skin/icons/webapps-16.png");
8d7ef0d9
RK
3248}
3249
a40f6a79 3250#plugins-notification-icon {
b27cc46e
RK
3251 list-style-image: url("chrome://browser/skin/notification-pluginNormal.png");
3252}
3253
f76c6aee 3254#plugins-notification-icon.plugin-hidden {
b27cc46e 3255 list-style-image: url("chrome://browser/skin/notification-pluginAlert.png");
a40f6a79
RK
3256}
3257
f76c6aee 3258#plugins-notification-icon.plugin-blocked {
b27cc46e 3259 list-style-image: url("chrome://browser/skin/notification-pluginBlocked.png");
990cba4b
RK
3260}
3261
f76c6aee 3262#plugins-notification-icon {
fe524e0c
RK
3263/* -moz-image-region: rect(0, 16px, 16px, 0);*/
3264}
3265
f76c6aee 3266#plugins-notification-icon:hover {
fe524e0c
RK
3267/* -moz-image-region: rect(0, 32px, 16px, 16px);*/
3268}
3269
6adbc9a6
RK
3270#notification-popup-box[hidden] {
3271 /* Override display:none to make the pluginBlockedNotification animation work
3272 when showing the notification repeatedly. */
3273 display: -moz-box;
3274 visibility: collapse;
3275}
3276
f76c6aee 3277#plugins-notification-icon.plugin-blocked[showing] {
990cba4b
RK
3278 animation: pluginBlockedNotification 500ms ease 0s 5 alternate both;
3279}
3280
3281@keyframes pluginBlockedNotification {
3282 from {
3283 opacity: 0;
3284 }
3285 to {
3286 opacity: 1;
3287 }
3288}
3289
c066e743
RK
3290.bad-content-blocked-notification-icon,
3291#bad-content-blocked-notification-icon {
3292 list-style-image: url("chrome://browser/skin/bad-content-blocked-16.png");
3293}
3294
3295.bad-content-unblocked-notification-icon,
3296#bad-content-unblocked-notification-icon {
3297 list-style-image: url(chrome://browser/skin/bad-content-unblocked-16.png);
56ab361a
RK
3298}
3299
e2734cc7 3300.webRTC-shareDevices-notification-icon,
0142a07b 3301#webRTC-shareDevices-notification-icon {
7bc075b6
RK
3302 list-style-image: url("chrome://browser/skin/webRTC-shareDevice-16.png");
3303}
3304
e2734cc7 3305.webRTC-sharingDevices-notification-icon,
6adbc9a6
RK
3306#webRTC-sharingDevices-notification-icon {
3307 list-style-image: url("chrome://browser/skin/webRTC-sharingDevice-16.png");
3308}
3309
c1d2ce3e
RK
3310.webRTC-shareMicrophone-notification-icon,
3311#webRTC-shareMicrophone-notification-icon {
3312 list-style-image: url("chrome://browser/skin/webRTC-shareMicrophone-16.png");
3313}
3314
3315.webRTC-sharingMicrophone-notification-icon,
3316#webRTC-sharingMicrophone-notification-icon {
3317 list-style-image: url("chrome://browser/skin/webRTC-sharingMicrophone-16.png");
3318}
3319
9168a62c
RK
3320.webRTC-shareScreen-notification-icon,
3321#webRTC-shareScreen-notification-icon {
3322 list-style-image: url(chrome://browser/skin/webRTC-shareScreen-16.png);
3323}
3324
3325.webRTC-sharingScreen-notification-icon,
3326#webRTC-sharingScreen-notification-icon {
3327 list-style-image: url(chrome://browser/skin/webRTC-sharingScreen-16.png);
3328}
3329
e2734cc7 3330.web-notifications-notification-icon,
82b4252f
RK
3331#web-notifications-notification-icon {
3332 list-style-image: url("chrome://browser/skin/notification-16.png");
3333}
3334
3335#pointerLock-notification-icon {
3336 list-style-image: url("chrome://browser/skin/pointerLock-16.png");
3337}
3338#pointerLock-cancel {
3339 margin: 0px;
3340}
3341
ed88669c
RK
3342/* Translation infobar */
3343
3344/* === BEGIN infobar.inc.css === */
3345
3346notification[value="translation"] .messageImage {
93c91f62 3347 list-style-image: url("chrome://browser/skin/translation-16.png");
ed88669c
RK
3348 -moz-image-region: rect(0, 32px, 16px, 16px);
3349}
3350
3351@media (min-resolution: 1.25dppx) {
3352 notification[value="translation"] .messageImage {
93c91f62 3353 list-style-image: url("chrome://browser/skin/translation-16@2x.png");
ed88669c
RK
3354 -moz-image-region: rect(0, 64px, 32px, 32px);
3355 }
3356}
3357
93c91f62
RK
3358notification[value="translation"][state="translating"] .messageImage {
3359 list-style-image: url("chrome://browser/skin/translating-16.png");
3360 -moz-image-region: auto;
3361}
3362
3363@media (min-resolution: 1.25dppx) {
3364 notification[value="translation"][state="translating"] .messageImage {
3365 list-style-image: url("chrome://browser/skin/translating-16@2x.png");
3366 }
3367}
3368
ed88669c
RK
3369notification[value="translation"] button,
3370notification[value="translation"] menulist {
3371 min-width: 0;
ed88669c
RK
3372}
3373
3374notification[value="translation"] menulist > .menulist-dropmarker {
3375}
3376
93c91f62
RK
3377.translation-menupopup arrowscrollbox {
3378 padding-bottom: 0;
3379}
3380
3381.translation-attribution {
3382 cursor: pointer;
3383 -moz-box-align: end;
3384 font-size: small;
3385}
3386
3387.translation-attribution > label {
3388 margin-bottom: 0;
3389}
3390
3391.translation-attribution > image {
3392 width: 70px;
3393}
3394
8837ac2c
RK
3395.translation-welcome-panel {
3396 width: 305px;
3397}
3398
3399.translation-welcome-logo {
3400 height: 32px;
3401 width: 32px;
3402 list-style-image: url(chrome://browser/skin/translation-16@2x.png);
3403 -moz-image-region: rect(0, 64px, 32px, 32px);
3404}
3405
3406.translation-welcome-content {
3407 -moz-margin-start: 16px;
3408}
3409
3410.translation-welcome-headline {
3411 font-size: larger;
3412 font-weight: bold;
3413}
3414
3415.translation-welcome-body {
3416 padding: 1em 0;
3417 margin: 0 0;
3418}
3419
ed88669c
RK
3420/* === END infobar.inc.css === */
3421
0bcd5587
RK
3422notification[value="translation"] {
3423 min-height: 40px;
3424}
3425
ed88669c
RK
3426.translate-notification-icon,
3427#translate-notification-icon {
3428 list-style-image: url("chrome://browser/skin/translation-16.png");
3429 -moz-image-region: rect(0px, 16px, 16px, 0px);
3430}
3431
3432.translated-notification-icon,
3433#translated-notification-icon {
3434 list-style-image: url("chrome://browser/skin/translation-16.png");
3435 -moz-image-region: rect(0px, 32px, 16px, 16px);
3436}
3437
3438.translation-menupopup {
3439 -moz-appearance: none;
3440}
3441
319c6529 3442/* Bookmarks roots menu-items */
319c6529
RK
3443#subscribeToPageMenuitem:not([disabled]),
3444#subscribeToPageMenupopup,
3445#BMB_subscribeToPageMenuitem:not([disabled]),
3446#BMB_subscribeToPageMenupopup {
3447 list-style-image: url("chrome://browser/skin/feeds/feedIcon16.png");
613daf44 3448}
3449
319c6529 3450#bookmarksToolbarFolderMenu,
c0f6797e
RK
3451#BMB_bookmarksToolbar,
3452#panelMenu_bookmarksToolbar {
8da9da4e 3453 list-style-image: url("chrome://communicator/skin/bookmarks/bookmarksToolbar.png");
319c6529
RK
3454 -moz-image-region: auto;
3455}
acb0e9b8 3456
c0f6797e
RK
3457#BMB_unsortedBookmarks,
3458#panelMenu_unsortedBookmarks {
8da9da4e 3459 list-style-image: url("chrome://communicator/skin/bookmarks/unsortedBookmarks.png");
319c6529 3460 -moz-image-region: auto;
acb0e9b8 3461}
3462
319c6529 3463/* ::::: Keyboard UI Panel ::::: */
acb0e9b8 3464
319c6529
RK
3465.KUI-panel {
3466 color: #FF9F00;
3467 border-style: none;
3468 border-radius: 20px;
acb0e9b8 3469}
3470
319c6529
RK
3471.KUI-panel[level="top"] {
3472 /*background-color: rgba(27%,27%,27%,.65);*/
acb0e9b8 3473}
3474
319c6529
RK
3475/* Ctrl-Tab */
3476
3477#ctrlTab-panel {
3478 padding: 20px 10px 10px;
3479 font-weight: bold;
acb0e9b8 3480}
3481
319c6529
RK
3482.ctrlTab-favicon[src] {
3483 background-color: #000000;
3484 width: 20px;
3485 height: 20px;
3486 padding: 2px;
3487}
acb0e9b8 3488
319c6529 3489.ctrlTab-preview-inner > .tabPreview-canvas {
acb0e9b8 3490}
3491
319c6529
RK
3492.ctrlTab-preview:not(#ctrlTab-showAll) > * > .ctrlTab-preview-inner > .tabPreview-canvas {
3493 margin-bottom: 2px;
acb0e9b8 3494}
3495
319c6529
RK
3496.ctrlTab-preview-inner {
3497 padding-bottom: 10px;
acb0e9b8 3498}
3499
319c6529
RK
3500#ctrlTab-showAll:not(:focus) > * > .ctrlTab-preview-inner {
3501 padding: 10px;
3502 background-color: #000000;
3503 border-radius: .5em;
acb0e9b8 3504}
3505
319c6529
RK
3506.ctrlTab-preview:focus > * > .ctrlTab-preview-inner {
3507 color: white;
3508 background-color: #000000;
3509 text-shadow: none;
3510 padding: 8px;
3511 border: 2px solid #9C9CFF;
3512 border-radius: .5em;
acb0e9b8 3513}
3514
319c6529
RK
3515.ctrlTab-preview:not(#ctrlTab-showAll):focus > * > .ctrlTab-preview-inner {
3516 margin: -10px -10px 0;
acb0e9b8 3517}
3518
319c6529
RK
3519#ctrlTab-showAll {
3520 margin-top: .5em;
acb0e9b8 3521}
3522
45dc7657
RK
3523/* Sync Panel */
3524
3525.sync-panel-icon {
cae267ab 3526 height:32px;
45dc7657
RK
3527 width: 32px;
3528 background: url("chrome://browser/content/abouthome/sync.png") top left no-repeat;
3529}
3530
3531.sync-panel-inner {
3532 width: 0;
3533 padding-left: 10px;
3534}
3535
3536.sync-panel-button-box {
3537 margin-top: 1em;
3538}
3539
3540#sync-error-panel-title,
3541#sync-start-panel-title {
cae267ab 3542 font-size: 120%;
45dc7657 3543 font-weight: bold;
cae267ab 3544 margin-bottom: 5px;
45dc7657
RK
3545}
3546
3547#sync-start-panel-subtitle,
3548#sync-error-panel-subtitle {
3549 margin: 0;
3550}
3551
9abeb12c
RK
3552/* Status panel */
3553
3554.statuspanel-label {
3555 margin: 0;
3556 padding: 2px 4px;
38cfeb47 3557 background: #404000;
9abeb12c
RK
3558 border: 1px none #9C9CFF;
3559 border-top-style: solid;
3560 color: #FF9F00;
3561 text-shadow: none;
3562}
3563
3564.statuspanel-label:-moz-locale-dir(ltr):not([mirror]),
3565.statuspanel-label:-moz-locale-dir(rtl)[mirror] {
3566 border-right-style: solid;
3567 border-top-right-radius: .3em;
3568 margin-right: 1em;
3569}
3570
3571.statuspanel-label:-moz-locale-dir(rtl):not([mirror]),
3572.statuspanel-label:-moz-locale-dir(ltr)[mirror] {
3573 border-left-style: solid;
3574 border-top-left-radius: .3em;
3575 margin-left: 1em;
3576}
3e6e0e5c
RK
3577
3578/* HACK to abolish devily color on main content */
3579
3580#content {
3581 background-color: transparent !important;
3582}
dce90fef 3583
8ad8bf83
RK
3584#full-screen-warning-message {
3585 background-color: #000000;
3586 color: #FF9F00;
8ad8bf83
RK
3587 border-radius: 8px;
3588 margin-top: 30px;
3589 padding: 30px 50px;
3590 box-shadow: 0 0 2px #9C9CFF;
3591}
3592
3593#full-screen-warning-container[obscure-browser] {
85cfb236
RK
3594 background-color: rgba(0,0,0,0.3);
3595}
3596
3597.full-screen-description {
3598 font-size: 150%;
3599}
3600
3601#full-screen-domain-text {
3602 font-size: 300%;
8ad8bf83
RK
3603}
3604
85cfb236
RK
3605.full-screen-approval-button,
3606#full-screen-remember-decision {
3607 font-size: 120%;
8ad8bf83
RK
3608}
3609
b27cc46e
RK
3610/* === BEGIN commandline.inc.css === */
3611
3612/* Developer toolbar */
3613
3614#developer-toolbar {
3615 border-top: 3px solid #000000;
3616 border-bottom: none;
3617}
3618
3619#developer-toolbar .toolbar-holder {
3620 background-color: #8050B0;
3621 color: #FFCF00;
3622}
3623
3624#developer-toolbar .toolbar-holder {
3625 background-color: #8050B0;
3626 color: #FFCF00;
3627}
3628
3629#developer-toolbar .toolbar-startcap,
3630#developer-toolbar .toolbar-endcap{
3631 background-color: #6000CF;
3632}
3633
3634#developer-toolbar {
3635/* padding: 0;
3636 min-height: 32px; */
3637}
3638
de57e474 3639#developer-toolbar > toolbarbutton {
b27cc46e
RK
3640/* margin: 0;
3641 padding: 0 10px;
3642 width: 32px; */
3643}
3644
3645.developer-toolbar-button > image {
3646/* margin: auto 10px; */
3647}
3648
fe524e0c
RK
3649#developer-toolbar-toolbox-button > label {
3650 display: none;
3651}
3652
0bcd5587
RK
3653.developer-toolbar-button > .toolbarbutton-icon,
3654#developer-toolbar-closebutton > .toolbarbutton-icon {
3655 width: 16px;
3656 height: 16px;
3657}
3658
b27cc46e
RK
3659#developer-toolbar-toolbox-button {
3660 list-style-image: url("chrome://browser/skin/devtools/toggle-tools.png");
3661 -moz-image-region: rect(0px, 16px, 16px, 0px);
3662}
3663
3664#developer-toolbar-toolbox-button > label {
3665 display: none;
3666}
3667
3668#developer-toolbar-toolbox-button:hover,
3669#developer-toolbar-toolbox-button:hover:active,
3670#developer-toolbar-toolbox-button[checked=true] {
3671 -moz-image-region: rect(0px, 32px, 16px, 16px);
3672}
3673
0bcd5587
RK
3674@media (min-resolution: 2dppx) {
3675 #developer-toolbar-toolbox-button {
3676 list-style-image: url("chrome://browser/skin/devtools/toggle-tools@2x.png");
3677 -moz-image-region: rect(0px, 32px, 32px, 0px);
3678 }
3679
3680 #developer-toolbar-toolbox-button:hover,
3681 #developer-toolbar-toolbox-button:hover:active,
3682 #developer-toolbar-toolbox-button[checked=true] {
3683 -moz-image-region: rect(0px, 64px, 32px, 32px);
3684 }
3685}
3686
de57e474
RK
3687#developer-toolbar-closebutton {
3688 list-style-image: url("chrome://browser/skin/devtools/close.png");
3689 -moz-image-region: rect(0px, 16px, 16px, 0px);
3690 min-width: 16px;
3691 width: 16px;
3692}
3693
3694#developer-toolbar-closebutton > .toolbarbutton-icon {
3695}
3696
3697#developer-toolbar-closebutton > .toolbarbutton-text {
3698 display: none;
3699}
3700
3701#developer-toolbar-closebutton:hover,
3702#developer-toolbar-closebutton:hover:active {
3703 -moz-image-region: rect(0px, 32px, 16px, 16px);
3704}
3705
0bcd5587
RK
3706@media (min-resolution: 2dppx) {
3707 #developer-toolbar-closebutton {
3708 list-style-image: url("chrome://browser/skin/devtools/close@2x.png");
3709 -moz-image-region: rect(0px, 32px, 32px, 0px);
3710 }
3711
3712 #developer-toolbar-closebutton:hover,
3713 #developer-toolbar-closebutton:hover:active {
3714 -moz-image-region: rect(0px, 64px, 32px, 32px);
3715 }
3716}
3717
b27cc46e
RK
3718/* GCLI */
3719
37953ab4
RK
3720html|*#gcli-tooltip-frame,
3721html|*#gcli-output-frame {
85cfb236 3722 padding: 0;
37953ab4
RK
3723 border-width: 0;
3724 background-color: transparent;
3725}
3726
3727#gcli-output,
3728#gcli-tooltip {
3729 border-width: 0;
3730 background-color: transparent;
85cfb236
RK
3731}
3732
3733.gclitoolbar-input-node,
b27cc46e 3734.gclitoolbar-complete-node {
37953ab4
RK
3735 margin: 1px 3px;
3736 -moz-box-align: center;
3737 padding-top: 0;
3738 padding-bottom: 0;
b27cc46e 3739 padding-right: 8px;
37953ab4 3740 background-color: transparent;
85cfb236
RK
3741}
3742
3743.gclitoolbar-input-node {
b27cc46e
RK
3744/* line-height: 32px;
3745 outline-style: none; */
de57e474
RK
3746 background-repeat: no-repeat;
3747 background-color: rgba(0, 0, 0, .75);
b27cc46e
RK
3748}
3749
3750.gclitoolbar-input-node[focused="true"] {
de57e474 3751 background-color: #000000;
37953ab4
RK
3752}
3753
0bcd5587
RK
3754.gclitoolbar-input-node::before {
3755 content: "";
3756 display: inline-block;
3757 -moz-box-ordinal-group: 0;
3758 width: 16px;
3759 height: 16px;
3760 margin: 0 2px;
3761 background-image: url("chrome://browser/skin/devtools/commandline-icon.png");
3762 background-position: 0 center;
3763 background-size: 32px 16px;
3764}
3765
3766.gclitoolbar-input-node[focused="true"]::before {
3767 background-position: -16px center;
3768}
3769
3770@media (min-resolution: 2dppx) {
3771 .gclitoolbar-input-node::before {
3772 background-image: url("chrome://browser/skin/devtools/commandline-icon@2x.png");
3773 }
3774}
3775
37953ab4
RK
3776.gclitoolbar-input-node:not([focused="true"]) {
3777 border-color: transparent;
85cfb236
RK
3778}
3779
7bc075b6
RK
3780.gclitoolbar-input-node > .textbox-input-box > html|*.textbox-input::-moz-selection {
3781 background-color: #008484;
3782 color: #000000;
3783 text-shadow: none;
3784}
3785
85cfb236 3786.gclitoolbar-complete-node {
37953ab4 3787 padding-left: 21px;
85cfb236
RK
3788 background-color: transparent;
3789 color: transparent;
b27cc46e
RK
3790 z-index: 100;
3791 pointer-events: none;
85cfb236
RK
3792}
3793
85cfb236
RK
3794.gcli-in-incomplete,
3795.gcli-in-error,
3796.gcli-in-ontab,
3797.gcli-in-todo,
3798.gcli-in-closebrace,
3799.gcli-in-param,
3800.gcli-in-valid {
3801 margin: 0;
3802 padding: 0;
3803}
3804
3805.gcli-in-incomplete {
3806 border-bottom: 2px dotted #8050B0;
3807}
3808
3809.gcli-in-error {
3810 border-bottom: 2px dotted #FF0000;
3811}
3812
3813.gcli-in-ontab {
3814 color: #9C9CFF;
3815}
3816
3817.gcli-in-todo {
3818 color: #795900;
3819}
3820
3821.gcli-in-closebrace {
3822 color: #8050B0;
3823}
3824
b27cc46e
RK
3825/* === END commandline.inc.css === */
3826
fe524e0c
RK
3827/* === BEGIN responsivedesign.inc.css === */
3828
37953ab4 3829/* Responsive Mode */
85cfb236 3830
7bc075b6 3831.browserContainer[responsivemode] {
0bcd5587 3832 background-color: #221500;
37953ab4
RK
3833 padding: 0 20px 20px 20px;
3834}
3835
7bc075b6 3836.browserStack[responsivemode] {
37953ab4
RK
3837 box-shadow: 0 0 7px #9C9CFF;
3838}
3839
3840.devtools-responsiveui-toolbar {
3841 background: transparent;
d2ce251d
RK
3842 /* text color is textColor from dark theme, since no theme is applied to
3843 * the responsive toolbar.
3844 */
3845 color: #FF9F00;
37953ab4
RK
3846 margin: 10px 0;
3847 padding: 0;
3848 box-shadow: none;
3849 border-bottom-width: 0;
3850}
3851
de57e474
RK
3852.devtools-responsiveui-menulist,
3853.devtools-responsiveui-toolbarbutton {
3854 -moz-box-align: center;
3855 min-width: 32px;
3856/* min-height: 22px;*/
3857/* margin: 0 3px; */
3858}
3859
1988bb88
RK
3860.devtools-responsiveui-menulist .menulist-editable-box {
3861 background-color: transparent;
3862}
3863
3864.devtools-responsiveui-menulist html|*.menulist-editable-input {
3865 color: inherit;
3866 text-align: center;
3867}
3868
3869.devtools-responsiveui-menulist html|*.menulist-editable-input::-moz-selection {
3870/* background: hsla(212,7%,57%,.35);*/
3871}
3872
0bcd5587
RK
3873.devtools-responsiveui-toolbarbutton > .toolbarbutton-icon {
3874 width: 16px;
3875 height: 16px;
3876}
3877
de57e474
RK
3878.devtools-responsiveui-toolbarbutton > .toolbarbutton-menubutton-button {
3879 -moz-box-orient: horizontal;
3880}
3881
3882.devtools-responsiveui-menulist:-moz-focusring,
3883.devtools-responsiveui-toolbarbutton:-moz-focusring {
3884/* outline: 1px dotted hsla(210,30%,85%,0.7);
3885 outline-offset: -4px;*/
3886}
3887
3888.devtools-responsiveui-toolbarbutton:not([label]) > .toolbarbutton-text {
3889 display: none;
3890}
3891
3892.devtools-responsiveui-toolbarbutton:not([checked=true]):hover:active {
3893/* border-color: hsla(210,8%,5%,.6);
3894 background: linear-gradient(hsla(220,6%,10%,.3), hsla(212,7%,57%,.15) 65%, hsla(212,7%,57%,.3));
3895 box-shadow: 0 0 3px hsla(210,8%,5%,.25) inset, 0 1px 3px hsla(210,8%,5%,.25) inset, 0 1px 0 hsla(210,16%,76%,.15); */
3896}
3897
3898.devtools-responsiveui-menulist[open=true],
3899.devtools-responsiveui-toolbarbutton[open=true],
3900.devtools-responsiveui-toolbarbutton[checked=true] {
3901/* border-color: hsla(210,8%,5%,.6) !important;
3902 background: linear-gradient(hsla(220,6%,10%,.6), hsla(210,11%,18%,.45) 75%, hsla(210,11%,30%,.4));
3903 box-shadow: 0 1px 3px hsla(210,8%,5%,.25) inset, 0 1px 3px hsla(210,8%,5%,.25) inset, 0 1px 0 hsla(210,16%,76%,.15); */
3904}
3905
3906.devtools-responsiveui-toolbarbutton[checked=true] {
3907/* color: hsl(208,100%,60%); */
3908}
3909
3910.devtools-responsiveui-toolbarbutton[checked=true]:hover {
3911/* background-color: transparent !important;*/
3912}
3913
3914.devtools-responsiveui-toolbarbutton[checked=true]:hover:active {
3915/* background-color: hsla(210,8%,5%,.2) !important;*/
3916}
3917
3918.devtools-responsiveui-menulist > .menulist-label-box {
3919 text-align: center;
3920}
3921
3922.devtools-responsiveui-menulist > .menulist-dropmarker {
3923/* display: -moz-box;
3924 background-color: transparent;
0bcd5587 3925 list-style-image: url("chrome://browser/skin/devtools/dropmarker.svg");
de57e474
RK
3926 -moz-box-align: center;
3927 border-width: 0;
3928 min-width: 16px;*/
3929}
3930
3931.devtools-responsiveui-toolbarbutton[type=menu-button] > .toolbarbutton-menubutton-button {
3932/* color: inherit;
3933 border-width: 0;
3934 -moz-border-end: 1px solid hsla(210,8%,5%,.45);
3935 box-shadow: -1px 0 0 hsla(210,16%,76%,.15) inset, 1px 0 0 hsla(210,16%,76%,.15);*/
3936}
3937
3938.devtools-responsiveui-toolbarbutton[type=menu-button]:-moz-locale-dir(rtl) > .toolbarbutton-menubutton-button {
3939/* box-shadow: 1px 0 0 hsla(210,16%,76%,.15) inset, -1px 0 0 hsla(210,16%,76%,.15);*/
3940}
3941
3942.devtools-responsiveui-toolbarbutton[type=menu-button] {
3943/* padding: 0 1px;*/
3944 -moz-box-align: stretch;
3945}
3946
3947.devtools-responsiveui-toolbarbutton[type=menu] > .toolbarbutton-menu-dropmarker,
3948.devtools-responsiveui-toolbarbutton[type=menu-button] > .toolbarbutton-menubutton-dropmarker {
0bcd5587 3949/* list-style-image: url("chrome://browser/skin/devtools/dropmarker.svg");
de57e474
RK
3950 -moz-box-align: center;
3951 padding: 0 3px;*/
37953ab4
RK
3952}
3953
3954.devtools-responsiveui-toolbar:-moz-locale-dir(ltr) > *:first-child,
3955.devtools-responsiveui-toolbar:-moz-locale-dir(rtl) > *:last-child {
fe524e0c
RK
3956 margin-left: 3px;
3957}
3958
3959.devtools-responsiveui-close {
3960 list-style-image: url("chrome://browser/skin/devtools/close.png");
3961 -moz-image-region: rect(0px,16px,16px,0px);
3962}
3963
3964.devtools-responsiveui-close:hover {
3965 -moz-image-region: rect(0px,32px,16px,16px);
3966}
3967
3968.devtools-responsiveui-rotate {
3969 list-style-image: url("chrome://browser/skin/devtools/responsiveui-rotate.png");
3970 -moz-image-region: rect(0px,16px,16px,0px);
3971}
3972
3973.devtools-responsiveui-rotate:hover {
3974 -moz-image-region: rect(0px,32px,16px,16px);
3975}
3976
0bcd5587
RK
3977@media (min-resolution: 2dppx) {
3978 .devtools-responsiveui-close {
3979 list-style-image: url("chrome://browser/skin/devtools/close@2x.png");
3980 }
3981
3982 .devtools-responsiveui-close:hover {
3983 -moz-image-region: rect(0px,64px,32px,32px);
3984 }
3985
3986 .devtools-responsiveui-rotate {
3987 list-style-image: url("chrome://browser/skin/devtools/responsiveui-rotate@2x.png");
3988 }
3989
3990 .devtools-responsiveui-rotate:hover {
3991 -moz-image-region: rect(0px,64px,32px,32px);
3992 }
3993}
3994
fe524e0c
RK
3995.devtools-responsiveui-touch {
3996 list-style-image: url("chrome://browser/skin/devtools/responsiveui-touch.png");
3997 -moz-image-region: rect(0px,16px,16px,0px);
3998}
3999
4000.devtools-responsiveui-touch:hover,
4001.devtools-responsiveui-touch[checked],
4002.devtools-responsiveui-touch[checked]:hover {
4003 -moz-image-region: rect(0px,32px,16px,16px);
4004}
4005
0bcd5587
RK
4006@media (min-resolution: 2dppx) {
4007 .devtools-responsiveui-touch {
4008 list-style-image: url("chrome://browser/skin/devtools/responsiveui-touch@2x.png");
4009 -moz-image-region: rect(0px,32px,32px,0px);
4010 }
4011
4012 .devtools-responsiveui-touch:hover,
4013 .devtools-responsiveui-touch[checked],
4014 .devtools-responsiveui-touch[checked]:hover {
4015 -moz-image-region: rect(0px,64px,32px,32px);
4016 }
4017}
4018
fe524e0c
RK
4019.devtools-responsiveui-screenshot {
4020 list-style-image: url("chrome://browser/skin/devtools/responsiveui-screenshot.png");
4021 -moz-image-region: rect(0px,16px,16px,0px);
4022}
4023
4024.devtools-responsiveui-screenshot:hover {
4025 -moz-image-region: rect(0px,32px,16px,16px);
37953ab4
RK
4026}
4027
0bcd5587
RK
4028@media (min-resolution: 2dppx) {
4029 .devtools-responsiveui-screenshot {
4030 list-style-image: url("chrome://browser/skin/devtools/responsiveui-screenshot@2x.png");
4031 }
4032
4033 .devtools-responsiveui-screenshot:hover {
4034 -moz-image-region: rect(0px,64px,32px,32px);
4035 }
4036}
4037
fe524e0c 4038.devtools-responsiveui-resizebarV {
37953ab4
RK
4039 width: 7px;
4040 height: 24px;
4041 cursor: ew-resize;
71a617ff 4042 transform: translate(12px, -12px);
0bcd5587 4043 background-size: cover;
37953ab4
RK
4044 background-image: url("chrome://browser/skin/devtools/responsive-vertical-resizer.png");
4045}
4046
fe524e0c
RK
4047.devtools-responsiveui-resizebarH {
4048 width: 24px;
4049 height: 7px;
4050 cursor: ns-resize;
4051 transform: translate(-12px, 12px);
0bcd5587 4052 background-size: cover;
fe524e0c
RK
4053 background-image: url("chrome://browser/skin/devtools/responsive-horizontal-resizer.png");
4054}
4055
37953ab4
RK
4056.devtools-responsiveui-resizehandle {
4057 width: 16px;
4058 height: 16px;
4059 cursor: se-resize;
71a617ff 4060 transform: translate(12px, 12px);
0bcd5587 4061 background-size: cover;
37953ab4 4062 background-image: url("chrome://browser/skin/devtools/responsive-se-resizer.png");
8d7ef0d9 4063}
889649fd 4064
a21f2959
RK
4065/* FxOS custom mode with additional buttons and phone look'n feel */
4066
4067/* Hide devtools manual resizer */
4068.browserStack[responsivemode].fxos-mode .devtools-responsiveui-resizehandle,
4069.browserStack[responsivemode].fxos-mode .devtools-responsiveui-resizebarH,
4070.browserStack[responsivemode].fxos-mode .devtools-responsiveui-resizebarV {
4071 display: none;
4072}
4073
4074/* Gives responsive mode a phone look'n feel */
4075.browserStack[responsivemode].fxos-mode {
4076 padding: 60px 15px 0;
4077
4078 border-radius: 25px / 20px;
4079 border-bottom-left-radius: 0;
4080 border-bottom-right-radius: 0;
4081 border: 1px solid #FFFFFF;
4082 border-bottom-width: 0;
4083
4084 background-color: #353535;
4085
4086 box-shadow: 0 3px 0.7px 1px #777777, 0 5px rgba(0, 0, 0, 0.4) inset;
4087
4088 background-image: linear-gradient(to right, #111 11%, #333 56%);
4089 min-width: 320px;
4090}
4091
4092.devtools-responsiveui-hardware-buttons {
4093 -moz-appearance: none;
4094 padding: 20px;
4095
4096 border: 1px solid #FFFFFF;
4097 border-bottom-left-radius: 25px;
4098 border-bottom-right-radius: 25px;
4099 border-top-width: 0;
4100
4101 box-shadow: 0 3px 0.7px 1px #777777, 0 -7px rgba(0, 0, 0, 0.4) inset;
4102
4103 background-image: linear-gradient(to right, #111 11%, #333 56%);
4104}
4105
4106.devtools-responsiveui-home-button {
4107 width: 40px;
4108 height: 30px;
4109 list-style-image: url("chrome://browser/skin/devtools/responsiveui-home.png");
4110}
4111
4112.devtools-responsiveui-sleep-button {
4113 -moz-appearance: none;
4114 /* compensate browserStack top padding */
4115 margin-top: -67px;
4116 margin-right: 10px;
4117
4118 min-width: 10px;
4119 width: 50px;
4120 height: 5px;
4121
4122 border: 1px solid #444;
4123 border-top-right-radius: 12px;
4124 border-top-left-radius: 12px;
4125 border-bottom-color: transparent;
4126
4127 background-image: linear-gradient(to top, #111 11%, #333 56%);
4128}
4129
4130.devtools-responsiveui-sleep-button:hover:active {
4131 background-image: linear-gradient(to top, #aaa 11%, #ddd 56%);
4132}
4133
4134.devtools-responsiveui-volume-buttons {
4135 margin-left: -29px;
4136}
4137
4138.devtools-responsiveui-volume-up-button,
4139.devtools-responsiveui-volume-down-button {
4140 -moz-appearance: none;
4141 border: 1px solid red;
4142 min-width: 8px;
4143 height: 40px;
4144
4145 border: 1px solid #444;
4146 border-right-color: transparent;
4147
4148 background-image: linear-gradient(to right, #111 11%, #333 56%);
4149}
4150
4151.devtools-responsiveui-volume-up-button:hover:active,
4152.devtools-responsiveui-volume-down-button:hover:active {
4153 background-image: linear-gradient(to right, #aaa 11%, #ddd 56%);
4154}
4155
4156.devtools-responsiveui-volume-up-button {
4157 border-top-left-radius: 12px;
4158}
4159
4160.devtools-responsiveui-volume-down-button {
4161 border-bottom-left-radius: 12px;
4162}
4163
0bcd5587
RK
4164@media (min-resolution: 2dppx) {
4165 .devtools-responsiveui-resizebarV {
4166 background-image: url("chrome://browser/skin/devtools/responsive-vertical-resizer@2x.png");
4167 }
4168
4169 .devtools-responsiveui-resizebarH {
4170 background-image: url("chrome://browser/skin/devtools/responsive-horizontal-resizer@2x.png");
4171 }
4172
4173 .devtools-responsiveui-resizehandle {
4174 background-image: url("chrome://browser/skin/devtools/responsive-se-resizer@2x.png");
4175 }
4176}
4177
fe524e0c 4178/* === END responsivedesign.inc.css === */
fcaeefc2
RK
4179
4180/* === including indicator.css is done at the start of the file === */
fe524e0c 4181
889649fd
RK
4182/* Error counter */
4183
0142a07b 4184#developer-toolbar-toolbox-button[error-count]:before {
889649fd
RK
4185 color: #000000;
4186 min-width: 16px;
4187 text-shadow: none;
4188 background-color: #FF0000;
4189 border-radius: 1px;
c29b709d 4190 -moz-margin-end: 5px;
c54ac991 4191}
e9c73590 4192
348c0499 4193/* Social toolbar item */
e9c73590 4194
348c0499 4195#social-notification-icon-mentions {
e9c73590 4196 background-color: #000000;
348c0499
RK
4197 border-radius: 3px;
4198 -moz-margin-start: 2px;
e9c73590
RK
4199}
4200
348c0499
RK
4201#social-notification-icon-mentions:hover {
4202 background-color: #FFCF00;
4203}
4204
4205#social-notification-icon-mentions[open="true"] {
4206 background-color: #FF9F00;
e9c73590
RK
4207}
4208
4209#social-sidebar-splitter {
4210 border: 0;
4211}
4212
ed1a91c6
RK
4213.popup-notification-icon[popupid="servicesInstall"] {
4214 list-style-image: url("chrome://browser/skin/social/services-64.png");
4215}
4216#servicesInstall-notification-icon {
4217 list-style-image: url("chrome://browser/skin/social/services-16.png");
4218}
c1d2ce3e 4219#social-undoactivation-button {
ed1a91c6
RK
4220 -moz-margin-start: 0; /* override default label margin to match description margin */
4221}
4222
4223#socialActivatedNotification .popup-notification-button-container {
4224 margin-left: 6px;
4225}
4226
4227.social-activation-icon {
4228 width: auto;
4229 height: auto;
4230 max-height: 64px;
4231 max-width: 64px;
4232}
4233
4234#social-activation-message {
4235 max-width: 250px;
4236}
4237
4238#social-activation-message > label {
4239 margin: 0;
4240}
4241
e9c73590 4242/* social toolbar provider menu */
990cba4b 4243.social-statusarea-popup {
e9c73590
RK
4244 margin-top: 0;
4245 margin-left: -12px;
4246 margin-right: -12px;
4247}
4248
990cba4b 4249.social-statusarea-user {
e9c73590
RK
4250 border-bottom: 1px solid #9C9CFF;
4251 background-color: #000000;
4252 color: #FF9F00;
4253 position: relative;
348c0499 4254 cursor: pointer;
e9c73590
RK
4255}
4256
990cba4b 4257.social-statusarea-user-portrait {
e9c73590
RK
4258 width: 32px;
4259 height: 32px;
4260 border-radius: 2px;
4261 margin: 10px;
e9c73590
RK
4262}
4263
990cba4b 4264.social-statusarea-loggedInStatus {
e9c73590
RK
4265 background: transparent;
4266 border: none;
b8384c33 4267 color: #3333FF;
e9c73590
RK
4268 min-width: 0;
4269 margin: 0 6px;
348c0499 4270 list-style-image: none;
e9c73590 4271}
90a244b7 4272
990cba4b 4273#social-statusarea-user[_moz-menuactive] > vbox > .social-statusarea-loggedInStatus {
e9c73590
RK
4274 text-decoration: underline;
4275}
4276
348c0499
RK
4277.social-panel > .panel-arrowcontainer > .panel-arrowcontent {
4278 padding: 0;
4279}
4280
348c0499
RK
4281.social-panel-frame {
4282 border-radius: inherit;
4283}
e9c73590 4284
e7c8bab1
RK
4285/* === BEGIN chat.inc.css === */
4286
dfa34f73
RK
4287#social-sidebar-header {
4288 padding: 3px;
4289}
4290
4291#social-sidebar-button {
4292 -moz-appearance: none;
4293 list-style-image: url("chrome://browser/skin/social/gear_default.png");
45dc7657 4294 border: none;
dfa34f73
RK
4295 padding: 0;
4296 margin: 2px;
4297}
45dc7657
RK
4298#social-sidebar-button > .toolbarbutton-icon {
4299 min-height: 16px;
4300 min-width: 16px;
4301}
dfa34f73
RK
4302#social-sidebar-button:hover,
4303#social-sidebar-button:hover:active {
4304 list-style-image: url("chrome://browser/skin/social/gear_clicked.png");
4305}
4306#social-sidebar-button > .toolbarbutton-menu-dropmarker {
4307 display: none;
4308}
4309
4310#social-sidebar-button[loading="true"] {
4311 list-style-image: url("chrome://global/skin/icons/loading.gif");
4312}
4313
4314#social-sidebar-favico {
4315 max-height: 16px;
4316 max-width: 16px;
4317 padding: 0;
4318 margin: 2px;
4319}
4320
e9c73590
RK
4321.chat-status-icon {
4322 max-height: 16px;
4323 max-width: 16px;
4324 padding: 0;
4325}
4326
4327.chat-toolbarbutton {
4328 -moz-appearance: none;
4329 border: none;
8837ac2c 4330 padding: 0 3px;
e9c73590
RK
4331 margin: 0;
4332 background: none;
8837ac2c
RK
4333}
4334
4335.chat-toolbarbutton:hover {
4336/* background-color: rgba(255,255,255,.35);*/
4337}
4338
4339.chat-toolbarbutton:hover:active {
4340/* background-color: rgba(255,255,255,.5);*/
e9c73590
RK
4341}
4342
4343.chat-toolbarbutton > .toolbarbutton-text {
4344 display: none;
4345}
4346
b27cc46e 4347.chat-toolbarbutton > .toolbarbutton-icon {
8837ac2c
RK
4348 width: 16px;
4349 height: 16px;
e7c8bab1
RK
4350}
4351
e9c73590 4352.chat-close-button {
8837ac2c 4353 list-style-image: url("chrome://browser/skin/social/chat-icons.svg#close");
e9c73590
RK
4354}
4355
8837ac2c
RK
4356.chat-close-button:-moz-any(:hover,:hover:active) {
4357 list-style-image: url("chrome://browser/skin/social/chat-icons.svg#close-active");
e9c73590
RK
4358}
4359
e2734cc7 4360.chat-minimize-button {
8837ac2c 4361 list-style-image: url("chrome://browser/skin/social/chat-icons.svg#minimize");
e2734cc7
RK
4362}
4363
8837ac2c
RK
4364.chat-minimize-button:-moz-any(:hover,:hover:active) {
4365 list-style-image: url("chrome://browser/skin/social/chat-icons.svg#minimize-active");
e2734cc7
RK
4366}
4367
4368.chat-swap-button {
8837ac2c
RK
4369 list-style-image: url("chrome://browser/skin/social/chat-icons.svg#expand");
4370 transform: rotate(180deg);
e2734cc7
RK
4371}
4372
8837ac2c
RK
4373.chat-swap-button:-moz-any(:hover,:hover:active) {
4374 list-style-image: url("chrome://browser/skin/social/chat-icons.svg#expand-active");
e2734cc7
RK
4375}
4376
4377chatbar > chatbox > .chat-titlebar > .chat-swap-button {
8837ac2c 4378 transform: none;
e2734cc7
RK
4379}
4380
e9c73590
RK
4381.chat-title {
4382 font-weight: bold;
4383 font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
90a244b7 4384 text-shadow: none;
348c0499 4385 cursor: inherit;
e9c73590
RK
4386}
4387
4388.chat-titlebar {
4389 background-color: #9C9CFF;
4390 color: #000000;
8837ac2c
RK
4391 height: 30px;
4392 min-height: 30px;
e9c73590
RK
4393 width: 100%;
4394 margin: 0;
8837ac2c 4395 padding: 7px 6px;
e9c73590
RK
4396 border: none;
4397 border-bottom: 1px solid #008484;
348c0499 4398 cursor: pointer;
e9c73590
RK
4399}
4400
e2734cc7
RK
4401.chat-titlebar > .notification-anchor-icon {
4402 margin-left: 2px;
4403 margin-right: 2px;
4404}
4405
e9c73590
RK
4406.chat-titlebar[minimized="true"] {
4407 border-bottom: none;
4408}
4409
348c0499
RK
4410.chat-titlebar[selected] {
4411 background-color: #008484;
4412}
4413
4414.chat-titlebar[activity] {
4415 background-color: #E7ADE7;
4416}
4417
8837ac2c
RK
4418chatbox[dark=true] > .chat-titlebar,
4419chatbox[dark=true] > .chat-titlebar[selected] {
4420/* border-bottom: none;
4421 background-color: #000;
4422 background-image: none;*/
4423}
4424
4425chatbox[dark=true] > .chat-titlebar > hbox > .chat-title {
4426/* font-weight: normal;
4427 color: #c1c1c1;*/
4428}
4429
e9c73590
RK
4430.chat-frame {
4431 padding: 0;
4432 margin: 0;
4433 overflow: hidden;
4434}
4435
4436.chatbar-button {
ed1a91c6 4437 list-style-image: url("chrome://browser/skin/social/services-16.png");
e9c73590
RK
4438 background-color: #000000;
4439 border: none;
4440 margin: 0;
4441 padding: 2px;
4442 height: 21px;
4443 width: 21px;
4444 border-top: 1px solid #008484;
4445 -moz-border-end: 1px solid #008484;
4446}
4447
ed1a91c6
RK
4448@media (min-resolution: 2dppx) {
4449 .chatbar-button {
4450 list-style-image: url("chrome://browser/skin/social/services-16@2x.png");
4451 }
4452}
4453
fe524e0c
RK
4454.chatbar-button > .toolbarbutton-icon {
4455 width: 16px;
4456}
4457
d7cfd768
RK
4458.chatbar-button > menupopup > .menuitem-iconic > .menu-iconic-left > .menu-iconic-icon {
4459 width: auto;
4460 height: auto;
e9c73590
RK
4461 max-height: 16px;
4462 max-width: 16px;
e9c73590
RK
4463}
4464
90a244b7
RK
4465.chatbar-button > .toolbarbutton-icon {
4466 opacity: .6;
4467 -moz-margin-end: 0;
4468}
4469.chatbar-button:hover > .toolbarbutton-icon,
4470.chatbar-button[open="true"] > .toolbarbutton-icon {
4471 opacity: 1;
4472}
4473
a6757852 4474.chatbar-button:hover,
90a244b7 4475.chatbar-button[open="true"] {
e9c73590
RK
4476}
4477
e9c73590
RK
4478.chatbar-button > .toolbarbutton-text,
4479.chatbar-button > .toolbarbutton-menu-dropmarker {
4480 display: none;
4481}
4482
90a244b7 4483.chatbar-button[activity]:not([open="true"]) {
348c0499
RK
4484 background-color: #E7ADE7;
4485}
4486
4487.chatbar-button > menupopup > menuitem[activity] {
4488 font-weight: bold;
4489}
4490
e9c73590
RK
4491.chatbar-innerbox {
4492 background: transparent;
90a244b7 4493 margin: -285px 0 0;
e9c73590
RK
4494 overflow: hidden;
4495}
4496
fcfb76ce
RK
4497chatbar {
4498 -moz-margin-end: 20px;
4499}
4500
e9c73590 4501chatbar > chatbox {
fcfb76ce
RK
4502 height: 285px;
4503 width: 260px;
4504 -moz-margin-start: 4px;
e9c73590
RK
4505 background-color: #000000;
4506 border: 1px solid #9C9CFF;
4507 border-bottom: none;
90a244b7
RK
4508 border-top-left-radius: 2.5px;
4509 border-top-right-radius: 2.5px;
e9c73590
RK
4510}
4511
fcfb76ce
RK
4512chatbox[minimized="true"] {
4513 width: 160px;
e9c73590 4514 height: 20px;
e9c73590 4515}
348c0499 4516
e2734cc7
RK
4517window > chatbox {
4518 -moz-margin-start: 0px;
4519 margin: 0px;
4520 border: none;
4521 padding: 0px;
4522}
4523
e7c8bab1
RK
4524/* === END chat.inc.css === */
4525
c0f6797e
RK
4526.chat-titlebar {
4527/* background-color: #c4cfde; */
4528}
4529
4530.chat-titlebar[selected] {
4531/* background-color: #dae3f0; */
4532}
4533
4534.chatbar-button {
4535 -moz-appearance: none;
4536/* background-color: #c4cfde; */
4537}
4538
4539.chatbar-button > .toolbarbutton-icon {
4540/* -moz-margin-end: 0; */
4541}
4542
4543.chatbar-button:hover,
4544.chatbar-button[open="true"] {
4545/* background-color: #dae3f0; */
4546}
4547
4548.chatbar-button[activity]:not([open="true"]) {
4549}
4550
4551chatbox {
4552/* border-top-left-radius: 2.5px;
4553 border-top-right-radius: 2.5px; */
4554}
4555
b27cc46e 4556/* === BEGIN plugin-doorhanger.inc.css === */
348c0499 4557
b27cc46e
RK
4558/**
4559 * Plugin Doorhanger Styles
4560 */
348c0499 4561
b27cc46e 4562#notification-popup[popupid="click-to-play-plugins"] > .panel-arrowcontainer > .panel-arrowcontent {
1e32332f 4563 padding: 6px 1px 2px;
348c0499
RK
4564}
4565
348c0499 4566.click-to-play-plugins-notification-center-box {
348c0499
RK
4567}
4568
fe524e0c
RK
4569.plugin-popupnotification-centeritem:nth-child(odd) {
4570/* background-color: rgba(0,0,0,0.1);*/
348c0499
RK
4571}
4572
b27cc46e
RK
4573.center-item-label {
4574 margin-bottom: 0;
4575 text-overflow: ellipsis;
348c0499
RK
4576}
4577
b27cc46e
RK
4578.center-item-warning-icon {
4579 background-image: url("chrome://mozapps/skin/extensions/alerticon-info-negative.png");
348c0499 4580 background-repeat: no-repeat;
348c0499 4581 width: 16px;
b27cc46e
RK
4582 height: 15px;
4583 -moz-margin-start: 6px;
348c0499
RK
4584}
4585
b27cc46e 4586.click-to-play-plugins-notification-button-container {
348c0499
RK
4587}
4588
b27cc46e
RK
4589.click-to-play-popup-button {
4590 width: 50%;
348c0499
RK
4591}
4592
b27cc46e 4593.click-to-play-plugins-notification-description-box {
1e32332f
RK
4594 margin-left: 5px;
4595 margin-right: 5px;
4596 margin-top: 0;
4597 padding-bottom: 3px;
348c0499
RK
4598}
4599
b27cc46e 4600.click-to-play-plugins-outer-description {
1e32332f 4601 margin-top: 1px;
348c0499
RK
4602}
4603
b27cc46e
RK
4604.click-to-play-plugins-notification-link,
4605.center-item-link {
4606 margin: 0;
348c0499
RK
4607}
4608
2c225fcb
RK
4609.messageImage[value="plugin-hidden"] {
4610 list-style-image: url("chrome://browser/skin/notification-pluginNormal.png");
4611}
4612
4613/* Keep any changes to this style in sync with pluginProblem.css */
4614notification.pluginVulnerable {
4615}
4616
4617notification.pluginVulnerable .messageImage {
4618 list-style-image: url("chrome://browser/skin/notification-pluginBlocked.png");
4619}
4620
b27cc46e 4621/* === END plugin-doorhanger.inc.css === */
0142a07b 4622
c066e743
RK
4623/* === BEGIN badcontent-doorhanger.inc.css === */
4624
4625.popup-notification-item-title[popupid="bad-content"] {
4626 font-weight: bold;
4627}
4628
4629.popup-notification-item-message[popupid="bad-content"] {
4630 width: 17em;
4631}
4632
8922acc9
RK
4633.popup-notification-item-message[popupid="bad-content"][mixedblockdisabled]:not(.popup-notification-item-message-critical),
4634.popup-notification-item-message[popupid="bad-content"][trackingblockdisabled]:not(.popup-notification-item-message-critical) {
4635 color: #8050B0;
4636}
4637
c066e743
RK
4638.popup-notification-item-message-critical[popupid="bad-content"] {
4639 color: #FF0000;
4640 font-style: italic;
4641}
4642
4643.popup-notification-footer[popupid="bad-content"] {
4644 padding-top: 1em;
4645}
4646
4647/* === END badcontent-doorhanger.inc.css === */
4648
43cc2806
RK
4649/* === BEGIN customizeMode.inc.css === */
4650
4651/* Customization mode */
e28f3f71 4652
5401f433
RK
4653#main-window:-moz-any([customize-entering],[customize-entered]) #browser-bottombox {
4654 margin-bottom: 1em;
e28f3f71
RK
4655}
4656
5401f433
RK
4657#main-window:-moz-any([customize-entering],[customize-entered]) #content-deck,
4658#main-window:-moz-any([customize-entering],[customize-entered]) #browser-bottombox,
e28f3f71
RK
4659#main-window:-moz-any([customize-entering],[customize-entered]) #navigator-toolbox {
4660 margin-left: 1em;
4661 margin-right: 1em;
43cc2806
RK
4662}
4663
e28f3f71
RK
4664#main-window:-moz-any([customize-entering],[customize-exiting]) #tab-view-deck {
4665 pointer-events: none;
4666}
4667
4668#main-window[customize-entered] .customization-target:not(:-moz-any(#PanelUI-contents, #TabsToolbar, #toolbar-menubar))::before,
43cc2806 4669#PanelUI-contents > .panel-customization-placeholder {
e28f3f71 4670 -moz-outline-radius: 2.5px;
43cc2806
RK
4671 outline: 1px dashed transparent;
4672}
4673
e28f3f71
RK
4674#main-window[customize-entered] .customization-target:not(:-moz-any(#PanelUI-contents, #TabsToolbar, #toolbar-menubar))::before {
4675 /* Prevent jumping of tabs when switching a window between inactive and active (bug 853415). */
4676 -moz-box-ordinal-group: 0;
4677 content: "";
4678 display: -moz-box;
4679 height: 100%;
4680 left: 0;
4681 outline-offset: -2px;
4682 pointer-events: none;
4683 position: absolute;
4684 top: 0;
4685 width: 100%;
4686}
4687
4688/* Shift the TabsToolbar outline up 2px since the #nav-bar is shifted up by 1px and the
4689 #TabsToolbar::after is a pixel higher to draw the bottom border of the tabstrip so this makes the
4690 offset from the bottom effectively the same as other targets (-2px). */
4691#main-window[customize-entered] #TabsToolbar.customization-target::before {
e20c83c3 4692/* top: -2px;*/
e28f3f71
RK
4693}
4694
4695/* The parents of the outline pseudo-elements need to be positioned so that the outline is positioned relative to it. */
4696#main-window[customize-entered] .customization-target:not(:-moz-any(#PanelUI-contents, #TabsToolbar, #toolbar-menubar)):hover,
4697#main-window[customize-entered] .customization-target[customizing-dragovertarget]:not(:-moz-any(#PanelUI-contents, #TabsToolbar, #toolbar-menubar)),
4698#main-window[customize-entered] #nav-bar-customization-target.customization-target {
4699 position: relative;
4700}
4701
4702/* Most target outlines are shown on hover and drag over but the panel menu uses
4703 placeholders instead. */
4704#main-window[customize-entered] .customization-target:not(:-moz-any(#PanelUI-contents, #TabsToolbar, #toolbar-menubar)):hover::before,
4705#main-window[customize-entered] .customization-target[customizing-dragovertarget]:not(:-moz-any(#PanelUI-contents, #TabsToolbar, #toolbar-menubar))::before,
4706/* nav-bar and panel outlines are always shown */
4707#nav-bar[showoutline=true] > #nav-bar-customization-target.customization-target::before {
4708 outline-color: #A09090;
4709}
4710
4711#nav-bar[showoutline=true] > #nav-bar-customization-target.customization-target::before {
4712 transition: outline-color 250ms linear;
4713}
4714
4715#PanelUI-contents[showoutline=true] > .panel-customization-placeholder {
4716 transition: outline-color 250ms linear;
43cc2806
RK
4717 outline-color: #9C9CFF;
4718}
4719
4720#PanelUI-contents > .panel-customization-placeholder {
4721 cursor: auto;
4722 outline-offset: -5px;
4723}
4724
e28f3f71 4725#main-window[customizing] .customization-target:not(#PanelUI-contents) {
43cc2806 4726 min-width: 100px;
e20c83c3
RK
4727/* padding-left: 10px;
4728 padding-right: 10px;*/
4729}
4730
4731#main-window:-moz-any([customize-entering],[customize-entered]) #tab-view-deck {
4732 padding: 0 2em 2em;
43cc2806
RK
4733}
4734
4735#customization-container {
4736 background-color: #000000;
93c91f62 4737 color: #FF9F00;
43cc2806
RK
4738}
4739
e28f3f71
RK
4740#customization-palette,
4741#customization-empty {
4742 padding: 0 15px 15px;
43cc2806
RK
4743}
4744
4745#customization-header {
cac2a998
RK
4746 font-size: 1.75em;
4747 line-height: 1.75em;
43cc2806 4748 color: #9C9CFF;
cac2a998
RK
4749 font-weight: 200;
4750 margin: 25px 25px 12px;
4751 padding-bottom: 12px;
4752 border-bottom: 1px solid #A09090;
43cc2806
RK
4753}
4754
4755#customization-panel-container {
e28f3f71
RK
4756 padding: 10px 10px 0px;
4757}
4758
5401f433 4759#main-window:-moz-any([customize-entering],[customize-entered]) #browser-bottombox,
e28f3f71
RK
4760#customization-footer {
4761 /*background-color: rgb(236,236,236);*/
5401f433
RK
4762}
4763
4764#customization-footer {
e28f3f71 4765 border-top: 1px solid #9C9CFF;
93c91f62 4766 padding: 10px;
e28f3f71
RK
4767}
4768
4769.customizationmode-button {
93c91f62 4770 margin: 5px;
e28f3f71
RK
4771}
4772
4773.customizationmode-button:hover {
4774}
4775
e548e22e
RK
4776#customization-titlebar-visibility-button[checked],
4777#customization-devedition-theme-button[checked] {
4778 background-color: #008484;
4779}
4780
4781#customization-titlebar-visibility-button[checked]:hover,
4782#customization-devedition-theme-button[checked]:hover {
4783 background-color: #FFCF00;
4784}
4785
4786#customization-titlebar-visibility-button[checked]:hover:active,
4787#customization-devedition-theme-button[checked]:hover:active {
4788 background-color: #FF9F00;
4789}
4790
e28f3f71
RK
4791.customizationmode-button[disabled="true"] {
4792}
4793
93c91f62
RK
4794.customizationmode-button > .box-inherit > .box-inherit > .button-icon,
4795.customizationmode-button > .button-box > .button-icon {
4796/* height: 24px;*/
4797}
4798
e28f3f71
RK
4799#customization-titlebar-visibility-button {
4800 list-style-image: url("chrome://browser/skin/customizableui/customize-titleBar-toggle.png");
b7f3670c
RK
4801 -moz-image-region: rect(0, 16px, 16px, 0);
4802 padding: 0px 5px;
e28f3f71
RK
4803}
4804
b7f3670c
RK
4805#customization-titlebar-visibility-button:hover {
4806 -moz-image-region: rect(16px, 16px, 32px, 0);
4807}
4808
4809#customization-titlebar-visibility-button > .button-box {
4810 padding-top: 0;
4811 padding-bottom: 1px;
4812}
4813
4814#customization-titlebar-visibility-button:hover:active > .button-box {
4815 padding-top: 1px;
4816 padding-bottom: 0;
4817}
4818
e28f3f71
RK
4819#customization-titlebar-visibility-button > .button-box > .button-text {
4820 /* Sadly, button.css thinks its margins are perfect for everyone. */
b7f3670c 4821 -moz-margin-start: 5px !important;
e28f3f71
RK
4822}
4823
93c91f62
RK
4824#customization-titlebar-visibility-button > .button-box > .button-icon {
4825 vertical-align: middle;
4826}
4827
e28f3f71 4828#customization-titlebar-visibility-button[checked] {
b7f3670c 4829 -moz-image-region: rect(0, 32px, 16px, 16px);
e28f3f71
RK
4830 background-color: #008484;
4831}
4832
b7f3670c
RK
4833#customization-titlebar-visibility-button[checked]:hover {
4834 -moz-image-region: rect(16px, 32px, 32px, 16px);
4835 background-color: #FFCF00;
4836}
4837
4838#customization-titlebar-visibility-button[checked]:hover:active {
4839 background-color: #FF9F00;
4840}
4841
e28f3f71 4842#main-window[customize-entered] #customization-panel-container {
43cc2806
RK
4843 background-image: url("chrome://browser/skin/customizableui/customizeMode-gridTexture.png");
4844 background-position: left top;
4845 background-repeat: repeat;
4846 background-size: auto;
4847 background-attachment: fixed;
4848}
4849
e28f3f71
RK
4850toolbarpaletteitem[place="toolbar"] {
4851 transition: border-width 250ms ease-in-out;
43cc2806
RK
4852}
4853
4854toolbarpaletteitem[mousedown] {
4855 outline: 1px solid #008484;
4856 cursor: -moz-grabbing;
4857 opacity: 0.8;
4858}
4859
4860.panel-customization-placeholder,
4861toolbarpaletteitem[place="palette"],
4862toolbarpaletteitem[place="panel"] {
e28f3f71
RK
4863 transition: transform .3s ease-in-out;
4864}
4865
4866#customization-palette {
4867 transition: opacity .3s ease-in-out;
4868 opacity: 0;
43cc2806
RK
4869}
4870
e28f3f71
RK
4871#customization-palette[showing="true"] {
4872 opacity: 1;
4873}
4874
4875toolbarpaletteitem[notransition].panel-customization-placeholder,
4876toolbarpaletteitem[notransition][place="toolbar"],
43cc2806
RK
4877toolbarpaletteitem[notransition][place="palette"],
4878toolbarpaletteitem[notransition][place="panel"] {
e28f3f71 4879 transition: none;
43cc2806
RK
4880}
4881
e28f3f71 4882toolbarpaletteitem > toolbarbutton > .toolbarbutton-icon,
d0e580f1 4883toolbarpaletteitem > toolbarbutton > .toolbarbutton-badge-container > .toolbarbutton-icon,
e28f3f71
RK
4884toolbarpaletteitem > toolbaritem.panel-wide-item,
4885toolbarpaletteitem > toolbarbutton[type="menu-button"] {
4886 transition: transform .3s cubic-bezier(.6, 2, .75, 1.5) !important;
43cc2806
RK
4887}
4888
d0e580f1
RK
4889toolbarpaletteitem[mousedown] > toolbarbutton > .toolbarbutton-icon,
4890toolbarpaletteitem[mousedown] > toolbarbutton > .toolbarbutton-badge-container > .toolbarbutton-icon {
e28f3f71
RK
4891 transform: scale(1.3);
4892}
4893
4894toolbarpaletteitem[mousedown] > toolbaritem.panel-wide-item,
4895toolbarpaletteitem[mousedown] > toolbarbutton[type="menu-button"] {
43cc2806
RK
4896 transform: scale(1.1);
4897}
4898
4899/* Override the toolkit styling for items being dragged over. */
4900toolbarpaletteitem[place="toolbar"] {
4901 border-left-width: 0;
4902 border-right-width: 0;
4903 margin-right: 0;
4904 margin-left: 0;
4905}
4906
4907#customization-palette:not([hidden]) {
4908 margin-bottom: 25px;
4909}
4910
43cc2806
RK
4911#wrapper-edit-controls[place="palette"] > #edit-controls > toolbarbutton,
4912#wrapper-edit-controls[place="palette"] > #edit-controls > separator,
e28f3f71
RK
4913#wrapper-zoom-controls[place="palette"] > #zoom-controls > toolbarbutton,
4914#wrapper-zoom-controls[place="palette"] > #zoom-controls > separator {
4915 margin-top: 20px;
43cc2806
RK
4916}
4917
4918#wrapper-edit-controls[place="palette"] > #edit-controls > toolbarbutton,
c0f6797e 4919#wrapper-zoom-controls[place="palette"] > #zoom-controls > toolbarbutton {
43cc2806
RK
4920 margin-left: 0;
4921 margin-right: 0;
e28f3f71
RK
4922 max-width: 24px;
4923 min-width: 24px;
43cc2806 4924 max-height: 24px;
5401f433 4925 min-height: 24px;
e28f3f71 4926 padding: 4px;
43cc2806
RK
4927}
4928
e28f3f71
RK
4929#wrapper-edit-controls[place="palette"] > #edit-controls > toolbarbutton > .toolbarbutton-icon,
4930#wrapper-zoom-controls[place="palette"] > #zoom-controls > toolbarbutton > .toolbarbutton-icon {
4931 width: 16px;
43cc2806
RK
4932}
4933
e28f3f71
RK
4934#wrapper-edit-controls > #edit-controls > toolbarbutton > .toolbarbutton-icon {
4935 opacity: 1; /* To ensure these buttons always look enabled in customize mode */
4936}
4937
c0f6797e
RK
4938#wrapper-zoom-controls[place="palette"] > #zoom-controls > #zoom-reset-button,
4939#wrapper-zoom-controls[place="palette"] > #zoom-controls > #zoom-reset-button + separator {
e28f3f71
RK
4940 display: none;
4941}
4942
4943#wrapper-personal-bookmarks:not([place="toolbar"]) > #personal-bookmarks {
4944 -moz-box-pack: center;
4945 min-height: 48px;
43cc2806
RK
4946}
4947
4948#customization-palette > toolbarpaletteitem > label {
4949 text-align: center;
4950 margin-left: 0;
4951 margin-right: 0;
4952}
4953
cac2a998
RK
4954#customization-lwtheme-menu > .panel-arrowcontainer > .panel-arrowcontent {
4955 -moz-box-orient: vertical;
4956 /* Make the panel padding uniform across all platforms due to the
4957 styling of the section headers and footer. */
4958 padding: 10px;
4959}
4960
4961.customization-lwtheme-menu-theme > .toolbarbutton-icon {
4962 width: 32px;
4963 height: 32px;
4964}
4965
4966.customization-lwtheme-menu-theme {
4967 -moz-appearance: none;
4968 margin: 0 -5px 5px;
4969 padding-top: 0;
4970 -moz-padding-end: 5px;
4971 padding-bottom: 0;
4972 -moz-padding-start: 0;
4973}
4974
8837ac2c
RK
4975.customization-lwtheme-menu-theme[defaulttheme] {
4976 list-style-image: url(chrome://browser/skin/Fxtheme-switcher-icon.png);
4977}
4978
cac2a998
RK
4979.customization-lwtheme-menu-theme[active="true"] {
4980 background-color: #008484;
4981}
4982
4983.customization-lwtheme-menu-theme > .toolbarbutton-icon {
4984 margin: 5px;
4985}
4986
4987.customization-lwtheme-menu-theme > .toolbarbutton-text {
4988 text-align: start;
4989}
4990
4991#customization-lwtheme-menu-header,
4992#customization-lwtheme-menu-recommended {
4993 padding: 10px;
4994 margin-bottom: 5px;
4995}
4996
4997#customization-lwtheme-menu-header,
4998#customization-lwtheme-menu-recommended,
4999#customization-lwtheme-menu-footer {
5000 background-color: #A09090;
5001 color: #000000;
5002 margin-right: -10px;
5003 margin-left: -10px;
5004}
5005
5006#customization-lwtheme-menu-header {
5007 margin-top: -10px;
5008 border-top-right-radius: 3px;
5009 border-top-left-radius: 3px;
5010}
5011
5012#customization-lwtheme-menu-recommended {
5013}
5014
5015#customization-lwtheme-menu-footer {
5016 margin-bottom: -10px;
5017 border-bottom-right-radius: 3px;
5018 border-bottom-left-radius: 3px;
5019}
5020
5021.customization-lwtheme-menu-footeritem {
5022 -moz-appearance: none;
5023 -moz-box-flex: 1;
5024 background-color: #C09070;
5025 color: #000000;
5026 border: 1px solid transparent;
5027 padding: 10px;
5028 margin-left: 0;
5029 margin-right: 0;
5030}
5031
5032.customization-lwtheme-menu-footeritem:hover {
5033 background-color: #FFCF00;
5034}
5035
8837ac2c 5036.customization-lwtheme-menu-footeritem:first-child {
cac2a998
RK
5037}
5038
43cc2806
RK
5039/* === END customizeMode.inc.css === */
5040
e28f3f71
RK
5041/* === BEGIN customizeTip.inc.css === */
5042
5043#customization-tipPanel > .panel-arrowcontainer > .panel-arrowcontent {
5044 padding: 0;
5045 margin: 0;
5046 min-width: 400px;
5047 max-width: 1000px;
5048 min-height: 200px;
5049 border-radius: 3px;
5050/* background-image: linear-gradient(90deg, #a0dfff 0%, #ceeeff 100%);*/
5051 border: 1px solid #9C9CFF;
d1e87ec1 5052 color: #FF9F00;
e28f3f71
RK
5053}
5054
5055#customization-tipPanel > .panel-arrowcontainer > .panel-arrowcontent:-moz-locale-dir(rtl) {
5056/* background-image: linear-gradient(90deg, #ceeeff 0%, #a0dfff 100%);*/
5057}
5058
5059.customization-tipPanel-infoBox {
5060 margin: 20px 25px 25px;
5061 width: 25px;
5062 background-image: url("chrome://browser/skin/customizableui/info-icon-customizeTip.png");
5063 background-repeat: no-repeat;
5064}
5065
5066.customization-tipPanel-content {
5067 margin: 25px 0;
5068 font-size: 12px;
5069 line-height: 18px;
5070}
5071
5072.customization-tipPanel-em {
5073 margin: 0;
5074 font-weight: bold;
5075}
5076
5077.customization-tipPanel-contentImage {
5078 margin-top: 25px;
5079 list-style-image: url("chrome://browser/skin/customizableui/customize-illustration.png");
5080 min-width: 300px;
5081 max-width: 300px;
5082 min-height: 190px;
5083 max-height: 190px;
5084 display: -moz-box;
5085}
5086
5087.customization-tipPanel-contentImage:-moz-locale-dir(rtl) {
5088 list-style-image: url("chrome://browser/skin/customizableui/customize-illustration-rtl.png");
5089}
5090
5091.customization-tipPanel-link {
5092 -moz-appearance: none;
5093 background: transparent;
5094 border: none;
5095 box-shadow: none;
5096 color: #3333FF;
5097 margin: 0;
5098 cursor: pointer;
5099}
5100
5101.customization-tipPanel-link > .button-box > .button-text {
5102 margin: 0 !important;
5103}
5104
5105.customization-tipPanel-closeBox > .close-icon {
5106 -moz-appearance: none;
5107 border: 0;
5108 -moz-margin-end: -25px;
5109}
5110
5111#customization-tipPanel > .panel-arrowcontainer > .panel-arrowbox > .panel-arrow[side="left"],
5112#customization-tipPanel > .panel-arrowcontainer > .panel-arrowbox > .panel-arrow[side="right"] {
5113 list-style-image: url("chrome://browser/skin/customizableui/panelarrow-customizeTip.png");
5114}
5115
5116/* === END customizeTip.inc.css === */
5117
c0f6797e
RK
5118/**
5119 * This next rule is a hack to disable subpixel anti-aliasing on all
5120 * labels during the customize mode transition. Subpixel anti-aliasing
5121 * on Windows with Direct2D layers acceleration is particularly slow to
5122 * paint, so this hack is how we sidestep that performance bottleneck.
5123 */
5124#main-window:-moz-any([customize-entering],[customize-exiting]) label {
5125 transform: perspective(0.01px);
5126}
5127
93c91f62 5128#main-window[customize-entered] > #tab-view-deck {
43cc2806
RK
5129 background-image: url("chrome://browser/skin/customizableui/customizeMode-gridTexture.png");
5130 background-attachment: fixed;
5131}
5132
93c91f62
RK
5133#main-window[customization-lwtheme] > #tab-view-deck:-moz-lwtheme {
5134 background-repeat: no-repeat;
5135 background-position: right top;
5136 background-attachment: fixed;
5137 /* The image will get set from CustomizeMode.jsm */
5138 background-image: none;
5139 background-color: transparent;
5140}
5141
5142#main-window[customization-lwtheme]:-moz-lwtheme {
5143 background-image: url("chrome://browser/skin/customizableui/customizeMode-gridTexture.png");
5144 background-repeat: repeat;
5145 background-attachment: fixed;
5146 background-position: left top;
5147}
5148
5401f433
RK
5149#main-window[customize-entered] #browser-bottombox,
5150#main-window[customize-entered] #customization-container {
43cc2806
RK
5151 border-left: 1px solid #9C9CFF;
5152 border-right: 1px solid #9C9CFF;
5153 background-clip: padding-box;
5154}
5155
5401f433
RK
5156#main-window[customize-entered] #browser-bottombox {
5157 border-bottom: 1px solid #9C9CFF;
5158}
5159
e20c83c3
RK
5160#customization-tipPanel > .panel-arrowcontainer > .panel-arrowbox > .panel-arrow[side="left"] {
5161 margin-right: -2px;
5162}
5163
5164#customization-tipPanel > .panel-arrowcontainer > .panel-arrowbox > .panel-arrow[side="right"] {
5165 margin-left: -2px;
5166}
5167
5168/* End customization mode */
5169
51994fad
RK
5170/* Private browsing indicators */
5171
5172/**
5173 * Currently, we have two places where we put private browsing indicators on
5174 * Windows. When tabsintitlebar is enabled, we draw the indicator in the titlebar.
5175 * When tabsintitlebar is disabled, we draw the indicator at the end of the
5176 * tabstrip. The titlebar indicator is the fiddliest of the bunch, since we
5177 * want the bottom border of the image to line up with the bottom of the window
5178 * caption buttons. That's why there's so much special-casing going on in here.
5179 */
5180.private-browsing-indicator {
5181 display: none;
5182 pointer-events: none;
e20c83c3
RK
5183}
5184
51994fad
RK
5185#private-browsing-indicator-titlebar {
5186 display: block;
5187 position: absolute;
e20c83c3
RK
5188}
5189
51994fad
RK
5190#main-window[privatebrowsingmode=temporary][tabsintitlebar] #private-browsing-indicator-titlebar > .private-browsing-indicator {
5191 display: block;
e20c83c3
RK
5192}
5193
51994fad
RK
5194#main-window[privatebrowsingmode=temporary]:-moz-any([inFullscreen],:not([tabsintitlebar])) #TabsToolbar > .private-browsing-indicator {
5195 display: -moz-box;
5196}
5197
5198#TabsToolbar > .private-browsing-indicator {
5199 background: url("chrome://browser/skin/privatebrowsing-mask-tabstrip.png") no-repeat center -3px;
5200 -moz-margin-start: 4px;
5201 width: 48px;
5202}
5203
5204/* Bug 1008183: We're intentionally using the titlebar asset here for fullscreen
5205 * mode, since the tabstrip "mimics" the titlebar in that case with its own
5206 * min/max/close window buttons.
5207 */
5208#private-browsing-indicator-titlebar > .private-browsing-indicator,
5209#main-window[inFullscreen] #TabsToolbar > .private-browsing-indicator {
5210 background: url("chrome://browser/skin/privatebrowsing-mask-titlebar.png") no-repeat center 0px;
5211 -moz-margin-end: 4px;
43cc2806 5212 width: 40px;
51994fad
RK
5213 height: 20px;
5214 position: relative;
43cc2806
RK
5215}
5216
51994fad
RK
5217/* This one is for Linux */
5218#main-window[privatebrowsingmode=temporary] #private-browsing-indicator {
5219 background: url("chrome://browser/skin/privatebrowsing-mask-tabstrip.png") center no-repeat;
5220 width: 48px;
5221}
5222
5223/* End private browsing indicators */
5224
43cc2806
RK
5225/* === BEGIN UITour.inc.css === */
5226
5227/* UI Tour */
5228
2a8b2b48
RK
5229#UITourHighlightContainer {
5230 -moz-appearance: none;
5231 border: none;
5232 background-color: transparent;
5233 /* This is a buffer to compensate for the movement in the "wobble" effect */
5234 padding: 4px;
5235}
5236
5237#UITourHighlight {
5238 background-image: radial-gradient(50% 100%, rgba(0,132,132,0.4) 50%, rgba(0,132,132,0.6) 100%);
5239 border-radius: 40px;
5240 border: 1px solid #9C9CFF;
5241 /* The box-shadow opacity needs to be < 0.5 so it doesn't appear at 100% opacity
5242 on Linux without an X compositor where opacity is either 0 or 1. */
5243 box-shadow: 0 0 3px 0 rgba(0,0,0,0.49);
43cc2806
RK
5244 min-height: 32px;
5245 min-width: 32px;
1bf116f8
RK
5246}
5247
2a8b2b48
RK
5248#UITourTooltipBody {
5249 -moz-margin-end: 14px;
5250}
5251
5252#UITourTooltipBody > vbox {
5253 padding-top: 4px;
43cc2806
RK
5254}
5255
2a8b2b48
RK
5256#UITourTooltipIconContainer {
5257 -moz-margin-start: -16px;
5258}
5259
5260#UITourTooltipIcon {
5261 width: 48px;
5262 height: 48px;
5263 -moz-margin-start: 28px;
5264 -moz-margin-end: 28px;
5265}
5266
5267#UITourTooltipTitle,
5268#UITourTooltipDescription {
5269 max-width: 20rem;
43cc2806
RK
5270}
5271
5272#UITourTooltipTitle {
2a8b2b48 5273 font-size: 1.45rem;
43cc2806 5274 font-weight: bold;
2a8b2b48
RK
5275 -moz-margin-start: 0;
5276 -moz-margin-end: 0;
5277 margin: 0 0 9px 0;
43cc2806
RK
5278}
5279
5280#UITourTooltipDescription {
2a8b2b48
RK
5281 -moz-margin-start: 0;
5282 -moz-margin-end: 0;
5283 font-size: 1.15rem;
5284 line-height: 1.8rem;
5285 margin-bottom: 0; /* Override global.css */
5286}
5287
5288#UITourTooltipClose {
5289 -moz-appearance: none;
5290 border: none;
5291 background-color: transparent;
5292 min-width: 0;
5293 -moz-margin-start: 4px;
5294 margin-top: -2px;
5295}
5296
5297#UITourTooltipClose > .toolbarbutton-text {
5298 display: none;
5299}
5300
5301#UITourTooltipButtons {
5302 -moz-box-pack: end;
5303 background-color: rgba(0,0,0,.2);
5304 border-top: 1px solid rgba(0,0,0,.4);
5305 margin: 24px -16px -16px;
5306 padding: 2em 15px;
5307}
5308
5309#UITourTooltipButtons > button {
5310 margin: 0 15px;
5311}
5312
5313#UITourTooltipButtons > button:first-child {
5314 -moz-margin-start: 0;
5315}
5316
5317#UITourTooltipButtons > button[image] > .button-box > .button-icon {
5318 width: 16px;
5319 height: 16px;
5320 -moz-margin-end: 5px;
5321}
5322
5323#UITourTooltipButtons > button .button-text {
5324 font-size: 1.15rem;
5325}
5326
5327#UITourTooltipButtons > button:not(.button-link) {
5328 -moz-appearance: none;
5329 background-color: #C09070;
5330 border-radius: 3000px;
5331 border: none;
5332 color: #000000;
5333 padding: 4px 30px;
5334 transition-property: background-color, color;
5335 transition-duration: 150ms;
5336}
5337
5338#UITourTooltipButtons > button:not(.button-link):not(:active):hover {
5339 background-color: #FFCF00;
5340 color: #000000;
5341}
5342
5343#UITourTooltipButtons > button.button-link {
5344 -moz-appearance: none;
5345 background: transparent;
5346 border: none;
5347 box-shadow: none;
5348 color: rgba(0,0,0,0.35);
5349 padding-left: 10px;
5350 padding-right: 10px;
5351}
5352
5353#UITourTooltipButtons > button.button-link:hover {
5354 color: black;
5355}
5356
5357/* The primary button gets the same color as the customize button. */
5358#UITourTooltipButtons > button.button-primary {
5359 background-color: #A06060; /* LCARS default button background color */
5360 color: #000000;
5361 padding-left: 30px;
5362 padding-right: 30px;
5363}
5364
5365#UITourTooltipButtons > button.button-primary:not(:active):hover {
5366 background-color: #FFCF00;
5367 color: #000000;
43cc2806
RK
5368}
5369
58036cb8
RK
5370.SearchHighlight {
5371 -moz-margin-end: 6px;
5372 font-size: 110%;
5373 width: 225px;
5374}
5375
5376.SearchHighlight label,
5377.SearchHighlight description {
5378 color: #008484;
5379 margin: 0 0 8px 0;
5380 padding: 0;
5381}
5382
5383.SearchHighlightTitle {
5384 font-weight: bold;
5385}
5386
5387.SearchHighlight .dot {
5388 width: 7px;
5389 height: 7px;
5390 background-image: -moz-image-rect(url("chrome://browser/skin/dots.png"), 0, 100%, 100%, 9);
5391 background-size: 7px;
5392 background-position: center center;
5393 background-repeat: no-repeat;
5394 -moz-margin-end: 2px;
5395}
5396
5397.SearchHighlight .dot.filled {
5398 background-image: -moz-image-rect(url("chrome://browser/skin/dots.png"), 0, 7, 100%, 0);
5399}
5400
5401.SearchHighlight button {
5402 margin: 0;
5403 /* On some platforms clicking the button will steal focus from the search box
5404 causing the popup to close. */
5405 -moz-user-focus: ignore;
5406}
5407
5408@media not all and (max-resolution: 1dppx) {
5409 .SearchHighlight .dot {
5410 background-image: -moz-image-rect(url("chrome://browser/skin/dots@2x.png"), 0, 100%, 100%, 18);
5411 }
5412
5413 .SearchHighlight .dot.filled {
5414 background-image: -moz-image-rect(url("chrome://browser/skin/dots@2x.png"), 0, 14, 100%, 0);
5415 }
5416}
5417
43cc2806 5418/* === END UITour.inc.css === */
c0f6797e
RK
5419
5420#UITourTooltipButtons {
5421 margin: 24px -4px -4px;
5422}
fff8097b
RK
5423
5424/* === BEGIN contextmenu.inc.css === */
5425
5426menugroup > .menuitem-iconic[disabled="true"] > .menu-iconic-left {
5427}
5428
5429#context-navigation > .menuitem-iconic {
5430 -moz-box-flex: 1;
5431 -moz-box-pack: center;
5432 -moz-box-align: center;
5433}
5434
5435#context-navigation > .menuitem-iconic[disabled="true"] {
5436 background-color: transparent;
5437}
5438
5439#context-navigation > .menuitem-iconic > .menu-iconic-left {
5440 -moz-appearance: none;
5441}
5442
93c91f62
RK
5443#context-back > .menu-iconic-left {
5444 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#back"); */
fff8097b
RK
5445 list-style-image: url("chrome://browser/skin/ToolbarFx.png");
5446 -moz-image-region: rect(0, 54px, 18px, 36px);
5447}
5448
93c91f62
RK
5449#context-back:not([disabled="true"]):hover > .menu-iconic-left {
5450 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#back-active"); */
fff8097b
RK
5451 -moz-image-region: rect(18px, 54px, 36px, 36px);
5452}
5453
93c91f62
RK
5454#context-back[disabled="true"] > .menu-iconic-left {
5455 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#back-disabled"); */
fff8097b
RK
5456 -moz-image-region: rect(36px, 54px, 54px, 36px);
5457}
5458
93c91f62
RK
5459#context-forward > .menu-iconic-left {
5460 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#forward"); */
fff8097b
RK
5461 list-style-image: url("chrome://browser/skin/ToolbarFx.png");
5462 -moz-image-region: rect(0, 72px, 18px, 54px);
5463}
5464
93c91f62
RK
5465#context-forward:not([disabled="true"]):hover > .menu-iconic-left {
5466 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#forward-active"); */
fff8097b
RK
5467 -moz-image-region: rect(18px, 72px, 36px, 54px);
5468}
5469
93c91f62
RK
5470#context-forward[disabled="true"] > .menu-iconic-left {
5471 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#forward-disabled"); */
fff8097b
RK
5472 -moz-image-region: rect(36px, 72px, 54px, 54px);
5473}
5474
93c91f62
RK
5475#context-reload > .menu-iconic-left {
5476 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#reload"); */
52d7b436 5477 list-style-image: url("chrome://browser/skin/reload-stop-goFx.png");
fff8097b
RK
5478 -moz-image-region: rect(0, 14px, 14px, 0);
5479}
5480
93c91f62
RK
5481#context-reload:not([disabled="true"]):hover > .menu-iconic-left {
5482 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#reload-active"); */
fff8097b
RK
5483 -moz-image-region: rect(14px, 14px, 28px, 0);
5484}
5485
93c91f62
RK
5486#context-reload[disabled="true"] > .menu-iconic-left {
5487 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#reload-disabled"); */
fff8097b
RK
5488 -moz-image-region: rect(28px, 14px, 42px, 0);
5489}
5490
93c91f62
RK
5491#context-stop > .menu-iconic-left {
5492 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#stop"); */
52d7b436 5493 list-style-image: url("chrome://browser/skin/reload-stop-goFx.png");
fff8097b
RK
5494 -moz-image-region: rect(0, 28px, 14px, 14px);
5495}
5496
93c91f62
RK
5497#context-stop:not([disabled="true"]):hover > .menu-iconic-left {
5498 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#stop-active"); */
fff8097b
RK
5499 -moz-image-region: rect(14px, 28px, 28px, 14px);
5500}
5501
93c91f62
RK
5502#context-stop[disabled="true"] > .menu-iconic-left {
5503 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#stop-disabled"); */
fff8097b
RK
5504 -moz-image-region: rect(28px, 28px, 42px, 14px);
5505}
5506
93c91f62
RK
5507#context-bookmarkpage > .menu-iconic-left {
5508 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#bookmark"); */
fff8097b
RK
5509 list-style-image: url("chrome://browser/skin/ToolbarFx.png");
5510 -moz-image-region: rect(0, 144px, 18px, 126px);
5511}
5512
93c91f62
RK
5513#context-bookmarkpage:not([disabled="true"]):hover > .menu-iconic-left {
5514 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#bookmark-active"); */
fff8097b
RK
5515 -moz-image-region: rect(18px, 144px, 36px, 126px);
5516}
5517
93c91f62
RK
5518#context-bookmarkpage[disabled="true"] > .menu-iconic-left {
5519 /* list-style-image: url("chrome://browser/skin/content-contextmenu.svg#bookmark-disabled"); */
fff8097b
RK
5520 -moz-image-region: rect(36px, 144px, 54px, 126px);
5521}
5522
5523#context-back:-moz-locale-dir(rtl),
5524#context-forward:-moz-locale-dir(rtl),
5525#context-reload:-moz-locale-dir(rtl) {
5526 transform: scaleX(-1);
5527}
5528
5529#context-navigation > .menuitem-iconic > .menu-iconic-left > .menu-iconic-icon {
93c91f62
RK
5530 width: 18px; /*16px;*/
5531 height: 18px; /*16px;*/
fff8097b
RK
5532 margin: 7px;
5533}
5534
5535#context-navigation > #context-reload > .menu-iconic-left > .menu-iconic-icon,
5536#context-navigation > #context-stop > .menu-iconic-left > .menu-iconic-icon {
5537 width: 14px;
5538 height: 14px;
5539 margin: 9px;
5540}
5541
5542/* === END contextmenu.inc.css === */
3d64e0ce
RK
5543
5544#context-navigation {
5545}
5546
5547#context-sep-navigation {
5548/* margin-top: -4px; */
5549}