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

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') | chrome/browser/resources/mobile_setup.js » ('J')
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 106964)
+++ chrome/browser/resources/mobile_setup.html (working copy)
@@ -37,7 +37,6 @@
position: absolute;
left: 0;
right: 0;
- background: rgba(0, 0, 0, .1);
top: 0;
bottom: 0;
z-index: 10;
@@ -46,6 +45,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;
@@ -172,7 +179,7 @@
i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
<div 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 +197,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>
« 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