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_confirmation/sync_confirmation.html

Issue 1806353002: Enhanced Sync Confirmation modal (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.htm l"> 5 <link rel="import" href="chrome://resources/html/polymer.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper- button.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper- button.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/pape r-checkbox.html">
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
8 <link rel="stylesheet" href="sync_confirmation.css"></link> 9 <link rel="stylesheet" href="sync_confirmation.css"></link>
9 </head> 10 </head>
10 <body> 11 <body>
11 <div class="container"> 12 <div class="container">
12 <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div> 13 <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div>
13 <div class="details"> 14 <div class="details">
14 <div id="picture-container"> 15 <div id="picture-container">
15 <div id="illustration"> 16 <div id="illustration">
16 <div id="icons"> 17 <div id="icons">
(...skipping 14 matching lines...) Expand all
31 <div id="checkmark-circle"> 32 <div id="checkmark-circle">
32 <svg id="checkmark-check" width="13" height="10" viewBox="0 0 13 10"> 33 <svg id="checkmark-check" width="13" height="10" viewBox="0 0 13 10">
33 <path id="checkmark-path" d="M1 5l3.5 3.5L12 1" stroke="#FFF" 34 <path id="checkmark-path" d="M1 5l3.5 3.5L12 1" stroke="#FFF"
34 stroke-width="2" stroke-dasharray="16" 35 stroke-width="2" stroke-dasharray="16"
35 stroke-dashoffset="16" fill="none"></path> 36 stroke-dashoffset="16" fill="none"></path>
36 </svg> 37 </svg>
37 </div> 38 </div>
38 </div> 39 </div>
39 </div> 40 </div>
40 </div> 41 </div>
41 <div class="sync-message" 42 <div class="message-container">
42 i18n-values=".innerHTML:syncConfirmationChromeSyncBody"></div> 43 <div id="chrome-logo" class="logo"></div>
43 <div class="action-container"> 44 <div>
44 <paper-button id="confirmButton" 45 <div class="title"
45 i18n-content="syncConfirmationConfirmLabel"></paper-button> 46 i18n-content="syncConfirmationChromeSyncTitle"></div>
46 <paper-button id="undoButton" 47 <div class="body text"
47 i18n-content="syncConfirmationUndoLabel"></paper-button> 48 i18n-values=".innerHTML:syncConfirmationChromeSyncBody"></div>
49 </div>
48 </div> 50 </div>
51 <div class="message-container">
52 <div id="googleg-logo" class="logo"></div>
53 <div>
54 <div class="title"
55 i18n-content="syncConfirmationActivityControlsTitle"></div>
56 <div class="body text"
57 i18n-content="syncConfirmationActivityControlsBody"></div>
58 </div>
59 </div>
60 <div class="message-container">
61 <paper-checkbox id="activityControlsCheckbox" class="body"
62 i18n-content="syncConfirmationActivityControlsCheckboxLabel">
63 </paper-checkbox>
64 </div>
65 </div>
66 <div class="action-container">
67 <paper-button id="confirmButton"
68 i18n-content="syncConfirmationConfirmLabel"></paper-button>
69 <paper-button id="undoButton"
70 i18n-content="syncConfirmationUndoLabel"></paper-button>
49 </div> 71 </div>
50 </div> 72 </div>
51 </body> 73 </body>
52 <script src="chrome://resources/js/cr.js"></script> 74 <script src="chrome://resources/js/cr.js"></script>
53 <script src="chrome://resources/js/load_time_data.js"></script> 75 <script src="chrome://resources/js/load_time_data.js"></script>
54 <script src="chrome://resources/js/util.js"></script> 76 <script src="chrome://resources/js/util.js"></script>
55 <script src="sync_confirmation.js"></script> 77 <script src="sync_confirmation.js"></script>
56 <script src="chrome://sync-confirmation/strings.js"></script> 78 <script src="chrome://sync-confirmation/strings.js"></script>
57 <script src="chrome://resources/js/i18n_template.js"></script> 79 <script src="chrome://resources/js/i18n_template.js"></script>
58 </html> 80 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698