1/**
2 * This file provides styles for the search results page (?do=search)
3 * and the AJAX search popup.
4 */
5
6/* search results page
7********************************************************************/
8
9/* loading gif */
10.dokuwiki #dw__loading {
11}
12
13/*____________ matching pagenames ____________*/
14
15.dokuwiki div.search_quickresult {
16    margin-bottom: 1.4em;
17}
18.dokuwiki div.search_quickresult h3 {
19}
20.dokuwiki div.search_quickresult ul {
21    padding: 0;
22}
23.dokuwiki div.search_quickresult ul li {
24    float: left;
25    width: 12em;
26    margin: 0 1.5em;
27}
28
29/*____________ search results ____________*/
30
31/* container for one search result */
32.dokuwiki div.search_result {
33    margin-bottom: 1.4em;
34}
35/* search snippet */
36.dokuwiki div.search_result div.search_snippet {
37    color: __text_alt__;
38    background-color: inherit;
39}
40
41/* search hit in normal text */
42.dokuwiki .search_hit {
43    color: __text__;
44    background-color: __highlight__;
45}
46/* search hit in search results */
47.dokuwiki div.search_result strong.search_hit {
48    font-weight: normal;
49}
50/* ellipsis separating snippets */
51.dokuwiki div.search_result .search_sep {
52    color: __text__;
53    background-color: inherit;
54}
55
56/* "nothing found" at search + media */
57.dokuwiki div.nothing {
58    margin-bottom: 1.4em;
59}
60
61
62/* AJAX quicksearch popup
63********************************************************************/
64
65.dokuwiki form.search div.no {
66    position: relative;
67}
68
69/* .JSpopup */
70.dokuwiki form.search div.ajax_qsearch {
71    position: absolute;
72    top: 0;
73    left: -13.5em; /* -( width of #qsearch__in + padding of .ajax_qsearch + a bit more ) */
74    width: 12em;
75    padding: 0.5em;
76    font-size: .9em;
77    z-index: 20;
78    text-align: left;
79    display: none;
80}
81.dokuwiki form.search div.ajax_qsearch strong {
82    display: block;
83    margin-bottom: .3em;
84}
85.dokuwiki form.search div.ajax_qsearch ul {
86    margin: 0 !important;
87    padding: 0 !important;
88}
89.dokuwiki form.search div.ajax_qsearch ul li {
90    margin: 0;
91    padding: 0;
92    display: block !important;
93}
94