Remove deprecated bold tags from quotes page and add CSS rules to space quotes out.

This commit is contained in:
Thom Brown
2011-11-18 15:54:37 +00:00
parent bce1c1b103
commit f0e0bc0053
2 changed files with 6 additions and 1 deletions

View File

@ -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;

View File

@ -5,7 +5,7 @@
<dl>
{% for obj in quotes %}
<dt>{{obj.quote|safe}}</dt>
<dd><b>{{obj.who}}, <a href="{{obj.link}}">{{obj.org}}</a></b></dd>
<dd class="quote_source">{{obj.who}}, <a href="{{obj.link}}">{{obj.org}}</a></dd>
{% endfor %}
</dl>
{%endblock%}