some corrections and finishing touches to that LCARStrek works well for Firefox 55...
[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 background-size: 100% 100%;
7 cursor: se-resize;
8 width: 15px;
9 height: 15px;
10}
11
12resizer[rtl="true"],
13resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
14 transform: scaleX(-1);
15}
16
17resizer[dir="left"],
18resizer[dir="bottomleft"],
19resizer[dir="bottomstart"] {
20 transform: scaleX(-1);
21}
22
23resizer[dir="bottomleft"],
24resizer[dir="bottomstart"]:not([rtl="true"]):not(:-moz-locale-dir(rtl)),
25resizer[dir="bottomend"][rtl="true"] {
26 cursor: sw-resize;
27}
28
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
43resizer[dir="topright"] {
44 cursor: ne-resize;
45}