From eba4e32891f12bca2b922ee6d859513f67789f42 Mon Sep 17 00:00:00 2001
From: Dan McGee
Date: Thu, 26 Apr 2012 14:43:18 -0500
Subject: Package files display tweaks
Slightly gray out the directories when displaying file lists, drawing
more attention to the file names instead.
Signed-off-by: Dan McGee
---
sitestatic/archweb.css | 7 +++++++
templates/packages/files.html | 8 ++++----
templates/packages/files_list.html | 2 +-
3 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/sitestatic/archweb.css b/sitestatic/archweb.css
index 95663008..bc666d74 100644
--- a/sitestatic/archweb.css
+++ b/sitestatic/archweb.css
@@ -797,6 +797,13 @@ form#flag-pkg-form input[type=text] {
padding-top: 1em;
}
+ #pkgdetails #pkgfiles li.d {
+ color: #666;
+ }
+
+ #pkgdetails #pkgfiles li.f {
+ }
+
/* mirror stuff */
table td.country {
white-space: normal;
diff --git a/templates/packages/files.html b/templates/packages/files.html
index 6524fe93..ba3fba25 100644
--- a/templates/packages/files.html
+++ b/templates/packages/files.html
@@ -5,12 +5,12 @@
{% block content %}
-
Package File List: {{ pkg.pkgname }} {{ pkg.full_version }}
-
{% endblock %}
diff --git a/templates/packages/files_list.html b/templates/packages/files_list.html
index 156d8588..93a2c847 100644
--- a/templates/packages/files_list.html
+++ b/templates/packages/files_list.html
@@ -6,7 +6,7 @@ of the package; it may be out of date.
{% if files|length %}
{% for file in files %}
-- {{ file.directory }}{{ file.filename|default:'' }}
{% endfor %}
+- {{ file.directory }}{{ file.filename|default:'' }}
{% endfor %}
{% else %}
Package has no files.
--
cgit v1.2.3-2-g168b