jquery.autocomplete.css 876 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .ac_results {
  2. padding: 0px;
  3. border: 1px solid black;
  4. background-color: white;
  5. overflow: hidden;
  6. z-index: 99999;
  7. }
  8. .ac_results ul {
  9. width: 100%;
  10. list-style-position: outside;
  11. list-style: none;
  12. padding: 0;
  13. margin: 0;
  14. }
  15. .ac_results li {
  16. margin: 0px;
  17. padding: 2px 5px;
  18. cursor: default;
  19. display: block;
  20. /*
  21. if width will be 100% horizontal scrollbar will apear
  22. when scroll mode will be used
  23. */
  24. /*width: 100%;*/
  25. font: menu;
  26. font-size: 12px;
  27. /*
  28. it is very important, if line-height not setted or setted
  29. in relative units scroll will be broken in firefox
  30. */
  31. line-height: 16px;
  32. overflow: hidden;
  33. }
  34. .ac_loading {
  35. background: white url('indicator.gif') right center no-repeat;
  36. }
  37. .ac_odd {
  38. background-color: #eee;
  39. }
  40. .ac_over {
  41. background-color: #0A246A;
  42. color: white;
  43. }