changed display of y-marks

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4583 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
apfelmaennchen 17 years ago
parent f3996e63b8
commit 5fde618337

@ -106,7 +106,7 @@ table.ytable tbody td {
padding: 4px;
background-color: #FFF;
vertical-align: top;
white-space: nowrap;
/* white-space: nowrap; */
text-overflow:ellipsis;
overflow:hidden;
}
@ -123,6 +123,32 @@ table.ytable thead tr .headerSortDown, table.ytable thead tr .headerSortUp {
background-color: #8dbdd8;
}
/* YaCy Bookmarks ---------------------------*/
.url {
padding-top: 1px;
font-size: 0.9em;
line-height: 1.2em;
margin-bottom:0.6em;
}
h3.linktitle {
margin-top:2px;
margin-bottom: -0.5em;
font-size: 1.0em;
line-height: 1.2em;
color:#239AFF;
}
.url a {
color:#20A020;
text-decoration:none;
}
.desc {
font-style:italic;
font-size: 0.9em;
color: #808080;
line-height: 1.2em;
margin-bottom:-1em;
}
/* YaCy Search ---------------------------*/
div.searchresults {
@ -133,12 +159,13 @@ div.searchresults {
div.searchresults.hidden {
display:none;
}
h3.linktitle {
.searchresults h3.linktitle {
margin:2px;
padding-left: 20px;
margin-bottom: -0.5em;
font-size: 1.0em;
line-height: 1.2em;
line-height: 1.2em
}
.snippet {
font-style:italic;
@ -152,9 +179,9 @@ h3.linktitle {
color: black;
}
.searchresults .linktitle a {
color:#239AFF;
color:#239AFF;
text-decoration:none;
}
}
.searchresults .url {
font-size: 0.9em;
line-height: 1.2em;

@ -44,8 +44,7 @@
$('#searchbox').submit(function() {
var tabnr = $('#container > ul').tabs('length');
var result = "result.html?" + $('#searchbox').formSerialize();
var tabname = $("input[@name='search']").getValue();
$('<div id='+tabname+'</div>').appendTo('#container');
var tabname = $("input[@name='search']").getValue();
$tabs.tabs('add', result, '*' + tabname);
$tabs.tabs('select',tabnr);
return false;

@ -3,7 +3,7 @@
$(document).ready(function() {
$('#ymarks')
.tablesorter({widgets: ['zebra']})
.tablesorterPager({container: $('#pager'), size: 15, positionFixed: false});
.tablesorterPager({container: $('#pager'), size: 5, positionFixed: false});
});
</script>
@ -12,18 +12,18 @@
<colgroup>
<col width="25"/>
<col width="25"/>
<col width="250"/>
<col width="250"/>
<col width="210"/>
<col width="40"/>
<col width="425"/>
<col width="150"/>
<col width="150"/>
<col width="25"/>
</colgroup>
<thead>
<tr>
<th class="{sorter: false}"></th>
<th></th>
<th>Title</th>
<th>URL</th>
<th>Tags</th>
<th>Tags</th>
<th>Date</th>
<th class="{sorter: false}"></th>
</tr>
</thead>
@ -41,12 +41,14 @@
#(/public)#
</td>
<td>
#[title]#
</td>
<td class="url">
<a href="#[link]#">#[link]#</a>
</td>
<h3 class="linktitle">#[title]#</h3>
<p class="desc">#[description]#</p>
<p class="url"><a href="#[link]#">#[link]#</a></p>
</td>
<td>#{tags}# #[tag]#,#{/tags}#</td>
<td>
#[date]#
</td>
<td>
<a href="Bookmarks.html?edit=#[hash]#">
<img src="img-2/pencil.png" alt="edit bookmark" title="edit bookmark" border="0" />

Loading…
Cancel
Save