jquery.autocomplete.css 861 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 strong{font-size:13px;color:#f30;}
  9. .ac_results ul {
  10. width: 100%;
  11. list-style-position: outside;
  12. list-style: none;
  13. padding: 0;
  14. margin: 0;
  15. }
  16. .ac_results li {
  17. margin: 0px;
  18. padding: 4px 5px;
  19. cursor: default;
  20. display: block;
  21. /*
  22. if width will be 100% horizontal scrollbar will apear
  23. when scroll mode will be used
  24. */
  25. /*width: 100%;*/
  26. font: menu;
  27. font-size: 13px;
  28. /*
  29. it is very important, if line-height not setted or setted
  30. in relative units scroll will be broken in firefox
  31. */
  32. line-height: 16px;
  33. overflow: hidden;
  34. text-align:left;
  35. }
  36. .ac_loading {
  37. background: white url('indicator.gif') right center no-repeat;
  38. }
  39. .ac_odd {
  40. background-color: #eee;
  41. }
  42. .ac_over {
  43. background-color: #79b7e4;
  44. color: white;
  45. }