diff --git a/pkgs/plt-services/meta/pkg-index/official/static/index.html b/pkgs/plt-services/meta/pkg-index/official/static/index.html index d737fabc96..b4248ad477 100644 --- a/pkgs/plt-services/meta/pkg-index/official/static/index.html +++ b/pkgs/plt-services/meta/pkg-index/official/static/index.html @@ -91,7 +91,6 @@ Package Description - Tags Build diff --git a/pkgs/plt-services/meta/pkg-index/official/static/index.js b/pkgs/plt-services/meta/pkg-index/official/static/index.js index 191da7d42a..49029f330c 100644 --- a/pkgs/plt-services/meta/pkg-index/official/static/index.js +++ b/pkgs/plt-services/meta/pkg-index/official/static/index.js @@ -473,16 +473,16 @@ $( document ).ready(function() { .append($('').attr("class","authors").html("").append( $.map( value['authors'], function ( author, i ) { return addfilterlink ( author, "author:" + author, "possible" ); } ) )), $('').text( value['description'] ) - .append($('').attr("class","docs").html(value['build']['docs'].length > 0 ? "Docs: " : "") + .append($('').attr("class","doctags").html(value['build']['docs'].length > 0 ? "Docs: " : "") .append( $.map( value['build']['docs'], function ( doc, i ) { var dl; if ( doc[2] ) { dl = $('', { href: build_host + doc[2] } ).html(doc[1]); } else { dl = $('').html(doc[1]); } - return $('').append(dl, " ") } ) )), - $('').append( $.map( value['tags'], function ( tag, i ) { - return addfilterlink ( tag, tag, "possible" ); } ) ), + return $('').append(dl, " ") } ) )) + .append($('').attr("class","doctags").html(value['tags'].length > 0 ? "Tags: " : "").append( $.map( value['tags'], function ( tag, i ) { + return addfilterlink ( tag, tag, "possible" ); } ) )), bstatus ); } var pkgdb = {}; diff --git a/pkgs/plt-services/meta/pkg-index/official/static/style.css b/pkgs/plt-services/meta/pkg-index/official/static/style.css index 91c40a42c3..c6f6fbdb1c 100644 --- a/pkgs/plt-services/meta/pkg-index/official/static/style.css +++ b/pkgs/plt-services/meta/pkg-index/official/static/style.css @@ -171,16 +171,21 @@ tr#pi_delete_row td { min-width: 1em; } .packages .authors a { + font-size: small; display: block; color: black; } -.packages .docs { +.packages .doctags { + font-weight: bold; display: block; } -.packages tr td:nth-child(6) { - text-align: center; +.packages .doctags a { + font-weight: normal; } -.packages tr td:nth-child(6) a { +.packages tr td:nth-child(4) { + width: 19em; +} +.packages tr td:nth-child(4) a { text-decoration: none; }