From 89d137f3be1685dfc2ce0968835c73667bffb0ba Mon Sep 17 00:00:00 2001 From: Hrushikesh Vaidya Date: Mon, 24 Jan 2022 12:12:52 +0530 Subject: [PATCH] Fixed #33457 -- Fixed "Local vars" scrolling in technical 500 debug page. Thanks Keryn Knight for the report and the initial patch. --- django/views/templates/technical_500.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/views/templates/technical_500.html b/django/views/templates/technical_500.html index c09f09a19b4..6bd6e16708e 100644 --- a/django/views/templates/technical_500.html +++ b/django/views/templates/technical_500.html @@ -24,7 +24,7 @@ font-weight:normal; font-size:11px; border:1px solid #ddd; } tbody th { width:12em; text-align:right; color:#666; padding-right:.5em; } - table.vars { margin:5px 0 2px 40px; } + table.vars { margin:5px 10px 2px 40px; width: auto; } table.vars td, table.req td { font-family:monospace; } table td.code { width:100%; } table td.code pre { overflow:hidden; word-break: break-word; }