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