diff options
author | Bruno Mendes <brunosouza@alunos.utfpr.edu.br> | 2016-10-31 11:16:34 -0200 |
---|---|---|
committer | Bruno Mendes <brunosouza@alunos.utfpr.edu.br> | 2016-10-31 11:16:34 -0200 |
commit | d5c5025298ebc6e2c3689b6928721b5988c44688 (patch) | |
tree | d9e00a21d3b60107d2e5fe558d5a8aa520cb8f67 | |
parent | a139fd6a8579115774dc9d8c3276cc3d7a0c2e1d (diff) | |
download | patchwork-d5c5025298ebc6e2c3689b6928721b5988c44688.tar patchwork-d5c5025298ebc6e2c3689b6928721b5988c44688.tar.gz |
Remove 'htdocs/images'
-rw-r--r-- | htdocs/images/16-em-cross.png | bin | 469 -> 0 bytes | |||
-rw-r--r-- | htdocs/images/16-em-down.png | bin | 400 -> 0 bytes | |||
-rw-r--r-- | patchwork/templates/patchwork/bundles.html | 9 |
3 files changed, 4 insertions, 5 deletions
diff --git a/htdocs/images/16-em-cross.png b/htdocs/images/16-em-cross.png Binary files differdeleted file mode 100644 index 466e3bb..0000000 --- a/htdocs/images/16-em-cross.png +++ /dev/null diff --git a/htdocs/images/16-em-down.png b/htdocs/images/16-em-down.png Binary files differdeleted file mode 100644 index 50ac318..0000000 --- a/htdocs/images/16-em-down.png +++ /dev/null diff --git a/patchwork/templates/patchwork/bundles.html b/patchwork/templates/patchwork/bundles.html index 45bdec5..83e1bd0 100644 --- a/patchwork/templates/patchwork/bundles.html +++ b/patchwork/templates/patchwork/bundles.html @@ -30,16 +30,15 @@ <td style="text-align: right">{{ bundle.patches.count }}</td> <td style="text-align: center;"><a href="{% url 'bundle-mbox' username=bundle.owner.username bundlename=bundle.name %}" - ><img src="{% static "images/16-em-down.png" %}" width="16" height="16" alt="download" - title="download"/></a></td> + ><span class="glyphicon glyphicon-download-alt"></span></a></td> <td style="text-align: center;"> <form method="post" onsubmit="return confirm_delete('bundle', '{{bundle.name|escapejs}}');"> {% csrf_token %} {{ bundle.delete_form.as_p }} - <input type="image" - src="{% static "images/16-em-cross.png" %}" width="16" height="16" alt="delete" - title="delete" border="0" style="border: none;"/> + <button type="submit" style="background: transparent; border: 0px; padding: 0; outline: 0;"> + <span class="glyphicon glyphicon-remove"></span> + </button> </form> </td> |