You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by he...@apache.org on 2015/10/28 19:01:30 UTC

[08/50] [abbrv] allura git commit: [#7924] ticket:858 Fix "Download Snapshot" button

[#7924] ticket:858 Fix "Download Snapshot" button


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

Branch: refs/heads/hs/7919
Commit: 31d9509e2a67bd44500315a66d184fb285fd1be2
Parents: 0608f1e
Author: Igor Bondarenko <je...@gmail.com>
Authored: Tue Oct 27 18:00:30 2015 +0200
Committer: Igor Bondarenko <je...@gmail.com>
Committed: Tue Oct 27 18:00:30 2015 +0200

----------------------------------------------------------------------
 Allura/allura/templates/repo/tree.html | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/31d9509e/Allura/allura/templates/repo/tree.html
----------------------------------------------------------------------
diff --git a/Allura/allura/templates/repo/tree.html b/Allura/allura/templates/repo/tree.html
index 1fc2d80..def5aa6 100644
--- a/Allura/allura/templates/repo/tree.html
+++ b/Allura/allura/templates/repo/tree.html
@@ -42,7 +42,6 @@ form.tarball button {
     box-shadow: none;
     text-shadow: none;
     color:  #fff;
-    font-family: "Ubuntu", sans-serif;
     font-weight: normal;;
     padding: 0;
     margin-bottom: 0;
@@ -59,7 +58,7 @@ form.tarball button:hover {
 {% if tarball_url %}
 <form class="tarball" action="{{ tarball_url }}" method="post">
   <input type="hidden" name="path" value="{{ path or '' }}" />
-  <button>{{ g.icons['download'].render(title='Download Snapshot', show_title=True) }}</button>
+  <button>{{ g.icons['download'].render(tag='span', title='Download Snapshot', show_title=True) }}</button>
   {{lib.csrf_token()}}
 </form>
 {% endif %}