Project

General

Profile

1
@CHARSET "UTF-8";
2

    
3
 .autoCompleteWidget {
4
    position: relative;
5
}
6

    
7
.filterTextBox {
8
    border-radius: 4px !important;
9
    /*margin-bottom: 25px !important;*/
10
    padding-left: 35px !important;
11
    background: url("./imgs/search.png") no-repeat 3% 50%;
12
    background-size: 10% 80%;
13
    width: 181px !important;
14
}
15

    
16
.suggestionList {
17
    border: 1px solid #dfd9d2;
18
    position: absolute;
19
    width: 221px !important;
20
    border-radius: 4px;
21
    top: 32px;
22
    background-color: #f4efe9;
23
    border-color: rgba(83, 68, 65, 0.8) !important;
24
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(83, 68, 65, 0.6) !important;
25
    outline: 0 none;
26
    z-index: 100;
27
    max-height: 200px;
28
    overflow-y: scroll;
29
}
30

    
31
.suggestionItem {
32
    padding: 5px 10px;
33
    display: block;
34
}
35

    
36
.suggestionItem:hover {
37
    background-color: rgba(83, 68, 65, 0.6) !important;
38
    /*background-color: #ee964a;*/
39
    color: #ffffff !important;
40
    text-decoration: none !important;
41
}
42

    
43
.suggestionInfoItem {
44
    padding: 5px 10px;
45
    background-color: #f4efe9;
46
}
(3-3/3)