diff options
author | Dan McGee <dan@archlinux.org> | 2012-07-23 20:57:16 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-07-23 20:57:16 -0500 |
commit | a4de5b50279c876cc7a3afb2ea18d477bbb25ec1 (patch) | |
tree | a79b3ee20798ac3ebbb712d461c1ef5f91790167 | |
parent | 84f494954e9e49d82f5db055bb52ac3df16055d9 (diff) |
Clean up package file list styles
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | sitestatic/archweb.css | 10 | ||||
-rw-r--r-- | templates/packages/files.html | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sitestatic/archweb.css b/sitestatic/archweb.css index cafae777..0638d711 100644 --- a/sitestatic/archweb.css +++ b/sitestatic/archweb.css @@ -811,12 +811,12 @@ form#flag-pkg-form input[type=text] { padding-top: 1em; } - #pkgdetails #pkgfiles li.d { - color: #666; - } +#pkgfilelist li.d { + color: #666; +} - #pkgdetails #pkgfiles li.f { - } +#pkgfilelist li.f { +} /* mirror stuff */ table td.country { diff --git a/templates/packages/files.html b/templates/packages/files.html index ba3fba25..3e718ed0 100644 --- a/templates/packages/files.html +++ b/templates/packages/files.html @@ -6,9 +6,9 @@ <div id="pkgdetails" class="box"> <h2>{{ pkg.pkgname }} {{ pkg.full_version }} File List</h2> - <div id="metadata"><div id="pkgfiles"> - <p>Package has {{ files_count }} file{{ files_count|pluralize }} and {{ dir_count }} director{{ dir_count|pluralize:"y,ies" }}.</p> - <p><a href="{{ pkg.get_absolute_url }}">Back to Package</a></p> + <p>Package has {{ files_count }} file{{ files_count|pluralize }} and {{ dir_count }} director{{ dir_count|pluralize:"y,ies" }}.</p> + <p><a href="{{ pkg.get_absolute_url }}">Back to Package</a></p> + <div id="metadata"><div id="pkgfilelist"> {% include "packages/files_list.html" %} </div></div> |