File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -61,9 +61,9 @@ window.searchState = {
6161                continue ; 
6262            } 
6363            if  ( lint . searchFilteredOut )  { 
64-                 lint . elem . style . display   =   "none" ; 
64+                 lint . elem . classList . add ( "hidden" ) ; 
6565            }  else  { 
66-                 lint . elem . style . display   =   "" ; 
66+                 lint . elem . classList . remove ( "hidden" ) ; 
6767            } 
6868        } 
6969        if  ( searchStr . length  >  0 )  { 
@@ -329,9 +329,9 @@ window.filters = {
329329                ||  ! ( filters . version_filter [ "≤" ]  ===  null  ||  lint . version  <=  filters . version_filter [ "≤" ] ) 
330330            ) ; 
331331            if  ( lint . filteredOut  ||  lint . searchFilteredOut )  { 
332-                 lint . elem . style . display   =   "none" ; 
332+                 lint . elem . classList . add ( "hidden" ) ; 
333333            }  else  { 
334-                 lint . elem . style . display   =   "" ; 
334+                 lint . elem . classList . remove ( "hidden" ) ; 
335335            } 
336336        } 
337337    } , 
Original file line number Diff line number Diff line change @@ -119,6 +119,10 @@ label {
119119    box-shadow :  0  1px   1px   rgba (0 , 0 , 0 , .05 );
120120}
121121
122+ .hidden  {
123+     display :  none;
124+ }
125+ 
122126div .panel-body  {
123127    padding :  15px  ;
124128}
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments