news changes from classic
[themes.git] / LCARStrek / global / splitter.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
40/******* Splitters *******/
41
42/**
43 * XXX - We want to deprecate all usages of 'box' in this file and replace with
44 * vbox/hbox. This should happen after the chrome is converted to use
45 * these XUL elements.
46 */
47
48 splitter
49 {
50 cursor : e-resize;
51 background-color : #9C9CFF;
52 -moz-box-align : center;
53 -moz-box-pack : center;
54 border : none;
55 border-top : 3px solid black;
56 border-bottom : 3px solid black;
57 min-width : 6px;
58 min-height : 6px;
59 margin : 0px 3px 0px 3px;
60 }
61
62 /* This takes margin away from outliner header splitters, else they look ugly! */
63 splitter.tree-splitter {
64 margin : 0px;
65 }
66
67 grippy, grippy[collapse="before"]
68 {
69 border : none;
70 border-top : 3px solid black;
71 border-bottom : 3px solid black;
72 list-style-image : url("chrome://global/skin/grippy-vertical-before.gif");
73 -moz-box-align : center;
74 -moz-box-pack : center;
75 cursor : pointer;
76 min-width : 6px;
77 min-height : 6px;
78 padding : 1px;
79 }
80
81 grippy:hover
82 {
83 background-color : #FFCF00;
84 }
85
86 grippy:hover:active
87 {
88 border : none;
89 }
90
91 splitter[state="collapsed"] > grippy
92 {
93 list-style-image : url("chrome://global/skin/grippy-vertical-after.gif");
94 }
95
96 .grippy-box
97 {
98 }
99
100 .grippy-image
101 {
102 list-style-image : inherit;
103 }
104
105 splitter[state="dragging"],
106 splitter:hover:active
107 {
108 background-color : #FFCF00;
109 }
110
111 rows > splitter
112 {
113 cursor : n-resize;
114 }
115
116 splitter[orient="vertical"]
117 {
118 cursor : n-resize;
119 border : none;
120 border-left : 3px solid black;
121 border-right : 3px solid black;
122 margin : 3px 0px 3px 0px;
123 }
124
125/* Grippy alignment */
126
127/* Vertical splitter (between two boxes, horizontally stacked), collapse to left */
128 splitter > grippy
129 {
130 list-style-image : url("chrome://global/skin/grippy-vertical-before.gif");
131 }
132
133 splitter > grippy > .grippy-box
134 {
135 border-left : none;
136 border-right : none;
137 }
138
139 splitter[state="collapsed"] > grippy
140 {
141 list-style-image : url("chrome://global/skin/grippy-vertical-after.gif");
142 }
143
144/* Vertical splitter (between two boxes, horizontally stacked), collapse to right */
145 splitter[collapse="after"] > grippy
146 {
147 list-style-image : url("chrome://global/skin/grippy-vertical-after.gif");
148 }
149
150 splitter[collapse="after"][state="collapsed"] > grippy
151 {
152 list-style-image : url("chrome://global/skin/grippy-vertical-before.gif");
153 }
154
155/* Horizontal splitter (between two boxes, vertically stacked), collapse to left */
156 splitter[orient="vertical"] > grippy
157 {
158 list-style-image : url("chrome://global/skin/grippy-horizontal-before.gif");
159 -moz-box-align : center;
160 -moz-box-pack : center;
161 border : none;
162 border-left : 3px solid black;
163 border-right : 3px solid black;
164 }
165
166 splitter[orient="vertical"] > grippy > .grippy-box
167 {
168 }
169
170 splitter[state="collapsed"][orient="vertical"] > grippy
171 {
172 list-style-image : url("chrome://global/skin/grippy-horizontal-after.gif");
173 }
174
175/* Horizontal splitter (between two boxes, vertically stacked), collapse to right */
176 splitter[collapse="after"][orient="vertical"] > grippy
177 {
178 list-style-image : url("chrome://global/skin/grippy-horizontal-after.gif");
179 }
180
181 splitter[collapse="after"][state="collapsed"][orient="vertical"] > grippy
182 {
183 list-style-image : url("chrome://global/skin/grippy-horizontal-before.gif");
184 }