~dongpo-deng/sahana-eden/test

« back to all changes in this revision

Viewing changes to static/styles/S3/jquery.autocomplete.css

  • Committer: Deng Dongpo
  • Date: 2010-08-01 09:29:44 UTC
  • Revision ID: dongpo@dhcp-21193.iis.sinica.edu.tw-20100801092944-8t9obt4xtl7otesb
initial

Show diffs side-by-side

added added

removed removed

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