update EarlyBlue and LCARStrek for toolkit winstripe changes between SM 2.0a2 and...
[themes.git] / EarlyBlue / global / tree.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  *   Joe Hewitt (hewitt@netscape.com)
23  *   Dean Tessman (dean_tessman@hotmail.com)
24  *   Robert Kaiser <KaiRo@KaiRo.at>
25  *
26  * Alternatively, the contents of this file may be used under the terms of
27  * either the GNU General Public License Version 2 or later (the "GPL"), or
28  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29  * in which case the provisions of the GPL or the LGPL are applicable instead
30  * of those above. If you wish to allow use of your version of this file only
31  * under the terms of either the GPL or the LGPL, and not to allow others to
32  * use your version of this file under the terms of the MPL, indicate your
33  * decision by deleting the provisions above and replace them with the notice
34  * and other provisions required by the GPL or the LGPL. If you do not delete
35  * the provisions above, a recipient may use your version of this file under
36  * the terms of any one of the MPL, the GPL or the LGPL.
37  *
38  * ***** END LICENSE BLOCK ***** */
39
40 /* ===== tree.css =======================================================
41   == Styles used by the XUL tree element.
42   ======================================================================= */
43
44 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
45
46 /* ::::: tree ::::: */
47
48 tree {
49   margin: 0px;
50   border: 1px inset #CCD0DD;
51   background-color: #FFFFFF;
52   color: #000000;
53 }
54
55 /* ::::: tree focusring ::::: */
56
57 .focusring > .tree-stack > .tree-rows > .tree-bodybox {
58   border: 1px solid transparent;
59 }
60
61 .focusring:focus > .tree-stack > .tree-rows > .tree-bodybox {
62   border: 1px solid #000000;
63 }
64
65 /* ::::: tree rows ::::: */
66
67 treechildren::-moz-tree-row {
68   border: 1px solid transparent;
69   background-color: transparent;
70   min-height: 18px;
71   height: 1.3em;
72 }
73
74 treechildren::-moz-tree-row(selected) {
75   background-color: #808080;
76 }
77
78 treechildren::-moz-tree-row(selected, focus) {
79   background-color: #336699;
80 }
81
82 treechildren::-moz-tree-row(current, focus) {
83   border: 1px dotted #9999CC;
84 }
85
86 treechildren::-moz-tree-row(selected, current, focus) {
87   border: 1px dotted #666699;
88 }
89
90 tree[seltype="cell"] > treechildren::-moz-tree-row,
91 tree[seltype="text"] > treechildren::-moz-tree-row {
92   border: none;
93   background-color: transparent;
94 }
95
96 /* ::::: tree cells ::::: */
97
98 treechildren::-moz-tree-cell {
99   padding: 0px 2px;
100 }
101
102 tree[seltype="cell"] > treechildren::-moz-tree-cell-text,
103 tree[seltype="text"] > treechildren::-moz-tree-cell-text,
104 treechildren::-moz-tree-cell-text {
105   color: inherit;
106 }
107
108 treechildren::-moz-tree-cell-text(selected) {
109   color: #FFFFFF;
110 }
111
112 tree[seltype="cell"] > treechildren::-moz-tree-cell {
113   border: 1px solid transparent;
114   padding: 0px 1px 0px 1px;
115 }
116
117 tree[seltype="text"] > treechildren::-moz-tree-cell-text {
118   border: 1px solid transparent;
119   padding: 0px 1px 1px 1px;
120 }
121
122 tree[seltype="cell"] > treechildren::-moz-tree-cell(active, selected) {
123   background-color: #808080;
124 }
125 tree[seltype="cell"] > treechildren::-moz-tree-cell-text(active, selected) {
126   color: #FFFFFF;
127 }
128
129 tree[seltype="text"] > treechildren::-moz-tree-cell-text(active, selected) {
130   background-color: #808080;
131   color: #FFFFFF;
132 }
133
134 treechildren::-moz-tree-cell-text(selected, focus) {
135   color: #FFFFFF;
136 }
137
138 tree[seltype="cell"] > treechildren::-moz-tree-cell(active, selected, focus) {
139   background-color: #336699;
140 }
141 tree[seltype="cell"] > treechildren::-moz-tree-cell-text(active, selected, focus) {
142   color: #FFFFFF;
143 }
144
145 tree[seltype="text"] > treechildren::-moz-tree-cell-text(active, selected, focus) {
146   background-color: #336699;
147   color: #FFFFFF;
148 }
149
150 tree[seltype="cell"] > treechildren::-moz-tree-cell(active, current, focus) {
151   border: 1px dotted #9999CC;
152 }
153
154 tree[seltype="text"] > treechildren::-moz-tree-cell-text(active, current, focus) {
155   border: 1px dotted #9999CC;
156 }
157
158 tree[seltype="cell"] > treechildren::-moz-tree-cell(active, selected, current, focus) {
159   border: 1px dotted #666699;
160 }
161
162 tree[seltype="text"] > treechildren::-moz-tree-cell-text(active, selected, current, focus) {
163   border: 1px dotted #666699;
164 }
165
166 /* ::::: lines connecting cells ::::: */
167
168 tree[seltype="cell"] > treechildren::-moz-tree-line,
169 tree[seltype="text"] > treechildren::-moz-tree-line,
170 treechildren::-moz-tree-line {
171   visibility: hidden;
172 }
173
174 tree[seltype="cell"] > treechildren::-moz-tree-line,
175 tree[seltype="text"] > treechildren::-moz-tree-line,
176 treechildren::-moz-tree-line {
177   border: 1px dotted #CCD0DD;
178 }
179
180 tree[seltype="cell"] > treechildren::-moz-tree-line(active, selected, focus),
181 treechildren::-moz-tree-line(selected, focus) {
182   border: 1px dotted #666699;
183 }
184
185 /* ::::: tree separator ::::: */
186
187 treechildren::-moz-tree-separator {
188   margin-top: 1px;
189   border: 1px outset #CCD0DD;
190   height: 2px;
191 }
192
193 /* ::::: drop feedback ::::: */
194
195 tree[seltype="cell"] > treechildren::-moz-tree-cell-text(primary, dropOn),
196 tree[seltype="text"] > treechildren::-moz-tree-cell-text(primary, dropOn),
197 treechildren::-moz-tree-cell-text(dropOn) {
198   background-color: #336699;
199   color: #FFFFFF;
200 }
201
202 treechildren::-moz-tree-drop-feedback {
203   background-color: #336699;
204   width: 50px;
205   height: 2px;
206   -moz-margin-start: 5px;
207 }
208
209 treechildren::-moz-tree-drop-feedback(selected) {
210   background-color: #FFFFFF;
211 }
212
213 /* ::::: tree checkbox ::::: */
214
215 treechildren::-moz-tree-checkbox {
216   list-style-image: url("chrome://global/skin/tree/checkbox.gif");
217 }
218
219 treechildren::-moz-tree-checkbox(checked) {
220   list-style-image: url("chrome://global/skin/tree/checkbox-checked.gif");
221 }
222
223 /* ::::: tree progress meter ::::: */
224
225 treechildren::-moz-tree-progressmeter {
226   margin: 0px 0px;
227   border: 1px inset #CCD0DD;
228   background-color: #999999;
229   color: #6699CC;
230 }
231
232 treechildren::-moz-tree-progressmeter(progressUndetermined) {
233   list-style-image: url("chrome://global/skin/progressmeter/progressmeter-busy.gif");
234   background-color: #CCD0DD;
235 }
236
237 treechildren::-moz-tree-cell-text(progressmeter) {
238   margin: 2px 4px;
239 }
240
241 /* ::::: tree columns ::::: */
242
243 treecol {
244   -moz-box-align: center;
245   -moz-box-pack: center;
246   border: 1px outset #CCD0DD;
247   background-color: #CCD0DD;
248   color: #000000;
249   padding: 1px 4px;
250 }
251
252 treecolpicker {
253   -moz-box-align: center;
254   -moz-box-pack: center;
255   border: 1px solid transparent;
256   background-color: #CCD0DD;
257   padding: 1px 0px;
258 }
259
260 .treecol-image {
261   padding: 0 1px;
262 }
263
264 .treecol-text {
265   margin: 0px !important;
266   padding: 0px !important;
267 }
268
269 treecol[hideheader="true"] {
270   border: none;
271   padding: 0;
272 }
273
274 /* ..... internal box ..... */
275
276 treecol:hover:active {
277   border: 1px solid #666699;
278   padding-top: 2px;
279   padding-bottom: 0px;
280   -moz-padding-start: 5px;
281   -moz-padding-end: 3px;
282 }
283
284 treecolpicker:hover:active {
285   border: 1px solid #666699;
286 }
287
288 .treecol-image:hover:active {
289   padding-top: 2px;
290   padding-bottom: 0px;
291   -moz-padding-start: 2px;
292   -moz-padding-end: 0px;
293 }
294
295 /* ::::: column drag and drop styles ::::: */
296
297 treecol[dragging="true"] {
298   border: 1px solid transparent;
299   background-color: #336699;
300   color: #000000;
301 }
302
303 treecol[insertafter="true"] {
304   border-right: 1px solid #000000;
305 }
306
307 treecol[insertbefore="true"] {
308   border-left: 1px solid #000000;
309 }
310
311 treechildren::-moz-tree-column(insertbefore) {
312   border-left: 1px solid #000000;
313 }
314
315 treechildren::-moz-tree-column(insertafter) {
316   border-right: 1px solid #000000;
317 }
318
319 /* ::::: sort direction indicator :::::  */
320
321 .treecol-sortdirection {
322   list-style-image: none;
323   width: 8px;  /* The image's width is 7 pixels */
324 }
325
326 treecol:not([hideheader="true"]) > .treecol-sortdirection[sortDirection="ascending"] {
327   list-style-image: url("chrome://global/skin/tree/sort-asc.gif");
328 }
329
330 treecol:not([hideheader="true"]) > .treecol-sortdirection[sortDirection="descending"] {
331   list-style-image: url("chrome://global/skin/tree/sort-desc.gif");
332 }
333
334 /* ::::: column picker :::::  */
335
336 .tree-columnpicker-icon {
337   list-style-image: url("chrome://global/skin/tree/columnpicker.gif");
338 }
339
340 /* ::::: twisty :::::  */
341
342 treechildren::-moz-tree-twisty {
343   -moz-padding-end: 2px;
344   padding-top: 1px;
345   width: 11px; /* The image's width is 11 pixels */
346   list-style-image: url("chrome://global/skin/tree/twisty-closed.gif");
347 }
348
349 treechildren::-moz-tree-twisty(open) {
350   width: 11px; /* The image's width is 11 pixels */
351   list-style-image: url("chrome://global/skin/tree/twisty-open.gif");
352 }
353
354 treechildren::-moz-tree-indentation {
355   width: 11px;
356 }
357
358 /* ::::: gridline style ::::: */
359
360 treechildren.gridlines::-moz-tree-cell {
361   border-right: 1px solid green;
362   border-bottom: 1px solid green;
363 }
364
365 treechildren.gridlines::-moz-tree-row {
366   border: none;
367 }
368
369 /* ::::: alternating background ::::: */
370
371 treechildren[alternatingbackground="true"]::-moz-tree-row(odd) {
372   background-color: #F5F7FF;
373 }
374
375 treechildren[alternatingbackground="true"]::-moz-tree-row(odd, selected) {
376   background-color: #A0A0A0;
377 }
378
379 treechildren[alternatingbackground="true"]::-moz-tree-row(odd, selected, focus) {
380   background-color: #6699CC;
381 }
382
383 /* ::::: editable tree ::::: */
384
385 treechildren::-moz-tree-row(selected, editing) {
386   background-color: transparent;
387   border: none;
388 }
389
390 treechildren::-moz-tree-cell-text(selected, editing) {
391   color: inherit;
392 }
393
394 .tree-input {
395   border: 1px solid #336699;
396   margin: 0;
397   -moz-margin-start: -4px;
398   padding: 1px;
399 }