first part of sync for both themes for toolkit winstripe changes in Mozilla 16 cycle
[themes.git] / EarlyBlue / global / popup.css
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 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
6
7 /* ::::: menupopup ::::: */
8
9 menupopup,
10 panel {
11   border: 1px outset #CCD0DD;
12   padding: 1px;
13   min-width: 1px;
14   background-color: #CCD0DD;
15 }
16
17 panel[type="arrow"] {
18   background: transparent;
19   border: none;
20   -moz-transition: opacity 300ms;
21 }
22
23 panel[type="arrow"][side="top"],
24 panel[type="arrow"][side="bottom"] {
25   margin-left: -20px;
26   margin-right: -20px;
27 }
28
29 panel[type="arrow"][side="left"],
30 panel[type="arrow"][side="right"] {
31   margin-top: -20px;
32   margin-bottom: -20px;
33 }
34
35 .panel-arrowcontent {
36   padding: 6px;
37   background-color: #CCD0DD;
38   background-clip: padding-box;
39   border: 1px outset #CCD0DD;
40   margin: 3px;
41 }
42
43 .panel-arrow[side="top"],
44 .panel-arrow[side="bottom"] {
45   list-style-image: url("chrome://global/skin/arrow/panelarrow-vertical.svg");
46   position: relative;
47   margin-left: 10px;
48   margin-right: 10px;
49 }
50
51 .panel-arrow[side="top"] {
52   margin-bottom: -5px;
53 }
54
55 .panel-arrow[side="bottom"] {
56   -moz-transform: scaleY(-1);
57   margin-top: -5px;
58 }
59
60 .panel-arrow[side="left"],
61 .panel-arrow[side="right"] {
62   list-style-image: url("chrome://global/skin/arrow/panelarrow-horizontal.svg");
63   position: relative;
64   margin-top: 10px;
65   margin-bottom: 10px;
66 }
67
68 .panel-arrow[side="left"] {
69   margin-right: -5px;
70 }
71
72 .panel-arrow[side="right"] {
73   -moz-transform: scaleX(-1);
74   margin-left: -5px;
75 }
76
77 tooltip {
78   background-color : #FFFFCC;
79   border : 1px outset #FFFFCC;
80   color: #000000;
81   /* font-size: smaller; */
82   padding: 2px;
83   max-width: 40em;
84 }
85
86 tooltip[titletip="true"] {
87   /* See bug 32157 comment 128
88    * margin: -2px 0px 0px -3px;
89    */
90   max-width: none;
91 }
92
93 /* rules for popups associated with menulists */
94
95 menulist > menupopup,
96 .menulist-menupopup {
97   border: 1px solid #666699;
98   min-width: 0px;
99   padding: 0px;
100   background-color: white;
101 }
102
103 menupopup > menu > menupopup {
104   margin-top: -2px;
105 }