original.css 878 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. }
  11. #simplemenu a {
  12. color:#333;
  13. text-decoration:none;
  14. background:#ddd;
  15. border-right:1px solid #999;
  16. border-left:1px solid #eee;
  17. padding:2px 6px 3px 6px;
  18. width:auto;
  19. }
  20. #simplemenu li {
  21. background:#ddd;
  22. text-align: left;
  23. }
  24. #simplemenu li.expanded > a {
  25. background:url(right-green.gif) no-repeat 97%;
  26. padding-right:2em;
  27. }
  28. #simplemenu li.root > a {
  29. font-weight:700;
  30. background:url(down-green.gif) no-repeat 97%;
  31. }
  32. #simplemenu li:hover, #simplemenu li.sfHover,
  33. #simplemenu a:focus, #simplemenu a:hover, #simplemenu a:active {
  34. background:#3875d7;
  35. color:#fff;
  36. }
  37. #simplemenu li:hover ul,
  38. ul#simplemenu li.sfHover ul {
  39. border-bottom:1px solid #999;
  40. }
  41. #simplemenu li ul a {
  42. height:auto;
  43. }