jquery.suggestions, mediawiki.searchSuggest: Don't use jquery.autoEllipsis
[mediawiki.git] / resources / jquery / jquery.suggestions.css
blobea6594665923675da808859c5d1b941088b82aa0
1 /* suggestions plugin */
3 .suggestions {
4 overflow: hidden;
5 position: absolute;
6 top: 0;
7 left: 0;
8 width: 0;
9 border: none;
10 z-index: 1099;
11 padding: 0;
12 margin: -1px -1px 0 0;
15 /* IGNORED BY IE6 */
16 html > body .suggestions {
17 margin: -1px 0 0 0;
20 .suggestions-special {
21 position: relative;
22 background-color: white;
23 cursor: pointer;
24 border: solid 1px #aaaaaa;
25 padding: 0;
26 margin: 0;
27 margin-top: -2px;
28 display: none;
29 padding: 0.25em 0.25em;
30 line-height: 1.25em;
33 .suggestions-results {
34 background-color: white;
35 cursor: pointer;
36 border: solid 1px #aaaaaa;
37 padding: 0;
38 margin: 0;
41 .suggestions-result {
42 color: black;
43 margin: 0;
44 line-height: 1.5em;
45 padding: 0.01em 0.25em;
46 text-align: left;
47 /* Apply ellipsis to suggestions */
48 overflow: hidden;
49 -o-text-overflow: ellipsis; /* Opera 9 to 10 */
50 text-overflow: ellipsis;
51 white-space: nowrap;
54 .suggestions-result-current {
55 background-color: #4C59A6;
56 color: white;
59 .suggestions-special .special-label {
60 color: gray;
61 text-align: left;
64 .suggestions-special .special-query {
65 color: black;
66 font-style: italic;
67 text-align: left;
70 .suggestions-special .special-hover {
71 background-color: silver;
74 .suggestions-result-current .special-label,
75 .suggestions-result-current .special-query {
76 color: white;
79 .highlight {
80 font-weight: bold;