-
Notifications
You must be signed in to change notification settings - Fork 0
/
elm-autocomplete.css
73 lines (63 loc) · 1.18 KB
/
elm-autocomplete.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
.autocomplete-menu {
position: relative;
margin-top: 5px;
background: white;
color: black;
border: 1px solid #DDD;
border-radius: 3px;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
min-width: 120px;
}
.autocomplete-item {
display: block;
padding: 5px 10px;
border-bottom: 1px solid #DDD;
cursor: pointer;
}
.key-selected {
background-color: #3366FF;
}
.mouse-selected {
background-color: #ececec;
}
.autocomplete-list {
list-style: none;
padding: 0;
margin: auto;
max-height: 200px;
overflow-y: auto;
}
.autocomplete-list-with-sections {
ist-style: none;
padding: 0;
margin: auto;
}
.autocomplete-input {
min-width: 120px;
color: black;
font-size: 12px;
padding: 4px;
border-radius: 4px;
background-color: white;
}
.autocomplete-section-list {
list-style: none;
padding: 0;
margin: auto;
max-height: 200px;
overflow-y: auto;
}
.autocomplete-section-item {
display: block;
padding: 0;
}
.autocomplete-section-box {
display: block;
padding: 0;
border-top: 1px solid #888888;
border-bottom: 1px solid #888888;
}
.autocomplete-section-text {
display: flex;
justify-content: center;
}