removing useless directories, moving contents.rdf and preview.png to top level directory
[themes.git] / EarlyBlue / global / menulist.css
CommitLineData
128000f4 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");
f6e0a33f 39@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */
40
41/* outer frame */
42 menulist
43 {
44 border : none;
45 background-color : #CCCCCC;
46 color : #000000;
47 margin : 1px 5px 2px 5px;
48 }
49
50 menulist[disabled="true"] > .menulist-internal-box > .menulist-display-box
51 {
52/* background-color : -moz-Dialog; */
53 color : #999999;
54 }
55
56/* icon display frame */
57 .menulist-internal-box
58 {
59/* border : 1px inset #CCD0DD; */
60 -moz-user-focus : ignore;
61 }
62
63 .menulist-display-box,
64 menulist[open="true"]:focus > .menulist-internal-box > .menulist-display-box
65 {
66 border : 1px inset #CCD0DD;
67 margin : 0px;
68 background-color : #FFFFFF;
69 color : #000000;
70 }
71
72 menulist:focus > .menulist-internal-box > .menulist-display-box
73 {
74/* border : 1px dotted #999999; */
75 background-color : #336699;
76 color : #000000;
77 }
78
79/* text display frame */
80 .menulist-text
81 {
82 padding : 0px 2px 0px 2px;
83 margin : 0px;
84 }
85
86/* drop marker display frame */
87 .menulist-dropmarker-box-1
88 {
89 border : 1px outset #CCD0DD;
90 background-color : -moz-Dialog;
91 }
92
93 .menulist-dropmarker-box-2
94 {
95 border : none;
96 padding : 2px 1px 2px 1px;
97 }
98
99 .menulist-dropmarker
100 {
101 list-style-image : url("chrome://global/skin/scroll-down.gif");
102 }
103
104 .menulist-dropmarker[disabled="true"]
105 {
106 list-style-image : url("chrome://global/skin/scroll-down-disabled.gif");
107 }
108
109 menulist:hover:active > .menulist-internal-box > .menulist-dropmarker-box-1[open="true"]
110 {
111 border : 1px inset #CCD0DD;
112 }
113
114 menulist:hover:active > .menulist-internal-box > .menulist-dropmarker-box-1 > .menulist-dropmarker-box-2[open="true"]
115 {
116 border : none;
117 padding : 3px 0px 1px 2px;
118 }
119
120/**
121 * <menulist>s for things like mailnews addressing widget
122 **/
123
124 .menulist-compact
125 {
126 margin : 0px;
127 border : 1px outset #CCD0DD;
128/* background-color : -moz-Dialog; */
129 -moz-user-focus : normal;
130 }
131
132 .menulist-compact-internal-box
133 {
134 border : none;
135 }
136
137 .menulist-compact-dropmarker
138 {
139 list-style-image : url("chrome://global/skin/scroll-down.gif");
140 margin-left : 2px;
141 }
142
143 .menulist-compact-text
144 {
145 margin-right : 3px;
146 }
147
148 .menulist-compact:hover:active,
149 .menulist-compact[open="true"]
150 {
151 border : 1px inset #CCD0DD;
152/* background-color : ThreeDShadow;
153 color : ThreeDHighlight; */
154 }
155
156 .menulist-compact:hover:active > .menulist-compact-internal-box,
157 .menulist-compact[open="true"] > .menulist-compact-internal-box
158 {
159 border : none;
160 }
161
162/**
163 * Editable menulists (comboboxes)
164 */
165
166html|*.menulist-editable-text
167 {
168 border : none !important;
169 margin : 0px;
170 padding : 0px;
171 font : inherit;
172 background-color : inherit;
173 color : inherit;
174 }
175
176menulist[editable="true"] > .menulist-internal-box > .menulist-display-box
177 {
178 margin : 0px;
179 padding : 1px 2px 1px 2px;
180 }
181
182menulist[editable="true"]:focus > .menulist-internal-box > .menulist-display-box
183 {
184 border : none !important;
185 }