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> |