diff options
| author | Rob Hudson | 2009-11-06 19:53:16 -0800 |
|---|---|---|
| committer | Rob Hudson | 2009-11-06 19:53:16 -0800 |
| commit | 124cd110cb4c099430df9d18de5ab1e77a624bca (patch) | |
| tree | d227b423e6f488ea99ea42bf602de6c7e2d71c98 /debug_toolbar/templates | |
| parent | 4d1f85f49562ffeb3040b72e631f303bf905cf5e (diff) | |
| download | django-debug-toolbar-124cd110cb4c099430df9d18de5ab1e77a624bca.tar.bz2 | |
Removed general CSS class names.
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"> |
