update LCARStrek for customizable compose window, move smime and editor icons into...
[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;
8caa872d 82 -moz-margin-start: 1ex !important;
3d6dd546 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 {
02920d2b
RK
127 padding-top: 2px;
128 padding-bottom: 0;
129 -moz-padding-start: 2px;
130 -moz-padding-end: 0;
95c949c5 131 border: none;
b1eaa419 132 border-left: 1px solid #FFCF00;
133 background-color: #FF9F00;
134}
135
f98e9249 136/* ::::: editable menulists ::::: */
b1eaa419 137
f98e9249
RK
138menulist[editable="true"] {
139 color: #E7ADE7;
b1eaa419 140}
141
b1eaa419 142.menulist-editable-box {
143 background-color: #000000;
3d6dd546 144 padding: 2px;
b1eaa419 145}
146
147html|*.menulist-editable-input {
148 margin: 0px !important;
149 border: none !important;
150 padding: 0px !important;
b1eaa419 151 font: inherit;
152}
153
154/* ::::: compact menulists ::::: */
155
156.menulist-compact {
157 -moz-box-align: center;
158 -moz-box-pack: center;
159 margin: 0px;
f98e9249 160 color: #E7ADE7;
b1eaa419 161 border: 1px solid #9C9CFF;
6046f027 162 list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
163}
164
6046f027 165.menulist-compact > .menulist-label-box > .menulist-label {
b1eaa419 166 margin: 0 3px !important;
167 text-align: right;
3d6dd546 168}
b1eaa419 169
6046f027 170.menulist-compact > .menulist-label-box > .menulist-icon {
f98e9249 171 -moz-margin-start: 2px;
6046f027 172}
173
b1eaa419 174.menulist-compact[open="true"] {
175 border: 1px solid #FFCF00;
176}
6046f027 177
178.menulist-compact:hover,
179.menulist-compact[open="true"] {
180 list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
181}
182
183.menulist-compact[disabled="true"] {
184 list-style-image: url("chrome://global/skin/arrow/arrow-down-disabled.gif");
185}