2010-09-04 04:00:09 +00:00
|
|
|
/* suggestions plugin */
|
|
|
|
|
|
|
|
|
|
.suggestions {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: absolute;
|
2011-10-15 23:33:47 +00:00
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 0;
|
2010-09-04 04:00:09 +00:00
|
|
|
border: none;
|
2011-01-25 19:53:21 +00:00
|
|
|
z-index: 1099;
|
2010-09-04 04:00:09 +00:00
|
|
|
padding: 0;
|
2011-01-12 20:04:58 +00:00
|
|
|
margin: -1px -1px 0 0;
|
|
|
|
|
}
|
|
|
|
|
/* IGNORED BY IE6 */
|
|
|
|
|
html > body .suggestions {
|
2010-09-04 04:00:09 +00:00
|
|
|
margin: -1px 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
.suggestions-special {
|
|
|
|
|
position: relative;
|
2011-10-15 23:33:47 +00:00
|
|
|
background-color: white;
|
2010-09-04 04:00:09 +00:00
|
|
|
font-size: 0.8em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: solid 1px #aaaaaa;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
display: none;
|
|
|
|
|
padding: 0.25em 0.25em;
|
|
|
|
|
line-height: 1.25em;
|
|
|
|
|
}
|
|
|
|
|
.suggestions-results {
|
|
|
|
|
background-color: white;
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: solid 1px #aaaaaa;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
.suggestions-result {
|
|
|
|
|
color: black;
|
|
|
|
|
margin: 0;
|
|
|
|
|
line-height: 1.5em;
|
|
|
|
|
padding: 0.01em 0.25em;
|
2010-12-16 19:03:51 +00:00
|
|
|
text-align: left;
|
2010-09-04 04:00:09 +00:00
|
|
|
}
|
|
|
|
|
.suggestions-result-current {
|
|
|
|
|
background-color: #4C59A6;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
.suggestions-special .special-label {
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
color: gray;
|
2010-12-16 19:03:51 +00:00
|
|
|
text-align: left;
|
2010-09-04 04:00:09 +00:00
|
|
|
}
|
|
|
|
|
.suggestions-special .special-query {
|
|
|
|
|
color: black;
|
|
|
|
|
font-style: italic;
|
2010-12-16 19:03:51 +00:00
|
|
|
text-align: left;
|
2010-09-04 04:00:09 +00:00
|
|
|
}
|
|
|
|
|
.suggestions-special .special-hover {
|
|
|
|
|
background-color: silver;
|
|
|
|
|
}
|
|
|
|
|
.suggestions-result-current .special-label,
|
|
|
|
|
.suggestions-result-current .special-query {
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
.autoellipsis-matched,
|
|
|
|
|
.highlight {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|