original.css 974 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .editmenu-block {
  2. height: 21px;
  3. }
  4. #editmenu {
  5. background: #ddd;
  6. color: #333;
  7. border-bottom: 1px solid #999;
  8. font: 11px Verdana, Helvetica, sans-serif;
  9. width: 100%;
  10. text-align: left;
  11. }
  12. #editmenu 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. #editmenu li {
  22. background: #ddd;
  23. text-align: left;
  24. }
  25. #editmenu li.expanded > a {
  26. background: url(right-green.gif) no-repeat 97%;
  27. padding-right: 2em;
  28. }
  29. #editmenu li.root > a {
  30. font-weight: 700;
  31. background: url(down-green.gif) no-repeat 97%;
  32. }
  33. #editmenu li:hover,
  34. #editmenu li.sfHover,
  35. #editmenu a:focus,
  36. #editmenu a:hover,
  37. #editmenu a:active {
  38. background: #3875d7;
  39. color: #fff;
  40. }
  41. #editmenu li:hover ul,
  42. ul#editmenu li.sfHover ul {
  43. border-top: 1px solid white;
  44. border-bottom: 1px solid #999;
  45. }
  46. #editmenu li ul a {
  47. height: auto;
  48. }
  49. /* vim: ts=2 sw=2 et syntax=css
  50. */