From 59e0c265d671bb1e05dc30e33fd397e8bb53381b Mon Sep 17 00:00:00 2001 From: Stephen Mitchell Date: Wed, 2 Nov 2022 10:25:33 -0400 Subject: [PATCH 1/4] Update toolbar.css --- 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..9307096db 100644 --- a/debug_toolbar/static/debug_toolbar/css/toolbar.css +++ b/debug_toolbar/static/debug_toolbar/css/toolbar.css @@ -622,7 +622,7 @@ max-height: 100%; } #djDebug .djdt-highlighted { - background-color: lightgrey; + background-color: lightgrey!important; } #djDebug tr.djdt-highlighted.djdt-profile-row { background-color: #ffc; From 2025555ab221e943de8d0700ae16073b791fb68c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 2 Nov 2022 14:27:57 +0000 Subject: [PATCH 2/4] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- 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 9307096db..8d9c7adb7 100644 --- a/debug_toolbar/static/debug_toolbar/css/toolbar.css +++ b/debug_toolbar/static/debug_toolbar/css/toolbar.css @@ -622,7 +622,7 @@ max-height: 100%; } #djDebug .djdt-highlighted { - background-color: lightgrey!important; + background-color: lightgrey !important; } #djDebug tr.djdt-highlighted.djdt-profile-row { background-color: #ffc; From 70656a121bbbc0e72933e974f605d31cfe73254a Mon Sep 17 00:00:00 2001 From: Stephen Mitchell Date: Thu, 3 Nov 2022 07:32:54 -0400 Subject: [PATCH 3/4] Fixes row background color on highlighted odd-numbered history panel rows. --- debug_toolbar/static/debug_toolbar/css/toolbar.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debug_toolbar/static/debug_toolbar/css/toolbar.css b/debug_toolbar/static/debug_toolbar/css/toolbar.css index 8d9c7adb7..5ad9dbf70 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, @@ -621,8 +621,8 @@ #djDebug .djdt-max-height-100 { max-height: 100%; } -#djDebug .djdt-highlighted { - background-color: lightgrey !important; +#djDebug .djdt-highlighted{ + background-color: lightgrey; } #djDebug tr.djdt-highlighted.djdt-profile-row { background-color: #ffc; From c0c3796cc89ac02ae527f6c88afc9d47a4167f45 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 3 Nov 2022 11:33:11 +0000 Subject: [PATCH 4/4] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- 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 5ad9dbf70..4ad2a6df9 100644 --- a/debug_toolbar/static/debug_toolbar/css/toolbar.css +++ b/debug_toolbar/static/debug_toolbar/css/toolbar.css @@ -621,7 +621,7 @@ #djDebug .djdt-max-height-100 { max-height: 100%; } -#djDebug .djdt-highlighted{ +#djDebug .djdt-highlighted { background-color: lightgrey; } #djDebug tr.djdt-highlighted.djdt-profile-row {