You are here

jquery.autocomplete.css in Support Ticketing System 6

.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 {
	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_loading {
	background: white url('indicator.gif') right center no-repeat;
}

.ac_odd {
	background-color: #eee;
}

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

File

support_reference/jquery-autocomplete/jquery.autocomplete.css
View source
  1. .ac_results {
  2. padding: 0px;
  3. border: 1px solid black;
  4. background-color: white;
  5. overflow: hidden;
  6. z-index: 99999;
  7. }
  8. .ac_results ul {
  9. width: 100%;
  10. list-style-position: outside;
  11. list-style: none;
  12. padding: 0;
  13. margin: 0;
  14. }
  15. .ac_results li {
  16. margin: 0px;
  17. padding: 2px 5px;
  18. cursor: default;
  19. display: block;
  20. /*
  21. if width will be 100% horizontal scrollbar will apear
  22. when scroll mode will be used
  23. */
  24. /*width: 100%;*/
  25. font: menu;
  26. font-size: 12px;
  27. /*
  28. it is very important, if line-height not setted or setted
  29. in relative units scroll will be broken in firefox
  30. */
  31. line-height: 16px;
  32. overflow: hidden;
  33. }
  34. .ac_loading {
  35. background: white url('indicator.gif') right center no-repeat;
  36. }
  37. .ac_odd {
  38. background-color: #eee;
  39. }
  40. .ac_over {
  41. background-color: #0A246A;
  42. color: white;
  43. }