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 26 matching lines...) Expand all Loading... | |
37 } | 37 } |
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 | |
48 #paymentLearnMore { | |
dpapad
2016/12/09 00:56:09
Perhaps add a comment explaining why this is neces
scottchen
2016/12/09 19:53:39
Acknowledged.
| |
49 pointer-events: initial; | |
50 } | |
47 </style> | 51 </style> |
48 <div id="[[pages.SPINNER]]" class="settings-box first" | 52 <div id="[[pages.SPINNER]]" class="settings-box first" |
49 hidden$="[[!isStatus_(pages.SPINNER, pageStatus_)]]"> | 53 hidden$="[[!isStatus_(pages.SPINNER, pageStatus_)]]"> |
50 $i18n{syncLoading} | 54 $i18n{syncLoading} |
51 </div> | 55 </div> |
52 <div id="[[pages.TIMEOUT]]" class="settings-box first" | 56 <div id="[[pages.TIMEOUT]]" class="settings-box first" |
53 hidden$="[[!isStatus_(pages.TIMEOUT, pageStatus_)]]"> | 57 hidden$="[[!isStatus_(pages.TIMEOUT, pageStatus_)]]"> |
54 $i18n{syncTimeout} | 58 $i18n{syncTimeout} |
55 </div> | 59 </div> |
56 <div id="[[pages.CONFIGURE]]" | 60 <div id="[[pages.CONFIGURE]]" |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
238 </div> | 242 </div> |
239 <div id="passphraseRecoverHint" class="list-item"> | 243 <div id="passphraseRecoverHint" class="list-item"> |
240 <span>$i18nRaw{passphraseRecover}</span> | 244 <span>$i18nRaw{passphraseRecover}</span> |
241 </div> | 245 </div> |
242 </div> | 246 </div> |
243 </template> | 247 </template> |
244 </div> | 248 </div> |
245 </template> | 249 </template> |
246 <script src="sync_page.js"></script> | 250 <script src="sync_page.js"></script> |
247 </dom-module> | 251 </dom-module> |
OLD | NEW |