Increase Opera minimum for Grades A and C to 15
[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: 0;
10 z-index: 1099;
11 padding: 0;
12 margin: -1px 0 0 0;
13 }
14
15 .suggestions-special {
16 position: relative;
17 background-color: #fff;
18 cursor: pointer;
19 border: 1px solid #a2a9b1;
20 margin: 0;
21 margin-top: -2px;
22 display: none;
23 padding: 0.25em 0.25em;
24 line-height: 1.25em;
25 }
26
27 .suggestions-results {
28 background-color: #fff;
29 cursor: pointer;
30 border: 1px solid #a2a9b1;
31 padding: 0;
32 margin: 0;
33 }
34
35 .suggestions-result {
36 color: #000;
37 margin: 0;
38 line-height: 1.5em;
39 padding: 0.01em 0.25em;
40 text-align: left;
41 /* Apply ellipsis to suggestions */
42 overflow: hidden;
43 text-overflow: ellipsis;
44 white-space: nowrap;
45 }
46
47 .suggestions-result-current {
48 background-color: #2a4b8d;
49 color: #fff;
50 }
51
52 .suggestions-special .special-label {
53 color: #72777d;
54 text-align: left;
55 }
56
57 .suggestions-special .special-query {
58 color: #000;
59 font-style: italic;
60 text-align: left;
61 }
62
63 .suggestions-special .special-hover {
64 background-color: #c8ccd1;
65 }
66
67 .suggestions-result-current .special-label,
68 .suggestions-result-current .special-query {
69 color: #fff;
70 }
71
72 .highlight {
73 font-weight: bold;
74 }