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

Side by Side 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 dbeam 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 unified diff | Download patch
OLDNEW
1 <div id="autofill-options" class="page" hidden> 1 <div id="autofill-options" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="autofillOptionsPage"></h1> 3 <h1 i18n-content="autofillOptionsPage"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <h3 i18n-content="autofillAddresses"></h3> 5 <div class="autofill-section-header">
6 <h3 i18n-content="autofillAddresses"></h3>
7 <button id="autofill-add-address" i18n-content="autofillAddAddress">
8 </button>
9 </div>
6 <div class="settings-list"> 10 <div class="settings-list">
7 <list id="address-list"></list> 11 <list id="address-list"></list>
8 <div>
9 <button id="autofill-add-address" i18n-content="autofillAddAddress">
10 </button>
11 </div>
12 </div> 12 </div>
13 13 <div class="vertical-space"></div>
14 <h3 i18n-content="autofillCreditCards"></h3> 14 <div class="autofill-section-header">
15 <h3 i18n-content="autofillCreditCards"></h3>
16 <button id="autofill-add-creditcard" i18n-content="autofillAddCreditCard">
17 </button>
18 </div>
15 <div class="settings-list"> 19 <div class="settings-list">
16 <list id="creditcard-list"></list> 20 <list id="creditcard-list"></list>
17 <div>
18 <button id="autofill-add-creditcard"
19 i18n-content="autofillAddCreditCard"></button>
20 </div>
21 </div> 21 </div>
22 </div> 22 </div>
23 23
24 <div class="action-area"> 24 <div class="action-area">
25 <a id="autofill-help" target="_blank" i18n-values="href:helpUrl" 25 <a id="autofill-help" target="_blank" i18n-values="href:helpUrl"
26 i18n-content="helpButton"> 26 i18n-content="helpButton">
27 </a> 27 </a>
28 <div class="spacer-div"></div> 28 <div class="spacer-div"></div>
29 <div class="button-strip"> 29 <div class="button-strip">
30 <button id="autofill-options-confirm" class="default-button" 30 <button id="autofill-options-confirm" class="default-button"
31 i18n-content="done"></button> 31 i18n-content="done"></button>
32 </div> 32 </div>
33 </div> 33 </div>
34 </div> 34 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698