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