forked from spantaleev/suggestor.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuggestor.css
More file actions
56 lines (49 loc) · 1015 Bytes
/
Copy pathsuggestor.css
File metadata and controls
56 lines (49 loc) · 1015 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
56
.suggestor-container {
position: absolute;
margin-top: 1px;
}
.suggestor-picker {
margin: 0;
padding: 4px 0;
display: inline-block;
font-size: 14px;
background-color: white;
border: 1px solid #7c7c7c;
border-radius: 4px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
max-height: 300px;
overflow-x: hidden;
overflow-y: auto;
}
.suggestor-suggestion {
background-color: white;
color: black;
list-style: none;
}
.suggestor-suggestion a {
display: block;
cursor: pointer;
color: inherit;
text-decoration: none;
white-space: nowrap;
padding: 4px 8px;
}
.suggestor-suggestion-active {
background-color: rgb(0, 129, 194);
background-image: linear-gradient(to bottom, rgb(0, 136, 204), rgb(0, 119, 179));
background-repeat: repeat-x;
color: white;
}
.suggestor-picker-tooltip {
color: #808080;
}
.suggestor-suggestion-active .suggestor-picker-tooltip {
color: #f7f5f5;
}
.suggestor-image {
margin-right: 5px;
display: inline-block;
vertical-align: top;
border-radius: 2px;
border: 0;
}