changeset 279:879d39647064

Added the text class to the search input box to let blueprints css style it. Fixed invalid HTML problem with the forum last post info tag.
author Brian Neal <bgneal@gmail.com>
date Sun, 03 Oct 2010 00:28:23 +0000
parents 2a795fd602a4
children 21d2ca3b4bf7
files gpp/templates/forums/last_post_info.html gpp/templates/search/search.html
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gpp/templates/forums/last_post_info.html	Sun Oct 03 00:26:42 2010 +0000
+++ b/gpp/templates/forums/last_post_info.html	Sun Oct 03 00:28:23 2010 +0000
@@ -1,6 +1,6 @@
 {% load forum_tags %}
 {% if post %}
-<a href="{{ post.get_absolute_url }}" title="Goto last post"><img src="{{ MEDIA_URL }}icons/note_go.png" alt="Goto last post" />
+<a href="{{ post.get_absolute_url }}" title="Goto last post"><img src="{{ MEDIA_URL }}icons/note_go.png" alt="Goto last post" /></a>
 <a href="{{ post.get_absolute_url }}" title="Goto last post">{% forum_date post.creation_date user %}</a><br />
 <a href="{% url bio-view_profile username=post.user.username %}" title="View profile for {{ post.user.username }}">{{ post.user.username }}</a>
 {% else %}
--- a/gpp/templates/search/search.html	Sun Oct 03 00:26:42 2010 +0000
+++ b/gpp/templates/search/search.html	Sun Oct 03 00:28:23 2010 +0000
@@ -6,7 +6,7 @@
 <form method="get" action=".">
 <table>
    <tr>
-      <td><input type="text" name="q" id="id_q" size="48" /></td>
+      <td><input type="text" name="q" id="id_q" size="48" class="text" /></td>
       <td><input type="submit" value="Search" /></td>
    </tr>
 </table>