sortabletable.css 946 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .sort-table {
  2. font: Icon;
  3. border: 1px Solid ThreeDShadow;
  4. background: Window;
  5. color: WindowText;
  6. }
  7. .sort-table thead {
  8. background: ButtonFace;
  9. }
  10. .sort-table td {
  11. padding: 2px 5px;
  12. }
  13. .sort-table thead td {
  14. border: 1px solid;
  15. border-color: ButtonHighlight ButtonShadow
  16. ButtonShadow ButtonHighlight;
  17. cursor: default;
  18. }
  19. .sort-table thead td:active {
  20. border-color: ButtonShadow ButtonHighlight
  21. ButtonHighlight ButtonShadow;
  22. padding: 3px 4px 1px 6px;
  23. }
  24. .sort-arrowblank {
  25. width: 1px;
  26. height: 1px;
  27. background-position: center center;
  28. background-repeat: no-repeat;
  29. margin: 0 1px;
  30. }
  31. .sort-arrow {
  32. width: 11px;
  33. height: 11px;
  34. background-position: center center;
  35. background-repeat: no-repeat;
  36. margin: 0 2px;
  37. }
  38. .sort-arrow.descending {
  39. background-image: url("/GDZJ/images/button/downsimple.png");
  40. }
  41. .sort-arrow.ascending {
  42. background-image: url("/GDZJ/images/button/upsimple.png");
  43. }