| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 - This file is part of Adblock Plus <https://adblockplus.org/>, | 4 - This file is part of Adblock Plus <https://adblockplus.org/>, |
| 5 - Copyright (C) 2006-present eyeo GmbH | 5 - Copyright (C) 2006-present eyeo GmbH |
| 6 - | 6 - |
| 7 - Adblock Plus is free software: you can redistribute it and/or modify | 7 - Adblock Plus is free software: you can redistribute it and/or modify |
| 8 - it under the terms of the GNU General Public License version 3 as | 8 - it under the terms of the GNU General Public License version 3 as |
| 9 - published by the Free Software Foundation. | 9 - published by the Free Software Foundation. |
| 10 - | 10 - |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 83 } | 83 } |
| 84 </style> | 84 </style> |
| 85 </head> | 85 </head> |
| 86 <body> | 86 <body> |
| 87 | 87 |
| 88 <div id="title"> | 88 <div id="title"> |
| 89 <img src="icons/detailed/abp-32.png" srcset="icons/detailed/abp-64.png 2x"> | 89 <img src="icons/detailed/abp-32.png" srcset="icons/detailed/abp-64.png 2x"> |
| 90 <span class="i18n_add_filters_msg"></span> | 90 <span class="i18n_add_filters_msg"></span> |
| 91 </div> | 91 </div> |
| 92 | 92 |
| 93 <textarea id="filters"></textarea> | 93 <textarea id="filters" class="i18n_loading" disabled></textarea> |
|
kzar
2017/11/21 15:39:20
Since the user has to wait for 1 second it looks m
| |
| 94 | 94 |
| 95 <div id="buttons"> | 95 <div id="buttons"> |
| 96 <button id="addButton" class="i18n_add"></button> | 96 <button id="addButton" class="i18n_add"></button> |
|
Wladimir Palant
2017/11/23 11:49:00
Shouldn't this button be disabled as well?
kzar
2017/11/23 12:31:53
Good point, Done.
| |
| 97 <button id="cancelButton" class="i18n_cancel"></button> | 97 <button id="cancelButton" class="i18n_cancel"></button> |
| 98 </div> | 98 </div> |
| 99 | 99 |
| 100 </body> | 100 </body> |
| 101 </html> | 101 </html> |
| OLD | NEW |