arrow.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  5. .up {
  6. min-width: 0px;
  7. list-style-image: url("chrome://global/skin/arrow/arrow-up.gif");
  8. }
  9. .up:hover {
  10. list-style-image: url("chrome://global/skin/arrow/arrow-up-hov.gif");
  11. }
  12. .up[disabled="true"] {
  13. list-style-image: url("chrome://global/skin/arrow/arrow-up-dis.gif");
  14. }
  15. .down {
  16. min-width: 0px;
  17. list-style-image: url("chrome://global/skin/arrow/arrow-dn.gif");
  18. }
  19. .down:hover {
  20. list-style-image: url("chrome://global/skin/arrow/arrow-dn-hov.gif");
  21. }
  22. .down[disabled="true"] {
  23. list-style-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif");
  24. }
  25. .left {
  26. min-width: 0px;
  27. list-style-image: url("chrome://global/skin/arrow/arrow-lft.gif");
  28. }
  29. .left:hover {
  30. list-style-image: url("chrome://global/skin/arrow/arrow-lft-hov.gif");
  31. }
  32. .left[disabled="true"] {
  33. list-style-image: url("chrome://global/skin/arrow/arrow-lft-dis.gif");
  34. }
  35. .right {
  36. min-width: 0px;
  37. list-style-image: url("chrome://global/skin/arrow/arrow-rit.gif");
  38. }
  39. .right:hover {
  40. list-style-image: url("chrome://global/skin/arrow/arrow-rit-hov.gif");
  41. }
  42. .right[disabled="true"] {
  43. list-style-image: url("chrome://global/skin/arrow/arrow-rit-dis.gif");
  44. }