mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 01:42:32 +00:00
194890e733
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.
49 lines
No EOL
887 B
CSS
Executable file
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;
|
|
} |