update LCARStrek to 2.0a1, step 2
[themes.git] / LCARStrek / global / menulist.css
CommitLineData
351107c9 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
b1eaa419 38/* ===== menulist.css ===================================================
39 == Styles used by the XUL menulist element.
40 ======================================================================= */
41
f98e9249
RK
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
b1eaa419 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}
54
55menulist[menuactive="true"],
56menulist:hover {
57 background-color: #FFCF00;
58 color: #000000;
59 border: 1px solid #9C9CFF;
60}
61
62menulist[open="true"] {
63 background-color: #FF9F00;
64 color: #000000;
65 border: 1px solid #FFCF00;
66}
67
68.menulist-label-box {
69 -moz-box-align: center;
70 -moz-box-pack: center;
71/* margin: 1px; */
b1eaa419 72 color: inherit;
73}
74
75.menulist-label {
76 margin: 1px 3px !important;
77}
78
3d6dd546 79.menulist-description {
80 font-style: italic;
81 color: #8050B0;
82 margin-left: 1ex !important;
83}
84
f98e9249
RK
85menulist:focus > .menulist-label-box {
86/* border: 1px dotted #008484; */
87 background-color: #008484;
88 color: #000000;
89}
90
91menulist[disabled="true"] {
92 background-color: #000000;
93 color: #8050B0;
94 border: 1px solid #8050B0;
95}
96
b1eaa419 97/* ..... dropmarker ..... */
98
99.menulist-dropmarker {
100 -moz-border-radius: 0px 3px 3px 0px;
b1eaa419 101 min-width: 15px;
95c949c5 102 border: none;
b1eaa419 103 border-left: 1px solid #9C9CFF;
b1eaa419 104}
105
106.menulist-dropmarker,
107menulist[disabled="true"]:hover:active > .menulist-dropmarker {
108 padding: 1px;
95c949c5 109 border: none;
110 border-left: 1px solid #9C9CFF;
b1eaa419 111}
112
b1eaa419 113menulist[menuactive="true"] > .menulist-dropmarker,
114menulist[open="true"] > .menulist-dropmarker,
115menulist:hover > .menulist-dropmarker,
116menulist:hover:active > .menulist-dropmarker {
117 list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
118}
119
120menulist[menuactive="true"] > .menulist-dropmarker,
121menulist:hover > .menulist-dropmarker {
122 background-color: #FFCF00;
123}
124
f98e9249
RK
125menulist:hover:active > .menulist-dropmarker,
126menulist[open="true"] > .menulist-dropmarker {
b1eaa419 127 padding: 2px 0px 0px 2px;
95c949c5 128 border: none;
b1eaa419 129 border-left: 1px solid #FFCF00;
130 background-color: #FF9F00;
131}
132
f98e9249 133/* ::::: editable menulists ::::: */
b1eaa419 134
f98e9249
RK
135menulist[editable="true"] {
136 color: #E7ADE7;
b1eaa419 137}
138
b1eaa419 139.menulist-editable-box {
140 background-color: #000000;
3d6dd546 141 padding: 2px;
b1eaa419 142}
143
144html|*.menulist-editable-input {
145 margin: 0px !important;
146 border: none !important;
147 padding: 0px !important;
b1eaa419 148 font: inherit;
149}
150
151/* ::::: compact menulists ::::: */
152
153.menulist-compact {
154 -moz-box-align: center;
155 -moz-box-pack: center;
156 margin: 0px;
f98e9249 157 color: #E7ADE7;
b1eaa419 158 border: 1px solid #9C9CFF;
6046f027 159 list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
160}
161
6046f027 162.menulist-compact > .menulist-label-box > .menulist-label {
b1eaa419 163 margin: 0 3px !important;
164 text-align: right;
3d6dd546 165}
b1eaa419 166
6046f027 167.menulist-compact > .menulist-label-box > .menulist-icon {
f98e9249 168 -moz-margin-start: 2px;
6046f027 169}
170
b1eaa419 171.menulist-compact[open="true"] {
172 border: 1px solid #FFCF00;
173}
6046f027 174
175.menulist-compact:hover,
176.menulist-compact[open="true"] {
177 list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
178}
179
180.menulist-compact[disabled="true"] {
181 list-style-image: url("chrome://global/skin/arrow/arrow-down-disabled.gif");
182}
183
184.menulist-compact:focus > .menulist-label-box {
185 border: 1px dotted #008484;
f98e9249
RK
186 background-color: transparent;
187 color: inherit;
6046f027 188}