From a4818494b40c68de770b51cc9b1b1bb910c2ce13 Mon Sep 17 00:00:00 2001 From: Stephen Mitchell Date: Thu, 3 Nov 2022 08:13:42 -0400 Subject: [PATCH] Fix highlighting on history panel (#1698) Fixes row background color on highlighted odd-numbered history panel rows. --- debug_toolbar/static/debug_toolbar/css/toolbar.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug_toolbar/static/debug_toolbar/css/toolbar.css b/debug_toolbar/static/debug_toolbar/css/toolbar.css index f87d7a133..4ad2a6df9 100644 --- a/debug_toolbar/static/debug_toolbar/css/toolbar.css +++ b/debug_toolbar/static/debug_toolbar/css/toolbar.css @@ -356,7 +356,7 @@ margin-top: 0.8em; overflow: auto; } -#djDebug .djdt-panelContent tbody > tr:nth-child(odd) { +#djDebug .djdt-panelContent tbody > tr:nth-child(odd):not(.djdt-highlighted) { background-color: #f5f5f5; } #djDebug .djdt-panelContent tbody td,