mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-11 09:31:01 +01:00
#1171: use >>
to mark redirection events
This commit is contained in:
parent
778cd739ef
commit
7722f25603
2 changed files with 5 additions and 4 deletions
|
@ -219,11 +219,9 @@ body:not(.popupOn) #netInspector tr.canMtx td:nth-of-type(2):hover {
|
|||
#netInspector tr.canLookup td:nth-of-type(3) {
|
||||
cursor: zoom-in;
|
||||
}
|
||||
#netInspector tr.cat_redirect td:nth-of-type(3):before {
|
||||
content: '\21d2 ';
|
||||
}
|
||||
#netInspector tr.cat_net td:nth-of-type(4),
|
||||
#netInspector tr.cat_cosmetic td:nth-of-type(4) {
|
||||
#netInspector tr.cat_cosmetic td:nth-of-type(4),
|
||||
#netInspector tr.cat_redirect td:nth-of-type(4) {
|
||||
font: 12px monospace;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
|
|
|
@ -487,6 +487,9 @@ var renderNetLogEntry = function(tr, entry) {
|
|||
} else if ( filteringOp === 'n' ) {
|
||||
trcl.add('nooped');
|
||||
td.textContent = '**';
|
||||
} else if ( filteringOp === 'r' ) {
|
||||
trcl.add('redirected');
|
||||
td.textContent = '>>';
|
||||
} else {
|
||||
td.textContent = '';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue