| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 4 <link rel="import" href="/people_page/pin_keyboard.html"> | 4 <link rel="import" href="/people_page/pin_keyboard.html"> |
| 5 <link rel="import" href="/settings_shared_css.html"> | 5 <link rel="import" href="/settings_shared_css.html"> |
| 6 | 6 |
| 7 <dom-module id="settings-setup-pin-dialog"> | 7 <dom-module id="settings-setup-pin-dialog"> |
| 8 <template> | 8 <template> |
| 9 <style include="settings-shared"></style> | 9 <style include="settings-shared"></style> |
| 10 <style> | 10 <style> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 } | 29 } |
| 30 | 30 |
| 31 .align-center { | 31 .align-center { |
| 32 justify-content: center; | 32 justify-content: center; |
| 33 } | 33 } |
| 34 </style> | 34 </style> |
| 35 | 35 |
| 36 <dialog is="cr-dialog" id="dialog" on-close="close"> | 36 <dialog is="cr-dialog" id="dialog" on-close="close"> |
| 37 <div class="title">[[getTitleMessage_(isConfirmStep_)]]</div> | 37 <div class="title">[[getTitleMessage_(isConfirmStep_)]]</div> |
| 38 <div class="body"> | 38 <div class="body"> |
| 39 <!-- Warning/error; only shown if title is hidden. --> | |
| 40 <div class$="[[problemClass_]] settings-box first" | |
| 41 hidden$="[[!hasProblem_(problemMessage_)]]"> | |
| 42 <iron-icon icon="icons:warning"></iron-icon> | |
| 43 <span>[[problemMessage_]]</span> | |
| 44 </div> | |
| 45 | 39 |
| 46 <!-- Pin keyboard --> | 40 <!-- Pin keyboard --> |
| 47 <div class="align-center settings-box continuation"> | 41 <div class="align-center settings-box continuation"> |
| 48 <pin-keyboard id="pinKeyboard" on-pin-change="onPinChange_" | 42 <pin-keyboard id="pinKeyboard" on-pin-change="onPinChange_" |
| 49 on-submit="onPinSubmit_" value="{{pinKeyboardValue_}}"> | 43 on-submit="onPinSubmit_" value="{{pinKeyboardValue_}}"> |
| 50 </pin-keyboard> | 44 </pin-keyboard> |
| 51 </div> | 45 </div> |
| 52 | 46 |
| 53 <div class="button-strip"> | 47 <div class="button-strip"> |
| 54 <paper-button class="cancel-button" on-tap="onCancelTap_"> | 48 <paper-button class="cancel-button" on-tap="onCancelTap_"> |
| 55 $i18n{cancel} | 49 $i18n{cancel} |
| 56 </paper-button> | 50 </paper-button> |
| 57 | 51 |
| 58 <paper-button class="action-button" on-tap="onPinSubmit_" | 52 <paper-button class="action-button" on-tap="onPinSubmit_" |
| 59 disabled$="[[!enableSubmit_]]"> | 53 disabled$="[[!enableSubmit_]]"> |
| 60 <span>[[getContinueMessage_(isConfirmStep_)]]</span> | 54 <span>[[getContinueMessage_(isConfirmStep_)]]</span> |
| 61 </paper-button> | 55 </paper-button> |
| 62 </div> | 56 </div> |
| 63 </div> | 57 </div> |
| 64 </dialog> | 58 </dialog> |
| 65 </template> | 59 </template> |
| 66 | 60 |
| 67 <script src="setup_pin_dialog.js"></script> | 61 <script src="setup_pin_dialog.js"></script> |
| 68 </dom-module> | 62 </dom-module> |
| OLD | NEW |