Skip to content

Commit

Permalink
Fix blocked request filtering in the dev-tools panel UI (#2437)
Browse files Browse the repository at this point in the history
Apparently base.css is clashing with the devtools-panel stylesheet,
causing rows for blocked requests to be displayed incorrectly. The
workaround for that appears to have prevented the rows from being
hidden, when the toggle to show blocked requests is used. Without
digging more deeply into it for now, let's just ensure that blocked
requests are hidden with a more specific selector.
  • Loading branch information
kzar committed Feb 9, 2024
1 parent ea497d6 commit bf211cc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions shared/html/devtools-panel.html
Expand Up @@ -94,6 +94,10 @@
display: revert; /* To avoid clashing with .block in base.css */
}

.block[hidden] {
display: none;
}

.redirect {
background-color: #FDD20A;
}
Expand Down

0 comments on commit bf211cc

Please sign in to comment.