This commit is contained in:
Jay McCarthy 2014-09-23 20:39:09 -04:00
parent 480c60ceb0
commit e88bf026e0
3 changed files with 11 additions and 8 deletions

View File

@ -91,7 +91,6 @@
<th></th>
<th>Package</th>
<th>Docs</th>
<th>Authors</th>
<th>Description</th>
<th>Tags</th>
<th>Build</th>

View File

@ -469,16 +469,16 @@ $( document ).ready(function() {
$('<td sorttable_customkey="' + value['last-updated'] + '">').html("")
.append( curate_span ),
$('<td>').html("")
.append( jslink( value['name'], function () { open_info ( value ); }) ),
.append( jslink( value['name'], function () { open_info ( value ); }) )
.append($('<span>').attr("class","authors").html("").append( $.map( value['authors'], function ( author, i ) {
return addfilterlink ( author, "author:" + author, "possible" ); } ) )),
$('<td>').html("").append( $.map( value['build']['docs'], function ( doc, i ) {
var dl;
if ( doc[2] ) {
dl = $('<a>', { href: build_host + doc[2] } ).html(doc[1]); }
else {
dl = $('<del>').html(doc[1]); }
return $('<span>').append(dl, " ") } ) ),
$('<td>').html("").append( $.map( value['authors'], function ( author, i ) {
return addfilterlink ( author, "author:" + author, "possible" ); } ) ),
return $('<span>').append(dl, " ") } ) ),
$('<td>').text( value['description'] ),
$('<td>').append( $.map( value['tags'], function ( tag, i ) {
return addfilterlink ( tag, tag, "possible" ); } ) ),

View File

@ -31,7 +31,7 @@ body {
}
.breadcrumb a:hover {
color: blue;
color: white;
text-decoration: underline;
}
@ -165,10 +165,14 @@ tr#pi_delete_row td {
.packages tr td:nth-child(1) {
min-width: 1em;
}
.packages tr td:nth-child(7) {
.packages .authors a {
display: block;
color: black;
}
.packages tr td:nth-child(6) {
text-align: center;
}
.packages tr td:nth-child(7) a {
.packages tr td:nth-child(6) a {
text-decoration: none;
}