blob: f2b0b1c53b64528deda44403c6fe73523d141e49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
This file is licensed under the Affero General Public License version 3 or later.
See the COPYING-README file. */
#searchresults
{
background-color: #fff;
border-bottom-left-radius: 1em;
box-shadow: 0 0 10px #000;
list-style: none;
max-height: 80%;
moz-border-radius-bottomleft: 1em;
moz-box-shadow: 0 0 10px #000;
overflow: hidden;
padding-bottom: 1em;
position: fixed;
right: 0;
text-overflow: ellipsis;
top: 3.5em;
webkit-border-bottom-left-radius: 1em;
webkit-box-shadow: 0 0 10px #000;
width: 26.5em;
z-index: 75;
}
#searchresults li.resultHeader
{
background-color: #eee;
border-bottom: solid 1px #CCC;
font-size: 1.2em;
font-weight: bold;
padding: .2em;
}
#searchresults li.result
{
margin-left: 2em;
}
#searchresults table
{
border-spacing: 0;
table-layout: fixed;
top: 0;
width: 100%;
}
#searchresults td
{
padding: 0 .3em;
vertical-align: top;
}
#searchresults td.result div.text
{
padding-left: 1em;
white-space: nowrap;
}
#searchresults td.result *
{
cursor: pointer;
}
#searchresults td.type
{
border-bottom: none;
border-right: 1px solid #aaa;
font-weight: bold;
text-align: right;
width: 3.5em;
}
#searchresults tr.current
{
background-color: #ddd;
}
|