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