| OLD | NEW |
| 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/html/polymer.html"> | 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-styles/color.
html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.
html"> |
| 8 <link rel="import" href="signin_shared_css.html"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 9 <link rel="stylesheet" href="sync_confirmation.css"></link> | 10 <link rel="stylesheet" href="sync_confirmation.css"></link> |
| 10 <style is="custom-style"> | 11 <style is="custom-style" include="signin-dialog-shared"> |
| 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"> | 12 <if expr="is_macosx or is_linux"> |
| 38 .action-container { | |
| 39 flex-flow: row-reverse; | |
| 40 justify-content: flex-start; | |
| 41 } | |
| 42 | |
| 43 #undoButton { | 13 #undoButton { |
| 44 -webkit-margin-end: 8px; | 14 -webkit-margin-end: 8px; |
| 45 -webkit-margin-start: 0; | 15 -webkit-margin-start: 0; |
| 46 } | 16 } |
| 47 </if> | 17 </if> |
| 48 </style> | 18 </style> |
| 49 </head> | 19 </head> |
| 50 <body> | 20 <body> |
| 51 <div class="container"> | 21 <div class="container"> |
| 52 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div> | 22 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div> |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 </div> | 67 </div> |
| 98 </div> | 68 </div> |
| 99 </div> | 69 </div> |
| 100 <div class="message-container"> | 70 <div class="message-container"> |
| 101 <div class="body" | 71 <div class="body" |
| 102 i18n-values=".innerHTML:syncConfirmationSyncSettingsLinkBody"> | 72 i18n-values=".innerHTML:syncConfirmationSyncSettingsLinkBody"> |
| 103 </div> | 73 </div> |
| 104 </div> | 74 </div> |
| 105 </div> | 75 </div> |
| 106 <div class="action-container"> | 76 <div class="action-container"> |
| 107 <paper-button id="confirmButton"> | 77 <paper-button class="primary-action" id="confirmButton"> |
| 108 $i18n{syncConfirmationConfirmLabel} | 78 $i18n{syncConfirmationConfirmLabel} |
| 109 </paper-button> | 79 </paper-button> |
| 110 <paper-button id="undoButton"> | 80 <paper-button class="secondary-action" id="undoButton"> |
| 111 $i18n{syncConfirmationUndoLabel} | 81 $i18n{syncConfirmationUndoLabel} |
| 112 </paper-button> | 82 </paper-button> |
| 113 </div> | 83 </div> |
| 114 </div> | 84 </div> |
| 115 </body> | 85 </body> |
| 116 <script src="chrome://resources/js/cr.js"></script> | 86 <script src="chrome://resources/js/cr.js"></script> |
| 117 <script src="chrome://resources/js/load_time_data.js"></script> | 87 <script src="chrome://resources/js/load_time_data.js"></script> |
| 118 <script src="chrome://resources/js/util.js"></script> | 88 <script src="chrome://resources/js/util.js"></script> |
| 119 <script src="sync_confirmation.js"></script> | 89 <script src="sync_confirmation.js"></script> |
| 120 <script src="chrome://sync-confirmation/strings.js"></script> | 90 <script src="chrome://sync-confirmation/strings.js"></script> |
| 121 <script src="chrome://resources/js/i18n_template.js"></script> | 91 <script src="chrome://resources/js/i18n_template.js"></script> |
| 122 </html> | 92 </html> |
| OLD | NEW |