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

Unified Diff: chrome/browser/resources/options/autofill_edit_creditcard_overlay.html

Issue 6372010: DOMUI: Refactor the new overlay style and apply it to all overlays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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
Index: chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
diff --git a/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html b/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
index 6b2f30d5776cd29864dabfeeba4bf0a877b44ce5..b4d62751daca75ccb5abbc3d4957d600e1332701 100644
--- a/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
+++ b/chrome/browser/resources/options/autofill_edit_creditcard_overlay.html
@@ -1,32 +1,35 @@
<div class="page hidden" id="autoFillEditCreditCardOverlay">
<h1 id="autoFillCreditCardTitle"></h1>
-
- <div>
- <label id="nameOnCardLabel">
- <span i18n-content="nameOnCardLabel"></span><br>
- <input type="text" id="nameOnCard">
- </label>
+ <div class="content-area">
+ <div>
+ <label id="nameOnCardLabel">
+ <span i18n-content="nameOnCardLabel"></span><br>
+ <input type="text" id="nameOnCard">
+ </label>
+ </div>
+ <div>
+ <label id="creditCardNumberLabel">
+ <span i18n-content="creditCardNumberLabel"></span><br>
+ <input type="text" id="creditCardNumber">
+ </label>
+ </div>
+ <div>
+ <label id="creditCardExpirationDateLabel">
+ <span i18n-content="creditCardExpirationDateLabel"></span><br>
+ <select id="expirationMonth"></select>
+ <select id="expirationYear"></select>
+ </label>
+ </div>
</div>
-
- <div>
- <label id="creditCardNumberLabel">
- <span i18n-content="creditCardNumberLabel"></span><br>
- <input type="text" id="creditCardNumber">
- </label>
- </div>
-
- <div>
- <label id="creditCardExpirationDateLabel">
- <span i18n-content="creditCardExpirationDateLabel"></span><br>
- <select id="expirationMonth"></select>
- <select id="expirationYear"></select>
- </label>
- </div>
-
- <div class="action-area button-strip">
- <button type="reset" id="autoFillEditCreditCardCancelButton"
- i18n-content="cancel"></button>
- <button type="submit" id="autoFillEditCreditCardApplyButton" disabled
- i18n-content="ok"></button>
+ <div class="action-area">
+ <span class="action-area-left"></span>
+ <span>
+ <div class="button-strip">
+ <button type="reset" id="autoFillEditCreditCardCancelButton"
+ i18n-content="cancel"></button>
+ <button type="submit" id="autoFillEditCreditCardApplyButton" disabled
+ i18n-content="ok"></button>
+ </div>
+ </span>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698