Skip to content

Commit

Permalink
Fix highlighting on history panel (#1698)
Browse files Browse the repository at this point in the history
Fixes row background color on highlighted odd-numbered history panel rows.
  • Loading branch information
scuml committed Nov 3, 2022
1 parent 76e9150 commit a481849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debug_toolbar/static/debug_toolbar/css/toolbar.css
Expand Up @@ -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,
Expand Down

0 comments on commit a481849

Please sign in to comment.