sync both themes with toolkit windows theme changes in Mozilla 35 cycle
[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   background-size: 100% 100%;
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   transform: scaleX(-1);
14 }
15
16 resizer[dir="left"],
17 resizer[dir="bottomleft"],
18 resizer[dir="bottomstart"] {
19   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 }