Merge "Log a backtrace from the culprit location if headers were already sent"
[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: solid 1px #aaa;
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: solid 1px #aaa;
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 -o-text-overflow: ellipsis; /* Opera 9 to 10 */
44 text-overflow: ellipsis;
45 white-space: nowrap;
46 }
47
48 .suggestions-result-current {
49 background-color: #4c59a6;
50 color: #fff;
51 }
52
53 .suggestions-special .special-label {
54 color: #808080;
55 text-align: left;
56 }
57
58 .suggestions-special .special-query {
59 color: #000;
60 font-style: italic;
61 text-align: left;
62 }
63
64 .suggestions-special .special-hover {
65 background-color: #c0c0c0;
66 }
67
68 .suggestions-result-current .special-label,
69 .suggestions-result-current .special-query {
70 color: #fff;
71 }
72
73 .highlight {
74 font-weight: bold;
75 }