big tree->listbox/outliner; outliner-> update
[themes.git] / LCARStrek / global / tree.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
38@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
39
7aa65558 40/* ===== tree.css =======================================================
41 == Styles used by the XUL tree element.
42 ======================================================================= */
43
44/* ::::: tree ::::: */
45
46tree {
47 -moz-border-radius: 5px;
48 border-spacing: 0px;
49 border: 1px solid #9C9CFF;
50 background-color: #000000;
51 color: #FF9F00;
52}
53
54/* ::::: tree rows ::::: */
55
56treechildren:-moz-tree-row {
57 border: 1px solid transparent;
58 height: 18px;
59}
60
61treechildren:-moz-tree-row(selected) {
62 background-color: #008484;
63 color: #FFCF00;
64}
65
66treechildren:-moz-tree-row(selected, focus) {
67 background-color: #008484;
68 color: #FFCF00;
69}
70
71treechildren:-moz-tree-row(current, focus) {
72 border: 1px dotted #008484;
73}
74
75/* ::::: tree cells ::::: */
76
77treechildren:-moz-tree-cell {
78 padding: 0px 0px 1px 2px;
79}
80
81treechildren:-moz-tree-cell-text {
82 color: inherit;
83 border: 2px solid transparent;
84}
85
86/*
87treechildren:-moz-tree-cell-text(selected) {
88 color: #FFFFFF;
89}
90
91treechildren:-moz-tree-cell-text(selected, focus) {
92 color: #FFFFFF;
93}
94*/
95
96/* ::::: lines connecting cells ::::: */
97
98treechildren:-moz-tree-line {
99 visibility: hidden;
100}
101
102/*
103treechildren:-moz-tree-line {
104 border: 1px dotted grey;
105}
106
107treechildren:-moz-tree-line(selected) {
108 border: 1px dotted black;
109}
110*/
111
112/* ::::: tree separator ::::: */
113
114treechildren:-moz-tree-separator {
115 border: 1px solid #9C9CFF;
116}
117
118/* ::::: drop feedback ::::: */
119
120treechildren:-moz-tree-cell-text(dropOn) {
121 background-color: #008484;
122 color: #FFCF00;
123}
124
125treechildren:-moz-tree-drop-feedback {
126 background-color: #008484;
127 width: 50px;
128 height: 2px;
129 margin-left: 5px;
130}
131
132treechildren:-moz-tree-drop-feedback(selected) {
133 background-color: #FFCF00;
134}
135
136/* ::::: tree columns ::::: */
137
138treecol {
139 -moz-box-align: center;
140 -moz-box-pack: center;
141 border: 1px solid #FF9F00;
142 background-color: #9C9CFF;
143 color: #000000;
144 padding: 1px 4px;
145}
146
147treecolpicker {
148 -moz-box-align: center;
149 -moz-box-pack: center;
150 border: 1px solid transparent;
151 background-color: #000000;
152 padding: 1px 0px;
153}
154
155.treecol-image {
156 padding: 1px;
157}
158
159.treecol-text {
160 margin: 0px !important;
161 padding: 0px !important;
162}
163
164/* ..... internal box ..... */
165
166treecol:hover:active {
167 border: 1px solid #FFCF00;
168 padding: 2px 3px 0px 5px;
169}
351107c9 170
7aa65558 171treecolpicker:hover {
172 background-color: #FFCF00;
173}
351107c9 174
7aa65558 175treecolpicker:hover:active {
176 border: 1px solid #FFCF00;
177 background-color: #FF9F00;
178}
179
180.treecol-image:hover:active {
181 padding: 2px 0px 0px 2px;
182}
183
184/* ::::: column drag and drop styles ::::: */
185
186treecol[dragging="true"] {
187 border: 1px solid transparent;
188 background-color: #008484;
189 color: #000000;
190}
191
192treecol[insertafter="true"] {
193 border-right: 1px solid #FFCF00;
194}
195
196treecol[insertbefore="true"] {
197 border-left: 1px solid #FFCF00;
198}
199
200treechildren:-moz-tree-column(insertbefore) {
201 border-left: 1px solid #FFCF00;
202}
203
204treechildren:-moz-tree-column(insertafter) {
205 border-right: 1px solid #FFCF00;
206}
207
208/* ::::: sort direction indicator ::::: */
209
210.treecol-sortdirection {
211 list-style-image: none;
212}
213
214.sortDirectionIndicator[sortDirection="ascending"] .treecol-sortdirection {
215 list-style-image: url("chrome://global/skin/tree/sort-asc.gif");
216}
217
218.sortDirectionIndicator[sortDirection="descending"] .treecol-sortdirection {
219 list-style-image: url("chrome://global/skin/tree/sort-desc.gif");
220}
221
222/* ::::: column picker ::::: */
223
224.outliner-columnpicker-icon {
225 list-style-image: url("chrome://global/skin/tree/columnpicker.gif");
226}
227
228treecolpicker:hover > .outliner-columnpicker-icon,
229treecolpicker:hover:active > .outliner-columnpicker-icon {
230 list-style-image: url("chrome://global/skin/tree/columnpicker-hover.gif");
231}
232
233/* ::::: twisty ::::: */
234
235treechildren:-moz-tree-twisty {
236 padding-right: 2px;
237 width: 12px; /* The image's width is 12 pixels */
238 list-style-image: url("chrome://global/skin/tree/twisty-closed.gif");
239}
351107c9 240
7aa65558 241treechildren:-moz-tree-twisty(open) {
242 width: 12px; /* The image's width is 12 pixels */
243 list-style-image: url("chrome://global/skin/tree/twisty-open.gif");
244}
245
246treechildren:-moz-tree-indentation {
247 width: 10px;
248}
249
250/* ::::: gridline style ::::: */
251
252treechildren.gridlines:-moz-tree-cell {
253 border-right: 1px solid green;
254 border-bottom: 1px solid green;
255}
256
257treechildren.gridlines:-moz-tree-row {
258 border: none;
259}