LEFT | RIGHT |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 - This file is part of Adblock Plus <https://adblockplus.org/>, | 3 - This file is part of Adblock Plus <https://adblockplus.org/>, |
4 - Copyright (C) 2006-present eyeo GmbH | 4 - Copyright (C) 2006-present eyeo GmbH |
5 - | 5 - |
6 - Adblock Plus is free software: you can redistribute it and/or modify | 6 - Adblock Plus is free software: you can redistribute it and/or modify |
7 - it under the terms of the GNU General Public License version 3 as | 7 - it under the terms of the GNU General Public License version 3 as |
8 - published by the Free Software Foundation. | 8 - published by the Free Software Foundation. |
9 - | 9 - |
10 - Adblock Plus is distributed in the hope that it will be useful, | 10 - Adblock Plus is distributed in the hope that it will be useful, |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 </ul> | 148 </ul> |
149 <p class="i18n_options_more_filters_note"></p> | 149 <p class="i18n_options_more_filters_note"></p> |
150 </div> | 150 </div> |
151 </section> | 151 </section> |
152 </div> | 152 </div> |
153 | 153 |
154 <!-- Whitelist tab content --> | 154 <!-- Whitelist tab content --> |
155 <div id="content-whitelist" role="tabpanel" aria-labelledby="tab-whitelist
"> | 155 <div id="content-whitelist" role="tabpanel" aria-labelledby="tab-whitelist
"> |
156 <header> | 156 <header> |
157 <h1 class="i18n_options_tab_whitelist"></h1> | 157 <h1 class="i18n_options_tab_whitelist"></h1> |
158 <p id="whitelist-description" class="i18n_options_whitelist_descriptio
n"></p> | 158 <p> |
| 159 <span class="i18n_options_whitelist_description"></span> |
| 160 <a id="whitelist-learn-more" class="i18n_options_learn_more" target=
"_blank"></a> |
| 161 </p> |
159 </header> | 162 </header> |
160 <form class="section"> | 163 <form class="section"> |
161 <input id="whitelisting-textbox" type="text"> | 164 <input id="whitelisting-textbox" type="text"> |
162 <button id="whitelisting-add-button" | 165 <button id="whitelisting-add-button" |
163 type="submit" | 166 type="submit" |
164 data-action="add-domain-exception" | 167 data-action="add-domain-exception" |
165 class="i18n_options_whitelist_add primary" disabled> | 168 class="i18n_options_whitelist_add primary" disabled> |
166 </button> | 169 </button> |
167 </form> | 170 </form> |
168 <ul id="whitelisting-table" class="table list"> | 171 <ul id="whitelisting-table" class="table list"> |
(...skipping 30 matching lines...) Expand all Loading... |
199 <button role="checkbox" data-action="toggle-pref"></button> | 202 <button role="checkbox" data-action="toggle-pref"></button> |
200 <span class="i18n_options_customize_showNotifications display"></s
pan> | 203 <span class="i18n_options_customize_showNotifications display"></s
pan> |
201 <span data-tooltip="options_customize_showNotifications_tooltip"><
/span> | 204 <span data-tooltip="options_customize_showNotifications_tooltip"><
/span> |
202 </li> | 205 </li> |
203 </ul> | 206 </ul> |
204 </section> | 207 </section> |
205 | 208 |
206 <section> | 209 <section> |
207 <header> | 210 <header> |
208 <h2 class="i18n_options_filterList_title"></h2> | 211 <h2 class="i18n_options_filterList_title"></h2> |
209 <p id="filter-lists-description" class="i18n_options_filterList_desc
ription"></p> | 212 <p> |
| 213 <span class="i18n_options_filterList_description"></span> |
| 214 <a id="filter-lists-learn-more" class="i18n_options_learn_more" ta
rget="_blank"></a> |
| 215 </p> |
210 </header> | 216 </header> |
211 | 217 |
212 <div id="all-filter-lists-table-header" class="th"> | 218 <div id="all-filter-lists-table-header" class="th"> |
213 <h3 class="i18n_options_filterList_column_status col4"></h3> | 219 <h3 class="i18n_options_filterList_column_status col4"></h3> |
214 <h3 class="i18n_options_filterList_column_name col4"></h3> | 220 <h3 class="i18n_options_filterList_column_name col4"></h3> |
215 <h3 class="i18n_options_filterList_column_update col4"></h3> | 221 <h3 class="i18n_options_filterList_column_update col4"></h3> |
216 <h3 class="col4"></h3> | 222 <h3 class="col4"></h3> |
217 </div> | 223 </div> |
218 <ul class="table cols" id="all-filter-lists-table"> | 224 <ul class="table cols" id="all-filter-lists-table"> |
219 <template> | 225 <template> |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 </div> | 406 </div> |
401 <!-- Notification --> | 407 <!-- Notification --> |
402 <div id="notification" aria-hidden="true" aria-live="polite"> | 408 <div id="notification" aria-hidden="true" aria-live="polite"> |
403 <strong id="notification-text"></strong> | 409 <strong id="notification-text"></strong> |
404 <button id="hide-notification" data-action="hide-notification"> | 410 <button id="hide-notification" data-action="hide-notification"> |
405 <span class="i18n_options_notification_hide sr-only"></span> | 411 <span class="i18n_options_notification_hide sr-only"></span> |
406 </button> | 412 </button> |
407 </div> | 413 </div> |
408 </body> | 414 </body> |
409 </html> | 415 </html> |
LEFT | RIGHT |