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. 11, 2013, 3:10 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
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 #statsStuff
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(top, rgb(250, 250, 255), rgb(200, 200, 255 ) 50px);
88 background: linear-gradient(top, rgb(250, 250, 255), rgb(200, 200, 255) 50px);
89 }
90
91 #statsStuff .number
92 {
93 display: inline-block;
94 min-width: 30px;
95 font-weight: bold;
96 color: rgb(255, 50, 50);
97 text-align: right;
98 }
99
100 #statsStuff .label
101 {
102 display: inline-block;
103 }
104
105 #share
106 {
107 display: block;
108 color: rgb(75, 75, 200);
109 text-align: right;
110 text-decoration: underline;
111 }
112
113 #shareBox > a
114 {
115 display: block;
116 margin-top: 5px;
117 }
79 </style> 118 </style>
80 119
81 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script> 120 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script>
82 <script type="text/javascript" src="i18n.js"></script> 121 <script type="text/javascript" src="i18n.js"></script>
83 <script type="text/javascript" src="popup.js"></script> 122 <script type="text/javascript" src="popup.js"></script>
84 <script type="text/javascript" src="notification.js"></script> 123 <script type="text/javascript" src="notification.js"></script>
124 <script type="text/javascript" src="stats.js"></script>
85 </head> 125 </head>
86 <body id="main"> 126 <body id="main">
127
87 <div id="notification" style="display: none"> 128 <div id="notification" style="display: none">
88 <h1 id="title"></h1> 129 <h1 id="title"></h1>
89 <p id="message"></p> 130 <p id="message"></p>
90 </div> 131 </div>
91 132
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> 133 <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"> 134 <div id="clickHideInactiveStuff" style="display: none">
94 <div class="spacer"></div> 135 <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> 136 <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> 137 </div>
97 138
98 <div id="clickHideActiveStuff" style="display: none"> 139 <div id="clickHideActiveStuff" style="display: none">
99 <div id="clickHideMsg"><span class="i18n_clickhide_instructions"></span></div> 140 <div id="clickHideMsg"><span class="i18n_clickhide_instructions"></span></div>
100 <div class="spacer"></div> 141 <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> 142 <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> 143 </div>
103 144
145 <div id="statsStuff" hidden>
146 <strong class="i18n_stats_title"></strong>
147 <div id="stats">
148 <div>
149 <span id="statsPage" class="number">0</span>
150 <span class="i18n_stats_label_page label"></span>
151 </div>
152 <div>
153 <span id="statsTotal" class="number">0</span>
154 <span class="i18n_stats_label_total label"></span>
155 </div>
156 </div>
157 <div>
158 <a id="share" class="i18n_stats_share_title" href="#"></a>
159 <div id="shareBox" hidden>
160 <a class="i18n_stats_share_label ui-button ui-widget ui-state-default ui-c orner-all" data-social="facebook">"Facebook"</a>
161 <a id="shareTwitter" class="i18n_stats_share_label ui-button ui-widget ui- state-default ui-corner-all" data-social="twitter">"Twitter"</a>
162 <a id="shareGplus" class="i18n_stats_share_label ui-button ui-widget ui-st ate-default ui-corner-all" data-social="gplus">"Google+"</a>
163 </div>
164 </div>
165 </div>
166
104 </div> 167 </div>
105 </body> 168 </body>
106 </html> 169 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld