some corrections and finishing touches to that LCARStrek works well for Firefox 55...
[themes.git] / LCARStrek / global / resizer.css
... / ...
CommitLineData
1@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
2
3resizer {
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
11resizer[rtl="true"],
12resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
13 transform: scaleX(-1);
14}
15
16resizer[dir="left"],
17resizer[dir="bottomleft"],
18resizer[dir="bottomstart"] {
19 transform: scaleX(-1);
20}
21
22resizer[dir="bottomleft"],
23resizer[dir="bottomstart"]:not([rtl="true"]):not(:-moz-locale-dir(rtl)),
24resizer[dir="bottomend"][rtl="true"] {
25 cursor: sw-resize;
26}
27
28resizer[dir="top"],
29resizer[dir="bottom"] {
30 cursor: ns-resize;
31}
32
33resizer[dir="left"],
34resizer[dir="right"] {
35 cursor: ew-resize;
36}
37
38resizer[dir="topleft"] {
39 cursor: nw-resize;
40}
41
42resizer[dir="topright"] {
43 cursor: ne-resize;
44}