| OLD | NEW |
| 1 title=Adblock Plus filters explained | 1 title=Adblock Plus filters explained |
| 2 | 2 |
| 3 <head> | 3 <head> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 #content | 5 #content |
| 6 { | 6 { |
| 7 max-width: none; | 7 max-width: none; |
| 8 } | 8 } |
| 9 | 9 |
| 10 canvas | 10 canvas |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 { | 32 { |
| 33 opacity: 1.0; | 33 opacity: 1.0; |
| 34 } | 34 } |
| 35 | 35 |
| 36 .explanations > * | 36 .explanations > * |
| 37 { | 37 { |
| 38 display: inline-block; | 38 display: inline-block; |
| 39 text-align: left; | 39 text-align: left; |
| 40 border: 4px solid; | 40 border: 4px solid; |
| 41 margin: 0px 1%; | 41 margin: 0px 1%; |
| 42 width: 20%; | 42 width: 19%; |
| 43 border-radius: 10px; | 43 border-radius: 10px; |
| 44 padding: 0px 5px; | 44 padding: 0px 5px; |
| 45 opacity: 0.6; | 45 opacity: 0.6; |
| 46 } | 46 } |
| 47 .explanations > .active | 47 .explanations > .active |
| 48 { | 48 { |
| 49 opacity: 1.0; | 49 opacity: 1.0; |
| 50 } | 50 } |
| 51 .explanations h4 | 51 .explanations h4 |
| 52 { | 52 { |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 <tr> | 785 <tr> |
| 786 <td><code>##div[style$="width:300px;height:250px;"]</code></td> | 786 <td><code>##div[style$="width:300px;height:250px;"]</code></td> |
| 787 <td>{{s137 Matches div elements that end the style specified}}</td> | 787 <td>{{s137 Matches div elements that end the style specified}}</td> |
| 788 </tr> | 788 </tr> |
| 789 <tr> | 789 <tr> |
| 790 <td><code>##div[style*="width:300px;height:250px;"]</code></td> | 790 <td><code>##div[style*="width:300px;height:250px;"]</code></td> |
| 791 <td>{{s138 Matches div elements that containing the style specified}}</td> | 791 <td>{{s138 Matches div elements that containing the style specified}}</td> |
| 792 </tr> | 792 </tr> |
| 793 </table> | 793 </table> |
| 794 <p>{{s139 The above filters are only examples of valid element hiding rules. Any
<a href="http://www.w3.org/TR/css3-selectors/">CSS selector</a> supported by Fi
refox can be used for element hiding.}}</p> | 794 <p>{{s139 The above filters are only examples of valid element hiding rules. Any
<a href="http://www.w3.org/TR/css3-selectors/">CSS selector</a> supported by Fi
refox can be used for element hiding.}}</p> |
| OLD | NEW |