From f0e0bc00538c35288832ac645914592eadebec2b Mon Sep 17 00:00:00 2001 From: Thom Brown Date: Fri, 18 Nov 2011 15:54:37 +0000 Subject: [PATCH] Remove deprecated bold tags from quotes page and add CSS rules to space quotes out. --- media/css/layout.css | 5 +++++ templates/quotes/quotelist.html | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/media/css/layout.css b/media/css/layout.css index 946f21c4..3de23e22 100644 --- a/media/css/layout.css +++ b/media/css/layout.css @@ -382,6 +382,11 @@ img.pgArrowImage { padding-top: 10px; } +#pgContentWrap dd.quote_source { + font-weight: bold; + margin-bottom: 18px; +} + #pgAdminWrap { padding-top: 10px; padding-bottom: 10px; diff --git a/templates/quotes/quotelist.html b/templates/quotes/quotelist.html index 010f33f7..5864e284 100644 --- a/templates/quotes/quotelist.html +++ b/templates/quotes/quotelist.html @@ -5,7 +5,7 @@
{% for obj in quotes %}
{{obj.quote|safe}}
-
{{obj.who}}, {{obj.org}}
+
{{obj.who}}, {{obj.org}}
{% endfor %}
{%endblock%}