original.css 892 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* $Id$ */
  2. #simplemenu {
  3. background:#ddd;
  4. color:#333;
  5. border-bottom:1px solid #999;
  6. font:11px Verdana, Helvetica, sans-serif;
  7. width:100%;
  8. z-index:9999;
  9. text-align:left;
  10. float: left;
  11. }
  12. #simplemenu a {
  13. color:#333;
  14. text-decoration:none;
  15. background:#ddd;
  16. border-right:1px solid #999;
  17. border-left:1px solid #eee;
  18. padding:2px 6px 3px 6px;
  19. width:auto;
  20. }
  21. #simplemenu li {
  22. background:#ddd;
  23. text-align: left;
  24. }
  25. #simplemenu li.expanded > a {
  26. background:url(right-green.gif) no-repeat 97%;
  27. padding-right:2em;
  28. }
  29. #simplemenu li.root > a {
  30. font-weight:700;
  31. background:url(down-green.gif) no-repeat 97%;
  32. }
  33. #simplemenu li:hover, #simplemenu li.sfHover,
  34. #simplemenu a:focus, #simplemenu a:hover, #simplemenu a:active {
  35. background:#3875d7;
  36. color:#fff;
  37. }
  38. #simplemenu li:hover ul,
  39. ul#simplemenu li.sfHover ul {
  40. border-bottom:1px solid #999;
  41. }
  42. #simplemenu li ul a {
  43. height:auto;
  44. }