-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodebit-livesearch.css
More file actions
68 lines (59 loc) · 1.32 KB
/
Copy pathcodebit-livesearch.css
File metadata and controls
68 lines (59 loc) · 1.32 KB
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
.cb-livesearch-list {
display: none;
position: absolute;
background-color: white;
opacity: 0;
transform: scale(0.6);
box-shadow: 0 4px 14px 0px rgba(0, 0, 0, 0.3);
transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
min-height: 0;
max-height: 200px;
overflow-y: auto;
overflow-x: hidden;
z-index: 1001;
}
.cb-livesearch-list.show {
opacity: 1;
transform: scale(1);
}
.cb-livesearch-list-table {
width: 100%;
border-spacing: 0;
}
.cb-livesearch-list-table {
width: 100%;
border-spacing: 0;
}
.cb-livesearch-list-table td {
font-size: 12px;
text-align: left;
vertical-align: middle;
word-break: break-all;
padding: 18px 4px;
}
.cb-livesearch-list-table tr {
cursor: pointer;
transition: background-color ease-in-out 100ms;
}
.cb-livesearch-list-table tr.selection {
background-color: #9b9b9b !important;
color: white;
}
.cb-livesearch-list-table tr:hover {
background-color: #f4f4f4 !important;
color: #4d4d4d;
}
.cb-livesearch-message-box {
display: none;
width: 100%;
text-align: center;
transition: all 200ms ease-in-out;
overflow: hidden;
white-space: nowrap;
}
.cb-livesearch-message-box.show {
font-size: 12px;
display: inline-block;
padding: 0 8px;
line-height: 50px;
}