Merge "ResourceLoaderLanguageDataModule: Clean up useless methods and fragile state"
[lhc/web/wiklou.git] / resources / src / 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 /* Apply ellipsis to suggestions */
48 overflow: hidden;
49 -o-text-overflow: ellipsis; /* Opera 9 to 10 */
50 text-overflow: ellipsis;
51 white-space: nowrap;
52 }
53
54 .suggestions-result-current {
55 background-color: #4C59A6;
56 color: white;
57 }
58
59 .suggestions-special .special-label {
60 color: gray;
61 text-align: left;
62 }
63
64 .suggestions-special .special-query {
65 color: black;
66 font-style: italic;
67 text-align: left;
68 }
69
70 .suggestions-special .special-hover {
71 background-color: silver;
72 }
73
74 .suggestions-result-current .special-label,
75 .suggestions-result-current .special-query {
76 color: white;
77 }
78
79 .highlight {
80 font-weight: bold;
81 }