You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

53 lines
1.1 KiB

  1. @charset "UTF-8";
  2. /*
  3. * jQuery UI Autocomplete 1.8.18
  4. *
  5. * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
  6. * Dual licensed under the MIT or GPL Version 2 licenses.
  7. * http://jquery.org/license
  8. *
  9. * http://docs.jquery.com/UI/Autocomplete#theming
  10. */
  11. .ui-autocomplete { position: absolute; cursor: default; }
  12. /* workarounds */
  13. * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
  14. /*
  15. * jQuery UI Menu 1.8.18
  16. *
  17. * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
  18. * Dual licensed under the MIT or GPL Version 2 licenses.
  19. * http://jquery.org/license
  20. *
  21. * http://docs.jquery.com/UI/Menu#theming
  22. */
  23. .ui-menu {
  24. list-style:none;
  25. padding: 2px;
  26. margin: 0;
  27. display:block;
  28. float: left;
  29. }
  30. .ui-menu .ui-menu {
  31. margin-top: -3px;
  32. }
  33. .ui-menu .ui-menu-item {
  34. margin:0;
  35. padding: 0;
  36. float: left;
  37. clear: left;
  38. width: 100%;
  39. }
  40. .ui-menu .ui-menu-item a {
  41. text-decoration:none;
  42. display:block;
  43. padding:.2em .4em;
  44. line-height:1.5;
  45. }
  46. .ui-menu .ui-menu-item a.ui-state-hover,
  47. .ui-menu .ui-menu-item a.ui-state-active {
  48. font-weight: normal;
  49. margin: -1px;
  50. }