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

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

Issue 1583293004: Changes to Autofill settings page to ensure Credit Card list is always at least partially visible o… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing second round of feedback Created 4 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_options.html
diff --git a/chrome/browser/resources/options/autofill_options.html b/chrome/browser/resources/options/autofill_options.html
index cf33636bb896672f8f0a23e7b016038cbd49936d..9bd38d3cb1b4a7edb54cda90fefc0161252e8380 100644
--- a/chrome/browser/resources/options/autofill_options.html
+++ b/chrome/browser/resources/options/autofill_options.html
@@ -2,22 +2,21 @@
<div class="close-button"></div>
<h1 i18n-content="autofillOptionsPage"></h1>
<div class="content-area">
- <h3 i18n-content="autofillAddresses"></h3>
- <div class="settings-list">
+ <div class="autofill-section-header">
+ <h3 i18n-content="autofillAddresses"></h3>
+ <button id="autofill-add-address" i18n-content="autofillAddAddress">
+ </button>
+ </div>
+ <div class="settings-list extra-margin">
<list id="address-list"></list>
- <div>
- <button id="autofill-add-address" i18n-content="autofillAddAddress">
- </button>
- </div>
</div>
-
- <h3 i18n-content="autofillCreditCards"></h3>
+ <div class="autofill-section-header">
+ <h3 i18n-content="autofillCreditCards"></h3>
+ <button id="autofill-add-creditcard" i18n-content="autofillAddCreditCard">
+ </button>
+ </div>
<div class="settings-list">
<list id="creditcard-list"></list>
- <div>
- <button id="autofill-add-creditcard"
- i18n-content="autofillAddCreditCard"></button>
- </div>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698