forked from afandria/paper-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 3
/
paper-autocomplete.css
48 lines (44 loc) · 956 Bytes
/
paper-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
/* Style the children core-item nodes */
::content .highlighted {
background-color: #99ccff;
}
::content .core-selected {
font-weight: normal;
}
/* Note: Rules were split to boost CSS specificity */
::content paper-item:hover,
::content core-item:hover {
background-color: #6699cc;
}
/* core-item looks better with side padding */
::content core-item {
padding-left: 0.5em;
padding-right: 0.5em;
}
/* Pick default text color, which affects the paper-ripple color */
::content core-item, ::content paper-item {
color: #003366;
overflow: hidden;
}
#frame, #top-input {
width: inherit;
}
#bottom-suggest {
position: relative;
width: inherit;
}
#suggest-box {
max-height: inherit;
position: absolute;
top: 0px;
left: 0px;
z-index: 10000;
width: inherit;
/* The following style may be overridden */
background-color: #ffffff;
border: solid 1px #000000;
box-shadow: 5px 5px 2px #999999;
}
.hidden {
display: none;
}