| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 1 <link rel="import" href="chrome://resources/html/assert.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/i18n_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/i18n_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="../i18n_setup.html"> | 5 <link rel="import" href="../i18n_setup.html"> |
| 6 <link rel="import" href="../icons.html"> | 6 <link rel="import" href="../icons.html"> |
| 7 <link rel="import" href="lock_screen_constants.html"> | 7 <link rel="import" href="lock_screen_constants.html"> |
| 8 <link rel="import" href="pin_keyboard.html"> | 8 <link rel="import" href="pin_keyboard.html"> |
| 9 <link rel="import" href="../settings_shared_css.html"> | 9 <link rel="import" href="../settings_shared_css.html"> |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 .error > iron-icon { | 27 .error > iron-icon { |
| 28 --iron-icon-fill-color: var(--paper-red-500); | 28 --iron-icon-fill-color: var(--paper-red-500); |
| 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 close-text="$i18n{close}"> |
| 37 <div class="title">[[getTitleMessage_(isConfirmStep_)]]</div> | 38 <div class="title">[[getTitleMessage_(isConfirmStep_)]]</div> |
| 38 <div class="body"> | 39 <div class="body"> |
| 39 <!-- Warning/error; only shown if title is hidden. Id is needed for | 40 <!-- Warning/error; only shown if title is hidden. Id is needed for |
| 40 tests. --> | 41 tests. --> |
| 41 <div id="problemDiv" class$="[[problemClass_]] settings-box first" | 42 <div id="problemDiv" class$="[[problemClass_]] settings-box first" |
| 42 hidden$="[[!hasProblem_(problemMessage_)]]"> | 43 hidden$="[[!hasProblem_(problemMessage_)]]"> |
| 43 <iron-icon icon="settings:warning"></iron-icon> | 44 <iron-icon icon="settings:warning"></iron-icon> |
| 44 <span class="middle">[[problemMessage_]]</span> | 45 <span class="middle">[[problemMessage_]]</span> |
| 45 </div> | 46 </div> |
| 46 | 47 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 60 disabled$="[[!enableSubmit_]]"> | 61 disabled$="[[!enableSubmit_]]"> |
| 61 <span>[[getContinueMessage_(isConfirmStep_)]]</span> | 62 <span>[[getContinueMessage_(isConfirmStep_)]]</span> |
| 62 </paper-button> | 63 </paper-button> |
| 63 </div> | 64 </div> |
| 64 </div> | 65 </div> |
| 65 </dialog> | 66 </dialog> |
| 66 </template> | 67 </template> |
| 67 | 68 |
| 68 <script src="setup_pin_dialog.js"></script> | 69 <script src="setup_pin_dialog.js"></script> |
| 69 </dom-module> | 70 </dom-module> |
| OLD | NEW |