# HG changeset patch
# User Anton Shestakov <av6@dwimlabs.net>
# Date 1469632851 -28800
# Node ID b06da1c7560e6ab384d5a52e8c6337632360694e
# Parent  733e60f38046f0b5e325be047187842c780aa538
templates: cancel nowrap from the whole table for commit messages

Apparently uk-text-break is not the right helper class for this. Huh.

diff -r 733e60f38046 -r b06da1c7560e static/main.css
--- a/static/main.css	Wed Jul 27 23:17:24 2016 +0800
+++ b/static/main.css	Wed Jul 27 23:20:51 2016 +0800
@@ -72,6 +72,10 @@
     word-wrap: break-word;
 }
 
+.wrap-normal {
+    white-space: normal;
+}
+
 .uk-badge {
     border: none;
     border-radius: 3px;
diff -r 733e60f38046 -r b06da1c7560e templates/project.html
--- a/templates/project.html	Wed Jul 27 23:17:24 2016 +0800
+++ b/templates/project.html	Wed Jul 27 23:20:51 2016 +0800
@@ -26,7 +26,7 @@
             <td><a href="{{ adapter.get_branch_url(change) }}">{{ change.branch }}</a></td>
             <td><a href="{{ adapter.get_commit_url(change) }}">{% if change.rev is not None %}{{ change.rev }}:{% end %}{{ change.node[:12] }}</a></td>
             <td class="uk-width-1-1">
-              <div class="uk-text-break">{{ change.message }}</div>
+              <div class="wrap-normal">{{ change.message }}</div>
               <div>{{ change.author }}, {% module Time(change.date, False) %}</div>
             </td>
             <td>{% module Time(check.finished) %}</td>