jquery.autocomplete.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * Autocomplete - jQuery plugin 1.0.2
  3. *
  4. * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer
  5. *
  6. * Dual licensed under the MIT and GPL licenses:
  7. * http://www.opensource.org/licenses/mit-license.php
  8. * http://www.gnu.org/licenses/gpl.html
  9. *
  10. * Revision: $Id$
  11. *
  12. */
  13. .ac_results {
  14. padding: 0px;
  15. border: 1px solid black;
  16. background-color: white;
  17. overflow: hidden;
  18. z-index: 99999;
  19. }
  20. .ac_results ul {
  21. width: 100%;
  22. list-style-position: outside;
  23. list-style: none;
  24. padding: 0;
  25. margin: 0;
  26. }
  27. .ac_results li {
  28. margin: 0px;
  29. padding: 2px 5px;
  30. cursor: default;
  31. display: block;
  32. /*
  33. if width will be 100% horizontal scrollbar will apear
  34. when scroll mode will be used
  35. */
  36. /*width: 100%;*/
  37. font: menu;
  38. font-size: 12px;
  39. /*
  40. it is very important, if line-height not setted or setted
  41. in relative units scroll will be broken in firefox
  42. */
  43. line-height: 16px;
  44. overflow: hidden;
  45. }
  46. .ac_loading {
  47. background: white url('indicator.gif') right center no-repeat;
  48. }
  49. .ac_odd {
  50. background-color: #eee;
  51. }
  52. .ac_over {
  53. background-color: #0A246A;
  54. color: white;
  55. }