Skip to content

Commit

Permalink
Fix remnants of visible text in collapsed rows
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Jul 24, 2023
1 parent fa489fd commit fdb6dc2
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/css/popup-fenix.css
Original file line number Diff line number Diff line change
Expand Up @@ -430,12 +430,24 @@ 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 {
color: transparent;
max-height: 4px;
overflow-y: hidden;
pointer-events: none;
user-select: none;
}
#firewall.show3pScript:not(.show3pFrame) > div:not([data-des="*"]).is3p:not(.hasScript) *,
#firewall.show3pFrame:not(.show3pScript) > div:not([data-des="*"]).is3p:not(.hasFrame) *,
#firewall.show3pScript.show3pFrame > div:not([data-des="*"]).is3p:not(.hasScript):not(.hasFrame) *,
#firewall.hide3pScript > div:not([data-des="*"]).is3p.hasScript *,
#firewall.hide3pFrame > div:not([data-des="*"]).is3p.hasFrame *,
#firewall.showBlocked > div:not([data-des="*"]).is3p:not(.totalBlocked):not(.blocked) *,
#firewall.showAllowed > div:not([data-des="*"]).is3p:not(.totalAllowed):not(.allowed) *,
#firewall.hideBlocked > div:not([data-des="*"]).is3p.totalBlocked *,
#firewall.hideBlocked > div:not([data-des="*"]).is3p.blocked *,
#firewall.hideAllowed > div:not([data-des="*"]).is3p.totalAllowed *,
#firewall.hideAllowed > div:not([data-des="*"]).is3p.allowed * {
color: transparent !important;
}
#firewall > div.isCname > span:first-of-type {
color: var(--popup-cell-cname-ink);
}
Expand Down

0 comments on commit fdb6dc2

Please sign in to comment.