prepare for 1.8a release
[themes.git] / LCARStrek / global / scrollbars.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");
b1e5c9b1 39@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */
351107c9 40
b1eaa419 41/* ===== scrollbars.css =================================================
42 == Styles used by XUL scrollbar-related elements.
43 ======================================================================= */
351107c9 44
b1eaa419 45/* ::::: scrollbar ::::: */
46
47scrollbar {
48 -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar");
49 cursor: default;
50 background-color: #000000;
51}
52
53/* ::::: slider ::::: */
54
55slider {
56 height: 13px;
57}
58
59slider[orient="vertical"] {
60 width: 13px;
61}
62
63/* ::::: borders for thumb and buttons ::::: */
64
65thumb,
66scrollbarbutton {
67 border: none;
68 background: transparent 50% 50% no-repeat;
69 padding: 1px;
70 min-width: 13px;
71 min-height: 13px;
351107c9 72}
73
b1eaa419 74/* ::::: thumb ::::: */
75
76thumb {
77 background-color: #9C9CFF;
78 background-image: url("chrome://global/skin/scrollbar/thumb-vert-grip.gif");
351107c9 79}
80
b1eaa419 81thumb[orient="horizontal"] {
82 background-image: url("chrome://global/skin/scrollbar/thumb-horiz-grip.gif");
351107c9 83}
84
b1eaa419 85
351107c9 86thumb:active,
87thumb:hover:active {
88 background-color: #008484;
89}
90
91thumb:hover {
92 background-color: #FFCF00;
93}
b1eaa419 94
95thumb[disabled="true"] {
96 background-image: url("chrome://global/skin/scrollbar/thumb-vert-grip-disabled.gif");
97}
98
99thumb[orient="horizontal"][disabled="true"] {
100 background-image: url("chrome://global/skin/scrollbar/thumb-horiz-grip-disabled.gif");
101}
102
103/* ::::: scrollbar button ::::: */
104
105scrollbarbutton {
106}
107
108scrollbarbutton:hover:active {
109 padding: 2px 0px 0px 2px;
3d6dd546 110}
b1eaa419 111
03f6f39c 112/* ::::: square at the corner of two scrollbars ::::: */
113
114scrollcorner {
3d6dd546 115 -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar-base");
116 cursor: default;
03f6f39c 117 background-color: #000000;
118}
119
b1eaa419 120/* ..... increment .... */
121
122scrollbarbutton[type="increment"] {
123 background-image: url("chrome://global/skin/scrollbar/button-right.gif");
124 margin: 0px 0px 0px 3px;
125}
126
127scrollbarbutton[type="increment"]:hover {
128 background-image: url("chrome://global/skin/scrollbar/button-right-hover.gif");
129}
130
131scrollbarbutton[type="increment"][disabled="true"] {
132 background-image: url("chrome://global/skin/scrollbar/button-right-disabled.gif") !important;
133}
134
135scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {
136 background-image: url("chrome://global/skin/scrollbar/button-down.gif");
137 margin: 3px 0px 0px 0px;
138}
139
140scrollbar[orient="vertical"] > scrollbarbutton[type="increment"]:hover {
141 background-image: url("chrome://global/skin/scrollbar/button-down-hover.gif");
142}
143
144scrollbar[orient="vertical"] > scrollbarbutton[type="increment"][disabled="true"] {
145 background-image: url("chrome://global/skin/scrollbar/button-down-disabled.gif") !important;
146}
147
148/* ..... decrement .... */
149
150scrollbarbutton[type="decrement"] {
151 background-image: url("chrome://global/skin/scrollbar/button-left.gif");
152 margin: 0px 3px 0px 0px;
153}
154
155scrollbarbutton[type="decrement"]:hover {
156 background-image: url("chrome://global/skin/scrollbar/button-left-hover.gif");
157}
158
159scrollbarbutton[type="decrement"][disabled="true"] {
160 background-image: url("chrome://global/skin/scrollbar/button-left-disabled.gif") !important;
161}
162
163scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {
164 background-image: url("chrome://global/skin/scrollbar/button-up.gif");
165 margin: 0px 0px 3px 0px;
166}
167
168scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"]:hover {
169 background-image: url("chrome://global/skin/scrollbar/button-up-hover.gif");
170}
171
172scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"][disabled="true"] {
173 background-image: url("chrome://global/skin/scrollbar/button-up-disabled.gif") !important;
174}
b1e5c9b1 175
176/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
177/* ::::::::::::::::::::: MEDIA PRINT :::::::::::::::::::::: */
178/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
179@media print {
180 /* ::::: scrollbar ::::: */
181
182 html|div scrollbar {
183 -moz-appearance: scrollbartrack-horizontal;
184 -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar");
185 cursor: default;
186 background: url("chrome://global/skin/scrollbar/slider.gif") scrollbar;
187 }
188
3d6dd546 189 html|div scrollbar[orient="vertical"]
b1e5c9b1 190 {
191 -moz-appearance: scrollbartrack-vertical;
192 }
193
194 /* ::::: borders for thumb and buttons ::::: */
195
196 html|div thumb,
197 html|div scrollbarbutton {
198 border: 2px solid;
199 -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight;
200 -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow;
201 -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow;
202 -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight;
203 background-color: -moz-Dialog;
204 }
205
206 /* ::::: thumb (horizontal) ::::: */
207
208 html|div thumb {
209 -moz-appearance: scrollbarthumb-vertical;
210 min-height: 8px;
211 }
212
213 html|div thumb[orient="horizontal"] {
214 -moz-appearance: scrollbarthumb-horizontal;
215 min-width: 8px;
216 }
217
218 html|div thumb > gripper {
219 -moz-appearance: scrollbargripper-vertical;
220 }
221
222 html|div thumb[orient="horizontal"] > gripper {
223 -moz-appearance: scrollbargripper-horizontal;
224 }
225
226 /* ::::: scrollbar button ::::: */
227
228 html|div scrollbarbutton {
229 background: -moz-Dialog no-repeat 0px 1px;
230 min-width: 16px;
231 min-height: 16px;
232 }
233
234 html|div scrollbarbutton:hover:active {
235 -moz-border-top-colors: ThreeDShadow -moz-Dialog;
236 -moz-border-right-colors: ThreeDShadow -moz-Dialog;
237 -moz-border-bottom-colors: ThreeDShadow -moz-Dialog;
238 -moz-border-left-colors: ThreeDShadow -moz-Dialog;
239 background-position: 1px 2px;
240 }
241
242 /* ..... increment .... */
243
244 html|div scrollbarbutton[type="increment"] {
245 -moz-appearance: scrollbarbutton-right;
246 background-image: url("chrome://global/skin/arrow/arrow-rit.gif")
247 }
248
249 html|div scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {
250 -moz-appearance: scrollbarbutton-down;
251 background-image: url("chrome://global/skin/arrow/arrow-dn.gif")
252 }
253
254 /* ..... decrement .... */
255
256 html|div scrollbarbutton[type="decrement"] {
257 -moz-appearance: scrollbarbutton-left;
258 background-image: url("chrome://global/skin/arrow/arrow-lft.gif")
259 }
260
261 html|div scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {
262 -moz-appearance: scrollbarbutton-up;
263 background-image: url("chrome://global/skin/arrow/arrow-up.gif")
264 }
265
03f6f39c 266}