1
0
Fork 0
forked from wezm/wezm.net
wezm.net/output/css/jsonSuggest.css
Wesley Moore 194890e733 Implement article search
Need to refactor the javascript into an Articles object or something that can be used to load the article data. The JS pagination functionality would then be seperate to this.
2010-03-03 08:03:23 +11:00

49 lines
No EOL
887 B
CSS
Executable file

div.jsonSuggestResults {
position:absolute;
border:1px solid #CCC;
padding:0px;
margin:0px 2px;
z-index:1;
}
div.jsonSuggestResults div.resultItem {
margin:0px;
padding:5px;
position:relative;
height:auto;
cursor:pointer;
}
div.jsonSuggestResults div.resultItem.odd {
background-color:#9ADFFE;
}
div.jsonSuggestResults div.resultItem.even {
background-color:#FFFFFF;
}
div.jsonSuggestResults div.resultItem.hover {
background-color:#3399FF;
}
div.jsonSuggestResults div.resultItem img {
float:left;
margin-right:10px;
}
div.jsonSuggestResults div.resultItem p {
margin:0px;
padding:0px;
}
div.jsonSuggestResults div.resultItem p strong {
font-weight:bold;
text-decoration:underline;
}
div.jsonSuggestResults div.resultItem p.extra {
font-size: x-small !important;
position:absolute;
bottom:3px;
right: 3px;
}