mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-11 17:41:03 +01:00
this fixes broken row filtering for tab selector and popup UI
This commit is contained in:
parent
d5c72b6185
commit
6a912531dc
1 changed files with 2 additions and 2 deletions
|
@ -723,7 +723,7 @@ var pageSelectorChanged = function() {
|
|||
}
|
||||
if ( tabClass !== '' ) {
|
||||
sheet.insertRule(
|
||||
'#netInspector table tr:not(.' + tabClass + ') { display: none; }',
|
||||
'table tr:not(.' + tabClass + ') { display: none; }',
|
||||
0
|
||||
);
|
||||
}
|
||||
|
@ -1611,7 +1611,7 @@ var popupManager = (function() {
|
|||
var popupObserver = null;
|
||||
var style = null;
|
||||
var styleTemplate = [
|
||||
'#netInspector tr:not(.tab_{{tabId}}) {',
|
||||
'table tr:not(.tab_{{tabId}}) {',
|
||||
'cursor: not-allowed;',
|
||||
'opacity: 0.2;',
|
||||
'}'
|
||||
|
|
Loading…
Reference in a new issue