2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2009-01-18 02:28:19 -08:00
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
|
2010-06-21 05:37:35 -07:00
|
|
|
resizer {
|
|
|
|
-moz-appearance: resizer;
|
|
|
|
background: url("chrome://global/skin/icons/resizer.png") no-repeat;
|
2012-10-17 01:48:21 -07:00
|
|
|
background-size: 100% 100%;
|
2010-06-21 05:37:35 -07:00
|
|
|
cursor: se-resize;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
}
|
2012-12-05 14:49:28 -08:00
|
|
|
@media (min-resolution: 2dppx) {
|
|
|
|
resizer {
|
|
|
|
background-image: url("chrome://global/skin/icons/resizer@2x.png");
|
|
|
|
background-size: 100% 100%;
|
|
|
|
}
|
|
|
|
}
|
2010-06-21 05:37:35 -07:00
|
|
|
|
2010-07-08 08:27:47 -07:00
|
|
|
resizer[type="window"] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2010-06-21 05:37:35 -07:00
|
|
|
resizer[rtl="true"],
|
|
|
|
resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
|
|
|
|
background: url("chrome://global/skin/icons/resizer-rtl.png") no-repeat;
|
|
|
|
}
|
2012-12-05 14:49:28 -08:00
|
|
|
@media (min-resolution: 2dppx) {
|
|
|
|
resizer[rtl="true"],
|
|
|
|
resizer[dir="bottomend"]:-moz-locale-dir(rtl) {
|
|
|
|
background-image: url("chrome://global/skin/icons/resizer-rtl@2x.png");
|
|
|
|
background-size: 100% 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-21 05:37:35 -07:00
|
|
|
|
2011-07-29 02:38:41 -07:00
|
|
|
resizer[dir="left"],
|
|
|
|
resizer[dir="bottomleft"],
|
|
|
|
resizer[dir="bottomstart"] {
|
2012-07-10 18:00:06 -07:00
|
|
|
transform: scaleX(-1);
|
2011-07-29 02:38:41 -07:00
|
|
|
}
|
|
|
|
|
2010-06-21 05:37:35 -07:00
|
|
|
resizer[dir="bottomleft"],
|
2011-07-29 02:38:41 -07:00
|
|
|
resizer[dir="bottomstart"]:not([rtl="true"]):not(:-moz-locale-dir(rtl)),
|
2010-06-21 05:37:35 -07:00
|
|
|
resizer[dir="bottomend"][rtl="true"] {
|
|
|
|
cursor: sw-resize;
|
|
|
|
}
|
|
|
|
|
2009-01-18 02:28:19 -08:00
|
|
|
resizer[dir="top"],
|
|
|
|
resizer[dir="bottom"] {
|
|
|
|
cursor: ns-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
resizer[dir="left"],
|
|
|
|
resizer[dir="right"] {
|
|
|
|
cursor: ew-resize;
|
|
|
|
}
|
|
|
|
|
2009-01-30 00:13:16 -08:00
|
|
|
resizer[dir="topleft"] {
|
|
|
|
cursor: nw-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
resizer[dir="topright"] {
|
|
|
|
cursor: ne-resize;
|
2009-01-18 02:28:19 -08:00
|
|
|
}
|