diff options
Diffstat (limited to 'debug_toolbar/templates')
5 files changed, 5 insertions, 5 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html index c82f099..b03047e 100644 --- a/debug_toolbar/templates/debug_toolbar/base.html +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -51,7 +51,7 @@ {% if panel.has_content %} <div id="{{ panel.dom_id }}" class="panelContent"> <div class="djDebugPanelTitle"> - <a href="" class="close">{% trans "Close" %}</a> + <a href="" class="djDebugClose">{% trans "Close" %}</a> <h3>{{ panel.title|safe }}</h3> </div> <div class="djDebugPanelContent"> diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html index 586bc25..a995b92 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html @@ -1,6 +1,6 @@ {% load i18n %} <div class="djDebugPanelTitle"> - <a class="close back" href="">{% trans "Back" %}</a> + <a class="djDebugClose djDebugBack" href="">{% trans "Back" %}</a> <h3>{% trans "SQL Explained" %}</h3> </div> <div class="djDebugPanelContent"> diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html b/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html index f551a6f..7919ee5 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html @@ -1,6 +1,6 @@ {% load i18n %} <div class="djDebugPanelTitle"> - <a class="close back" href="">{% trans "Back" %}</a> + <a class="djDebugClose djDebugBack" href="">{% trans "Back" %}</a> <h3>{% trans "SQL Profiled" %}</h3> </div> <div class="djDebugPanelContent"> diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_select.html b/debug_toolbar/templates/debug_toolbar/panels/sql_select.html index fd839eb..89804fa 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql_select.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_select.html @@ -1,6 +1,6 @@ {% load i18n %} <div class="djDebugPanelTitle"> - <a class="close back" href="">{% trans "Back" %}</a> + <a class="djDebugClose djDebugBack" href="">{% trans "Back" %}</a> <h3>{% trans "SQL Selected" %}</h3> </div> <div class="djDebugPanelContent"> diff --git a/debug_toolbar/templates/debug_toolbar/panels/template_source.html b/debug_toolbar/templates/debug_toolbar/panels/template_source.html index c4044c9..1fc0b68 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/template_source.html +++ b/debug_toolbar/templates/debug_toolbar/panels/template_source.html @@ -1,6 +1,6 @@ {% load i18n %} <div class="djDebugPanelTitle"> - <a class="close back" href="">{% trans "Back" %}</a> + <a class="djDebugClose djDebugBack" href="">{% trans "Back" %}</a> <h3>{% trans 'Template Source' %}: <code>{{ template_name }}</code></h3> </div> <div class="djDebugPanelContent"> |
