jquery.qunit.completenessTest: Remove redundant jshint override
[lhc/web/wiklou.git] / resources / jquery / jquery.suggestions.css
1 /* suggestions plugin */
2
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;
13 }
14
15 /* IGNORED BY IE6 */
16 html > body .suggestions {
17 margin: -1px 0 0 0;
18 }
19
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;
31 }
32
33 .suggestions-results {
34 background-color: white;
35 cursor: pointer;
36 border: solid 1px #aaaaaa;
37 padding: 0;
38 margin: 0;
39 }
40
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 }
48
49 .suggestions-result-current {
50 background-color: #4C59A6;
51 color: white;
52 }
53
54 .suggestions-special .special-label {
55 color: gray;
56 text-align: left;
57 }
58
59 .suggestions-special .special-query {
60 color: black;
61 font-style: italic;
62 text-align: left;
63 }
64
65 .suggestions-special .special-hover {
66 background-color: silver;
67 }
68
69 .suggestions-result-current .special-label,
70 .suggestions-result-current .special-query {
71 color: white;
72 }
73
74 .autoellipsis-matched,
75 .highlight {
76 font-weight: bold;
77 }