diff options
-rw-r--r-- | web/html/css/fonts.css | 6 | ||||
-rw-r--r-- | web/template/pkg_details.php | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/web/html/css/fonts.css b/web/html/css/fonts.css index cbc6ddc..9dea935 100644 --- a/web/html/css/fonts.css +++ b/web/html/css/fonts.css @@ -44,6 +44,12 @@ span.f7 /* Green Message */ font-size: 14px; font-weight: bold; } +span.f8 /* Internal Sources in Package Details */ +{ + color: #888; + font-size: 12px; + font-weight: bold; +} span.fix /* Monospace fixed-font */ { color: #000; diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php index a8da6c9..8aba3af 100644 --- a/web/template/pkg_details.php +++ b/web/template/pkg_details.php @@ -173,9 +173,8 @@ $out_of_date_time = ($row["OutOfDateTS"] == 0) ? $msg : gmdate("r", intval($row[ $src = $src[0]; # It is presumably an internal source if ($row["LocationID"] == 2) { - $urlpath = URL_DIR . $row['Name']; - echo "<a href='$urlpath/$src'>"; - echo "$src</a><br />\n"; + echo "<span class='f8'>$src</span>"; + echo "<br />\n"; } } } |