Skip to content

Commit

Permalink
Add visual hint for filtered out rows in firewall pane
Browse files Browse the repository at this point in the history
Related discussion:
- uBlockOrigin/uBlock-issues#2632
  • Loading branch information
gorhill committed Jul 22, 2023
1 parent 873c918 commit c74fc64
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/css/popup-fenix.css
Expand Up @@ -430,7 +430,11 @@ body.needSave #revertRules {
#firewall.hideBlocked > div:not([data-des="*"]).is3p.blocked,
#firewall.hideAllowed > div:not([data-des="*"]).is3p.totalAllowed,
#firewall.hideAllowed > div:not([data-des="*"]).is3p.allowed {
display: none;
color: transparent;
max-height: 4px;
overflow-y: hidden;
pointer-events: none;
user-select: none;
}
#firewall > div.isCname > span:first-of-type {
color: var(--popup-cell-cname-ink);
Expand Down Expand Up @@ -467,8 +471,8 @@ body.needSave #revertRules {
pointer-events: auto;
}
#firewall > div.isDomain.hasSubdomains > span:first-of-type > span::before {
color: var(--ink-3);
content: '\2026\A0';
opacity: 0.6;
}
#firewall > div[data-des="*"] > span:nth-of-type(3),
#firewall > div.isSubdomain > span:nth-of-type(3),
Expand Down

0 comments on commit c74fc64

Please sign in to comment.