-
Notifications
You must be signed in to change notification settings - Fork 53
/
daves-wordpress-live-search.css
114 lines (98 loc) · 1.74 KB
/
daves-wordpress-live-search.css
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/** Dave's WordPress Live Search CSS **/
ul.search_results
{
display: block;
background-color:#fff;
width: 90%;
max-height: 500px;
position:absolute;
top: 20px;
left: 0px;
overflow: auto;
z-index: 9999;
list-style-type: none;
list-style-image: none;
list-style-position: inside;
padding: 0px;
margin: 0px;
-webkit-box-shadow: 2px 2px 2px #eee;
box-shadow: 2px 2px 2px #eee;
}
ul.search_results li
{
display: block;
padding: 5px 10px 5px 10px;
margin: 0px 0px 0px 0px;
border-top: 1px solid #eee;
border-bottom: 1px solid #aaa;
text-align: left;
color: #000;
background-color: #fff;
text-decoration: none;
}
ul.search_results li:hover
{
background-color: #efefef;
}
ul.search_results li a, ul.search_results li a:visited
{
display: block;
color: #000;
margin-left: 0px;
padding-left: 0px;
text-decoration: none;
font-weight: bold;
}
ul.search_results p#daves-wordpress-live-search_author
{
margin: 0px;
font-size: 90%;
font-weight: bold;
}
ul.search_results p#daves-wordpress-live-search_date
{
margin: 0px;
font-size: 90%;
}
/* BEGIN post thumbnails */
ul.search_results li.post_with_thumb a {
width:150px;
float:left;
margin-bottom: 5px;
}
ul.search_results li.post_with_thumb img.post_thumb
{
float: left;
margin: 3px 10px 10px 0px;
height: 48px;
width: 48px;
border: 1px solid #888;
}
/* END post thumbnails */
/* BEGIN post excerpt */
ul.search_results .excerpt, ul.search_results .meta
{
font-size: 75%;
width: 100%;
}
/* END post excerpt */
ul.search_results .clearfix
{
float: none !important;
clear: both !important;
}
.search_footer {
background-color: #888;
width: 100%;
text-align: right;
padding: .5em 0;
font-size: .9em;
}
.search_footer a,
.search_footer a:visited {
color: #fff;
margin-right: 1em;
}
#search_results_activity_indicator{
z-index:999999;
}