Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*
2
 * Autocomplete - jQuery plugin 1.0.2
3
 *
4
 * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer
5
 *
6
 * Dual licensed under the MIT and GPL licenses:
7
 *   http://www.opensource.org/licenses/mit-license.php
8
 *   http://www.gnu.org/licenses/gpl.html
9
 *
10
 * Revision: $Id$
11
 *
12
 */
13
 
14
.ac_results {
15
	padding: 0px;
16
	border: 1px solid black;
17
	background-color: white;
18
	overflow: hidden;
19
	z-index: 99999;
20
}
21
 
22
.ac_results ul {
23
	width: 100%;
24
	list-style-position: outside;
25
	list-style: none;
26
	padding: 0;
27
	margin: 0;
28
}
29
 
30
.ac_results li {
31
	margin: 0px;
32
	padding: 2px 5px;
33
	cursor: default;
34
	display: block;
35
	/*
36
	if width will be 100% horizontal scrollbar will apear
37
	when scroll mode will be used
38
	*/
39
	/*width: 100%;*/
40
	font: menu;
41
	font-size: 12px;
42
	/*
43
	it is very important, if line-height not setted or setted
44
	in relative units scroll will be broken in firefox
45
	*/
46
	line-height: 16px;
47
	overflow: hidden;
48
}
49
 
50
.ac_loading {
51
	background: white url('indicator.gif') right center no-repeat;
52
}
53
 
54
.ac_odd {
55
	background-color: #eee;
56
}
57
 
58
.ac_over {
59
	background-color: #0A246A;
60
	color: white;
61
}