Some updates of the last days, following classic developement
[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");
39
b1eaa419 40/* ===== scrollbars.css =================================================
41 == Styles used by XUL scrollbar-related elements.
42 ======================================================================= */
351107c9 43
b1eaa419 44/* ::::: scrollbar ::::: */
45
46scrollbar {
47 -moz-binding: url("chrome://global/content/bindings/scrollbar.xml#scrollbar");
48 cursor: default;
49 background-color: #000000;
50}
51
52/* ::::: slider ::::: */
53
54slider {
55 height: 13px;
56}
57
58slider[orient="vertical"] {
59 width: 13px;
60}
61
62/* ::::: borders for thumb and buttons ::::: */
63
64thumb,
65scrollbarbutton {
66 border: none;
67 background: transparent 50% 50% no-repeat;
68 padding: 1px;
69 min-width: 13px;
70 min-height: 13px;
351107c9 71}
72
b1eaa419 73/* ::::: thumb ::::: */
74
75thumb {
76 background-color: #9C9CFF;
77 background-image: url("chrome://global/skin/scrollbar/thumb-vert-grip.gif");
351107c9 78}
79
b1eaa419 80thumb[orient="horizontal"] {
81 background-image: url("chrome://global/skin/scrollbar/thumb-horiz-grip.gif");
351107c9 82}
83
b1eaa419 84
351107c9 85thumb:active,
86thumb:hover:active {
87 background-color: #008484;
88}
89
90thumb:hover {
91 background-color: #FFCF00;
92}
b1eaa419 93
94thumb[disabled="true"] {
95 background-image: url("chrome://global/skin/scrollbar/thumb-vert-grip-disabled.gif");
96}
97
98thumb[orient="horizontal"][disabled="true"] {
99 background-image: url("chrome://global/skin/scrollbar/thumb-horiz-grip-disabled.gif");
100}
101
102/* ::::: scrollbar button ::::: */
103
104scrollbarbutton {
105}
106
107scrollbarbutton:hover:active {
108 padding: 2px 0px 0px 2px;
109}
110
111/* ..... increment .... */
112
113scrollbarbutton[type="increment"] {
114 background-image: url("chrome://global/skin/scrollbar/button-right.gif");
115 margin: 0px 0px 0px 3px;
116}
117
118scrollbarbutton[type="increment"]:hover {
119 background-image: url("chrome://global/skin/scrollbar/button-right-hover.gif");
120}
121
122scrollbarbutton[type="increment"][disabled="true"] {
123 background-image: url("chrome://global/skin/scrollbar/button-right-disabled.gif") !important;
124}
125
126scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {
127 background-image: url("chrome://global/skin/scrollbar/button-down.gif");
128 margin: 3px 0px 0px 0px;
129}
130
131scrollbar[orient="vertical"] > scrollbarbutton[type="increment"]:hover {
132 background-image: url("chrome://global/skin/scrollbar/button-down-hover.gif");
133}
134
135scrollbar[orient="vertical"] > scrollbarbutton[type="increment"][disabled="true"] {
136 background-image: url("chrome://global/skin/scrollbar/button-down-disabled.gif") !important;
137}
138
139/* ..... decrement .... */
140
141scrollbarbutton[type="decrement"] {
142 background-image: url("chrome://global/skin/scrollbar/button-left.gif");
143 margin: 0px 3px 0px 0px;
144}
145
146scrollbarbutton[type="decrement"]:hover {
147 background-image: url("chrome://global/skin/scrollbar/button-left-hover.gif");
148}
149
150scrollbarbutton[type="decrement"][disabled="true"] {
151 background-image: url("chrome://global/skin/scrollbar/button-left-disabled.gif") !important;
152}
153
154scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {
155 background-image: url("chrome://global/skin/scrollbar/button-up.gif");
156 margin: 0px 0px 3px 0px;
157}
158
159scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"]:hover {
160 background-image: url("chrome://global/skin/scrollbar/button-up-hover.gif");
161}
162
163scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"][disabled="true"] {
164 background-image: url("chrome://global/skin/scrollbar/button-up-disabled.gif") !important;
165}