jquery.autocomplete.css 882 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. white-space: nowrap;
  19. padding-right: 20px; /* Space for the scrollbar */
  20. cursor: default;
  21. display: block;
  22. /*
  23. if width will be 100% horizontal scrollbar will apear
  24. when scroll mode will be used
  25. */
  26. /*width: 100%;*/
  27. font: menu;
  28. font-size: 12px;
  29. /*
  30. it is very important, if line-height not setted or setted
  31. in relative units scroll will be broken in firefox
  32. */
  33. line-height: 16px;
  34. overflow: hidden;
  35. }
  36. .ac_loading {
  37. background: white url('../images/indicator.gif') right center no-repeat;
  38. }
  39. .ac_odd {
  40. background-color: #eee;
  41. }
  42. .ac_over {
  43. background-color: #0A246A;
  44. color: white;
  45. }