Skip to content

Commit 849f79f

Browse files
authored
Merge pull request #786 from virtosubogdan/small_ui_fix
Fix table display
2 parents 2e728b2 + bedd3be commit 849f79f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

debug_toolbar/static/debug_toolbar/css/toolbar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@
287287
border-collapse:collapse;
288288
width:100%;
289289
background-color:#fff;
290-
display:block;
290+
display:table;
291291
margin-top:0.8em;
292292
overflow: auto;
293293
}

debug_toolbar/templates/debug_toolbar/panels/request.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ <h4>{% trans "View information" %}</h4>
1111
</tr>
1212
</thead>
1313
<tbody>
14-
<tr>
15-
<td class="djDebugOdd"><code>{{ view_func }}</code></td>
16-
<td class="djDebugEven"><code>{{ view_args|pprint }}</code></td>
17-
<td class="djDebugOdd"><code>{{ view_kwargs|pprint }}</code></td>
18-
<td class="djDebugEven"><code>{{ view_urlname }}</code></td>
14+
<tr class="djDebugOdd">
15+
<td><code>{{ view_func }}</code></td>
16+
<td><code>{{ view_args|pprint }}</code></td>
17+
<td><code>{{ view_kwargs|pprint }}</code></td>
18+
<td><code>{{ view_urlname }}</code></td>
1919
</tr>
2020
</tbody>
2121
</table>

0 commit comments

Comments
 (0)