fix compact manulist
[themes.git] / EarlyBlue / global / menu.css
1 /* ***** BEGIN LICENSE BLOCK *****
2  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3  *
4  * The contents of this file are subject to the Mozilla Public License Version
5  * 1.1 (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  * http://www.mozilla.org/MPL/
8  *
9  * Software distributed under the License is distributed on an "AS IS" basis,
10  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11  * for the specific language governing rights and limitations under the
12  * License.
13  *
14  * The Original Code is "Classic" theme of mozilla.org code.
15  *
16  * The Initial Developer of the Original Code is
17  * the Mozilla Organization.
18  * Portions created by the Initial Developer are Copyright (C) 1998-2001
19  * the Initial Developer. All Rights Reserved.
20  *
21  * Contributor(s):
22  *   Robert Kaiser <KaiRo@KaiRo.at>
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
39
40 /* ===== menu.css =======================================================
41   == Styles used by XUL menu-related elements.
42   ======================================================================= */
43
44 /* ::::: menu/menuitem ::::: */
45
46 menu,
47 menuitem {
48   -moz-box-align: center;
49   color: #000000;
50   list-style-image: none;
51 }
52
53 menuitem[default="true"] {
54   font-weight: bold;
55 }
56
57 menu[disabled="true"],
58 menuitem[disabled="true"],
59 menu[_moz-menuactive="true"][disabled="true"],
60 menuitem[_moz-menuactive="true"][disabled="true"] {
61   color: #999999;
62 }
63
64 /* ..... internal content .... */
65
66 .menu-text,
67 .menu-iconic-left,
68 .menu-iconic-text {
69   margin: 0px 2px 0px 0px !important;
70   color: inherit;
71 }
72
73 .menu-text {
74   margin-left: 18px !important;
75   font-weight: inherit;
76 }
77
78 .menu-description {
79   font-style: italic;
80   color: #808080;
81   margin-left: 1ex !important;
82 }
83
84 .menu-accel,
85 .menu-iconic-accel {
86   margin: 0px 2px 0px 7px !important;
87   padding-right: 14px;
88   color: inherit;
89 }
90
91 .menu-iconic-icon {
92   list-style-image: inherit;
93 }
94
95 .menu-iconic-left {
96   -moz-box-align: center;
97   -moz-box-pack: center;
98   width: 16px;
99 /*  height: 16px; */
100 }
101
102 /* ..... menu arrow box ..... */
103
104 .menu-right {
105   margin: 0px 0px 0px 3px;
106   width: 8px;
107   list-style-image: url("chrome://global/skin/menu/menu-arrow.gif");
108 }
109
110 .menu-right[_moz-menuactive="true"] {
111   list-style-image: url("chrome://global/skin/menu/menu-arrow-hover.gif");
112 }
113
114 .menu-right[disabled="true"] {
115   list-style-image: url("chrome://global/skin/menu/menu-arrow-disabled.gif") !important;
116 }
117
118 /* ::::: menu/menuitems in menubar ::::: */
119
120 menubar > menu {
121   padding: 2px 0px 2px 3px;
122   margin: 0px 2px 0px 0px;
123   border: 1px solid #CCD0DD;
124 }
125
126 menubar > menu[_moz-menuactive="true"] {
127   border: 1px outset #CCD0DD;
128 }
129
130 menubar > menu[_moz-menuactive="true"][open="true"] {
131   border: 1px inset #CCD0DD;
132 }
133
134 /* ..... internal content .... */
135
136 .menubar-left {
137   margin: 0px 2px 0px 0px;
138   color: inherit;
139 }
140
141 .menubar-text {
142   margin: 0px 2px 0px 0px !important;
143   color: inherit;
144 }
145
146 /* ::::: menu/menuitems in popups ::::: */
147
148 menupopup > menu,
149 popup > menu,
150 menupopup > menuitem,
151 popup > menuitem {
152   padding: 2px;
153   max-width: 42em;
154 }
155
156 menupopup > menu[_moz-menuactive="true"],
157 menupopup > menuitem[_moz-menuactive="true"],
158 popup > menu[_moz-menuactive="true"],
159 popup > menuitem[_moz-menuactive="true"] {
160   background-color: #336699;
161   color: #FFFFFF;
162 }
163
164 /* ::::: menu/menuitems in menulist popups ::::: */
165
166 .menulist-menupopup > menuitem,
167 menulist > menupopup > menuitem,
168 .menulist-menupopup > menu,
169 menulist > menupopup > menu {
170   border: 1px solid transparent;
171   padding: 1px 30px 1px 5px;
172   max-width: none;
173 /*  font-size: smaller;
174   color: -moz-FieldText; */
175 }
176
177 .menulist-menupopup > menuitem > .menu-iconic-left,
178 menulist > menupopup > menuitem > .menu-iconic-left,
179 .menulist-menupopup > menu > .menu-iconic-left,
180 menulist > menupopup > menu > .menu-iconic-left {
181   display: none;
182 }
183
184 menulist > menupopup > menuitem[_moz-menuactive="true"] {
185   border: 1px dotted #666699;
186 }
187
188 /* ::::: checkbox menuitem ::::: */
189
190 menuitem[checked="true"] {
191   list-style-image: url("chrome://global/skin/menu/menu-check.gif");
192 }
193
194 menuitem[checked="true"][disabled="true"] {
195   list-style-image: url("chrome://global/skin/menu/menu-check-disabled.gif");
196 }
197
198 menuitem[checked="true"][_moz-menuactive="true"] {
199   list-style-image: url("chrome://global/skin/menu/menu-check-hover.gif");
200 }
201
202 /* ::::: radio menuitem ::::: */
203
204 menuitem[checked="true"][type="radio"] {
205   list-style-image: url("chrome://global/skin/menu/menu-radio.gif");
206 }
207
208 menuitem[checked="true"][type="radio"][disabled="true"] {
209   list-style-image: url("chrome://global/skin/menu/menu-radio-disabled.gif");
210 }
211
212 menuitem[checked="true"][type="radio"][_moz-menuactive="true"] {
213   list-style-image: url("chrome://global/skin/menu/menu-radio-hover.gif");
214 }
215
216 /* ::::: menuseparator ::::: */
217
218 menuseparator {
219   border: 1px inset #CCD0DD;
220   margin: 2px 0px 2px 0px;
221 }
222
223 menulist > menupopup > menuseparator,
224 .menulist-menupopup > menuseparator {
225   border: 1px inset #CCD0DD;
226   margin: 2px 0px 2px 0px;
227 }
228
229 /* ::::: autocomplete ::::: */
230
231 .autocomplete-history-popup > menuitem {
232   max-width: none !important;
233 }
234
235 .treecell-popupcell-menu {
236   margin-left: -2px;
237   list-style-image: url("chrome://global/skin/tree/columnpicker.gif");
238 }