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

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

Issue 6372010: DOMUI: Refactor the new overlay style and apply it to all overlays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="autoFillEditCreditCardOverlay"> 1 <div class="page hidden" id="autoFillEditCreditCardOverlay">
2 <h1 id="autoFillCreditCardTitle"></h1> 2 <h1 id="autoFillCreditCardTitle"></h1>
3 3 <div class="content-area">
4 <div> 4 <div>
5 <label id="nameOnCardLabel"> 5 <label id="nameOnCardLabel">
6 <span i18n-content="nameOnCardLabel"></span><br> 6 <span i18n-content="nameOnCardLabel"></span><br>
7 <input type="text" id="nameOnCard"> 7 <input type="text" id="nameOnCard">
8 </label> 8 </label>
9 </div>
10 <div>
11 <label id="creditCardNumberLabel">
12 <span i18n-content="creditCardNumberLabel"></span><br>
13 <input type="text" id="creditCardNumber">
14 </label>
15 </div>
16 <div>
17 <label id="creditCardExpirationDateLabel">
18 <span i18n-content="creditCardExpirationDateLabel"></span><br>
19 <select id="expirationMonth"></select>
20 <select id="expirationYear"></select>
21 </label>
22 </div>
9 </div> 23 </div>
10 24 <div class="action-area">
11 <div> 25 <span class="action-area-left"></span>
12 <label id="creditCardNumberLabel"> 26 <span>
13 <span i18n-content="creditCardNumberLabel"></span><br> 27 <div class="button-strip">
14 <input type="text" id="creditCardNumber"> 28 <button type="reset" id="autoFillEditCreditCardCancelButton"
15 </label> 29 i18n-content="cancel"></button>
16 </div> 30 <button type="submit" id="autoFillEditCreditCardApplyButton" disabled
17 31 i18n-content="ok"></button>
18 <div> 32 </div>
19 <label id="creditCardExpirationDateLabel"> 33 </span>
20 <span i18n-content="creditCardExpirationDateLabel"></span><br>
21 <select id="expirationMonth"></select>
22 <select id="expirationYear"></select>
23 </label>
24 </div>
25
26 <div class="action-area button-strip">
27 <button type="reset" id="autoFillEditCreditCardCancelButton"
28 i18n-content="cancel"></button>
29 <button type="submit" id="autoFillEditCreditCardApplyButton" disabled
30 i18n-content="ok"></button>
31 </div> 34 </div>
32 </div> 35 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698