some small improvements to the inspector toolbar
[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 {
569543b3 48 border-radius: 3px;
b1eaa419 49 margin: 2px 4px;
50 border: 1px solid #9C9CFF;
51 background-color: #000000;
52 color: #E7ADE7;
a064a540 53 text-shadow: none;
b1eaa419 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; */
b1eaa419 73 color: inherit;
74}
75
76.menulist-label {
77 margin: 1px 3px !important;
78}
79
3d6dd546 80.menulist-description {
81 font-style: italic;
a8df931f 82 color: #9C9CFF;
8caa872d 83 -moz-margin-start: 1ex !important;
3d6dd546 84}
85
024ec655 86menulist:focus:not(.menulist-compact) > .menulist-label-box {
f98e9249 87 background-color: #008484;
a8df931f 88 color: #FFCF00;
f98e9249
RK
89}
90
024ec655
RK
91menulist:-moz-focusring:not([open="true"]):not(.menulist-compact) > .menulist-label-box {
92/* border: 1px dotted #FFCF00; */
93}
94
f98e9249
RK
95menulist[disabled="true"] {
96 background-color: #000000;
97 color: #8050B0;
98 border: 1px solid #8050B0;
99}
100
b1eaa419 101/* ..... dropmarker ..... */
102
103.menulist-dropmarker {
569543b3 104 border-radius: 0px 3px 3px 0px;
b1eaa419 105 min-width: 15px;
95c949c5 106 border: none;
b1eaa419 107 border-left: 1px solid #9C9CFF;
b1eaa419 108}
109
110.menulist-dropmarker,
111menulist[disabled="true"]:hover:active > .menulist-dropmarker {
112 padding: 1px;
95c949c5 113 border: none;
114 border-left: 1px solid #9C9CFF;
b1eaa419 115}
116
b1eaa419 117menulist[menuactive="true"] > .menulist-dropmarker,
118menulist[open="true"] > .menulist-dropmarker,
119menulist:hover > .menulist-dropmarker,
120menulist:hover:active > .menulist-dropmarker {
121 list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
122}
123
124menulist[menuactive="true"] > .menulist-dropmarker,
125menulist:hover > .menulist-dropmarker {
126 background-color: #FFCF00;
127}
128
f98e9249
RK
129menulist:hover:active > .menulist-dropmarker,
130menulist[open="true"] > .menulist-dropmarker {
02920d2b
RK
131 padding-top: 2px;
132 padding-bottom: 0;
133 -moz-padding-start: 2px;
134 -moz-padding-end: 0;
95c949c5 135 border: none;
b1eaa419 136 border-left: 1px solid #FFCF00;
137 background-color: #FF9F00;
138}
139
f98e9249 140/* ::::: editable menulists ::::: */
b1eaa419 141
f98e9249
RK
142menulist[editable="true"] {
143 color: #E7ADE7;
b1eaa419 144}
145
b1eaa419 146.menulist-editable-box {
147 background-color: #000000;
3d6dd546 148 padding: 2px;
b1eaa419 149}
150
151html|*.menulist-editable-input {
152 margin: 0px !important;
153 border: none !important;
154 padding: 0px !important;
0c5f9076
RK
155 background-color: inherit;
156 color: inherit;
b1eaa419 157 font: inherit;
158}
159
160/* ::::: compact menulists ::::: */
161
162.menulist-compact {
163 -moz-box-align: center;
164 -moz-box-pack: center;
165 margin: 0px;
f98e9249 166 color: #E7ADE7;
b1eaa419 167 border: 1px solid #9C9CFF;
6046f027 168 list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
169}
170
6046f027 171.menulist-compact > .menulist-label-box > .menulist-label {
b1eaa419 172 margin: 0 3px !important;
17b8126a 173 text-align: end;
3d6dd546 174}
b1eaa419 175
6046f027 176.menulist-compact > .menulist-label-box > .menulist-icon {
f98e9249 177 -moz-margin-start: 2px;
6046f027 178}
179
b1eaa419 180.menulist-compact[open="true"] {
181 border: 1px solid #FFCF00;
182}
6046f027 183
184.menulist-compact:hover,
185.menulist-compact[open="true"] {
186 list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
187}
188
189.menulist-compact[disabled="true"] {
190 list-style-image: url("chrome://global/skin/arrow/arrow-down-disabled.gif");
191}