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

Side by Side Diff: popup.html

Issue 11627039: Added ad counting functionality (Closed)
Patch Set: Created Sept. 20, 2013, 3 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
« no previous file with comments | « metadata.chrome ('k') | stats.js » ('j') | stats.js » ('J')
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 69
70 .ui-button { 70 .ui-button {
71 padding: 3px; 71 padding: 3px;
72 } 72 }
73 73
74 .spacer { 74 .spacer {
75 height: 7px; 75 height: 7px;
76 width: 5px; 76 width: 5px;
77 display: block; 77 display: block;
78 } 78 }
79
80 #statsContainer
81 {
82 margin: 10px 5px;
83 padding: 5px;
84 border: 1px solid rgb(150, 150, 200);
85 border-radius: 5px;
86 white-space: nowrap;
87 background: -webkit-linear-gradient(rgb(250, 250, 255), rgb(200, 200, 255) 50p x);
88 background: linear-gradient(rgb(250, 250, 255), rgb(200, 200, 255) 50px);
89 }
90
91 #statsPage > strong,
92 #statsTotal > strong
93 {
94 display: inline-block;
95 min-width: 50px;
96 color: rgb(255, 50, 50);
97 text-align: right;
98 }
99
100 #share
101 {
102 display: block;
103 color: rgb(75, 75, 200);
104 text-align: right;
105 text-decoration: underline;
106 }
107
108 #shareBox > a
109 {
110 display: block;
111 margin-top: 5px;
112 }
79 </style> 113 </style>
80 114
81 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script> 115 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script>
82 <script type="text/javascript" src="i18n.js"></script> 116 <script type="text/javascript" src="i18n.js"></script>
83 <script type="text/javascript" src="popup.js"></script> 117 <script type="text/javascript" src="popup.js"></script>
84 <script type="text/javascript" src="notification.js"></script> 118 <script type="text/javascript" src="notification.js"></script>
119 <script type="text/javascript" src="stats.js"></script>
85 </head> 120 </head>
86 <body id="main"> 121 <body id="main">
87 <div id="notification" style="display: none"> 122 <div id="notification" style="display: none">
88 <h1 id="title"></h1> 123 <h1 id="title"></h1>
89 <p id="message"></p> 124 <p id="message"></p>
90 </div> 125 </div>
91 126
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> 127 <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"> 128 <div id="clickHideInactiveStuff" style="display: none">
94 <div class="spacer"></div> 129 <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> 130 <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> 131 </div>
97 132
98 <div id="clickHideActiveStuff" style="display: none"> 133 <div id="clickHideActiveStuff" style="display: none">
99 <div id="clickHideMsg"><span class="i18n_clickhide_instructions"></span></div> 134 <div id="clickHideMsg"><span class="i18n_clickhide_instructions"></span></div>
100 <div class="spacer"></div> 135 <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> 136 <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> 137 </div>
103 138
139 <div id="statsContainer" hidden>
140 <strong class="i18n_stats_title"></strong>
141 <div id="stats">
142 <div id="statsPage" class="label"></div>
143 <div id="statsTotal" class="label"></div>
144 </div>
145 <div>
146 <a id="share" class="i18n_stats_share_title" href="#"></a>
147 <div id="shareBox" hidden>
148 <a class="i18n_stats_share_label_fb ui-button ui-widget ui-state-default u i-corner-all" data-social="facebook"></a>
149 <a id="shareTwitter" class="i18n_stats_share_label_twitter ui-button ui-wi dget ui-state-default ui-corner-all" data-social="twitter"></a>
150 <a id="shareGplus" class="i18n_stats_share_label_gplus ui-button ui-widget ui-state-default ui-corner-all" data-social="gplus"></a>
151 </div>
152 </div>
153 </div>
154
104 </div> 155 </div>
105 </body> 156 </body>
106 </html> 157 </html>
OLDNEW
« no previous file with comments | « metadata.chrome ('k') | stats.js » ('j') | stats.js » ('J')

Powered by Google App Engine
This is Rietveld