-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathawesomplete.css
More file actions
55 lines (46 loc) · 806 Bytes
/
Copy pathawesomplete.css
File metadata and controls
55 lines (46 loc) · 806 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
54
55
.awesomplete [hidden] {
display: none;
}
.awesomplete .visually-hidden {
position: absolute;
clip: rect(0, 0, 0, 0);
}
.awesomplete {
display: inline-block;
position: relative;
}
.awesomplete > input {
display: block;
}
.awesomplete > ul {
position: absolute;
left: 0;
z-index: 1;
min-width: 100%;
box-sizing: border-box;
list-style: none;
padding: 0;
margin: 0;
background: #fff;
}
.awesomplete > ul:empty {
display: none;
}
.awesomplete > ul {
margin: .2em 0 0;
background: hsla(0,0%,100%,.9);
border: 1px solid rgba(0,0,0,.3);
text-shadow: none;
}
.awesomplete > ul > li {
position: relative;
padding: .2em .5em;
cursor: pointer;
}
.awesomplete > ul > li:hover {
background: #dddddd;
color: black;
}
.awesomplete mark {
background: inherit;
}