You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2016/07/20 18:41:35 UTC

[2/2] allura git commit: Updated design of tool listing

Updated design of tool listing


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/611c8bc8
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/611c8bc8
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/611c8bc8

Branch: refs/heads/master
Commit: 611c8bc869d7b4832e4f97d2d0c8d2569cc7abbc
Parents: b82d1a6
Author: Rohan Verma <ro...@gmail.com>
Authored: Thu Jul 7 23:15:32 2016 +0530
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Wed Jul 20 14:39:16 2016 -0400

----------------------------------------------------------------------
 Allura/allura/templates/tool_list.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/611c8bc8/Allura/allura/templates/tool_list.html
----------------------------------------------------------------------
diff --git a/Allura/allura/templates/tool_list.html b/Allura/allura/templates/tool_list.html
index 04ddcec..2063491 100644
--- a/Allura/allura/templates/tool_list.html
+++ b/Allura/allura/templates/tool_list.html
@@ -31,11 +31,11 @@
 {% block content %}
 {{c.page_list.display(page=page, limit=limit, count=total_entries)}}
 <div>
-  <ul>
+  <div class="list">
   {% for e in entries %}
-    <li><a href="{{e.url}}">{{e.label}}</a></li>
+    <div class="list card proj_icon" style="width:97%; height: 30px;"><h2><a href="{{e.url}}">{{e.label}}</a></h2></div>
   {% endfor %}
-  </ul>
+  </div>
 </div>
 {{c.page_list.display(page=page, limit=limit, count=total_entries)}}
 {% endblock %}