Remove the use of static images in favor of sprites

This commit is contained in:
Roberto Rosario
2015-01-08 00:50:23 -04:00
parent f7f71d706d
commit 60a9eaaf4a

View File

@@ -44,13 +44,13 @@
<h4>{{ message }}</h4>
<div class="group navform wat-cf">
<button class="button" type="submit">
<img src="{% static 'web_theme_media/images/icons/tick.png' %}" alt="{% trans 'Yes' %}" /> {% trans 'Yes' %}
<button class="pure-button mayan-button" type="submit">
<span class="famfam active famfam-tick"></span> {% trans 'Yes' %}
</button>
{% if previous %}
<a href="#header" onclick='{% if previous %}window.location.replace("{{ previous }}");{% else %}history.go(-1);{% endif %}' class="button">
<img src="{% static 'web_theme_media/images/icons/cross.png' %}" alt="{% trans 'No' %}"/> {% trans 'No' %}
</a>
&nbsp;<a href="#header" onclick='{% if previous %}window.location.replace("{{ previous }}");{% else %}history.go(-1);{% endif %}' class="pure-button mayan-button">
<span class="famfam active famfam-cross"></span> {% trans 'No' %}
</a>
{% endif %}
</div>