bumps for new versions
[themes.git] / EarlyBlue / global / scale.css
CommitLineData
9099c61d
RK
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/. */
128000f4 4
1d4ddf30 5/* ===== scale.css =================================================
6 == Styles used by XUL scale elements.
7 ======================================================================= */
8
128000f4 9@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
f6e0a33f 10
1d4ddf30 11/* ::::: scale ::::: */
12
13.scale-slider {
14 background: url("chrome://global/skin/scale/scale-tray-horiz.gif") 0% 50% repeat-x;
15 margin: 2px 4px;
16 width: 100px;
b310ca09 17 height: auto;
c9b2b3ef 18}
19
1d4ddf30 20.scale-slider[orient="vertical"]
21{
22 background: url("chrome://global/skin/scale/scale-tray-vert.gif") 50% 0% repeat-y;
23 margin: 4px 2px;
24 width: auto;
25 height: 100px;
f2450795 26}
27
1d4ddf30 28/* ::::: scale thumb ::::: */
29
30.scale-thumb {
31 border: 1px inset #CCD0DD !important;
32 background-color: #CCD0DD;
33 min-width: 30px;
34 min-height: 15px;
c9b2b3ef 35}
36
1d4ddf30 37.scale-thumb[orient="vertical"] {
38 min-width: 15px;
39 min-height: 30px;
7c110a07 40}
41
1d4ddf30 42.scale-thumb[disabled="true"] {
43 border: 1px outset #CCD0DD !important;
44}