update both themes for winstripe changes up to 2010-07-02
[themes.git] / EarlyBlue / global / resizer.css
... / ...
CommitLineData
1@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
2
3resizer {
4 -moz-appearance: resizer;
5 background: url("chrome://global/skin/icons/resizer.png") no-repeat;
6 cursor: se-resize;
7 width: 15px;
8 height: 15px;
9}
10
11resizer[rtl="true"],
12resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
13 -moz-transform: scaleX(-1);
14}
15
16resizer[dir="bottomleft"],
17resizer[dir="bottomend"][rtl="true"] {
18 cursor: sw-resize;
19}
20
21resizer[dir="top"],
22resizer[dir="bottom"] {
23 cursor: ns-resize;
24}
25
26resizer[dir="left"],
27resizer[dir="right"] {
28 cursor: ew-resize;
29}
30
31resizer[dir="topleft"] {
32 cursor: nw-resize;
33}
34
35resizer[dir="topright"] {
36 cursor: ne-resize;
37}