28974ecfcdce02f3b15ce2ea12539edb61402151
[themes.git] / EarlyBlue / global / resizer.css
1 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
2
3 resizer {
4   background-color: #CCD0DD;
5 }
6
7 resizer[dir="top"],
8 resizer[dir="bottom"] {
9   cursor: ns-resize;
10 }
11
12 resizer[dir="left"],
13 resizer[dir="right"] {
14   cursor: ew-resize;
15 }
16
17 resizer[dir="topleft"] {
18   cursor: nw-resize;
19 }
20
21 resizer[dir="bottomright"],
22 resizer[dir="bottomend"]:-moz-locale-dir(ltr) {
23   cursor: se-resize;
24 }
25
26 resizer[dir="topright"] {
27   cursor: ne-resize;
28 }
29
30 resizer[dir="bottomleft"],
31 resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
32   cursor: sw-resize;
33 }
34
35 resizer[dir="bottomright"]:-moz-locale-dir(ltr),
36 resizer[dir="bottomend"] {
37   background-image: url("chrome://global/skin/icons/resizer.png");
38   background-position: bottom right;
39   width: 15px;
40   height: 15px;
41 }