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