blob: 083890c88fca5dcff89f7865d3f7afbfd08cfcc2 (
plain)
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
|
#suggest-menu {
position: absolute;
display: block;
z-index: 1000;
min-width: 160px;
padding: 5px 0;
background: #fff;
list-style: none;
border: 1px solid #ccc;
border-radius: 3px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175)
}
.suggest-menu-item {
white-space: nowrap;
padding: 3px 10px;
color: var(--color-primary);
font-weight: bold;
cursor: pointer
}
.suggest-menu-item.active {
color: #fff;
background: #428bca
}
.suggest-menu-item.active small {
color: #fff
}
.suggest-menu-item small {
color: var(--color-light);
font-weight: normal
}
|