Merge "Type hint against LinkTarget in WatchedItemStore"
[lhc/web/wiklou.git] / resources / src / jquery / jquery.suggestions.css
1 /* suggestions plugin */
2
3 /* stylelint-disable selector-class-pattern */
4
5 .suggestions {
6 overflow: hidden;
7 position: absolute;
8 top: 0;
9 left: 0;
10 width: 0;
11 border: 0;
12 z-index: 1099;
13 padding: 0;
14 margin: -1px 0 0 0;
15 }
16
17 .suggestions-special {
18 position: relative;
19 background-color: #fff;
20 cursor: pointer;
21 border: 1px solid #a2a9b1;
22 margin: 0;
23 margin-top: -2px;
24 display: none;
25 padding: 0.25em 0.25em;
26 line-height: 1.25em;
27 }
28
29 .suggestions-results {
30 background-color: #fff;
31 cursor: pointer;
32 border: 1px solid #a2a9b1;
33 padding: 0;
34 margin: 0;
35 }
36
37 .suggestions-result {
38 color: #000;
39 margin: 0;
40 line-height: 1.5em;
41 padding: 0.01em 0.25em;
42 text-align: left;
43 /* Apply ellipsis to suggestions */
44 overflow: hidden;
45 text-overflow: ellipsis;
46 white-space: nowrap;
47 }
48
49 .suggestions-result-current {
50 background-color: #2a4b8d;
51 color: #fff;
52 }
53
54 .suggestions-special .special-label {
55 color: #72777d;
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: #c8ccd1;
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 }