Skip to content

Commit fdb6dc2

Browse files
committed
Fix remnants of visible text in collapsed rows
Related feedback: - uBlockOrigin/uBlock-issues#2632 (reply in thread)
1 parent fa489fd commit fdb6dc2

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

‎src/css/popup-fenix.css‎

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,12 +430,24 @@ body.needSave #revertRules {
430430
#firewall.hideBlocked > div:not([data-des="*"]).is3p.blocked,
431431
#firewall.hideAllowed > div:not([data-des="*"]).is3p.totalAllowed,
432432
#firewall.hideAllowed > div:not([data-des="*"]).is3p.allowed {
433-
color: transparent;
434433
max-height: 4px;
435434
overflow-y: hidden;
436435
pointer-events: none;
437436
user-select: none;
438437
}
438+
#firewall.show3pScript:not(.show3pFrame) > div:not([data-des="*"]).is3p:not(.hasScript) *,
439+
#firewall.show3pFrame:not(.show3pScript) > div:not([data-des="*"]).is3p:not(.hasFrame) *,
440+
#firewall.show3pScript.show3pFrame > div:not([data-des="*"]).is3p:not(.hasScript):not(.hasFrame) *,
441+
#firewall.hide3pScript > div:not([data-des="*"]).is3p.hasScript *,
442+
#firewall.hide3pFrame > div:not([data-des="*"]).is3p.hasFrame *,
443+
#firewall.showBlocked > div:not([data-des="*"]).is3p:not(.totalBlocked):not(.blocked) *,
444+
#firewall.showAllowed > div:not([data-des="*"]).is3p:not(.totalAllowed):not(.allowed) *,
445+
#firewall.hideBlocked > div:not([data-des="*"]).is3p.totalBlocked *,
446+
#firewall.hideBlocked > div:not([data-des="*"]).is3p.blocked *,
447+
#firewall.hideAllowed > div:not([data-des="*"]).is3p.totalAllowed *,
448+
#firewall.hideAllowed > div:not([data-des="*"]).is3p.allowed * {
449+
color: transparent !important;
450+
}
439451
#firewall > div.isCname > span:first-of-type {
440452
color: var(--popup-cell-cname-ink);
441453
}

0 commit comments

Comments
 (0)