Project

General

Profile

1
/*
2
---
3

    
4
description: A plugin for enabling autocomplete of a text input or textarea.
5

    
6
authors:
7
 - Fábio Miranda Costa
8

    
9
license: MIT-style license
10

    
11
...
12
*/
13

    
14
.ma-container{
15
	border: 1px solid #ccc;
16
	background-color: #fff;
17
	position: absolute;
18
	visibility: hidden;
19
	overflow-y: auto;
20
	overflow-x: hidden;
21
}
22

    
23
.ma-container ul{
24
	padding:0px;
25
	margin:0px;
26
	list-style: none;
27
	overflow: hidden;
28
	width: 100%;
29
}
30

    
31
.ma-container li{
32
	padding: 2px 5px;
33
	line-height: 16px;
34
	cursor: pointer;
35
	float: left;
36
	width: 100%;
37
	overflow: hidden;
38
}
39

    
40
.ma-container .ma-hover{
41
	color: #fff;
42
	background-color: #2728A6 !important;
43
}
44

    
45
.ma-container .ma-odd{}
46

    
47
.ma-container .ma-even{
48
	background-color: #efefef;
49
}
50

    
51
.ma-loading{
52
	background-color: #fafba4;
53
}
54

    
55
.ma-selected{
56
	background-color: #ffffff;
57
}
58

    
(1-1/10)