diff rhodecode/templates/compare/compare_cs.html @ 3011:25d77aef2729 beta

Optimized look of compare view of changesets. Added cut off limit for compare view
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 17 Nov 2012 17:14:02 +0100
parents c25cc1c7c65f
children 16af24982e30
line wrap: on
line diff
--- a/rhodecode/templates/compare/compare_cs.html	Fri Nov 16 21:27:04 2012 +0100
+++ b/rhodecode/templates/compare/compare_cs.html	Sat Nov 17 17:14:02 2012 +0100
@@ -18,10 +18,11 @@
         %endif
         </td>
         <td><div class="author">${h.person(cs.author)}</div></td>
-        <td><span class="tooltip" title="${h.age(cs.date)}">${cs.date}</span></td>
-        <td><div class="message">${h.urlify_commit(h.wrap_paragraphs(cs.message),c.repo_name)}</div></td>
+        <td><span class="tooltip" title="${h.tooltip(h.age(cs.date))}">${cs.date}</span></td>
+        <td><div class="message tooltip" title="${h.tooltip(cs.message)}" style="white-space:normal">${h.urlify_commit(h.shorter(cs.message, 60),c.repo_name)}</div></td>
         </tr>
     %endfor
+
   %endif
   </table>
 </div>