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

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

Issue 7583023: In sync setup UI, move "For added security..." string up to the "Encrypted Data (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 4 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="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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 <div class="sync-configuration-errors"> 312 <div class="sync-configuration-errors">
313 <div id="error-text" i18n-content="syncZeroDataTypesError" 313 <div id="error-text" i18n-content="syncZeroDataTypesError"
314 class="sync-configuration-error reset-hidden" hidden></div> 314 class="sync-configuration-error reset-hidden" hidden></div>
315 <div id="aborted-text" i18n-content="abortedError" 315 <div id="aborted-text" i18n-content="abortedError"
316 class="sync-configuration-error reset-hidden" hidden></div> 316 class="sync-configuration-error reset-hidden" hidden></div>
317 </div> 317 </div>
318 <div id="customize-sync-encryption"> 318 <div id="customize-sync-encryption">
319 <hr> 319 <hr>
320 <h4 i18n-content="encryptedDataTypesTitle"></h4> 320 <h4 i18n-content="encryptedDataTypesTitle"></h4>
321 <div class="sync-customize-section-container"> 321 <div class="sync-customize-section-container">
322 <div id="passphrase-encryption-message"
323 i18n-content="passphraseEncryptionMessage"></div>
322 <div> 324 <div>
323 <input id="encrypt-sensitive-option" name="encrypt" type="radio" 325 <input id="encrypt-sensitive-option" name="encrypt" type="radio"
324 value="sensitive"> 326 value="sensitive">
325 <label for="encrypt-sensitive-option" 327 <label for="encrypt-sensitive-option"
326 i18n-content="encryptSensitiveOption"></label> 328 i18n-content="encryptSensitiveOption"></label>
327 </div> 329 </div>
328 <div> 330 <div>
329 <input id="encrypt-all-option" name="encrypt" type="radio" 331 <input id="encrypt-all-option" name="encrypt" type="radio"
330 value="all"> 332 value="all">
331 <label for="encrypt-all-option" i18n-content="encryptAllOption"> 333 <label for="encrypt-all-option" i18n-content="encryptAllOption">
332 </label> 334 </label>
333 </div> 335 </div>
334 </div> 336 </div>
335 </div> 337 </div>
336 <hr> 338 <hr>
337 <h4 i18n-content="passphraseSectionTitle"></h4> 339 <h4 i18n-content="passphraseSectionTitle"></h4>
338 <div id="sync-custom-passphrase-container" 340 <div id="sync-custom-passphrase-container"
339 class="sync-customize-section-container"> 341 class="sync-customize-section-container">
340 <div id="passphrase-encryption-message"
341 i18n-content="passphraseEncryptionMessage"></div>
342 <div> 342 <div>
343 <input id="google-option" name="option" type="radio" 343 <input id="google-option" name="option" type="radio"
344 value="google"> 344 value="google">
345 <label for="google-option" i18n-content="googleOption"></label> 345 <label for="google-option" i18n-content="googleOption"></label>
346 </div> 346 </div>
347 <div> 347 <div>
348 <input id="explicit-option" name="option" type="radio" 348 <input id="explicit-option" name="option" type="radio"
349 value="explicit"> 349 value="explicit">
350 <label for="explicit-option" i18n-content="explicitOption"> 350 <label for="explicit-option" i18n-content="explicitOption">
351 </label> 351 </label>
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 <span i18n-content="stopSyncingExplanation"></span> 417 <span i18n-content="stopSyncingExplanation"></span>
418 </div> 418 </div>
419 <div class="action-area"> 419 <div class="action-area">
420 <input id="stop-syncing-ok" type="button" 420 <input id="stop-syncing-ok" type="button"
421 i18n-values="value:stopSyncingConfirm"> 421 i18n-values="value:stopSyncingConfirm">
422 <input id="stop-syncing-cancel" type="button" 422 <input id="stop-syncing-cancel" type="button"
423 i18n-values="value:cancel"> 423 i18n-values="value:cancel">
424 </div> 424 </div>
425 </div> 425 </div>
426 </div> 426 </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