jquery.autocomplete.css 766 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .ac_results {
  2. padding: 0px;
  3. border: 1px solid WindowFrame;
  4. background-color: Window;
  5. overflow: hidden;
  6. }
  7. .ac_results ul {
  8. width: 100%;
  9. list-style-position: outside;
  10. list-style: none;
  11. padding: 0;
  12. margin: 0;
  13. }
  14. .ac_results iframe {
  15. display:none;/*sorry for IE5*/
  16. display/**/:block;/*sorry for IE5*/
  17. position:absolute;
  18. top:0;
  19. left:0;
  20. z-index:-1;
  21. filter:mask();
  22. width:3000px;
  23. height:3000px;
  24. }
  25. .ac_results li {
  26. margin: 0px;
  27. padding: 2px 5px;
  28. cursor: pointer;
  29. display: block;
  30. width: 100%;
  31. font: menu;
  32. font-size: 12px;
  33. overflow: hidden;
  34. }
  35. .ac_loading {
  36. background : Window url('../images/indicator.gif') right center no-repeat;
  37. }
  38. .ac_over {
  39. background-color: Highlight;
  40. color: HighlightText;
  41. }