Skip to content

Commit af20524

Browse files
committed
Added CSS classes to the SQL panel tables.
1 parent 1a619cd commit af20524

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

debug_toolbar/templates/debug_toolbar/panels/sql_explain.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h3>{% trans "SQL Explained" %}</h3>
1111
<dt>{% trans "Time" %}</dt>
1212
<dd>{{ duration }} ms</dd>
1313
</dl>
14-
<table>
14+
<table class="djSqlExplain">
1515
<thead>
1616
<tr>
1717
{% for h in headers %}

debug_toolbar/templates/debug_toolbar/panels/sql_profile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h3>{% trans "SQL Profiled" %}</h3>
1212
<dt>{% trans "Time" %}</dt>
1313
<dd>{{ duration }} ms</dd>
1414
</dl>
15-
<table>
15+
<table class="djSqlProfile">
1616
<thead>
1717
<tr>
1818
{% for h in headers %}

debug_toolbar/templates/debug_toolbar/panels/sql_select.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h3>{% trans "SQL Selected" %}</h3>
1212
<dd>{{ duration }} ms</dd>
1313
</dl>
1414
{% if result %}
15-
<table>
15+
<table class="djSqlSelect">
1616
<thead>
1717
<tr>
1818
{% for h in headers %}

0 commit comments

Comments
 (0)