adjust both themes for changes in toolkit winstripe in Mozilla 19 cycle
[themes.git] / EarlyBlue / 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 -moz-appearance: resizer;
5 background: url("chrome://global/skin/icons/resizer.png") no-repeat;
a7145e95 6 background-size: 100% 100%;
f0c3317f
RK
7 cursor: se-resize;
8 width: 15px;
9 height: 15px;
10}
11
12resizer[rtl="true"],
13resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
71a617ff 14 transform: scaleX(-1);
f0c3317f
RK
15}
16
154ee8b3
RK
17resizer[dir="left"],
18resizer[dir="bottomleft"],
19resizer[dir="bottomstart"] {
71a617ff 20 transform: scaleX(-1);
154ee8b3
RK
21}
22
f0c3317f 23resizer[dir="bottomleft"],
154ee8b3 24resizer[dir="bottomstart"]:not([rtl="true"]):not(:-moz-locale-dir(rtl)),
f0c3317f
RK
25resizer[dir="bottomend"][rtl="true"] {
26 cursor: sw-resize;
c0fb45ea
RK
27}
28
18f5421a
RK
29resizer[dir="top"],
30resizer[dir="bottom"] {
31 cursor: ns-resize;
32}
33
34resizer[dir="left"],
35resizer[dir="right"] {
36 cursor: ew-resize;
37}
38
39resizer[dir="topleft"] {
40 cursor: nw-resize;
41}
42
18f5421a
RK
43resizer[dir="topright"] {
44 cursor: ne-resize;
45}