mirror of https://github.com/gorhill/uBlock.git
this fixes broken row filtering for tab selector and popup UI
This commit is contained in:
parent
d5c72b6185
commit
6a912531dc
|
@ -723,7 +723,7 @@ var pageSelectorChanged = function() {
|
||||||
}
|
}
|
||||||
if ( tabClass !== '' ) {
|
if ( tabClass !== '' ) {
|
||||||
sheet.insertRule(
|
sheet.insertRule(
|
||||||
'#netInspector table tr:not(.' + tabClass + ') { display: none; }',
|
'table tr:not(.' + tabClass + ') { display: none; }',
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1611,7 +1611,7 @@ var popupManager = (function() {
|
||||||
var popupObserver = null;
|
var popupObserver = null;
|
||||||
var style = null;
|
var style = null;
|
||||||
var styleTemplate = [
|
var styleTemplate = [
|
||||||
'#netInspector tr:not(.tab_{{tabId}}) {',
|
'table tr:not(.tab_{{tabId}}) {',
|
||||||
'cursor: not-allowed;',
|
'cursor: not-allowed;',
|
||||||
'opacity: 0.2;',
|
'opacity: 0.2;',
|
||||||
'}'
|
'}'
|
||||||
|
|
Loading…
Reference in New Issue