]>
Commit | Line | Data |
---|---|---|
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 | background-size: 100% 100%; | |
7 | cursor: se-resize; | |
8 | width: 15px; | |
9 | height: 15px; | |
10 | } | |
11 | ||
12 | resizer[rtl="true"], | |
13 | resizer[dir="bottomend"]:-moz-locale-dir(rtl) { | |
14 | transform: scaleX(-1); | |
15 | } | |
16 | ||
17 | resizer[dir="left"], | |
18 | resizer[dir="bottomleft"], | |
19 | resizer[dir="bottomstart"] { | |
20 | transform: scaleX(-1); | |
21 | } | |
22 | ||
23 | resizer[dir="bottomleft"], | |
24 | resizer[dir="bottomstart"]:not([rtl="true"]):not(:-moz-locale-dir(rtl)), | |
25 | resizer[dir="bottomend"][rtl="true"] { | |
26 | cursor: sw-resize; | |
27 | } | |
28 | ||
29 | resizer[dir="top"], | |
30 | resizer[dir="bottom"] { | |
31 | cursor: ns-resize; | |
32 | } | |
33 | ||
34 | resizer[dir="left"], | |
35 | resizer[dir="right"] { | |
36 | cursor: ew-resize; | |
37 | } | |
38 | ||
39 | resizer[dir="topleft"] { | |
40 | cursor: nw-resize; | |
41 | } | |
42 | ||
43 | resizer[dir="topright"] { | |
44 | cursor: ne-resize; | |
45 | } |