fifth part of syncing LCARStrek with Firefox 34 windows theme changes
[themes.git] / LCARStrek / browser / customizableui / panelUIOverlay.css
CommitLineData
43cc2806
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/. */
4
5/* === BEGIN panelUIOverlay.inc.css === */
6
51994fad 7#PanelUI-popup #PanelUI-contents:empty {
cae267ab 8 height: 128px;
51994fad
RK
9}
10
11#PanelUI-popup #PanelUI-contents:empty::before {
12 content: "";
13 background-image: url("chrome://browser/skin/customizableui/whimsy-bw.png");
14 display: block;
15 width: 64px;
16 height: 64px;
17 position: absolute;
3d64e0ce
RK
18 transition: transform 1s ease-out;
19 animation: whimsyMoveX 3.05s linear 0s infinite alternate,
20 whimsyMoveY 3.4s linear 0s infinite alternate;
21}
22
23#PanelUI-popup #PanelUI-contents:active:empty::before {
24 animation: whimsyMoveX 3.05s linear 0s infinite alternate,
25 whimsyMoveY 3.4s linear 0s infinite alternate,
26 whimsyRotate 1s linear 0s infinite normal;
51994fad
RK
27}
28
43371c9b 29#PanelUI-popup #PanelUI-contents:-moz-locale-dir(rtl):empty::before {
3d64e0ce
RK
30 animation: whimsyMoveXRTL 3.05s linear 0s infinite alternate,
31 whimsyMoveY 3.4s linear 0s infinite alternate;
32}
33
34#PanelUI-popup #PanelUI-contents:-moz-locale-dir(rtl):active:empty::before {
35 animation: whimsyMoveXRTL 3.05s linear 0s infinite alternate,
36 whimsyMoveY 3.4s linear 0s infinite alternate,
37 whimsyRotate 1s linear 0s infinite normal;
43371c9b
RK
38}
39
51994fad
RK
40#PanelUI-popup #PanelUI-contents:empty:hover::before {
41 background-image: url("chrome://browser/skin/customizableui/whimsy.png");
42}
43
44@media (min-resolution: 2dppx) {
45 #PanelUI-popup #PanelUI-contents:empty::before {
46 background-image: url("chrome://browser/skin/customizableui/whimsy-bw@2x.png");
47 background-size: 64px 64px;
48 }
49 #PanelUI-popup #PanelUI-contents:empty:hover::before {
50 background-image: url("chrome://browser/skin/customizableui/whimsy@2x.png");
51 }
52}
53
3d64e0ce 54@keyframes whimsyMoveX {
51994fad 55 /* These values are adjusted for the padding on the panel. */
b7f3670c 56 from { margin-left: -9px; } to { margin-left: calc(100% - 55px); }
51994fad 57}
3d64e0ce
RK
58
59@keyframes whimsyMoveXRTL {
43371c9b
RK
60 /* These values are adjusted for the padding on the panel. */
61 from { margin-right: -9px; } to { margin-right: calc(100% - 55px); }
62}
3d64e0ce
RK
63
64@keyframes whimsyMoveY {
51994fad 65 /* These values are adjusted for the padding and height of the panel. */
43371c9b 66 from { margin-top: -.5em; } to { margin-top: calc(64px - .5em); }
51994fad
RK
67}
68
3d64e0ce
RK
69@keyframes whimsyRotate {
70 to { transform: perspective(5000px) rotateY(360deg); }
71}
72
cc4b0b0d
RK
73#customization-panelHolder {
74 border-radius: 4px;
75}
76
e28f3f71 77#PanelUI-button {
46e71434 78 -moz-margin-start: 3px;
e28f3f71
RK
79}
80
81#PanelUI-button:-moz-locale-dir(rtl) {
82}
83
43cc2806 84.panel-subviews {
e28f3f71 85 padding: 4px;
43cc2806
RK
86 -moz-margin-start: 38px;
87}
88
43cc2806 89.panel-viewstack[viewtype="main"] > .panel-subviews {
45dc7657 90 transform: translateX(22.35em);
43cc2806
RK
91}
92
93.panel-viewstack[viewtype="main"] > .panel-subviews:-moz-locale-dir(rtl) {
45dc7657 94 transform: translateX(-22.35em);
43cc2806
RK
95}
96
51994fad
RK
97panelmultiview[nosubviews=true] > .panel-viewcontainer > .panel-viewstack > .panel-subviews {
98 display: none;
99}
100
43cc2806
RK
101.panel-viewstack:not([viewtype="main"]) > .panel-mainview > #PanelUI-mainView {
102 -moz-box-flex: 1;
103}
104
e28f3f71
RK
105.panel-subview-body {
106 overflow-y: auto;
107 overflow-x: hidden;
108 -moz-box-flex: 1;
109}
110
111#PanelUI-popup .panel-subview-body {
112 margin: -4px;
cae267ab 113 padding: 4px 4px;
e28f3f71
RK
114}
115
116.panel-subview-header,
117.subviewbutton.panel-subview-footer {
2b5a5147
RK
118 box-sizing: border-box;
119/* min-height: 41px; */
e28f3f71
RK
120 padding: 3px;
121}
122
123.panel-subview-header {
124 margin: 0 0 4px;
125 background-color: #A09090;
126 color: #000000;
127 border-radius: 4px;
128}
129
130.panel-subview-footer {
131 border-top: 1px solid #A09090;
132}
133
134.cui-widget-panelview .panel-subview-header {
135 display: none;
136}
137
138.cui-widget-panelview .subviewbutton.panel-subview-footer {
139 margin: 4px 0 0;
140 -moz-box-pack: center;
141}
142
43cc2806
RK
143#PanelUI-mainView {
144 display: flex;
145 flex-direction: column;
cc4b0b0d 146 border-radius: 4px;
43cc2806
RK
147}
148
149#app-extension-point-end > #PanelUI-menu-button {
150 padding: 2px 5px;
151}
152#app-extension-point-end > #PanelUI-menu-button .toolbarbutton-text {
153 display: none;
154}
155#app-extension-point-end > #PanelUI-menu-button .toolbarbutton-icon {
156 margin: 0;
157}
158
159#PanelUI-popup > arrowscrollbox > autorepeatbutton {
160 display: none;
161}
162#PanelUI-popup > arrowscrollbox > scrollbox {
163 overflow: visible;
164}
165
166#PanelUI-popup > .panel-arrowcontainer > .panel-arrowcontent {
167 overflow: hidden;
168 padding: 0;
169}
170
171#PanelUI-contents {
172 padding: .5em 0;
173}
174
51994fad 175.panelUI-grid .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-multiline-text,
45dc7657 176.panelUI-grid .toolbarbutton-1 > .toolbarbutton-multiline-text {
5401f433
RK
177/* line-height: 1.1;*/
178 max-height: 2.2em;
179}
180
181.panelUI-grid .toolbarbutton-1:not([auto-hyphens="off"]) > .toolbarbutton-menubutton-button > .toolbarbutton-multiline-text,
182.panelUI-grid .toolbarbutton-1:not([auto-hyphens="off"]) > .toolbarbutton-multiline-text {
45dc7657 183 -moz-hyphens: auto;
43cc2806
RK
184}
185
5401f433
RK
186.panelUI-grid:not([customize-transitioning]) .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-multiline-text,
187.panelUI-grid:not([customize-transitioning]) .toolbarbutton-1 > .toolbarbutton-multiline-text {
188 position: absolute;
189 clip: rect(auto, auto, 2.3em, auto);
190}
191
192.panelUI-grid .toolbarbutton-1 > .toolbarbutton-text,
193.panelUI-grid .toolbarbutton-1 > .toolbarbutton-multiline-text {
194 text-align: center;
195 /* Need to override toolkit theming which sets margin: 0 !important; */
196 margin: 2px 0 0 !important;
197}
198
199.panelUI-grid .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-multiline-text {
200 text-align: center;
201 margin: -1px 0 0;
202}
203
43cc2806
RK
204#wrapper-edit-controls:-moz-any([place="palette"],[place="panel"]) > #edit-controls,
205#wrapper-zoom-controls:-moz-any([place="palette"],[place="panel"]) > #zoom-controls {
206 -moz-margin-start: 0;
207}
208
51994fad
RK
209#PanelUI-contents {
210 max-width: 22.35em;
211}
212
46e71434 213#BMB_bookmarksPopup,
43cc2806 214.panel-mainview:not([panelid="PanelUI-popup"]) {
51994fad 215 max-width: 30em;
43cc2806
RK
216}
217
218panelview:not([mainview]) .toolbarbutton-text,
e28f3f71 219.cui-widget-panel toolbarbutton > .toolbarbutton-text {
43cc2806 220 text-align: start;
43cc2806
RK
221 display: -moz-box;
222}
223
e28f3f71
RK
224.cui-widget-panel > .panel-arrowcontainer > .panel-arrowcontent {
225 padding: 0;
226}
227
228.cui-widget-panel.cui-widget-panelWithFooter > .panel-arrowcontainer > .panel-arrowcontent {
229 padding-bottom: 0;
230}
231
fe4ad58e 232.cui-widget-panel > :-moz-any(menu,menuitem,toolbarbutton):first-child {
08b89971
RK
233 border-radius: 4px 4px 0 0;
234}
235
fe4ad58e 236.cui-widget-panel > :-moz-any(menu,menuitem,toolbarbutton):last-child {
08b89971
RK
237 border-radius: 0 0 4px 4px;
238}
239
43cc2806
RK
240#PanelUI-contents {
241 display: block;
a21f2959 242 flex: 1 0 main-size;
43cc2806
RK
243 margin-left: auto;
244 margin-right: auto;
45dc7657 245 max-width: 22.35em;
43cc2806
RK
246}
247
248#PanelUI-contents-scroller {
249 overflow-y: auto;
250 overflow-x: hidden;
45dc7657 251 width: 22.35em;
43cc2806
RK
252 flex: auto;
253}
254
51994fad 255.toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > toolbarbutton > .toolbarbutton-icon {
43cc2806
RK
256 min-width: 0;
257 min-height: 0;
258 margin: 0;
259}
260
261toolbaritem[cui-areatype="menu-panel"][sdkstylewidget="true"]:not(.panel-wide-item),
e28f3f71
RK
262.panelUI-grid .toolbarbutton-1,
263.panel-customization-placeholder-child {
43cc2806
RK
264 -moz-appearance: none;
265 -moz-box-orient: vertical;
46e71434 266 width: calc(22.35em / 3 - 0.1px - 2px); /* LCARStrek: XXX: found out to be needed to fit the icons */
e28f3f71
RK
267 height: calc(51px + 2.2em);
268}
269
5401f433
RK
270/* In order to have button labels constrained appropriately, items inside the toolbarpaletteitem
271 * should have a min-width set so they abide by the width set above (which they do outside of
272 * customize mode because they're in a flexed container) */
273toolbarpaletteitem[place="panel"]:not([haswideitem=true]) > .toolbarbutton-1 {
274 min-width: 0.01px;
275}
276
e28f3f71
RK
277/* Help SDK buttons fit in. */
278toolbarpaletteitem[place="palette"] > toolbarbutton[sdk-button="true"] > .toolbarbutton-icon,
279toolbarbutton[sdk-button="true"][cui-areatype="menu-panel"] > .toolbarbutton-icon {
280 height: 32px;
281 width: 32px;
282}
283
284.customization-palette .toolbarbutton-1 {
285 -moz-appearance: none;
286 -moz-box-orient: vertical;
287}
288
289.panelUI-grid .toolbarbutton-1 > .toolbarbutton-menubutton-button {
290 -moz-appearance: none;
291 -moz-box-orient: vertical;
46e71434 292 width: calc(22.35em / 3 - 0.1px - 2px);
e28f3f71
RK
293 height: calc(49px + 2.2em);
294 border: 0;
295}
296
297.panelUI-grid .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-text,
298.panelUI-grid .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-multiline-text {
299 margin-top: 2px; /* Hack needed to get the label of type=menu-button aligned with other buttons */
300}
301
302.panel-customization-placeholder-child {
303 margin: 6px 0 0;
304/* padding: 2px 6px;*/
305}
306
307.panelUI-grid .toolbarbutton-1[type="menu"] {
308 background-image: url("chrome://global/skin/arrow/arrow-down-sharp.gif");
309 background-position: right 3px top 16px;
310 background-repeat: no-repeat;
311}
312
313.panelUI-grid .toolbarbutton-1[type="menu"]:-moz-locale-dir(rtl) {
314 background-position: left 3px top 16px;
315}
316
317.panelUI-grid .toolbarbutton-1 > .toolbarbutton-menu-dropmarker {
318 display: none;
319}
320
321.panelUI-grid .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker {
322 -moz-box-align: center;
323 width: 16px;
324 -moz-margin-start: -16px;
325 height: 51px;
326 margin-bottom: 2.2em;
43cc2806 327 padding: 0;
43cc2806
RK
328}
329
e28f3f71
RK
330.panelUI-grid .toolbarbutton-1:not([buttonover]):not([disabled]):-moz-any([open],:hover:active) > .toolbarbutton-menubutton-dropmarker {
331 border-radius: 0 0 0 2px;
332}
333
334.panelUI-grid .toolbarbutton-1:not([buttonover]):not([disabled]):-moz-any([open],:hover:active)> .toolbarbutton-menubutton-dropmarker:-moz-locale-dir(rtl) {
335 border-radius: 0 0 2px 0;
43cc2806
RK
336}
337
649b5d38 338#main-window:not([customizing]) .panel-combined-button[disabled] > .toolbarbutton-icon {
cc4b0b0d 339/* opacity: .5; */
43cc2806
RK
340}
341
e28f3f71 342toolbaritem[cui-areatype="menu-panel"][sdkstylewidget="true"]:not(.panel-wide-item) {
46e71434 343 width: calc(22.35em / 3 - 0.1px);
43cc2806
RK
344 margin: 0 !important;
345}
346
e28f3f71 347toolbaritem[cui-areatype="menu-panel"][sdkstylewidget="true"]:not(.panel-wide-item) {
43cc2806
RK
348 -moz-box-align: center;
349 -moz-box-pack: center;
350}
351
352toolbaritem[cui-areatype="menu-panel"][sdkstylewidget="true"] > iframe {
e28f3f71
RK
353 margin: 4px auto;
354}
355
5401f433
RK
356#PanelUI-multiView[viewtype="subview"] > .panel-viewcontainer > .panel-viewstack > .panel-mainview > #PanelUI-mainView {
357}
358
359#PanelUI-multiView[viewtype="subview"] #PanelUI-mainView > #PanelUI-contents-scroller > #PanelUI-contents > .panel-wide-item,
360#PanelUI-multiView[viewtype="subview"] #PanelUI-mainView > #PanelUI-contents-scroller > #PanelUI-contents > .toolbarbutton-1:not([panel-multiview-anchor="true"]),
361#PanelUI-multiView[viewtype="subview"] #PanelUI-mainView > #PanelUI-footer > #PanelUI-fxa-status,
362#PanelUI-multiView[viewtype="subview"] #PanelUI-mainView > #PanelUI-footer > #PanelUI-footer-inner > toolbarseparator,
363#PanelUI-multiView[viewtype="subview"] #PanelUI-mainView > #PanelUI-footer > #PanelUI-footer-inner > #PanelUI-customize,
364#PanelUI-multiView[viewtype="subview"] #PanelUI-mainView > #PanelUI-footer > #PanelUI-footer-inner > #PanelUI-help:not([panel-multiview-anchor="true"]) {
365 opacity: .5;
366}
367
e28f3f71
RK
368/*
369 * XXXgijs: this is a workaround for a layout issue that was caused by these iframes,
370 * which was affecting subview display. Because of this, we're hiding the iframe *only*
371 * when displaying a subview. The discerning user might notice this, but it's not nearly
372 * as bad as the brokenness.
373 * This hack should be removed once https://bugzilla.mozilla.org/show_bug.cgi?id=975375
374 * is addressed.
375 */
376#PanelUI-multiView[viewtype="subview"] toolbaritem[cui-areatype="menu-panel"][sdkstylewidget="true"]:not(.panel-wide-item) > iframe {
377 visibility: hidden;
43cc2806
RK
378}
379
380toolbaritem[cui-areatype="menu-panel"][sdkstylewidget="true"]:not(.panel-wide-item) > .toolbarbutton-text {
381 text-align: center;
382}
383
e28f3f71
RK
384.panelUI-grid .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
385.panelUI-grid .toolbarbutton-1 > .toolbarbutton-icon,
386.panelUI-grid .toolbarbutton-1 > .toolbarbutton-badge-container,
387.customization-palette .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-icon,
388.customization-palette .toolbarbutton-1 > .toolbarbutton-icon,
d0e580f1 389.customization-palette .toolbarbutton-1 > .toolbarbutton-badge-container,
e28f3f71
RK
390.panelUI-grid #bookmarks-toolbar-placeholder > .toolbarbutton-icon,
391.customization-palette #bookmarks-toolbar-placeholder > .toolbarbutton-icon,
392.panel-customization-placeholder-child > .toolbarbutton-icon {
393 min-width: 32px;
394 min-height: 32px;
395 /* Explanation for the below formula (A / B - C)
396 A
46e71434 397 Each button is 22.35em / 3 - 0.1px wide
e28f3f71
RK
398 B
399 Each button has two margins.
400 C (44px / 2 = 22px)
401 The button icon is 32 pixels wide.
402 The button has 12px of horizontal padding (6 on each side).
403 The button has 0px of horizontal border (0 on each side).
404 Total width of button's icon + button padding should therefore be 44px,
405 which means each horizontal margin should be the half the button's width - (44/2) px.
406 */
46e71434 407 margin: 4px calc((22.35em / 3 - 0.1px) / 2 - 22px);
e28f3f71
RK
408}
409
410/* above we treat the container as the icon for the margins, that is so the
411/* badge itself is positioned correctly. Here we make sure that the icon itself
412/* has the minum size we want, but no padding/margin. */
413.panelUI-grid .toolbarbutton-1 > .toolbarbutton-badge-container > .toolbarbutton-icon {
414 min-width: 32px;
415 min-height: 32px;
416 margin: 0;
417 padding: 0;
43cc2806
RK
418}
419
420toolbarpaletteitem[place="palette"] > toolbaritem > toolbarbutton {
421 -moz-box-flex: 1;
422}
423
e28f3f71
RK
424#personal-bookmarks[overflowedItem=true] > #bookmarks-toolbar-placeholder {
425 -moz-box-flex: 1;
426}
427
428#personal-bookmarks[cui-areatype="toolbar"][overflowedItem=true] > #bookmarks-toolbar-placeholder > .toolbarbutton-icon {
429 -moz-margin-end: 2px;
430}
431
51994fad
RK
432#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #copy-button,
433#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-reset-button {
43cc2806
RK
434 border-left: none;
435 border-right: none;
436 border-radius: 0;
437}
438
439#zoom-in-button > .toolbarbutton-text,
440#zoom-out-button > .toolbarbutton-text,
441#zoom-reset-button > .toolbarbutton-icon {
442 display: none;
443}
444
445#PanelUI-footer {
446 display: flex;
e28f3f71
RK
447 flex-shrink: 0;
448 flex-direction: column;
449/* background-color: hsla(210,4%,10%,.07);*/
43cc2806
RK
450 padding: 0;
451 margin: 0;
e28f3f71 452/* min-height: 4em;*/
cc4b0b0d
RK
453 border-bottom-right-radius: 4px;
454 border-bottom-left-radius: 4px;
43cc2806
RK
455}
456
e28f3f71
RK
457#PanelUI-footer-inner {
458 display: flex;
459 border-top: 1px solid #9C9CFF;
460}
fe4ad58e 461
5401f433
RK
462#PanelUI-multiView[viewtype="subview"] #PanelUI-footer-inner {
463 position: relative;
464}
e28f3f71
RK
465
466#PanelUI-footer-inner > toolbarseparator {
467 border: 0;
468 border-left: 1px solid #9C9CFF;
469 margin: 0;
470}
471
472#PanelUI-footer-inner:hover > toolbarseparator {
473/* margin: 0;*/
474}
475
43cc2806 476#PanelUI-help,
e28f3f71 477#PanelUI-fxa-status,
43cc2806
RK
478#PanelUI-customize,
479#PanelUI-quit {
480 margin: 0;
2b5a5147
RK
481 padding: 11px 0;
482 box-sizing: border-box;
483 min-height: 40px;
43cc2806 484 box-shadow: none;
5401f433 485 border: none;
43cc2806
RK
486 border-radius: 0;
487 transition: background-color;
cc4b0b0d 488 -moz-box-orient: horizontal;
43cc2806 489}
cc4b0b0d 490
e28f3f71
RK
491#PanelUI-fxa-status {
492 border-top: 1px solid #9C9CFF;
493 border-bottom: 1px solid transparent;
494 margin-bottom: -1px;
495}
496
497#PanelUI-fxa-status > .toolbarbutton-text {
498 width: 0; /* Fancy cropping solution for flexbox. */
499}
500
5401f433
RK
501#PanelUI-help[panel-multiview-anchor="true"] {
502 -moz-image-region: rect(0, 32px, 16px, 16px);
503}
504
cc4b0b0d
RK
505#PanelUI-help,
506#PanelUI-quit {
e28f3f71 507 min-width: 44px;
cc4b0b0d
RK
508}
509
e28f3f71 510#PanelUI-fxa-status > .toolbarbutton-text,
cc4b0b0d 511#PanelUI-customize > .toolbarbutton-text {
e28f3f71
RK
512 margin: 0;
513 padding: 0 6px;
cc4b0b0d
RK
514 text-align: start;
515}
516
517#PanelUI-help > .toolbarbutton-text,
518#PanelUI-quit > .toolbarbutton-text {
519 display: none;
520}
521
522#PanelUI-help > .toolbarbutton-icon,
523#PanelUI-quit > .toolbarbutton-icon {
524 -moz-margin-end: 0;
43cc2806
RK
525}
526
527#PanelUI-customize {
cc4b0b0d
RK
528 flex: 1;
529 -moz-padding-start: 15px;
530 -moz-border-start-style: none;
e28f3f71
RK
531}
532
533#PanelUI-fxa-status {
d0e580f1 534 list-style-image: url("chrome://browser/skin/syncFx-horizontalbar.png");
e28f3f71
RK
535}
536
537#PanelUI-fxa-status[status="active"] {
d0e580f1 538 list-style-image: url("chrome://browser/skin/syncFxProgress-horizontalbar.png");
e28f3f71
RK
539}
540
541#PanelUI-customize {
43cc2806
RK
542 list-style-image: url("chrome://browser/skin/menuPanel-customize.png");
543}
544
e28f3f71
RK
545#customization-panelHolder #PanelUI-customize {
546 list-style-image: url("chrome://browser/skin/customizableui/menuPanel-customizeFinish.png");
547}
548
43cc2806 549#PanelUI-help {
43cc2806
RK
550 list-style-image: url("chrome://browser/skin/menuPanel-help.png");
551}
552
553#PanelUI-quit {
554 -moz-border-end-style: none;
555 list-style-image: url("chrome://browser/skin/menuPanel-exit.png");
556}
557
e28f3f71 558#PanelUI-fxa-status,
43cc2806
RK
559#PanelUI-customize,
560#PanelUI-help,
561#PanelUI-quit {
562 -moz-image-region: rect(0, 16px, 16px, 0);
563}
564
565#PanelUI-customize:hover,
566#PanelUI-help:not([disabled]):hover,
567#PanelUI-quit:not([disabled]):hover,
568#PanelUI-customize:hover:active,
569#PanelUI-help:not([disabled]):hover:active,
570#PanelUI-quit:not([disabled]):hover:active {
571 -moz-image-region: rect(0, 32px, 16px, 16px);
572}
573
574#PanelUI-help[disabled],
575#PanelUI-quit[disabled] {
576 -moz-image-region: rect(0, 48px, 16px, 32px);
577}
578
e28f3f71 579#PanelUI-fxa-status:not([disabled]):hover,
43cc2806
RK
580#PanelUI-help:not([disabled]):hover,
581#PanelUI-customize:hover,
582#PanelUI-quit:not([disabled]):hover {
43cc2806
RK
583}
584
e28f3f71
RK
585#PanelUI-fxa-status:not([disabled]):hover:active,
586#PanelUI-help:not([disabled]):hover:active,
587#PanelUI-customize:hover:active,
588#PanelUI-quit:not([disabled]):hover:active {
589}
590
591#PanelUI-fxa-status:not([disabled]):hover,
592#PanelUI-fxa-status:not([disabled]):hover:active {
593}
594
595#PanelUI-quit:not([disabled]):hover {
83e3b5cf 596 background-color: #FF0000;
e28f3f71
RK
597}
598
599#PanelUI-quit:not([disabled]):hover:active {
83e3b5cf 600 background-color: #FF9F00;
e28f3f71
RK
601}
602
603#customization-panelHolder #PanelUI-customize {
43cc2806
RK
604 color: #FFCF00;
605 background-color: #008484;
e28f3f71
RK
606 text-shadow: none;
607 margin-top: -1px;
43cc2806
RK
608}
609
e28f3f71
RK
610#customization-panelHolder #PanelUI-customize + toolbarseparator {
611 display: none;
612}
613
614#customization-panelHolder #PanelUI-customize:hover,
615#customization-panelHolder #PanelUI-customize:hover:active {
43cc2806 616 background-color: #FFCF00;
e28f3f71 617 color: #000000;
43cc2806
RK
618}
619
e28f3f71 620#customization-palette .toolbarbutton-multiline-text,
43cc2806
RK
621#customization-palette .toolbarbutton-text {
622 display: none;
623}
624
e28f3f71
RK
625panelview .toolbarbutton-1,
626.subviewbutton,
627.widget-overflow-list .toolbarbutton-1,
628.panelUI-grid .toolbarbutton-1 > .toolbarbutton-menubutton-button,
51994fad 629.toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > toolbarbutton {
cae267ab 630/* padding: 0 6px;
e28f3f71
RK
631 background-color: hsla(210,4%,10%,0);
632 border-radius: 2px;
633 border-style: solid;
634 border-color: hsla(210,4%,10%,0);*/
43cc2806
RK
635}
636
637panelview .toolbarbutton-1,
e28f3f71
RK
638.subviewbutton,
639.widget-overflow-list .toolbarbutton-1,
51994fad 640.toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > toolbarbutton {
e28f3f71
RK
641 border-width: 0;
642}
643
644.subviewbutton.panel-subview-footer {
08b89971 645/* border-radius: 0; */
fe4ad58e 646 margin: 2px 0 0;
e28f3f71
RK
647}
648
e28f3f71 649.subviewbutton.panel-subview-footer > .menu-text {
51994fad
RK
650 -moz-margin-start: 0px !important;
651 -moz-padding-start: 6px;
652 -moz-padding-end: 6px;
e28f3f71 653 -moz-box-flex: 0;
51994fad
RK
654 text-align: center;
655}
656
657.subviewbutton.panel-subview-footer > .toolbarbutton-icon {
658 margin: 0;
659}
660
661.subviewbutton.panel-subview-footer > .toolbarbutton-text {
662 text-align: center;
663 padding: 0;
664}
665
666.subviewbutton.panel-subview-footer > .menu-accel-container {
667 -moz-padding-start: 6px;
e28f3f71
RK
668}
669
670.subviewbutton:not(.panel-subview-footer) {
fe4ad58e 671 margin: 0;
e28f3f71
RK
672}
673
674.subviewbutton:not(.panel-subview-footer) > .toolbarbutton-text,
675/* Bookmark items need a more specific selector. */
676.PanelUI-subView .subviewbutton:not(.panel-subview-footer) > .menu-text,
677.PanelUI-subView .subviewbutton:not(.panel-subview-footer) > .menu-iconic-text {
cae267ab 678/* font: menu;*/
e28f3f71
RK
679}
680
51994fad
RK
681.PanelUI-subView .subviewbutton[shortcut]::after {
682 content: attr(shortcut);
683 float: right;
684 color: #A09090;
685}
686
687.PanelUI-subView.cui-widget-panelview .subviewbutton[shortcut]::after {
688 -moz-margin-start: 10px;
689}
690
691/* This is a <label> but it should fit in with the menu font- and colorwise. */
692#PanelUI-characterEncodingView-autodetect-label {
693 font: menu;
694 color: inherit;
695}
696
e28f3f71 697.cui-widget-panelview .subviewbutton:not(.panel-subview-footer) {
08b89971
RK
698/* margin-left: 4px;
699 margin-right: 4px;*/
e28f3f71
RK
700}
701
702panelview .toolbarbutton-1,
703.widget-overflow-list .toolbarbutton-1 {
43cc2806
RK
704 margin-top: 6px;
705}
e28f3f71 706
43cc2806 707/*
649b5d38
RK
708panelview .toolbarbutton-1:not(:-moz-any([disabled],[open],:active)):hover,
709toolbarbutton.subviewbutton:not(:-moz-any([disabled],[open],:active)):hover,
710menu.subviewbutton:not(:-moz-any([disabled],:active))[_moz-menuactive],
711menuitem.subviewbutton:not(:-moz-any([disabled],:active))[_moz-menuactive],
712.widget-overflow-list .toolbarbutton-1:not(:-moz-any([disabled],[open],:active)):hover,
51994fad 713.toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])
e28f3f71 714 > toolbarbutton:not(:-moz-any([disabled],[checked="true"],[open],:active)):hover {
43cc2806 715 background-color: hsla(210,4%,10%,.08);
e28f3f71
RK
716 border-color: hsla(210,4%,10%,.11);
717}
718
649b5d38 719.toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]):not(:-moz-any([disabled],[open],:active)):hover {
e28f3f71 720 border-color: hsla(210,4%,10%,.11);
43cc2806
RK
721}
722
43371c9b 723panelview .toolbarbutton-1:-moz-any(:not([disabled]):-moz-any([open],:hover:active),[checked=true]),
649b5d38
RK
724toolbarbutton.subviewbutton:not([disabled]):-moz-any([open],:hover:active),
725menu.subviewbutton:not([disabled])[_moz-menuactive]:active,
726menuitem.subviewbutton:not([disabled])[_moz-menuactive]:active,
727.widget-overflow-list .toolbarbutton-1:not([disabled]):-moz-any([open],:hover:active),
51994fad 728.toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true])
649b5d38 729 > toolbarbutton:not([disabled]):-moz-any([open],:hover:active) {
e28f3f71
RK
730 background-color: hsla(210,4%,10%,.12);
731 border-color: hsla(210,4%,10%,.14);
732 box-shadow: 0 1px 0 hsla(210,4%,10%,.03) inset;
733}
734
735.subviewbutton.panel-subview-footer {
736 margin: 4px -4px -4px;
737 background-color: hsla(210,4%,10%,.07);
738 border-top: 1px solid hsla(210,4%,10%,.12);
739 border-radius: 0;
740 color: hsl(0,0%,25%)
741}
742
51994fad 743menuitem.panel-subview-footer:not(:-moz-any([disabled],[open],:active)):hover,
e28f3f71
RK
744.subviewbutton.panel-subview-footer:not(:-moz-any([disabled],[open],:active)):hover {
745 background-color: hsla(210,4%,10%,.1);
746 border-top: 1px solid hsla(210,4%,10%,.12);
747}
748
649b5d38
RK
749menuitem.panel-subview-footer:not([disabled]):-moz-any([open],:hover:active),
750.subviewbutton.panel-subview-footer:not([disabled]):-moz-any([open],:hover:active) {
43cc2806 751 background-color: hsla(210,4%,10%,.15);
e28f3f71
RK
752 border-top: 1px solid hsla(210,4%,10%,.12);
753 box-shadow: 0 1px 0 hsla(210,4%,10%,.05) inset;
43cc2806 754}
00f971bc 755
e28f3f71 756#BMB_bookmarksPopup .subviewbutton {
cae267ab 757 font: menu;
e28f3f71 758 font-weight: normal;
43cc2806
RK
759}
760
e28f3f71 761#BMB_bookmarksPopup .subviewbutton:not([disabled="true"]) {
43cc2806
RK
762 color: inherit;
763}
764
765#BMB_bookmarksPopup > .panel-arrowcontainer > .panel-arrowcontent > .popup-internal-box > .autorepeatbutton-up,
766#BMB_bookmarksPopup > .panel-arrowcontainer > .panel-arrowcontent > .popup-internal-box > .autorepeatbutton-down {
767 -moz-appearance: none;
768 margin-top: 0;
769 margin-bottom: 0;
770}
66d96671 771
e28f3f71
RK
772/ Remove padding on xul:arrowscrollbox to avoid extra padding on footer /
773#BMB_bookmarksPopup arrowscrollbox {
774 padding-bottom: 0px;
775}
776
e28f3f71 777#BMB_bookmarksPopup menupopup > .bookmarks-actions-menuseparator {
589b5528
RK
778 / Hide bottom separator as the styled footer includes a top border serving the same purpose /
779 display: none;
e28f3f71 780}
cae267ab
RK
781
782/ Popups with only one item don't have a footer /
43371c9b 783#BMB_bookmarksPopup menupopup[placespopup=true][singleitempopup=true] > hbox > .popup-internal-box > .arrowscrollbox-scrollbox > .scrollbox-innerbox,
cae267ab
RK
784/ These popups never have a footer /
785#BMB_bookmarksToolbarPopup > hbox > .popup-internal-box > .arrowscrollbox-scrollbox > .scrollbox-innerbox,
786#BMB_unsortedBookmarksPopup > hbox > .popup-internal-box > .arrowscrollbox-scrollbox > .scrollbox-innerbox {
787 / And so they need some bottom padding: /
788 padding-bottom: 4px;
789}
790
791/ Disabled (empty) item is always alone and never has an icon, so fix its left padding /
792#BMB_bookmarksPopup menupopup[emptyplacesresult] .bookmark-item.subviewbutton {
793 padding-left: 6px;
794}
e28f3f71
RK
795*/
796
797.PanelUI-subView menuseparator,
798.PanelUI-subView toolbarseparator,
799.cui-widget-panelview menuseparator {
43cc2806
RK
800 -moz-appearance: none;
801 min-height: 0;
e28f3f71
RK
802 border-top: 1px solid #9C9CFF;
803 margin: 2px 0;
804 padding: 0;
43cc2806 805}
e28f3f71
RK
806
807.PanelUI-subView menuseparator,
808.PanelUI-subView toolbarseparator {
809/* -moz-margin-start: -5px;
810 -moz-margin-end: -4px;*/
811}
812
813.PanelUI-subView menuseparator.small-separator,
814.PanelUI-subView toolbarseparator.small-separator {
08b89971
RK
815/* margin-left: 5px;
816 margin-right: 5px;*/
e28f3f71
RK
817}
818
819.cui-widget-panelview menuseparator.small-separator {
08b89971
RK
820/* margin-left: 10px;
821 margin-right: 10px;*/
e28f3f71
RK
822}
823
824.subviewbutton > .menu-accel-container {
825 -moz-box-pack: start;
826 -moz-margin-start: 10px;
827 -moz-margin-end: auto;
08b89971 828 color: #A09090;
e28f3f71
RK
829}
830
43cc2806
RK
831#PanelUI-historyItems > toolbarbutton {
832 list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
833}
834
835#PanelUI-recentlyClosedWindows > toolbarbutton > .toolbarbutton-icon,
836#PanelUI-recentlyClosedTabs > toolbarbutton > .toolbarbutton-icon,
837#PanelUI-historyItems > toolbarbutton > .toolbarbutton-icon {
838 width: 16px;
839 height: 16px;
840}
841
5401f433
RK
842toolbarbutton[panel-multiview-anchor="true"],
843toolbarbutton[panel-multiview-anchor="true"] > .toolbarbutton-menubutton-button {
844 color: #000000;
66d96671 845 background-color: #008484;
43cc2806
RK
846}
847
5401f433
RK
848#PanelUI-help[panel-multiview-anchor="true"] + toolbarseparator {
849 display: none;
850}
851
852#PanelUI-help[panel-multiview-anchor="true"] {
853 background-image: none;
854}
855
856#PanelUI-help[panel-multiview-anchor="true"]::after {
857 content: "";
858 position: absolute;
859 top: 0;
860 height: 100%;
861 width: 38px;
862 background-image: url("chrome://browser/skin/customizableui/subView-arrow-back-inverted.png");
863 background-repeat: no-repeat;
864 background-color: #008484;
865 background-position: left 10px center, 0; /* this doesn't need to be changed for RTL */
866}
867
868toolbarbutton[panel-multiview-anchor="true"] {
e28f3f71 869 background-image: url("chrome://browser/skin/customizableui/subView-arrow-back-inverted.png");
a21f2959 870 background-position: right calc((22.35em / 3 - 0.1px) / 2 - 38px + 2px) center;
e28f3f71
RK
871 background-repeat: no-repeat;
872}
873
5401f433 874toolbarbutton[panel-multiview-anchor="true"]:-moz-locale-dir(rtl) {
e28f3f71 875 background-image: url("chrome://browser/skin/customizableui/subView-arrow-back-inverted-rtl.png");
a21f2959 876 background-position: left calc((22.35em / 3 - 0.1px) / 2 - 38px + 2px) center;
e28f3f71
RK
877}
878
e28f3f71 879toolbarpaletteitem[place="palette"] > .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker,
43cc2806
RK
880#bookmarks-menu-button[cui-areatype="menu-panel"] > .toolbarbutton-menubutton-dropmarker {
881 display: none;
882}
883
e28f3f71
RK
884#search-container[cui-areatype="menu-panel"],
885#wrapper-search-container[place="panel"] {
45dc7657 886 width: 22.35em;
43cc2806
RK
887}
888
e28f3f71
RK
889#search-container[cui-areatype="menu-panel"] {
890 margin-top: 6px;
891 margin-bottom: 6px;
892}
893
43cc2806
RK
894toolbarpaletteitem[place="palette"] > #search-container {
895 min-width: 7em;
896 width: 7em;
897}
898
51994fad 899.toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) {
43cc2806 900 padding: 0;
43cc2806
RK
901 transition-property: background-color, border-color;
902 transition-duration: 150ms;
903}
904
5401f433
RK
905/* Make direct siblings overlap borders: */
906.toolbaritem-combined-buttons + .toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) {
907/* border-top-color: transparent !important; */
908}
909
910.toolbaritem-combined-buttons + .toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]),
911toolbarpaletteitem[haswideitem][place="panel"] + toolbarpaletteitem[haswideitem][place="panel"] {
912/* margin-top: -1px; */
913}
914
51994fad 915.toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > toolbarbutton {
43cc2806
RK
916 border: 0;
917 padding: .5em;
e28f3f71 918 margin: 0;
43cc2806 919 -moz-box-flex: 1;
46e71434
RK
920 min-width: calc(22.35em / 3 - 0.1px);
921 max-width: calc(22.35em / 3 - 0.1px);
e28f3f71
RK
922 /* We'd prefer to use height: auto here but it leads to layout bugs in the panel. Cope:
923 1.2em for line height + 2 * .5em padding + margin on the label (2 * 2px) */
924 height: calc(2.2em + 4px);
43cc2806
RK
925 max-height: none;
926 -moz-box-orient: horizontal;
927}
928
51994fad
RK
929#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #copy-button,
930#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-reset-button {
e28f3f71
RK
931 /* reduce the width with 2px for this button to compensate for two separators
932 of 1px. */
46e71434
RK
933 min-width: calc(22.35em / 3 - 0.1px - 2px);
934 max-width: calc(22.35em / 3 - 0.1px - 2px);
e28f3f71
RK
935}
936
51994fad 937#main-window:not([customizing]) .toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > toolbarbutton[disabled] > .toolbarbutton-icon {
cc4b0b0d 938/* opacity: .25; */
43cc2806
RK
939}
940
941#zoom-controls[cui-areatype="toolbar"] > #zoom-reset-button > .toolbarbutton-text {
942 min-width: 7ch;
943}
944
51994fad
RK
945#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #cut-button:-moz-locale-dir(ltr),
946#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #paste-button:-moz-locale-dir(rtl),
947#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-out-button:-moz-locale-dir(ltr),
948#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-in-button:-moz-locale-dir(rtl) {
43cc2806
RK
949 border-top-right-radius: 0;
950 border-bottom-right-radius: 0;
951}
952
51994fad
RK
953#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #cut-button:-moz-locale-dir(rtl),
954#edit-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #paste-button:-moz-locale-dir(ltr),
955#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-out-button:-moz-locale-dir(rtl),
956#zoom-controls:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > #zoom-in-button:-moz-locale-dir(ltr) {
43cc2806
RK
957 border-top-left-radius: 0;
958 border-bottom-left-radius: 0;
959}
960
e28f3f71
RK
961.toolbaritem-combined-buttons > separator {
962 -moz-appearance: none;
43cc2806
RK
963 width: 3px;
964 -moz-box-align: stretch;
43cc2806
RK
965}
966
51994fad 967.toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]) > separator {
e28f3f71
RK
968 margin: .5em 0;
969 width: 1px;
970 height: auto;
971/* background: hsla(210,4%,10%,.15);*/
972 transition-property: margin;
973 transition-duration: 10ms;
974 transition-timing-function: ease;
975}
976
51994fad 977.toolbaritem-combined-buttons:-moz-any(:not([cui-areatype="toolbar"]), [overflowedItem=true]):hover > separator {
e28f3f71
RK
978 margin: 0;
979}
980
43cc2806
RK
981#widget-overflow > .panel-arrowcontainer > .panel-arrowcontent {
982 padding: 0;
983}
984
e28f3f71 985.cui-widget-panelview,
43cc2806 986#widget-overflow-scroller {
43cc2806
RK
987 overflow-y: auto;
988 overflow-x: hidden;
e28f3f71
RK
989}
990
991#widget-overflow-scroller {
992 max-height: 30em;
43cc2806
RK
993 margin-top: 10px;
994 margin-bottom: 10px;
995}
996
997#widget-overflow-list {
45dc7657 998 width: 22.35em;
43cc2806
RK
999 padding-left: 10px;
1000 padding-right: 10px;
1001}
1002
51994fad
RK
1003toolbaritem[overflowedItem=true],
1004toolbarbutton[overflowedItem=true] {
43cc2806 1005 width: 100%;
45dc7657 1006 max-width: 22.35em;
43cc2806
RK
1007 min-height: 36px;
1008 background-repeat: no-repeat;
1009 background-position: 0 center;
1010}
1011
e28f3f71
RK
1012.widget-overflow-list .toolbarbutton-1,
1013.widget-overflow-list .toolbarbutton-1 > .toolbarbutton-menubutton-button {
43cc2806
RK
1014 -moz-box-align: center;
1015 -moz-box-orient: horizontal;
1016}
1017
51994fad 1018.widget-overflow-list .toolbarbutton-1:not(.toolbarbutton-combined) > .toolbarbutton-text,
e28f3f71 1019.widget-overflow-list .toolbarbutton-1 > .toolbarbutton-menubutton-button > .toolbarbutton-text {
43cc2806
RK
1020 text-align: start;
1021 -moz-padding-start: .5em;
1022}
1023
e28f3f71 1024#widget-overflow-list > .toolbaritem-combined-buttons {
43cc2806
RK
1025 min-height: 28px;
1026}
1027
e28f3f71
RK
1028.widget-overflow-list .toolbarbutton-1 > .toolbarbutton-menubutton-button::after {
1029 content: "";
1030 display: -moz-box;
1031 width: 1px;
1032 height: 18px;
1033 -moz-margin-end: -1px;
43cc2806
RK
1034}
1035
e28f3f71
RK
1036.subviewbutton[checked="true"] {
1037 background-image: url("chrome://global/skin/menu/menu-check.gif");
1038 background-position: top 5px left 4px;
1039 background-repeat: no-repeat;
43cc2806
RK
1040}
1041
43371c9b
RK
1042.subviewbutton[checked="true"]:-moz-locale-dir(rtl) {
1043 background-position: top 5px right 4px;
1044}
1045
e28f3f71
RK
1046.subviewbutton[checked="true"]:hover {
1047 background-image: url("chrome://global/skin/menu/menu-check-hover.gif");
43cc2806
RK
1048}
1049
cae267ab 1050.subbiewbutton > .menu-iconic-left {
e28f3f71 1051 -moz-margin-end: 3px;
43cc2806 1052}
e28f3f71 1053
cae267ab 1054menuitem[checked="true"].subviewbutton > .menu-iconic-left {
e28f3f71 1055 visibility: hidden;
43cc2806
RK
1056}
1057
22180555
RK
1058.panel-mainview[panelid=customizationui-widget-panel],
1059#customizationui-widget-multiview > .panel-viewcontainer,
1060#customizationui-widget-multiview > .panel-viewcontainer > .panel-viewstack,
1061#PanelUI-panicView > .panel-subview-body,
1062#PanelUI-panicView {
1063 overflow: visible;
1064 color: #FF9F00;
1065}
1066
86d9f20a
RK
1067#customizationui-widget-multiview[mainViewId="PanelUI-panicView"] > .panel-viewcontainer,
1068#customizationui-widget-multiview[mainViewId="PanelUI-panicView"] > .panel-viewcontainer > .panel-viewstack,
1069#customizationui-widget-multiview[mainViewId="PanelUI-panicView"] > .panel-viewcontainer > .panel-viewstack > .panel-mainview,
1070/* NB: currentsubview attribute is temporary as a safe workaround for a layout problem with this
1071 * panel. Do not rely on it, it *will* go away again. */
1072#PanelUI-multiView[currentsubview="PanelUI-panicView"] > .panel-viewcontainer > .panel-viewstack > .panel-subviews,
1073#PanelUI-panicView > .panel-subview-body,
1074#PanelUI-panicView {
1075 overflow: visible;
1076}
1077
22180555
RK
1078#PanelUI-panicView.cui-widget-panelview {
1079 min-width: 280px;
1080}
1081
1082#PanelUI-panic-timeframe {
1083 padding: 15px;
1084 border-bottom: 1px solid #A09090;
1085}
1086
1087#panic-button-success-icon,
1088#PanelUI-panic-timeframe-icon,
1089#PanelUI-panic-timeframe-icon-small {
1090 background-color: transparent;
1091 -moz-margin-end: 10px;
1092}
1093
1094#panic-button-success-icon,
1095#PanelUI-panic-timeframe-icon {
1096 list-style-image: url(chrome://browser/skin/panic-panel/header.png);
1097 max-height: 48px;
1098 width: 48px;
1099}
1100
1101#PanelUI-panic-timeframe-icon-small {
1102 list-style-image: url(chrome://browser/skin/panic-panel/header-small.png);
1103 max-height: 32px;
1104 width: 32px;
1105}
1106
1107/* current attribute is only set when in use as a subview instead of a main view */
1108#PanelUI-panicView[current] #PanelUI-panic-timeframe-icon {
1109 display: none;
1110}
1111
1112#PanelUI-panicView.cui-widget-panelview #PanelUI-panic-timeframe-icon-small {
1113 display: none;
1114}
1115
1116#panic-button-success-header,
1117#PanelUI-panic-header {
1118 -moz-box-align: center;
1119 margin-bottom: 5px;
1120}
1121
1122#PanelUI-panicView.cui-widget-panelview #PanelUI-panic-header {
1123 margin-bottom: 0;
1124}
1125
1126#PanelUI-panic-timeframe-icon-small:-moz-locale-dir(rtl),
1127#PanelUI-panic-timeframe-icon:-moz-locale-dir(rtl) {
1128 transform: scaleX(-1);
1129}
1130
1131/*
1132.subviewradio {
1133}
1134
1135.subviewradio@buttonStateHover@ {
1136}
1137
1138.subviewradio[selected],
1139.subviewradio[selected]:hover,
1140.subviewradio@buttonStateActive@ {
1141}
1142
1143.subviewradio > .radio-check {
1144}
1145
1146.subviewradio > .radio-check[selected] {
1147}
1148*/
1149
1150#PanelUI-panic-explanations {
1151 padding: 10px 10px 0;
1152}
1153
1154#PanelUI-panic-actionlist-main-label {
1155 color: #A09090;
1156 font-size: 0.9em;
1157}
1158
1159.PanelUI-panic-actionlist {
1160 -moz-padding-start: 20px;
1161 padding-top: 2px;
1162 padding-bottom: 2px;
1163 background-size: 16px 16px;
1164 background-repeat: no-repeat;
1165 background-color: transparent;
1166 background-position: center left;
1167}
1168
1169.PanelUI-panic-actionlist:-moz-locale-dir(rtl) {
1170 background-position: center right;
1171}
1172
1173#PanelUI-panic-actionlist-cookies {
1174 background-image: -moz-image-rect(url(chrome://browser/skin/panic-panel/icons.png), 0, 16, 16, 0);
1175}
1176
1177#PanelUI-panic-actionlist-history {
1178 background-image: -moz-image-rect(url(chrome://browser/skin/panic-panel/icons.png), 0, 32, 16, 16);
1179}
1180
1181#PanelUI-panic-actionlist-windows {
1182 background-image: -moz-image-rect(url(chrome://browser/skin/panic-panel/icons.png), 0, 48, 16, 32);
1183}
1184
1185#PanelUI-panic-actionlist-newwindow {
1186 background-image: -moz-image-rect(url(chrome://browser/skin/panic-panel/icons.png), 0, 64, 16, 48);
1187}
1188
1189#PanelUI-panic-warning {
1190 color: #FF0000;
1191 text-align: center;
1192 width: 100%;
1193 margin-top: 20px;
1194}
1195
1196#PanelUI-panic-view-button {
1197 background-color: #FF0000;
1198 color: #000000;
1199}
1200
1201#PanelUI-panic-view-button:hover {
1202 background-color: #FFCF00;
1203}
1204
1205#PanelUI-panic-view-button:hover:active {
1206 background-color: #FF9F00;
1207}
1208
1209#PanelUI-panic-view-button > .toolbarbutton-text {
1210 text-align: center;
1211 text-shadow: none;
1212}
1213
1214#panic-button-success-closebutton {
1215}
1216
1217#panic-button-success-closebutton:hover {
1218}
1219
1220#panic-button-success-closebutton:hover:active {
1221}
1222
43cc2806
RK
1223/* === END panelUIOverlay.inc.css === */
1224
8837ac2c
RK
1225.panel-subviews {
1226 background-color: #000000;
1227}
1228
43cc2806
RK
1229#PanelUI-contents #zoom-out-btn {
1230 padding-left: 12px;
1231 padding-right: 12px;
1232}
1233
1234#PanelUI-contents #zoom-in-btn {
1235 padding-left: 12px;
1236 padding-right: 12px;
1237}
1238
e28f3f71
RK
1239/* bookmark panel submenus */
1240
51994fad
RK
1241#BMB_bookmarksPopup menupopup[placespopup=true] {
1242/* background: transparent;
e28f3f71 1243 border: none;
51994fad 1244 padding: 6px;*/
43cc2806
RK
1245}
1246
51994fad 1247#BMB_bookmarksPopup menupopup[placespopup=true] > hbox {
e28f3f71
RK
1248 /* emulating chrome://browser/content/places/menu.xml#places-popup-arrow but without the arrow */
1249/* background: #FFF;
1250 border: 1px solid rgba(0,0,0,0.25);
1251 border-radius: 3.5px;
1252 margin-top: -4px;*/
1253}
1254
51994fad
RK
1255#BMB_bookmarksPopup menupopup {
1256/* padding-top: 2px;*/
1257}
1258
1259/* Add some space at the top because there are no headers: */
1260#BMB_bookmarksPopup menupopup[placespopup=true] > hbox > .popup-internal-box > .arrowscrollbox-scrollbox > .scrollbox-innerbox {
1261/* padding-top: 4px;*/
1262}
1263
e28f3f71
RK
1264/* bookmark panel separator */
1265#BMB_bookmarksPopup menuseparator {
43cc2806
RK
1266 padding-top: 0;
1267 padding-bottom: 0;
1268}
e28f3f71 1269
51994fad
RK
1270.subviewbutton > .menu-right,
1271.subviewbutton > .menu-iconic-left {
1272/* padding-top: 1px;
1273 margin-top: 1px;
1274 margin-bottom: 2px;*/
1275}
1276
1277/* Disabled empty item looks too small otherwise, because it has no icon. */
1278menuitem.subviewbutton[disabled]:not(.menuitem-iconic),
1279/* Same for checkbox menu items, whose icons lose size due to -moz-appearance: none: */
1280menuitem[type="checkbox"].subviewbutton {
1281 /* This is 16px for an icon + 3px for its margins + 1px for its padding +
1282 * 2px for its border, see above */
1283/* min-height: 22px;*/
1284}
1285
1286.subviewbutton > .toolbarbutton-text {
1287/* padding-top: 3px;
1288 padding-bottom: 3px;*/
1289}
1290
e28f3f71
RK
1291.widget-overflow-list .toolbarbutton-1 > .toolbarbutton-menubutton-button {
1292 -moz-appearance: none;
1293 border: 0;
1294 -moz-margin-start: 3px;
1295}
1296
1297.widget-overflow-list .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker {
1298 padding: 0 2px;
1299 -moz-padding-start: 0;
1300 height: 18px;
1301}
1302
a21f2959
RK
1303menu.subviewbutton > .menu-right:-moz-locale-dir(rtl) {
1304/* transform: scaleX(-1); */
1305}
1306
e28f3f71
RK
1307.widget-overflow-list .toolbarbutton-1 > .toolbarbutton-menubutton-dropmarker > .dropmarker-icon {
1308 padding: 0 6px;
1309}
1310
1311.subviewbutton > .toolbarbutton-text {
1312 -moz-padding-start: 16px;
1313}
1314
1315.subviewbutton:-moz-any([image],[targetURI],.cui-withicon, .restoreallitem, .bookmark-item) > .toolbarbutton-text {
1316 -moz-padding-start: 0;
1317}
1318
e28f3f71
RK
1319/* subviewbutton entries for social sidebars have images that come from external
1320/* sources, and are not guaranteed to be the size we want, so force the size on
1321/* those icons. */
1322toolbarbutton.social-provider-menuitem > .toolbarbutton-icon {
1323 width: 16px;
1324 height: 16px;
1325}
1326
1327.subviewbutton:-moz-any([image],[targetURI],.cui-withicon, .restoreallitem, .bookmark-item)[checked="true"] > .toolbarbutton-icon {
1328 visibility: hidden;
1329}
649b5d38 1330
e28f3f71 1331menu.subviewbutton > .menu-right {
649b5d38
RK
1332 list-style-image: url("chrome://global/skin/menu/menu-arrow.gif");
1333}
1334menu.subviewbutton:hover > .menu-right,
1335menu.subviewbutton[_moz-menuactive="true"] > .menu-right {
1336 list-style-image: url("chrome://global/skin/menu/menu-arrow-hover.gif");
e28f3f71 1337}
e28f3f71 1338menu[disabled="true"].subviewbutton > .menu-right {
649b5d38 1339 list-style-image: url("chrome://global/skin/menu/menu-arrow-disabled.gif");
e28f3f71 1340}