Index: chrome/content/ui/popup.html |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/chrome/content/ui/popup.html |
@@ -0,0 +1,73 @@ |
+<!DOCTYPE html> |
+ |
+<!-- |
+ - This file is part of Adblock Plus <http://adblockplus.org/>, |
+ - Copyright (C) 2006-2014 Eyeo GmbH |
+ - |
+ - Adblock Plus is free software: you can redistribute it and/or modify |
+ - it under the terms of the GNU General Public License version 3 as |
+ - published by the Free Software Foundation. |
+ - |
+ - Adblock Plus is distributed in the hope that it will be useful, |
+ - but WITHOUT ANY WARRANTY; without even the implied warranty of |
+ - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
+ - GNU General Public License for more details. |
+ - |
+ - You should have received a copy of the GNU General Public License |
+ - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
+ --> |
+ |
+<html> |
+<head> |
+ <link rel="stylesheet" type="text/css" href="/skin/popup.css"> |
+ <script src="utils.js"></script> |
+ <script src="ext/common.js"></script> |
+ <script src="ext/popup.js"></script> |
+ <script src="i18n.js"></script> |
+ <script src="popup.js"></script> |
+</head> |
+<!-- Set tabindex to work around Chromium issue 304532 --> |
+<!-- Set overflow to hidden in order to prevent Safari showing scrollbars while loading --> |
+<body tabindex="1" style="overflow: hidden;"> |
+ |
+<header> |
+ <div id="logo"></div> |
+</header> |
+ |
+<div id="wrapper"> |
+ <div id="clickhide-instructions" class="i18n_clickhide_instructions"></div> |
+ |
+ <ul id="menu"> |
+ <li id="clickhide" class="menu-item" role="button" hidden> |
+ <div class="icon"></div> |
+ <span class="i18n_easy_create_filter"></span> |
+ </li> |
+ <li id="clickhide-cancel" class="menu-item" role="button" hidden> |
+ <div class="icon"></div> |
+ <span class="i18n_cancel"></span> |
+ </li> |
+ |
+ <li id="blockable" class="menu-item" role="button" hidden> |
+ <div class="icon"></div> |
+ <span class="i18n_blockable_items"></span> |
+ </li> |
+ |
+ <li id="blockable-close" class="menu-item" role="button" hidden> |
Thomas Greiner
2014/10/13 13:18:24
No need to duplicate that menu item. The appropria
saroyanm
2014/10/16 11:26:15
Done.
|
+ <div class="icon"></div> |
+ <span class="i18n_close_blockable_items"></span> |
+ </li> |
+ |
+ <li id="report-issue" class="menu-item" role="button" hidden> |
+ <div class="icon"></div> |
+ <span class="i18n_report_issue"></span> |
+ </li> |
+ </ul> |
+</div> |
+ |
+<footer id="options" role="button"> |
+ <div class="icon"></div> |
+ <span class="i18n_options_short"></span> |
+</footer> |
+ |
+</body> |
+</html> |