diff options
-rw-r--r-- | chimere/static/chimere/css/styles.css | 1 | ||||
-rw-r--r-- | chimere/templates/chimere/blocks/panel_footer.html | 2 | ||||
-rw-r--r-- | chimere/templates/chimere/main_map.html | 5 |
3 files changed, 4 insertions, 4 deletions
diff --git a/chimere/static/chimere/css/styles.css b/chimere/static/chimere/css/styles.css index d6f85a8..28e4cd2 100644 --- a/chimere/static/chimere/css/styles.css +++ b/chimere/static/chimere/css/styles.css @@ -2930,6 +2930,7 @@ div#panel{ width: 283px; height: 26px; font-size: 0.88em; + z-index: 10; } #footer-panel a{ diff --git a/chimere/templates/chimere/blocks/panel_footer.html b/chimere/templates/chimere/blocks/panel_footer.html new file mode 100644 index 0000000..e25908d --- /dev/null +++ b/chimere/templates/chimere/blocks/panel_footer.html @@ -0,0 +1,2 @@ +{% load i18n %} +{% if contact_email %}<a href='mailto:{{contact_email}}' id='contactus'>{% trans "contact" %}</a> | {% endif %} diff --git a/chimere/templates/chimere/main_map.html b/chimere/templates/chimere/main_map.html index 1e0b5d4..3bf1d95 100644 --- a/chimere/templates/chimere/main_map.html +++ b/chimere/templates/chimere/main_map.html @@ -48,10 +48,7 @@ <i class="fa fa-arrow-circle-left" aria-hidden="true"></i> <p>REVENIR AUX CATÉGORIES</p> </div> <div class='footer' id='footer-panel'> - {% if contact_email %}<a href='mailto:{{contact_email}}' id='contactus'>{% trans "contact" %}</a> | {% endif %} - {% comment%} - <a href="{% url 'chimere:extra_page' '' 'legal' %}" id='page-legal' class='dyn-page'>{% trans "terms of service & credits" %}</a> - {% endcomment %} + {% include "chimere/blocks/panel_footer.html" %} </div> </div> {% endblock %} |