First pass at a less obtrusive style for the "attribution" (author,
authorBrendan Jurd <[email protected]>
Fri, 3 Jul 2009 23:28:28 +0000 (19:28 -0400)
committerRobert Haas <[email protected]>
Fri, 3 Jul 2009 23:28:28 +0000 (19:28 -0400)
date) of comments.

html/layout/css/blue/commitfest.css
template/commitfest_view.tt2

index 02543a8f0f3f25dfb6825fffc993bc76638dae9a..c2705a16fd34329570f69f30aab73f13cdb3cdba 100644 (file)
@@ -98,6 +98,11 @@ h3 {
   font-weight: bold;
 }
 
+.txtAttribution {
+  font-size: 90%;
+  color: #999;
+}
+
 p, ol, ul, li {
   line-height: 1.5em;
 }
@@ -108,7 +113,6 @@ p, ol, ul, li {
   color: #ffffff
 }
 
-
 a:link                          { color:#0066A2; text-decoration: underline; }
 a:visited                       { color:#004E66; text-decoration: underline; }
 a:active                        { color:#0066A2; text-decoration: underline; }
index 1d6d43f679e44a1def560ab0639380efe15976aa..65e0155d1678ad9d5d7d2de7faaa90bcbcb5a054 100644 (file)
@@ -22,9 +22,9 @@ changes, click on the patch name.</p>
   <td class='colLast'>&nbsp;</td>
 [% ELSE %]
   <td class='colFirstT'><a href='/action/patch_view?id=[% p.id %]'>[% p.name | htmlsafe %]</a>
-  <div style='padding-left: 10px'>
+  <div style='padding-left: 2em;'>
     [% FOREACH c = p.comment_list %]
-    <div>[% IF c.message_id != '' %]<a href='http://archives.postgresql.org/message-id/[% c.message_id | htmlsafe %]'>[% END %][% c.patch_comment_type | htmlsafe %][% IF c.message_id != '' %]</a>[% END %]: [% c.content | html %] ([% c.creator | html %]: [% c.creation_time | html %])</div>
+    <div><span class='txtAttribution'>[% c.creator | html %] at [% c.creation_time | html %]:</span> [% IF c.message_id != '' %]<a href='http://archives.postgresql.org/message-id/[% c.message_id | htmlsafe %]'>[% END %][% c.patch_comment_type | htmlsafe %][% IF c.message_id != '' %]</a>[% END %] - [% c.content | html %]</div>
     [% END %]
   </div>
   </td>