1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

#1171: use >> to mark redirection events

This commit is contained in:
gorhill 2016-01-11 08:28:07 -05:00
parent 778cd739ef
commit 7722f25603
2 changed files with 5 additions and 4 deletions

View File

@ -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;

View File

@ -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 = '';
}