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

Side by Side Diff: chrome/browser/resources/sync_setup_overlay.html

Issue 7399015: Sync Promo: Add a way to collapse the sync promo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review feedback Created 9 years, 5 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 id="sync-setup-overlay" class="page" hidden> 1 <div id="sync-setup-overlay" class="page" hidden>
2 <div id="sync-setup-login" hidden> 2 <div id="sync-setup-login" hidden>
3 <h1 i18n-content="syncSetupOverlayTitle"></h1> 3 <h1 i18n-content="syncSetupOverlayTitle"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <div> 5 <div>
6 <!-- top-blurb-error's reset state is handled differently from most 6 <!-- top-blurb-error's reset state is handled differently from most
7 elements. Instead of being [hidden] it is visibility:hidden so it 7 elements. Instead of being [hidden] it is visibility:hidden so it
8 still takes up space. But it is also [hidden] when we display the 8 still takes up space. But it is also [hidden] when we display the
9 captcha, so when it is reset, it needs to be shown. --> 9 captcha, so when it is reset, it needs to be shown. -->
10 <div id="top-blurb-error" 10 <div id="top-blurb-error"
(...skipping 13 matching lines...) Expand all
24 cellpadding="1" cellspacing="0"> 24 cellpadding="1" cellspacing="0">
25 <tr> 25 <tr>
26 <td colspan="2" align="center"> 26 <td colspan="2" align="center">
27 <table> 27 <table>
28 <tr> 28 <tr>
29 <td> 29 <td>
30 <span id="gaia-account-text-prefix" 30 <span id="gaia-account-text-prefix"
31 i18n-content="signinPrefix"></span> 31 i18n-content="signinPrefix"></span>
32 </td> 32 </td>
33 <td id="gaia-logo" valign="top"> 33 <td id="gaia-logo" valign="top">
34 <img src="google-transparent.png" alt="Google"> 34 <img src="chrome://resources/images/google-trans parent.png" alt="Google">
35 </td> 35 </td>
36 <td valign="middle"> 36 <td valign="middle">
37 <span id="gaia-account-text" 37 <span id="gaia-account-text"
38 i18n-content="signinSuffix"></span> 38 i18n-content="signinSuffix"></span>
39 </td> 39 </td>
40 </tr> 40 </tr>
41 </table> 41 </table>
42 </td> 42 </td>
43 </tr> 43 </tr>
44 <tr> 44 <tr>
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 <span i18n-content="stopSyncingExplanation"></span> 416 <span i18n-content="stopSyncingExplanation"></span>
417 </div> 417 </div>
418 <div class="action-area"> 418 <div class="action-area">
419 <input id="stop-syncing-ok" type="button" 419 <input id="stop-syncing-ok" type="button"
420 i18n-values="value:stopSyncingConfirm"> 420 i18n-values="value:stopSyncingConfirm">
421 <input id="stop-syncing-cancel" type="button" 421 <input id="stop-syncing-cancel" type="button"
422 i18n-values="value:cancel"> 422 i18n-values="value:cancel">
423 </div> 423 </div>
424 </div> 424 </div>
425 </div> 425 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698