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