update LCARStrek changes for toolkit winstripe changes between 2008-09-21 and 2008...
[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
b1eaa419 38/* ===== scrollbars.css =================================================
39 == Styles used by XUL scrollbar-related elements.
40 ======================================================================= */
351107c9 41
f98e9249
RK
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
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
a12570b9 108scrollbarbutton:hover:active,
109scrollbarbutton[active="true"] {
b1eaa419 110 padding: 2px 0px 0px 2px;
3d6dd546 111}
b1eaa419 112
f98e9249
RK
113/* XXX - scrollbar.xml always grabs the OS settings and we don't want that */
114scrollbarbutton[sbattr="scrollbar-up-bottom"],
115scrollbarbutton[sbattr="scrollbar-down-top"] {
116 display: none;
117}
118
03f6f39c 119/* ::::: square at the corner of two scrollbars ::::: */
120
121scrollcorner {
3d6dd546 122 -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar-base");
123 cursor: default;
03f6f39c 124 background-color: #000000;
6046f027 125 width: 13px;
03f6f39c 126}
127
b1eaa419 128/* ..... increment .... */
129
130scrollbarbutton[type="increment"] {
131 background-image: url("chrome://global/skin/scrollbar/button-right.gif");
132 margin: 0px 0px 0px 3px;
133}
134
135scrollbarbutton[type="increment"]:hover {
136 background-image: url("chrome://global/skin/scrollbar/button-right-hover.gif");
137}
138
139scrollbarbutton[type="increment"][disabled="true"] {
140 background-image: url("chrome://global/skin/scrollbar/button-right-disabled.gif") !important;
141}
142
143scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {
144 background-image: url("chrome://global/skin/scrollbar/button-down.gif");
145 margin: 3px 0px 0px 0px;
146}
147
148scrollbar[orient="vertical"] > scrollbarbutton[type="increment"]:hover {
149 background-image: url("chrome://global/skin/scrollbar/button-down-hover.gif");
150}
151
152scrollbar[orient="vertical"] > scrollbarbutton[type="increment"][disabled="true"] {
153 background-image: url("chrome://global/skin/scrollbar/button-down-disabled.gif") !important;
154}
155
156/* ..... decrement .... */
157
158scrollbarbutton[type="decrement"] {
159 background-image: url("chrome://global/skin/scrollbar/button-left.gif");
160 margin: 0px 3px 0px 0px;
161}
162
163scrollbarbutton[type="decrement"]:hover {
164 background-image: url("chrome://global/skin/scrollbar/button-left-hover.gif");
165}
166
167scrollbarbutton[type="decrement"][disabled="true"] {
168 background-image: url("chrome://global/skin/scrollbar/button-left-disabled.gif") !important;
169}
170
171scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {
172 background-image: url("chrome://global/skin/scrollbar/button-up.gif");
173 margin: 0px 0px 3px 0px;
174}
175
176scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"]:hover {
177 background-image: url("chrome://global/skin/scrollbar/button-up-hover.gif");
178}
179
180scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"][disabled="true"] {
181 background-image: url("chrome://global/skin/scrollbar/button-up-disabled.gif") !important;
182}
b1e5c9b1 183
184/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
185/* ::::::::::::::::::::: MEDIA PRINT :::::::::::::::::::::: */
186/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
187@media print {
188 /* ::::: scrollbar ::::: */
189
190 html|div scrollbar {
191 -moz-appearance: scrollbartrack-horizontal;
192 -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar");
193 cursor: default;
194 background: url("chrome://global/skin/scrollbar/slider.gif") scrollbar;
195 }
196
3d6dd546 197 html|div scrollbar[orient="vertical"]
b1e5c9b1 198 {
199 -moz-appearance: scrollbartrack-vertical;
200 }
201
202 /* ::::: borders for thumb and buttons ::::: */
203
204 html|div thumb,
205 html|div scrollbarbutton {
206 border: 2px solid;
207 -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight;
208 -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow;
209 -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow;
210 -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight;
211 background-color: -moz-Dialog;
212 }
213
214 /* ::::: thumb (horizontal) ::::: */
215
216 html|div thumb {
217 -moz-appearance: scrollbarthumb-vertical;
218 min-height: 8px;
219 }
220
221 html|div thumb[orient="horizontal"] {
222 -moz-appearance: scrollbarthumb-horizontal;
223 min-width: 8px;
224 }
225
b1e5c9b1 226 /* ::::: scrollbar button ::::: */
227
228 html|div scrollbarbutton {
cfae8c74 229 background: -moz-Dialog no-repeat 50% 50%;
b1e5c9b1 230 min-width: 16px;
231 min-height: 16px;
232 }
233
a12570b9 234 html|div scrollbarbutton:hover:active,
235 html|div scrollbarbutton[active="true"] {
b1e5c9b1 236 -moz-border-top-colors: ThreeDShadow -moz-Dialog;
237 -moz-border-right-colors: ThreeDShadow -moz-Dialog;
238 -moz-border-bottom-colors: ThreeDShadow -moz-Dialog;
239 -moz-border-left-colors: ThreeDShadow -moz-Dialog;
cfae8c74 240 background-position: 60% 60%;
b1e5c9b1 241 }
242
243 /* ..... increment .... */
244
245 html|div scrollbarbutton[type="increment"] {
246 -moz-appearance: scrollbarbutton-right;
247 background-image: url("chrome://global/skin/arrow/arrow-rit.gif")
248 }
249
250 html|div scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {
251 -moz-appearance: scrollbarbutton-down;
252 background-image: url("chrome://global/skin/arrow/arrow-dn.gif")
253 }
254
255 /* ..... decrement .... */
256
257 html|div scrollbarbutton[type="decrement"] {
258 -moz-appearance: scrollbarbutton-left;
259 background-image: url("chrome://global/skin/arrow/arrow-lft.gif")
260 }
261
262 html|div scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {
263 -moz-appearance: scrollbarbutton-up;
264 background-image: url("chrome://global/skin/arrow/arrow-up.gif")
265 }
266
03f6f39c 267}