| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape
r-radio-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape
r-radio-button.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> |
| 9 <link rel="import" href="/people_page/sync_browser_proxy.html"> | 9 <link rel="import" href="/people_page/sync_browser_proxy.html"> |
| 10 <link rel="import" href="/route.html"> | 10 <link rel="import" href="/route.html"> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 #existingPassphraseInput { | 39 #existingPassphraseInput { |
| 40 /* The submit button for the existing passphrase is on the same line. */ | 40 /* The submit button for the existing passphrase is on the same line. */ |
| 41 -webkit-margin-end: 16px; | 41 -webkit-margin-end: 16px; |
| 42 display: inline-block; | 42 display: inline-block; |
| 43 --paper-input-container: { | 43 --paper-input-container: { |
| 44 padding: 0; | 44 padding: 0; |
| 45 }; | 45 }; |
| 46 } | 46 } |
| 47 | 47 |
| 48 /** |
| 49 * This is currently necessary because a link inside a disabled |
| 50 * paper-checkbox inherits `pointer-events: none;` and will not work. |
| 51 * See: https://github.com/PolymerElements/paper-checkbox/issues/166 |
| 52 */ |
| 48 #paymentLearnMore { | 53 #paymentLearnMore { |
| 49 pointer-events: initial; | 54 pointer-events: initial; |
| 50 } | 55 } |
| 51 </style> | 56 </style> |
| 52 <div id="[[pages.SPINNER]]" class="settings-box first" | 57 <div id="[[pages.SPINNER]]" class="settings-box first" |
| 53 hidden$="[[!isStatus_(pages.SPINNER, pageStatus_)]]"> | 58 hidden$="[[!isStatus_(pages.SPINNER, pageStatus_)]]"> |
| 54 $i18n{syncLoading} | 59 $i18n{syncLoading} |
| 55 </div> | 60 </div> |
| 56 <div id="[[pages.TIMEOUT]]" class="settings-box first" | 61 <div id="[[pages.TIMEOUT]]" class="settings-box first" |
| 57 hidden$="[[!isStatus_(pages.TIMEOUT, pageStatus_)]]"> | 62 hidden$="[[!isStatus_(pages.TIMEOUT, pageStatus_)]]"> |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 </div> | 247 </div> |
| 243 <div id="passphraseRecoverHint" class="list-item"> | 248 <div id="passphraseRecoverHint" class="list-item"> |
| 244 <span>$i18nRaw{passphraseRecover}</span> | 249 <span>$i18nRaw{passphraseRecover}</span> |
| 245 </div> | 250 </div> |
| 246 </div> | 251 </div> |
| 247 </template> | 252 </template> |
| 248 </div> | 253 </div> |
| 249 </template> | 254 </template> |
| 250 <script src="sync_page.js"></script> | 255 <script src="sync_page.js"></script> |
| 251 </dom-module> | 256 </dom-module> |
| OLD | NEW |