adopt both themes for changes affecting add-ons manager between Mozilla 6 and 7
[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="bottomleft"],
17 resizer[dir="bottomend"][rtl="true"] {
18   cursor: sw-resize;
19 }
20
21 resizer[dir="top"],
22 resizer[dir="bottom"] {
23   cursor: ns-resize;
24 }
25
26 resizer[dir="left"],
27 resizer[dir="right"] {
28   cursor: ew-resize;
29 }
30
31 resizer[dir="topleft"] {
32   cursor: nw-resize;
33 }
34
35 resizer[dir="topright"] {
36   cursor: ne-resize;
37 }