-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
74 lines (74 loc) · 1.46 KB
/
style.css
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#foa_order_product_filter_wrap{
float: left;
margin-right: 5px;
width: 160px;
}
#fuzzNameContainer {
background-color: #fff;
border: 1px solid #ddd;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;
color: #32373c;
cursor: pointer;
outline: 0 none;
padding: 5px 0 2px 5px;
transition: border-color 0.05s ease-in-out 0s;
}
.fuzzName {
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 80%;
}
.fuzzArrow {
border-color: #333 transparent transparent;
border-style: solid;
border-width: 6px;
cursor: pointer;
display: inline-block;
position: relative;
top: 3px;
transition: all 0.1s ease-in 0s;
width: 0;
}
.fuzzArrow:hover {
border-top-color: #888;
}
.fuzzArrow.fuzzArrowUp {
border-color: transparent transparent #333;
top: -3px;
}
#fuzzDropdownContainer {
background: #fff none repeat scroll 0 0;
border: 1px solid #999;
display: none;
margin: 0 0 5px;
padding: 12px 4px 4px;
position: absolute;
width: 300px;
z-index: 400;
max-height: 300px;
overflow: auto;
}
.fuzzMagicBox {
height: 26px;
margin: 0 auto;
width: 100%;
}
#fuzzResults {
cursor: pointer;
margin: 5px 0 0;
}
#fuzzResults li:hover {
color: #aaa;
}
#fuzzResults li.selected {
color: #aaa;
}
#fuzzResults li {
background-color: #f5f5f5;
border-top: 1px solid #ffffff;
list-style: outside none none;
margin: 0;
padding: 5px;
}