directory.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* CSS file for the Directory plugin */
  2. div#profile_directory div.alpha_nav {
  3. overflow: hidden;
  4. width: 100%;
  5. text-align: center;
  6. }
  7. /* XXX: this needs serious CSS foo */
  8. div#profile_directory div.alpha_nav > a {
  9. border-left: 1px solid #000;
  10. padding-left: 2px;
  11. }
  12. div#profile_directory div.alpha_nav > a.first {
  13. border-left: none;
  14. }
  15. div#profile_directory div.alpha_nav a:link {
  16. text-decoration: none;
  17. }
  18. div#profile_directory div.alpha_nav a:visited {
  19. text-decoration: none;
  20. }
  21. div#profile_directory div.alpha_nav a:active {
  22. text-decoration: none;
  23. }
  24. div#profile_directory div.alpha_nav a:hover {
  25. text-decoration: underline; color: blue;
  26. }
  27. div#profile_directory div.alpha_nav a.current {
  28. background-color:#9BB43E;
  29. }
  30. table.profile_list {
  31. width: 100%;
  32. }
  33. table.profile_list tr {
  34. float: none;
  35. }
  36. table.profie_list td {
  37. width: 100%;
  38. padding: 0;
  39. }
  40. th.current {
  41. background-image: url(../images/control_arrow_down.gif);
  42. background-repeat: no-repeat;
  43. background-position: 60% 2px;
  44. }
  45. th.current.reverse {
  46. background-image: url(../images/control_arrow_up.gif);
  47. background-repeat: no-repeat;
  48. background-position: 60% 2px;
  49. }