update both themes for toolkit winstripe trunk changes up to 2010-03-19
[themes.git] / LCARStrek / global / menulist.css
... / ...
CommitLineData
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/* ===== menulist.css ===================================================
39 == Styles used by the XUL menulist element.
40 ======================================================================= */
41
42@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
43@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */
44
45/* :::::::::: menulist :::::::::: */
46
47menulist {
48 -moz-border-radius: 3px;
49 margin: 2px 4px;
50 border: 1px solid #9C9CFF;
51 background-color: #000000;
52 color: #E7ADE7;
53 text-shadow: none;
54}
55
56menulist[menuactive="true"],
57menulist:hover {
58 background-color: #FFCF00;
59 color: #000000;
60 border: 1px solid #9C9CFF;
61}
62
63menulist[open="true"] {
64 background-color: #FF9F00;
65 color: #000000;
66 border: 1px solid #FFCF00;
67}
68
69.menulist-label-box {
70 -moz-box-align: center;
71 -moz-box-pack: center;
72/* margin: 1px; */
73 color: inherit;
74}
75
76.menulist-label {
77 margin: 1px 3px !important;
78}
79
80.menulist-description {
81 font-style: italic;
82 color: #8050B0;
83 -moz-margin-start: 1ex !important;
84}
85
86menulist:focus > .menulist-label-box {
87/* border: 1px dotted #008484; */
88 background-color: #008484;
89 color: #000000;
90}
91
92menulist[disabled="true"] {
93 background-color: #000000;
94 color: #8050B0;
95 border: 1px solid #8050B0;
96}
97
98/* ..... dropmarker ..... */
99
100.menulist-dropmarker {
101 -moz-border-radius: 0px 3px 3px 0px;
102 min-width: 15px;
103 border: none;
104 border-left: 1px solid #9C9CFF;
105}
106
107.menulist-dropmarker,
108menulist[disabled="true"]:hover:active > .menulist-dropmarker {
109 padding: 1px;
110 border: none;
111 border-left: 1px solid #9C9CFF;
112}
113
114menulist[menuactive="true"] > .menulist-dropmarker,
115menulist[open="true"] > .menulist-dropmarker,
116menulist:hover > .menulist-dropmarker,
117menulist:hover:active > .menulist-dropmarker {
118 list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
119}
120
121menulist[menuactive="true"] > .menulist-dropmarker,
122menulist:hover > .menulist-dropmarker {
123 background-color: #FFCF00;
124}
125
126menulist:hover:active > .menulist-dropmarker,
127menulist[open="true"] > .menulist-dropmarker {
128 padding-top: 2px;
129 padding-bottom: 0;
130 -moz-padding-start: 2px;
131 -moz-padding-end: 0;
132 border: none;
133 border-left: 1px solid #FFCF00;
134 background-color: #FF9F00;
135}
136
137/* ::::: editable menulists ::::: */
138
139menulist[editable="true"] {
140 color: #E7ADE7;
141}
142
143.menulist-editable-box {
144 background-color: #000000;
145 padding: 2px;
146}
147
148html|*.menulist-editable-input {
149 margin: 0px !important;
150 border: none !important;
151 padding: 0px !important;
152 font: inherit;
153}
154
155/* ::::: compact menulists ::::: */
156
157.menulist-compact {
158 -moz-box-align: center;
159 -moz-box-pack: center;
160 margin: 0px;
161 color: #E7ADE7;
162 border: 1px solid #9C9CFF;
163 list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
164}
165
166.menulist-compact > .menulist-label-box > .menulist-label {
167 margin: 0 3px !important;
168 text-align: end;
169}
170
171.menulist-compact > .menulist-label-box > .menulist-icon {
172 -moz-margin-start: 2px;
173}
174
175.menulist-compact[open="true"] {
176 border: 1px solid #FFCF00;
177}
178
179.menulist-compact:hover,
180.menulist-compact[open="true"] {
181 list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
182}
183
184.menulist-compact[disabled="true"] {
185 list-style-image: url("chrome://global/skin/arrow/arrow-down-disabled.gif");
186}