this fixes broken row filtering for tab selector and popup UI

This commit is contained in:
gorhill 2015-07-02 19:42:51 -04:00
parent d5c72b6185
commit 6a912531dc

View file

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