Menu.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .tundra .dijitMenu,
  2. .tundra .dijitMenuBar {
  3. border: 1px solid #7eabcd;
  4. margin: 0;
  5. padding: 0;
  6. background-color: #f7f7f7;
  7. }
  8. .tundra .dijitBorderContainer .dijitMenuBar {
  9. border:1px solid #ccc;
  10. }
  11. .tundra .dijitMenuItem {
  12. font-family: sans-serif;
  13. margin: 0;
  14. }
  15. .tundra .dijitMenuItem {
  16. padding: 4px 5px;
  17. }
  18. .tundra .dijitMenuPreviousButton, .tundra .dijitMenuNextButton {
  19. font-style: italic;
  20. }
  21. .tundra .dijitMenuItem td {
  22. padding: 2px;
  23. }
  24. .tundra .dijitMenuPassive .dijitMenuItemHover,
  25. .tundra .dijitMenuItemSelected {
  26. background-color: #3559ac;
  27. color:#fff;
  28. }
  29. .tundra .dijitMenuItemIcon {
  30. width: 16px;
  31. height: 16px;
  32. }
  33. .tundra .dijitMenuExpand {
  34. /* arrow to indicate this MenuItem opens a sub-menu */
  35. width: 7px;
  36. height: 7px;
  37. background-image: url('images/spriteArrows.png');
  38. background-position: -14px 0;
  39. }
  40. .dj_ie6 .tundra .dijitMenuExpand {
  41. background-image: url('images/spriteArrows.gif');
  42. }
  43. /* separator can be two pixels -- set border of either one to 0 to have only one */
  44. .tundra .dijitMenuSeparatorTop {
  45. border-bottom: 1px solid #9b9b9b;
  46. }
  47. .tundra .dijitMenuSeparatorBottom {
  48. border-top: 1px solid #e8e8e8;
  49. }
  50. /* the checked menu item */
  51. .tundra .dijitCheckedMenuItemIconChar {
  52. display: none;
  53. }
  54. .tundra .dijitCheckedMenuItemIcon {
  55. background-image: url('images/checkmark.png');
  56. background-position: -80px;
  57. }
  58. .dj_ie6 .tundra .dijitCheckedMenuItemIcon {
  59. background-image: url('images/checkmark.gif');
  60. }
  61. .tundra .dijitCheckedMenuItemChecked .dijitCheckedMenuItemIcon {
  62. background-position: -64px;
  63. }