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