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

Unified 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, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/mobile_setup.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/mobile_setup.html
===================================================================
--- chrome/browser/resources/mobile_setup.html (revision 107314)
+++ chrome/browser/resources/mobile_setup.html (working copy)
@@ -18,9 +18,7 @@
.dialog-body {
border: 1px #aaa solid;
- border-radius: 4px;
display: -webkit-box;
- margin: 15px;
margin-top: 0;
overflow: hidden;
position: relative;
@@ -28,6 +26,18 @@
-webkit-box-flex: 1;
}
+.dialog-body-dialog {
+ border-radius: 4px;
+ margin: 15px;
+}
+
+.dialog-footer {
+ -webkit-box-orient: horizontal;
+ display: -webkit-box;
+ margin: 15px;
+ margin-top: 0;
+}
+
iframe {
overflow-x: scroll;
overflow-y: scroll;
@@ -37,7 +47,6 @@
position: absolute;
left: 0;
right: 0;
- background: rgba(0, 0, 0, .1);
top: 0;
bottom: 0;
z-index: 10;
@@ -46,6 +55,14 @@
-webkit-box-pack: center;
}
+.opaque-overlay {
+ background: rgba(255, 255, 255, 1);
+}
+
+.tranparent-overlay {
+ background: rgba(0, 0, 0, 0.1);
+}
+
.overlay > div {
background: white;
border-radius: 5px;
@@ -149,12 +166,6 @@
vertical-align: middle;
line-height: 0px;
}
-.dialog-footer {
- -webkit-box-orient: horizontal;
- display: -webkit-box;
- margin: 15px;
- margin-top: 0;
-}
.horizontal-spacer {
-webkit-box-orient: horizontal;
@@ -170,9 +181,9 @@
</head>
<body onload="mobile.MobileSetup.loadPage();"
i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
- <div class="dialog-body">
+ <div id="mainDiv" class="dialog-body">
<iframe class="hidden" id="paymentForm" frameborder="0"></iframe>
- <div id="systemStatus" class="overlay hidden">
+ <div id="systemStatus" class="overlay opaque-overlay hidden">
<div class="startup">
<div id="banner">
<table border="0">
@@ -190,7 +201,7 @@
id="carrierPage" frameborder="0"></iframe>
</div>
</div>
- <div id="finalStatus" class="overlay hidden">
+ <div id="finalStatus" class="overlay tranparent-overlay hidden">
<div class="startup">
<div class="header"><h3 id="finalHeader"></h3></div>
<div id="finalMessage"></div>
@@ -203,7 +214,7 @@
</div>
</div>
</div>
- <div class="dialog-footer">
+ <div id="footer" class="hidden dialog-footer">
<div class=horizontal-spacer></div>
<button id="cancelButton" class="cancel" i18n-content="cancel_button"></button>
</div>
« no previous file with comments | « no previous file | chrome/browser/resources/mobile_setup.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698