Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: popup.html

Issue 16067002: Added Safari Support (Closed)
Patch Set: Added missing copyright disclaimers and websql implementation Created Oct. 23, 2013, 2:46 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« chrome/common.js ('K') | « options.js ('k') | popup.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <!-- 3 <!--
4 - This file is part of Adblock Plus <http://adblockplus.org/>, 4 - This file is part of Adblock Plus <http://adblockplus.org/>,
5 - Copyright (C) 2006-2013 Eyeo GmbH 5 - Copyright (C) 2006-2013 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 10 matching lines...) Expand all
21 <head> 21 <head>
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 <link type="text/css" href="jquery-ui/css/smoothness/jquery-ui-1.8.16.custom.css " rel="stylesheet" /> 23 <link type="text/css" href="jquery-ui/css/smoothness/jquery-ui-1.8.16.custom.css " rel="stylesheet" />
24 <style type="text/css" media="screen"> 24 <style type="text/css" media="screen">
25 body { 25 body {
26 font-size: 75%; 26 font-size: 75%;
27 font-family: Helvetica, Arial, sans-serif; 27 font-family: Helvetica, Arial, sans-serif;
28 min-width: 170px; 28 min-width: 170px;
29 background: #ffffff; 29 background: #ffffff;
30 color: #000000; 30 color: #000000;
31 overflow: hidden;
31 } 32 }
32 33
33 a { text-decoration: none } 34 a { text-decoration: none }
34 35
35 #notification 36 #notification
36 { 37 {
37 min-width: 240px; 38 min-width: 240px;
38 margin-bottom: 10px; 39 margin-bottom: 10px;
39 border-radius: 5px; 40 border-radius: 5px;
40 border: 2px solid; 41 border: 2px solid;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 } 73 }
73 74
74 .spacer { 75 .spacer {
75 height: 7px; 76 height: 7px;
76 width: 5px; 77 width: 5px;
77 display: block; 78 display: block;
78 } 79 }
79 </style> 80 </style>
80 81
81 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script> 82 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script>
83 <script type="text/javascript" src="ext/common.js"></script>
84 <script type="text/javascript" src="ext/background.js"></script>
82 <script type="text/javascript" src="i18n.js"></script> 85 <script type="text/javascript" src="i18n.js"></script>
83 <script type="text/javascript" src="popup.js"></script> 86 <script type="text/javascript" src="popup.js"></script>
84 <script type="text/javascript" src="notification.js"></script> 87 <script type="text/javascript" src="notification.js"></script>
85 </head> 88 </head>
86 <body id="main"> 89 <body id="main">
87 <div id="notification" style="display: none"> 90 <div id="notification" style="display: none">
88 <h1 id="title"></h1> 91 <h1 id="title"></h1>
89 <p id="message"></p> 92 <p id="message"></p>
90 </div> 93 </div>
91 94
92 <div id="enabledCheckboxAndLabel" style="display:none"><input id="enabled" type= "checkbox" checked><label for="enabled"><span class="i18n_enabled_for_site"></sp an></label></div> 95 <div id="enabledCheckboxAndLabel" style="display:none"><input id="enabled" type= "checkbox" checked><label for="enabled"><span class="i18n_enabled_for_site"></sp an></label></div>
93 <div id="clickHideInactiveStuff" style="display: none"> 96 <div id="clickHideInactiveStuff" style="display: none">
94 <div class="spacer"></div> 97 <div class="spacer"></div>
95 <button id="clickHideButton" class="ui-button ui-widget ui-state-default ui-corn er-all ui-button-text-only"><span class="i18n_easy_create_filter"></span></butto n> 98 <button id="clickHideButton" class="ui-button ui-widget ui-state-default ui-corn er-all ui-button-text-only"><span class="i18n_easy_create_filter"></span></butto n>
96 </div> 99 </div>
97 100
98 <div id="clickHideActiveStuff" style="display: none"> 101 <div id="clickHideActiveStuff" style="display: none">
99 <div id="clickHideMsg"><span class="i18n_clickhide_instructions"></span></div> 102 <div id="clickHideMsg"><span class="i18n_clickhide_instructions"></span></div>
100 <div class="spacer"></div> 103 <div class="spacer"></div>
101 <button id="cancelButton" class="ui-button ui-widget ui-state-default ui-corner- all ui-button-text-only"><span class="i18n_cancel"></span></button> 104 <button id="cancelButton" class="ui-button ui-widget ui-state-default ui-corner- all ui-button-text-only"><span class="i18n_cancel"></span></button>
102 </div> 105 </div>
103 106
107 <div class="spacer"></div>
108 <button id="optionsButton" class="ui-button ui-widget ui-state-default ui-corner -all ui-button-text-only"><span class="i18n_options"></span></button>
109
104 </div> 110 </div>
105 </body> 111 </body>
106 </html> 112 </html>
OLDNEW
« chrome/common.js ('K') | « options.js ('k') | popup.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld