aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
diff options
context:
space:
mode:
authorRob Hudson2009-11-06 19:53:16 -0800
committerRob Hudson2009-11-06 19:53:16 -0800
commit124cd110cb4c099430df9d18de5ab1e77a624bca (patch)
treed227b423e6f488ea99ea42bf602de6c7e2d71c98 /debug_toolbar/templates
parent4d1f85f49562ffeb3040b72e631f303bf905cf5e (diff)
downloaddjango-debug-toolbar-124cd110cb4c099430df9d18de5ab1e77a624bca.tar.bz2
Removed general CSS class names.
Diffstat (limited to 'debug_toolbar/templates')
-rw-r--r--debug_toolbar/templates/debug_toolbar/base.html2
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql_explain.html2
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql_profile.html2
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql_select.html2
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/template_source.html2
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">