You are here

jquery.autocomplete.css in Search Autocomplete 6.2

Same filename and directory in other branches
  1. 7.2 css/jquery.autocomplete.css
.ac_input {
	background-image: url("throbber.gif");
    background-position: 100% 2px;
    background-repeat: no-repeat;
}
.ac_loading {
	/*background: white url('indicator.gif') right center no-repeat;*/
	background-image: url("throbber.gif");
    background-position: 100% -18px;
    background-repeat: no-repeat;
}

.ac_results {
	padding: 0px;
	border: 1px solid black;
	background-color: white;
	overflow: hidden;
	z-index: 99999;
}

.ac_results ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac_results li {
	background-image: none;
	margin: 0px;
	padding: 2px 5px;
	cursor: default;
	display: block;
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font: menu;
	font-size: 12px;
	/* 
	it is very important, if line-height not setted or setted 
	in relative units scroll will be broken in firefox
	*/
	line-height: 16px;
	overflow: hidden;
}

.ac_odd {
	background-color: #eee;
}

.ac_over {
	background-color: #0A246A;
	color: white;
}

/* HELP PANEL CSS */
div.help {
  background-image: url("help.png");
}
div.help {
  background-color: #F7F7F7 !important;
  border: 1px solid #E7E7E7 !important;
}
div.help {
  background-color: #FFFFFF;
  background-position: 10px 50%;
  background-repeat: no-repeat;
  border: 1px solid;
  font-weight: normal;
  margin: 10px 0;
  padding: 15px 10px 15px 50px;
}

File

css/jquery.autocomplete.css
View source
  1. .ac_input {
  2. background-image: url("throbber.gif");
  3. background-position: 100% 2px;
  4. background-repeat: no-repeat;
  5. }
  6. .ac_loading {
  7. /*background: white url('indicator.gif') right center no-repeat;*/
  8. background-image: url("throbber.gif");
  9. background-position: 100% -18px;
  10. background-repeat: no-repeat;
  11. }
  12. .ac_results {
  13. padding: 0px;
  14. border: 1px solid black;
  15. background-color: white;
  16. overflow: hidden;
  17. z-index: 99999;
  18. }
  19. .ac_results ul {
  20. width: 100%;
  21. list-style-position: outside;
  22. list-style: none;
  23. padding: 0;
  24. margin: 0;
  25. }
  26. .ac_results li {
  27. background-image: none;
  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_odd {
  47. background-color: #eee;
  48. }
  49. .ac_over {
  50. background-color: #0A246A;
  51. color: white;
  52. }
  53. /* HELP PANEL CSS */
  54. div.help {
  55. background-image: url("help.png");
  56. }
  57. div.help {
  58. background-color: #F7F7F7 !important;
  59. border: 1px solid #E7E7E7 !important;
  60. }
  61. div.help {
  62. background-color: #FFFFFF;
  63. background-position: 10px 50%;
  64. background-repeat: no-repeat;
  65. border: 1px solid;
  66. font-weight: normal;
  67. margin: 10px 0;
  68. padding: 15px 10px 15px 50px;
  69. }