original.css 921 B

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