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

Side by Side Diff: chrome/browser/resources/options/autofill_edit_address_overlay.html

Issue 7977006: Autofill: Position the email input list next to the phone list now that fax has been removed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="autofill-edit-address-overlay" class="page" hidden> 1 <div id="autofill-edit-address-overlay" class="page" hidden>
2 <h1 id="autofill-address-title"></h1> 2 <h1 id="autofill-address-title"></h1>
3 <div class="content-area"> 3 <div class="content-area">
4 <div class="input"> 4 <div class="input">
5 <label> 5 <label>
6 <div><span i18n-content="fullNameLabel"></span></div> 6 <div><span i18n-content="fullNameLabel"></span></div>
7 <list id="full-name-list" 7 <list id="full-name-list"
8 i18n-values="placeholder:addNewNamePlaceholder"></list> 8 i18n-values="placeholder:addNewNamePlaceholder"></list>
9 </label> 9 </label>
10 </div> 10 </div>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 <select id="country"></select> 60 <select id="country"></select>
61 </label> 61 </label>
62 </div> 62 </div>
63 <div class="table"> 63 <div class="table">
64 <div class="row"> 64 <div class="row">
65 <div class="input cell"> 65 <div class="input cell">
66 <label for="phone-list"> 66 <label for="phone-list">
67 <span i18n-content="phoneLabel"></span> 67 <span i18n-content="phoneLabel"></span>
68 </label> 68 </label>
69 </div> 69 </div>
70 </div>
71 <div class="row">
72 <div class="input cell">
73 <list id="phone-list"
74 i18n-values="placeholder:addNewPhonePlaceholder"></list>
75 </div>
76 </div>
77 </div>
78 <!-- TODO(jhawkins): Move email next to phone in the UI. -->
79 <div class="table">
80 <div class="row">
81 <div class="input cell"> 70 <div class="input cell">
82 <label for="email-list"> 71 <label for="email-list">
83 <span i18n-content="emailLabel"></span> 72 <span i18n-content="emailLabel"></span>
84 </label> 73 </label>
85 </div> 74 </div>
86 </div> 75 </div>
87 <div class="row"> 76 <div class="row">
88 <div class="input cell"> 77 <div class="input cell">
78 <list id="phone-list"
79 i18n-values="placeholder:addNewPhonePlaceholder"></list>
80 </div>
81 <div class="input cell">
89 <list id="email-list" 82 <list id="email-list"
90 i18n-values="placeholder:addNewEmailPlaceholder"></list> 83 i18n-values="placeholder:addNewEmailPlaceholder"></list>
91 </div> 84 </div>
92 </div> 85 </div>
93 </div> 86 </div>
94 </div> 87 </div>
95 <div class="action-area button-strip"> 88 <div class="action-area button-strip">
96 <button id="autofill-edit-address-cancel-button" type="reset" 89 <button id="autofill-edit-address-cancel-button" type="reset"
97 i18n-content="cancel"></button> 90 i18n-content="cancel"></button>
98 <button id="autofill-edit-address-apply-button" type="submit" 91 <button id="autofill-edit-address-apply-button" type="submit"
99 i18n-content="ok" disabled></button> 92 i18n-content="ok" disabled></button>
100 </div> 93 </div>
101 </div> 94 </div>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698