| Index: chrome/browser/resources/sync_confirmation/sync_confirmation.html
|
| diff --git a/chrome/browser/resources/sync_confirmation/sync_confirmation.html b/chrome/browser/resources/sync_confirmation/sync_confirmation.html
|
| index 5d287a5a7d55afe2d7bccb5e624c93707d6dc332..5095cb905cbbd3ffd31ee20d1e9bddf9afa6f740 100644
|
| --- a/chrome/browser/resources/sync_confirmation/sync_confirmation.html
|
| +++ b/chrome/browser/resources/sync_confirmation/sync_confirmation.html
|
| @@ -6,10 +6,16 @@
|
| <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
|
| <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
|
| <link rel="stylesheet" href="sync_confirmation.css"></link>
|
| + <style is="custom-style">
|
| + a {
|
| + color: var(--google-blue-700);
|
| + text-decoration: none;
|
| + }
|
| + </style>
|
| </head>
|
| <body>
|
| <div class="container">
|
| - <div class="top-title-bar" i18n-content="syncConfirmationTitle"></div>
|
| + <div class="top-title-bar">$i18n{syncConfirmationTitle}</div>
|
| <div class="details">
|
| <div id="picture-container">
|
| <div id="illustration">
|
| @@ -38,15 +44,39 @@
|
| </div>
|
| </div>
|
| </div>
|
| - <div class="sync-message"
|
| - i18n-values=".innerHTML:syncConfirmationChromeSyncBody"></div>
|
| - <div class="action-container">
|
| - <paper-button id="confirmButton"
|
| - i18n-content="syncConfirmationConfirmLabel"></paper-button>
|
| - <paper-button id="undoButton"
|
| - i18n-content="syncConfirmationUndoLabel"></paper-button>
|
| + <div class="message-container">
|
| + <div id="chrome-logo" class="logo"></div>
|
| + <div>
|
| + <div class="title">$i18n{syncConfirmationChromeSyncTitle}</div>
|
| + <div class="body text"
|
| + i18n-values=".innerHTML:syncConfirmationChromeSyncBody"></div>
|
| + </div>
|
| + </div>
|
| + <div class="message-container">
|
| + <div id="googleg-logo" class="logo"></div>
|
| + <div>
|
| + <div class="title">
|
| + $i18n{syncConfirmationPersonalizeServicesTitle}
|
| + </div>
|
| + <div class="body text">
|
| + $i18n{syncConfirmationPersonalizeServicesBody}
|
| + </div>
|
| + </div>
|
| + </div>
|
| + <div class="message-container">
|
| + <div class="body"
|
| + i18n-values=".innerHTML:syncConfirmationSyncSettingsLinkBody">
|
| + </div>
|
| </div>
|
| </div>
|
| + <div class="action-container">
|
| + <paper-button id="confirmButton">
|
| + $i18n{syncConfirmationConfirmLabel}
|
| + </paper-button>
|
| + <paper-button id="undoButton">
|
| + $i18n{syncConfirmationUndoLabel}
|
| + </paper-button>
|
| + </div>
|
| </div>
|
| </body>
|
| <script src="chrome://resources/js/cr.js"></script>
|
|
|