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-2016 Eyeo GmbH | 5 - Copyright (C) 2006-2016 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 11 matching lines...) Expand all Loading... |
22 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | 22 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
23 <title>Block element</title> | 23 <title>Block element</title> |
24 <link type="text/css" href="jquery-ui/css/smoothness/jquery-ui-1.8.16.custom.css
" rel="stylesheet" /> | 24 <link type="text/css" href="jquery-ui/css/smoothness/jquery-ui-1.8.16.custom.css
" rel="stylesheet" /> |
25 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script> | 25 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script> |
26 <script type="text/javascript" src="jquery-ui/js/jquery-ui-1.8.16.custom.min.js"
></script> | 26 <script type="text/javascript" src="jquery-ui/js/jquery-ui-1.8.16.custom.min.js"
></script> |
27 <script type="text/javascript" src="ext/common.js"></script> | 27 <script type="text/javascript" src="ext/common.js"></script> |
28 <script type="text/javascript" src="ext/content.js"></script> | 28 <script type="text/javascript" src="ext/content.js"></script> |
29 <script type="text/javascript" src="i18n.js" charset="utf-8"></script> | 29 <script type="text/javascript" src="i18n.js" charset="utf-8"></script> |
30 <script type="text/javascript" src="block.js" charset="utf-8"></script> | 30 <script type="text/javascript" src="block.js" charset="utf-8"></script> |
31 <style type="text/css"> | 31 <style type="text/css"> |
32 html, body /* The background color of the <html> and <body> */ | |
33 { /* element must be set. Otherwise Safari renders */ | |
34 background: #ffffff; /* the frame transparent while it is dragged. */ | |
35 } | |
36 body | 32 body |
37 { | 33 { |
38 font-family: Arial, Helvetica, sans-serif; | 34 font-family: Arial, Helvetica, sans-serif; |
39 font-size: 13px; | 35 font-size: 13px; |
40 margin: 0px; | 36 margin: 0px; |
41 padding: 5px; | 37 padding: 5px; |
42 display: inline-block; | 38 display: inline-block; |
43 } | 39 } |
44 #title, | 40 #title, |
45 #filters | 41 #filters |
(...skipping 19 matching lines...) Expand all Loading... |
65 #buttons | 61 #buttons |
66 { | 62 { |
67 text-align: right; | 63 text-align: right; |
68 } | 64 } |
69 button | 65 button |
70 { | 66 { |
71 padding: 3px !important; | 67 padding: 3px !important; |
72 } | 68 } |
73 </style> | 69 </style> |
74 </head> | 70 </head> |
75 <body draggable="true"> | 71 <body> |
76 | 72 |
77 <div id="title"> | 73 <div id="title"> |
78 <img src="icons/detailed/abp-32.png" srcset="icons/detailed/abp-64.png 2x"> | 74 <img src="icons/detailed/abp-32.png" srcset="icons/detailed/abp-64.png 2x"> |
79 <span class="i18n_add_filters_msg"></span> | 75 <span class="i18n_add_filters_msg"></span> |
80 </div> | 76 </div> |
81 | 77 |
82 <textarea id="filters"></textarea> | 78 <textarea id="filters"></textarea> |
83 | 79 |
84 <div id="buttons"> | 80 <div id="buttons"> |
85 <button id="addButton" class="i18n_add"></button> | 81 <button id="addButton" class="i18n_add"></button> |
86 <button id="cancelButton" class="i18n_cancel"></button> | 82 <button id="cancelButton" class="i18n_cancel"></button> |
87 </div> | 83 </div> |
88 | 84 |
89 </body> | 85 </body> |
90 </html> | 86 </html> |
OLD | NEW |