# HG changeset patch # User Brian Neal # Date 1299632587 0 # Node ID c3cc431b7fb963da27a1eab75f1c60b00ceecd27 # Parent 84bcaff131296820afbb3495a8d6c2220a466306 Adding a solid-background css class. Making the news stories use it to block out the rays. diff -r 84bcaff13129 -r c3cc431b7fb9 gpp/templates/news/story.html --- a/gpp/templates/news/story.html Wed Mar 09 00:49:41 2011 +0000 +++ b/gpp/templates/news/story.html Wed Mar 09 01:03:07 2011 +0000 @@ -14,6 +14,7 @@ {% endif %} {% endblock %} {% block news_content %} +

{{ story.title }}

Submitted by {{ story.submitter.username }} on {{ story.date_submitted|date:"F d, Y" }}. @@ -59,4 +60,5 @@

Comments are closed for this story. If you'd like to share your thoughts on this story with the site staff, you can contact us directly.

{% endif %} +
{% endblock %} diff -r 84bcaff13129 -r c3cc431b7fb9 gpp/templates/news/story_summary.html --- a/gpp/templates/news/story_summary.html Wed Mar 09 00:49:41 2011 +0000 +++ b/gpp/templates/news/story_summary.html Wed Mar 09 01:03:07 2011 +0000 @@ -2,7 +2,7 @@ {% load tagging_tags %} {% load comment_tags %} {% get_comment_count for story as comment_count %} -
+
{% if on_home %}

{{ story.title }}

{% else %} diff -r 84bcaff13129 -r c3cc431b7fb9 static/css/base.css --- a/static/css/base.css Wed Mar 09 00:49:41 2011 +0000 +++ b/static/css/base.css Wed Mar 09 01:03:07 2011 +0000 @@ -427,3 +427,6 @@ tr.forum-post.odd td { background-color: #EDF7F6; } +.solid-background { + background-color: #EDF7F6; +}