style-search.css
957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
body {
padding: 0px;
margin: 0px;
}
li, ul {
padding: 0px;
margin: 0px;
list-style: none;
}
.search-view {
margin: 20px;
}
.search-view .s-input {
border: 1px solid #ccc;
height: 30px;
padding: 0 4px;
width: 290px;
}
.search-view .form-area {
font-size: 13px;
position: relative;
width: 290px;
float: left;
line-height: 20px;
margin-top: 9px;
}
.search-view .selector {
background-color: #fff;
border-color: #ccc;
border-style: solid;
border-width: 0 1px 1px;
color: #005ea7;
display: none;
max-height: 128px;
overflow-x: hidden;
overflow-y: auto;
position: absolute;
top: 32px;
width: 288px;
z-index: 2;
}
.search-view .selector div {
color: #999;
cursor: pointer;
padding: 3px 5px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.search-view .selector div:hover {
background-color: #fffafa;
color: #ff2828;
}