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

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

Issue 6575012: More autofill overlay HTML cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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 | chrome/browser/resources/options/autofill_edit_creditcard_overlay.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div class="page hidden" id="autofill-edit-address-overlay"> 1 <div class="page hidden" id="autofill-edit-address-overlay">
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 <span i18n-content="fullNameLabel"></span><br>
arv (Not doing code reviews) 2011/02/24 01:00:22 No, don't use br's. They are impossible to style.
Ilya Sherman 2011/02/24 04:08:02 Done. Is this a good approach?
7 <input type="text" class="form" id="full-name"> 7 <input type="text" class="form" id="full-name">
8 </label> 8 </label>
9 </div> 9 </div>
10 <div class="input"> 10 <div class="input">
11 <label> 11 <label>
12 <div><span i18n-content="companyNameLabel"></span></div> 12 <span i18n-content="companyNameLabel"></span><br>
13 <input type="text" class="form" id="company-name"> 13 <input type="text" class="form" id="company-name">
14 </label> 14 </label>
15 </div> 15 </div>
16 <div class="input"> 16 <div class="input">
17 <label> 17 <label>
18 <div><span i18n-content="addrLine1Label"></span></div> 18 <span i18n-content="addrLine1Label"></span><br>
19 <input type="text" class="form" id="addr-line-1"> 19 <input type="text" class="form" id="addr-line-1">
20 </label> 20 </label>
21 </div> 21 </div>
22 <div class="input"> 22 <div class="input">
23 <label> 23 <label>
24 <div><span i18n-content="addrLine2Label"></span></div> 24 <span i18n-content="addrLine2Label"></span><br>
25 <input type="text" class="form" id="addr-line-2"> 25 <input type="text" class="form" id="addr-line-2">
26 </label> 26 </label>
27 </div> 27 </div>
28 <div class="table"> 28 <div class="table">
29 <div class="row"> 29 <div class="row">
30 <div class="input cell"> 30 <div class="input cell">
31 <label for="city"> 31 <label for="city">
32 <span i18n-content="cityLabel"></span> 32 <span i18n-content="cityLabel"></span>
33 </label> 33 </label>
34 </div> 34 </div>
(...skipping 15 matching lines...) Expand all
50 <div class="input cell"> 50 <div class="input cell">
51 <input type="text" class="form" id="state"> 51 <input type="text" class="form" id="state">
52 </div> 52 </div>
53 <div class="input cell"> 53 <div class="input cell">
54 <input type="text" class="form" id="zip-code"> 54 <input type="text" class="form" id="zip-code">
55 </div> 55 </div>
56 </div> 56 </div>
57 </div> 57 </div>
58 <div class="input"> 58 <div class="input">
59 <label> 59 <label>
60 <div><span i18n-content="countryLabel"></span></div> 60 <span i18n-content="countryLabel"></span><br>
61 <input type="text" class="form" id="country"> 61 <input type="text" class="form" id="country">
62 </label> 62 </label>
63 </div> 63 </div>
64 <div class="table"> 64 <div class="table">
65 <div class="row"> 65 <div class="row">
66 <div class="input cell"> 66 <div class="input cell">
67 <label for="phone"> 67 <label for="phone">
68 <span i18n-content="phoneLabel"></span> 68 <span i18n-content="phoneLabel"></span>
69 </label> 69 </label>
70 </div> 70 </div>
71 <div class="input cell"> 71 <div class="input cell">
72 <label for="fax"> 72 <label for="fax">
73 <span i18n-content="faxLabel"></span> 73 <span i18n-content="faxLabel"></span>
74 </label> 74 </label>
75 </div> 75 </div>
76 </div> 76 </div>
77 <div class="row"> 77 <div class="row">
78 <div class="input cell"> 78 <div class="input cell">
79 <input type="text" class="form" id="phone"> 79 <input type="text" class="form" id="phone">
80 </div> 80 </div>
81 <div class="input cell"> 81 <div class="input cell">
82 <input type="text" class="form" id="fax"> 82 <input type="text" class="form" id="fax">
83 </div> 83 </div>
84 </div> 84 </div>
85 </div> 85 </div>
86 <div class="input"> 86 <div class="input">
87 <label> 87 <label>
88 <div><span i18n-content="emailLabel"></span></div> 88 <span i18n-content="emailLabel"></span><br>
89 <input type="text" class="form" id="email"> 89 <input type="text" class="form" id="email">
90 </label> 90 </label>
91 </div> 91 </div>
92 </div> 92 </div>
93 <div class="action-area"> 93 <div class="action-area button-strip">
94 <div class="button-strip"> 94 <button type="reset" id="autofill-edit-address-cancel-button"
95 <button type="reset" id="autofill-edit-address-cancel-button" 95 i18n-content="cancel"></button>
96 i18n-content="cancel"></button> 96 <button type="submit" id="autofill-edit-address-apply-button" disabled
97 <button type="submit" id="autofill-edit-address-apply-button" disabled 97 i18n-content="ok"></button>
98 i18n-content="ok"></button>
99 </div>
100 </div> 98 </div>
101 </div> 99 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/autofill_edit_creditcard_overlay.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698