| OLD | NEW |
| (Empty) |
| 1 <!doctype html> | |
| 2 <html i18n-values="dir:textdirection;lang:language"> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 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"> | |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.
html"> | |
| 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | |
| 9 <link rel="stylesheet" href="sync_confirmation.css"></link> | |
| 10 <style is="custom-style"> | |
| 11 a { | |
| 12 color: var(--google-blue-700); | |
| 13 text-decoration: none; | |
| 14 } | |
| 15 | |
| 16 #confirmButton { | |
| 17 --paper-button: { | |
| 18 background: var(--google-blue-500); | |
| 19 color: white; | |
| 20 font-weight: 500; | |
| 21 }; | |
| 22 --paper-button-flat-keyboard-focus: { | |
| 23 background: rgb(58, 117, 215); | |
| 24 }; | |
| 25 } | |
| 26 | |
| 27 #undoButton { | |
| 28 --paper-button: { | |
| 29 color: var(--paper-grey-600); | |
| 30 font-weight: 500; | |
| 31 }; | |
| 32 --paper-button-flat-keyboard-focus: { | |
| 33 background: rgba(0, 0, 0, .12); | |
| 34 }; | |
| 35 } | |
| 36 | |
| 37 <if expr="is_macosx or is_linux"> | |
| 38 .action-container { | |
| 39 flex-flow: row-reverse; | |
| 40 justify-content: flex-start; | |
| 41 } | |
| 42 | |
| 43 #undoButton { | |
| 44 -webkit-margin-end: 8px; | |
| 45 -webkit-margin-start: 0; | |
| 46 } | |
| 47 </if> | |
| 48 </style> | |
| 49 </head> | |
| 50 <body> | |
| 51 <div class="container"> | |
| 52 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div> | |
| 53 <div class="details"> | |
| 54 <div id="picture-container"> | |
| 55 <div id="illustration"> | |
| 56 <div id="icons"> | |
| 57 <div id="icon-bookmarks" class="fade-top-left"></div> | |
| 58 <div id="icon-extensions" class="fade-top-left"></div> | |
| 59 <div id="icon-passwords" class="fade-bottom-left"></div> | |
| 60 <div id="icon-history" class="fade-top-right"></div> | |
| 61 <div id="icon-tabs" class="fade-middle-right"></div> | |
| 62 <div id="icon-themes" class="fade-bottom-right"></div> | |
| 63 <div id="icon-circle-open" class="fade-middle-left"></div> | |
| 64 <div id="icon-circle-1" class="icon-circle fade-middle-left"></div
> | |
| 65 <div id="icon-circle-2" class="icon-circle fade-top-right"></div> | |
| 66 <div id="icon-circle-3" class="icon-circle fade-middle-right"></di
v> | |
| 67 <div id="icon-circle-4" class="icon-circle fade-top-right"></div> | |
| 68 </div> | |
| 69 <div class="picture"> | |
| 70 <img id="profile-picture"></img> | |
| 71 <div id="checkmark-circle"> | |
| 72 <svg id="checkmark-check" width="13" height="10" viewBox="0 0 13
10"> | |
| 73 <path id="checkmark-path" d="M1 5l3.5 3.5L12 1" stroke="#FFF" | |
| 74 stroke-width="2" stroke-dasharray="16" | |
| 75 stroke-dashoffset="16" fill="none"></path> | |
| 76 </svg> | |
| 77 </div> | |
| 78 </div> | |
| 79 </div> | |
| 80 </div> | |
| 81 <div class="message-container"> | |
| 82 <div id="chrome-logo" class="logo"></div> | |
| 83 <div> | |
| 84 <div class="title">$i18n{syncConfirmationChromeSyncTitle}</div> | |
| 85 <div class="body text" | |
| 86 i18n-values=".innerHTML:syncConfirmationChromeSyncBody"></div> | |
| 87 </div> | |
| 88 </div> | |
| 89 <div class="message-container"> | |
| 90 <div id="googleg-logo" class="logo"></div> | |
| 91 <div> | |
| 92 <div class="title"> | |
| 93 $i18n{syncConfirmationPersonalizeServicesTitle} | |
| 94 </div> | |
| 95 <div class="body text"> | |
| 96 $i18n{syncConfirmationPersonalizeServicesBody} | |
| 97 </div> | |
| 98 </div> | |
| 99 </div> | |
| 100 <div class="message-container"> | |
| 101 <div class="body" | |
| 102 i18n-values=".innerHTML:syncConfirmationSyncSettingsLinkBody"> | |
| 103 </div> | |
| 104 </div> | |
| 105 </div> | |
| 106 <div class="action-container"> | |
| 107 <paper-button id="confirmButton"> | |
| 108 $i18n{syncConfirmationConfirmLabel} | |
| 109 </paper-button> | |
| 110 <paper-button id="undoButton"> | |
| 111 $i18n{syncConfirmationUndoLabel} | |
| 112 </paper-button> | |
| 113 </div> | |
| 114 </div> | |
| 115 </body> | |
| 116 <script src="chrome://resources/js/cr.js"></script> | |
| 117 <script src="chrome://resources/js/load_time_data.js"></script> | |
| 118 <script src="chrome://resources/js/util.js"></script> | |
| 119 <script src="sync_confirmation.js"></script> | |
| 120 <script src="chrome://sync-confirmation/strings.js"></script> | |
| 121 <script src="chrome://resources/js/i18n_template.js"></script> | |
| 122 </html> | |
| OLD | NEW |