jquery.autocomplete.css 740 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * @fileOverview CSS for jquery-autocomplete, the jQuery Autocompleter
  3. * @author <a href="mailto:dylan@dyve.net">Dylan Verheul</a>
  4. * @license MIT | GPL | Apache 2.0, see LICENSE.txt
  5. * @see https://github.com/dyve/jquery-autocomplete
  6. */
  7. .acResults {
  8. padding: 0px;
  9. border: 1px solid WindowFrame;
  10. background-color: Window;
  11. overflow: hidden;
  12. }
  13. .acResults ul {
  14. margin: 0px;
  15. padding: 0px;
  16. list-style-position: outside;
  17. list-style: none;
  18. }
  19. .acResults ul li {
  20. margin: 0px;
  21. padding: 2px 5px;
  22. cursor: pointer;
  23. display: block;
  24. font: menu;
  25. font-size: 12px;
  26. overflow: hidden;
  27. }
  28. .acLoading {
  29. background : url('../img/indicator.gif') right center no-repeat;
  30. }
  31. .acSelect {
  32. background-color: Highlight;
  33. color: HighlightText;
  34. }