improve status bar panels look
[themes.git] / LCARStrek / global / resizer.css
1 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
2
3 /*
4 resizer {
5   background-color: #000000;
6 }
7 */
8
9 resizer[dir="top"],
10 resizer[dir="bottom"] {
11   cursor: ns-resize;
12 }
13
14 resizer[dir="left"],
15 resizer[dir="right"] {
16   cursor: ew-resize;
17 }
18
19 resizer[dir="topleft"] {
20   cursor: nw-resize;
21 }
22
23 resizer[dir="bottomright"],
24 resizer[dir="bottomend"]:-moz-locale-dir(ltr) {
25   cursor: se-resize;
26 }
27
28 resizer[dir="topright"] {
29   cursor: ne-resize;
30 }
31
32 resizer[dir="bottomleft"],
33 resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
34   cursor: sw-resize;
35 }
36
37 resizer[dir="bottomright"]:-moz-locale-dir(ltr),
38 resizer[dir="bottomend"] {
39   background-image: url("chrome://global/skin/icons/resizer.png");
40   background-position: bottom right;
41   width: 15px;
42   height: 15px;
43 }