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