| 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="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 9 <link rel="stylesheet" href="sync_confirmation.css"></link> | 9 <link rel="stylesheet" href="sync_confirmation.css"></link> |
| 10 <style is="custom-style"> | 10 <style is="custom-style"> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #undoButton { | 27 #undoButton { |
| 28 --paper-button: { | 28 --paper-button: { |
| 29 color: var(--paper-grey-600); | 29 color: var(--paper-grey-600); |
| 30 }; | 30 }; |
| 31 --paper-button-flat-keyboard-focus: { | 31 --paper-button-flat-keyboard-focus: { |
| 32 background: rgba(0, 0, 0, .12); | 32 background: rgba(0, 0, 0, .12); |
| 33 font-weight: 500; | 33 font-weight: 500; |
| 34 }; | 34 }; |
| 35 } | 35 } |
| 36 | 36 |
| 37 <if expr="is_macosx or is_linux"> |
| 37 .action-container { | 38 .action-container { |
| 38 <if expr="is_macosx or is_linux"> | |
| 39 flex-flow: row-reverse; | 39 flex-flow: row-reverse; |
| 40 justify-content: flex-start; | 40 justify-content: flex-start; |
| 41 } |
| 42 |
| 43 #undoButton { |
| 44 -webkit-margin-end: 8px; |
| 45 -webkit-margin-start: 0; |
| 46 } |
| 41 </if> | 47 </if> |
| 42 } | |
| 43 </style> | 48 </style> |
| 44 </head> | 49 </head> |
| 45 <body> | 50 <body> |
| 46 <div class="container"> | 51 <div class="container"> |
| 47 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div> | 52 <div class="top-title-bar">$i18n{syncConfirmationTitle}</div> |
| 48 <div class="details"> | 53 <div class="details"> |
| 49 <div id="picture-container"> | 54 <div id="picture-container"> |
| 50 <div id="illustration"> | 55 <div id="illustration"> |
| 51 <div id="icons"> | 56 <div id="icons"> |
| 52 <div id="icon-bookmarks" class="fade-top-left"></div> | 57 <div id="icon-bookmarks" class="fade-top-left"></div> |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 </div> | 113 </div> |
| 109 </div> | 114 </div> |
| 110 </body> | 115 </body> |
| 111 <script src="chrome://resources/js/cr.js"></script> | 116 <script src="chrome://resources/js/cr.js"></script> |
| 112 <script src="chrome://resources/js/load_time_data.js"></script> | 117 <script src="chrome://resources/js/load_time_data.js"></script> |
| 113 <script src="chrome://resources/js/util.js"></script> | 118 <script src="chrome://resources/js/util.js"></script> |
| 114 <script src="sync_confirmation.js"></script> | 119 <script src="sync_confirmation.js"></script> |
| 115 <script src="chrome://sync-confirmation/strings.js"></script> | 120 <script src="chrome://sync-confirmation/strings.js"></script> |
| 116 <script src="chrome://resources/js/i18n_template.js"></script> | 121 <script src="chrome://resources/js/i18n_template.js"></script> |
| 117 </html> | 122 </html> |
| OLD | NEW |