Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(426)

Side by Side Diff: chrome/browser/resources/mobile_setup.html

Issue 8341037: Added logic that will retry to reload+reconnect the mobile payment portal page 5 times before it ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <style> 6 <style>
7 body { 7 body {
8 -webkit-box-flex: 1; 8 -webkit-box-flex: 1;
9 -webkit-box-orient: vertical; 9 -webkit-box-orient: vertical;
10 -webkit-user-select: none; 10 -webkit-user-select: none;
(...skipping 19 matching lines...) Expand all
30 30
31 iframe { 31 iframe {
32 overflow-x: scroll; 32 overflow-x: scroll;
33 overflow-y: scroll; 33 overflow-y: scroll;
34 } 34 }
35 35
36 .overlay { 36 .overlay {
37 position: absolute; 37 position: absolute;
38 left: 0; 38 left: 0;
39 right: 0; 39 right: 0;
40 background: rgba(0, 0, 0, .1);
41 top: 0; 40 top: 0;
42 bottom: 0; 41 bottom: 0;
43 z-index: 10; 42 z-index: 10;
44 padding: 100px; 43 padding: 100px;
45 -webkit-box-align: center; 44 -webkit-box-align: center;
46 -webkit-box-pack: center; 45 -webkit-box-pack: center;
47 } 46 }
48 47
48 .opaque-overlay {
49 background: rgba(255, 255, 255, 1);
50 }
51
52 .tranparent-overlay {
53 background: rgba(0, 0, 0, 0.1);
54 }
55
49 .overlay > div { 56 .overlay > div {
50 background: white; 57 background: white;
51 border-radius: 5px; 58 border-radius: 5px;
52 padding: 15px; 59 padding: 15px;
53 border:1px solid #bdbdbd; 60 border:1px solid #bdbdbd;
54 -webkit-box-shadow:1px 1px 12px rgba(0, 0, 0, 0.15); 61 -webkit-box-shadow:1px 1px 12px rgba(0, 0, 0, 0.15);
55 } 62 }
56 63
57 .startup { 64 .startup {
58 width: 500px; 65 width: 500px;
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 <script src="chrome://resources/js/cr.js"></script> 172 <script src="chrome://resources/js/cr.js"></script>
166 <script src="chrome://resources/js/local_strings.js"></script> 173 <script src="chrome://resources/js/local_strings.js"></script>
167 <script src="chrome://resources/js/util.js"></script> 174 <script src="chrome://resources/js/util.js"></script>
168 <script src="chrome://resources/js/cr/ui/dialogs.js"></script> 175 <script src="chrome://resources/js/cr/ui/dialogs.js"></script>
169 <script src="mobile_setup.js"></script> 176 <script src="mobile_setup.js"></script>
170 </head> 177 </head>
171 <body onload="mobile.MobileSetup.loadPage();" 178 <body onload="mobile.MobileSetup.loadPage();"
172 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 179 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
173 <div class="dialog-body"> 180 <div class="dialog-body">
174 <iframe class="hidden" id="paymentForm" frameborder="0"></iframe> 181 <iframe class="hidden" id="paymentForm" frameborder="0"></iframe>
175 <div id="systemStatus" class="overlay hidden"> 182 <div id="systemStatus" class="overlay opaque-overlay hidden">
176 <div class="startup"> 183 <div class="startup">
177 <div id="banner"> 184 <div id="banner">
178 <table border="0"> 185 <table border="0">
179 <tbody><tr> 186 <tbody><tr>
180 <td class="canvasCell"><canvas id="canvas" width="56" 187 <td class="canvasCell"><canvas id="canvas" width="56"
181 height="56"></canvas></td> 188 height="56"></canvas></td>
182 <td class="headerCell"> 189 <td class="headerCell">
183 <div id="statusHeader"></div> 190 <div id="statusHeader"></div>
184 <div id="auxHeader"></div> 191 <div id="auxHeader"></div>
185 </td> 192 </td>
186 </tr> 193 </tr>
187 </tbody></table> 194 </tbody></table>
188 </div> 195 </div>
189 <iframe src="chrome-extension://iadeocfgjdjdmpenejdbfeaocpbikmab/activatio n.html" 196 <iframe src="chrome-extension://iadeocfgjdjdmpenejdbfeaocpbikmab/activatio n.html"
190 id="carrierPage" frameborder="0"></iframe> 197 id="carrierPage" frameborder="0"></iframe>
191 </div> 198 </div>
192 </div> 199 </div>
193 <div id="finalStatus" class="overlay hidden"> 200 <div id="finalStatus" class="overlay tranparent-overlay hidden">
194 <div class="startup"> 201 <div class="startup">
195 <div class="header"><h3 id="finalHeader"></h3></div> 202 <div class="header"><h3 id="finalHeader"></h3></div>
196 <div id="finalMessage"></div> 203 <div id="finalMessage"></div>
197 <div class="splitter"></div> 204 <div class="splitter"></div>
198 <div class="logo"></div> 205 <div class="logo"></div>
199 <div class="button-strip"> 206 <div class="button-strip">
200 <button id="closeButton" 207 <button id="closeButton"
201 i18n-content="close_button" class="hidden"></button> 208 i18n-content="close_button" class="hidden"></button>
202 </div> 209 </div>
203 </div> 210 </div>
204 </div> 211 </div>
205 </div> 212 </div>
206 <div class="dialog-footer"> 213 <div class="dialog-footer">
207 <div class=horizontal-spacer></div> 214 <div class=horizontal-spacer></div>
208 <button id="cancelButton" class="cancel" i18n-content="cancel_button"></butto n> 215 <button id="cancelButton" class="cancel" i18n-content="cancel_button"></butto n>
209 </div> 216 </div>
210 </body> 217 </body>
211 </html> 218 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/mobile_setup.js » ('j') | chrome/browser/resources/mobile_setup.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698