EarlyBlue 2.0a1 -> 2.0a2 changes, communicator/ and global/ changes
[themes.git] / LCARStrek / global / menulist.css
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
47 menulist {
48   -moz-border-radius: 3px;
49   margin: 2px 4px;
50   border: 1px solid #9C9CFF;
51   background-color: #000000;
52   color: #E7ADE7;
53 }
54
55 menulist[menuactive="true"],
56 menulist:hover {
57   background-color: #FFCF00;
58   color: #000000;
59   border: 1px solid #9C9CFF;
60 }
61
62 menulist[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; */
72   color: inherit;
73 }
74
75 .menulist-label {
76   margin: 1px 3px !important;
77 }
78
79 .menulist-description {
80   font-style: italic;
81   color: #8050B0;
82   margin-left: 1ex !important;
83 }
84
85 menulist:focus > .menulist-label-box {
86 /*  border: 1px dotted #008484; */
87   background-color: #008484;
88   color: #000000;
89 }
90
91 menulist[disabled="true"] {
92   background-color: #000000;
93   color: #8050B0;
94   border: 1px solid #8050B0;
95 }
96
97 /* ..... dropmarker ..... */
98
99 .menulist-dropmarker {
100   -moz-border-radius: 0px 3px 3px 0px;
101   min-width: 15px;
102   border: none;
103   border-left: 1px solid #9C9CFF;
104 }
105
106 .menulist-dropmarker,
107 menulist[disabled="true"]:hover:active > .menulist-dropmarker {
108   padding: 1px;
109   border: none;
110   border-left: 1px solid #9C9CFF;
111 }
112
113 menulist[menuactive="true"] > .menulist-dropmarker,
114 menulist[open="true"] > .menulist-dropmarker,
115 menulist:hover > .menulist-dropmarker,
116 menulist:hover:active > .menulist-dropmarker {
117   list-style-image: url("chrome://global/skin/arrow/arrow-down-hover.gif");
118 }
119
120 menulist[menuactive="true"] > .menulist-dropmarker,
121 menulist:hover > .menulist-dropmarker {
122   background-color: #FFCF00;
123 }
124
125 menulist:hover:active > .menulist-dropmarker,
126 menulist[open="true"] > .menulist-dropmarker {
127   padding: 2px 0px 0px 2px;
128   border: none;
129   border-left: 1px solid #FFCF00;
130   background-color: #FF9F00;
131 }
132
133 /* ::::: editable menulists ::::: */
134
135 menulist[editable="true"] {
136   color: #E7ADE7;
137 }
138
139 .menulist-editable-box {
140   background-color: #000000;
141   padding: 2px;
142 }
143
144 html|*.menulist-editable-input {
145   margin: 0px !important;
146   border: none !important;
147   padding: 0px !important;
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;
157   color: #E7ADE7;
158   border: 1px solid #9C9CFF;
159   list-style-image: url("chrome://global/skin/arrow/arrow-down.gif");
160 }
161
162 .menulist-compact > .menulist-label-box > .menulist-label {
163   margin: 0 3px !important;
164   text-align: right;
165 }
166
167 .menulist-compact > .menulist-label-box > .menulist-icon {
168   -moz-margin-start: 2px;
169 }
170
171 .menulist-compact[open="true"] {
172   border: 1px solid #FFCF00;
173 }
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 }