You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB

  1. .jqpopupmenu, .jqpopupmenu ul { /*topmost and sub ULs, respectively*/
  2. font: normal 13px Verdana;
  3. margin: 0;
  4. padding: 0;
  5. position: absolute;
  6. left: 0;
  7. top: 0;
  8. list-style-type: none;
  9. background: white;
  10. border: 1px solid black;
  11. visibility: hidden;
  12. display: none; /*collapse all sub menus to begin with*/
  13. box-shadow: 3px 3px 8px #818181; /*shadow for CSS3 capable browsers.*/
  14. -webkit-box-shadow: 3px 3px 8px #818181;
  15. -moz-box-shadow: 3px 3px 8px #818181;
  16. }
  17. .jqpopupmenu li {
  18. position: relative;
  19. }
  20. .jqpopupmenu li a {
  21. display: block;
  22. width: 160px; /*width of menu (not including side paddings)*/
  23. color: black;
  24. background: #F5F5F5;
  25. text-decoration: none;
  26. padding: 4px 5px;
  27. }
  28. * html .jqpopupmenu li { /*IE6 CSS hack*/
  29. display: inline-block;
  30. width: 170px; /*width of menu (include side paddings of LI A*/
  31. }
  32. .jqpopupmenu li a:hover, .jqpopupmenu li.selected > a {
  33. background: #e0e0e0;
  34. }
  35. .rightarrowclass {
  36. position: absolute;
  37. top: 6px;
  38. right: 5px;
  39. }