remove pre-Fx31 support for forward button
[themes.git] / LCARStrek / global / scrollbars.css
... / ...
CommitLineData
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5/* ===== scrollbars.css =================================================
6 == Styles used by XUL scrollbar-related elements.
7 ======================================================================= */
8
9@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
10@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */
11
12/* ::::: scrollbar ::::: */
13
14scrollbar {
15 -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar");
16 cursor: default;
17 background-color: #000000;
18 border-radius: 50%;
19 pointer-events: auto;
20}
21
22scrollbar[root="true"] {
23 position: relative;
24 z-index: 2147483647; /* largest positive value of a signed 32-bit integer */
25}
26
27@media all and (-moz-overlay-scrollbars) {
28 scrollbar:not([active="true"]),
29 scrollbar[disabled="true"] {
30 visibility: hidden;
31 }
32}
33
34/* ::::: slider ::::: */
35
36slider {
37 height: 13px;
38 background-color: #404048; /* #202024;*/
39}
40
41slider[orient="vertical"] {
42 width: 13px;
43}
44
45/* ::::: borders for thumb and buttons ::::: */
46
47thumb,
48scrollbarbutton {
49 border: none;
50 background: transparent 50% 50% no-repeat;
51 padding: 1px;
52 min-width: 13px;
53 min-height: 13px;
54}
55
56scrollbar:not([orient="vertical"]) > scrollbarbutton {
57 min-width: 16px;
58}
59
60scrollbar[orient="vertical"] > scrollbarbutton {
61 min-height: 16px;
62}
63
64
65/* ::::: thumb ::::: */
66
67thumb {
68 background-color: #A09090;
69 background-image: url("chrome://global/skin/scrollbar/thumb-vert-grip.gif");
70}
71
72thumb[orient="horizontal"] {
73 background-image: url("chrome://global/skin/scrollbar/thumb-horiz-grip.gif");
74}
75
76
77thumb:active,
78thumb:hover:active {
79 background-color: #008484;
80}
81
82thumb:hover {
83 background-color: #FFCF00;
84}
85
86thumb[disabled="true"] {
87 background-image: url("chrome://global/skin/scrollbar/thumb-vert-grip-disabled.gif");
88}
89
90thumb[orient="horizontal"][disabled="true"] {
91 background-image: url("chrome://global/skin/scrollbar/thumb-horiz-grip-disabled.gif");
92}
93
94/* ::::: scrollbar button ::::: */
95
96scrollbarbutton {
97 background-color: #C09070;
98}
99
100scrollbarbutton:hover:active,
101scrollbarbutton[active="true"] {
102 background-position: calc(50% + 1px) calc(50% + 1px);
103}
104
105scrollbarbutton:hover {
106 background-color: #FFCF00;
107}
108
109scrollbarbutton:hover:active {
110 background-color: #FF9F00;
111}
112
113scrollbarbutton[disabled="true"] {
114 background-color: #402858 !important;
115}
116
117/* XXX - scrollbar.xml always grabs the OS settings and we don't want that */
118scrollbarbutton[sbattr="scrollbar-up-bottom"],
119scrollbarbutton[sbattr="scrollbar-down-top"] {
120 display: none;
121}
122
123/* ::::: square at the corner of two scrollbars ::::: */
124
125scrollcorner {
126 -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar-base");
127 cursor: default;
128 background-color: #000000;
129 width: 13px;
130}
131
132/* ..... increment .... */
133
134scrollbarbutton[type="increment"] {
135 background-image: url("chrome://global/skin/scrollbar/arrow-right.png");
136 border-radius: 0 300px 300px 0;
137 -moz-border-start: 3px solid #000000;
138}
139
140scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {
141 background-image: url("chrome://global/skin/scrollbar/arrow-down.png");
142 border-radius: 0 0 300px 300px;
143 -moz-border-start: none;
144 border-top: 3px solid #000000;
145}
146
147/* ..... decrement .... */
148
149scrollbarbutton[type="decrement"] {
150 background-image: url("chrome://global/skin/scrollbar/arrow-left.png");
151 border-radius: 300px 0 0 300px;
152 -moz-border-end: 3px solid #000000;
153}
154
155scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {
156 background-image: url("chrome://global/skin/scrollbar/arrow-up.png");
157 border-radius: 300px 300px 0 0;
158 -moz-border-end: none;
159 border-bottom: 3px solid #000000;
160}
161
162/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
163/* ::::::::::::::::::::: MEDIA PRINT :::::::::::::::::::::: */
164/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
165@media print {
166 /* ::::: scrollbar ::::: */
167
168 html|div scrollbar {
169 -moz-appearance: scrollbartrack-horizontal;
170 -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar");
171 cursor: default;
172 background: url("chrome://global/skin/scrollbar/slider.gif") scrollbar;
173 }
174
175 html|div scrollbar[orient="vertical"]
176 {
177 -moz-appearance: scrollbartrack-vertical;
178 }
179
180 /* ::::: borders for thumb and buttons ::::: */
181
182 html|div thumb,
183 html|div scrollbarbutton {
184 border: 2px solid;
185 -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight;
186 -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow;
187 -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow;
188 -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight;
189 background-color: -moz-Dialog;
190 }
191
192 /* ::::: thumb (horizontal) ::::: */
193
194 html|div thumb {
195 -moz-appearance: scrollbarthumb-vertical;
196 min-height: 8px;
197 }
198
199 html|div thumb[orient="horizontal"] {
200 -moz-appearance: scrollbarthumb-horizontal;
201 min-width: 8px;
202 }
203
204 /* ::::: scrollbar button ::::: */
205
206 html|div scrollbarbutton {
207 background: -moz-Dialog no-repeat 50% 50%;
208 min-width: 16px;
209 min-height: 16px;
210 }
211
212 html|div scrollbarbutton:hover:active,
213 html|div scrollbarbutton[active="true"] {
214 -moz-border-top-colors: ThreeDShadow -moz-Dialog;
215 -moz-border-right-colors: ThreeDShadow -moz-Dialog;
216 -moz-border-bottom-colors: ThreeDShadow -moz-Dialog;
217 -moz-border-left-colors: ThreeDShadow -moz-Dialog;
218 background-position: 60% 60%;
219 }
220
221 /* ..... increment .... */
222
223 html|div scrollbarbutton[type="increment"] {
224 -moz-appearance: scrollbarbutton-right;
225 background-image: url("chrome://global/skin/scrollbar/arrow-right.png")
226 }
227
228 html|div scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {
229 -moz-appearance: scrollbarbutton-down;
230 background-image: url("chrome://global/skin/scrollbar/arrow-down.png")
231 }
232
233 /* ..... decrement .... */
234
235 html|div scrollbarbutton[type="decrement"] {
236 -moz-appearance: scrollbarbutton-left;
237 background-image: url("chrome://global/skin/scrollbar/arrow-left.png")
238 }
239
240 html|div scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {
241 -moz-appearance: scrollbarbutton-up;
242 background-image: url("chrome://global/skin/scrollbar/arrow-up.png")
243 }
244
245}