Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 | 2 |
| 3 <link rel="import" href="chrome://resources/html/assert.html"> | 3 <link rel="import" href="chrome://resources/html/assert.html"> |
| 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 5 <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-button/paper-butt on.html"> |
| 6 <link rel="import" href="../i18n_setup.html"> | 6 <link rel="import" href="../i18n_setup.html"> |
| 7 <link rel="import" href="../icons.html"> | 7 <link rel="import" href="../icons.html"> |
| 8 <link rel="import" href="lock_screen_constants.html"> | 8 <link rel="import" href="lock_screen_constants.html"> |
| 9 <link rel="import" href="pin_keyboard.html"> | 9 <link rel="import" href="pin_keyboard.html"> |
| 10 <link rel="import" href="../settings_shared_css.html"> | 10 <link rel="import" href="../settings_shared_css.html"> |
| 11 | 11 |
| 12 <dom-module id="settings-setup-pin-dialog"> | 12 <dom-module id="settings-setup-pin-dialog"> |
| 13 <template> | 13 <template> |
| 14 <style include="settings-shared"> | 14 <style include="settings-shared"> |
| 15 .error { | 15 .error { |
| 16 color: var(--paper-red-500); | 16 color: var(--paper-red-500); |
| 17 color: blue; | |
|
sammiequon
2017/06/05 23:43:16
Oops!
| |
| 18 } | 17 } |
| 19 | 18 |
| 20 .error > iron-icon { | 19 .error > iron-icon { |
| 21 --iron-icon-fill-color: var(--paper-red-500); | 20 --iron-icon-fill-color: var(--paper-red-500); |
| 22 } | 21 } |
| 23 | 22 |
| 24 .warning { | 23 .warning { |
| 25 color: var(--paper-grey-700); | 24 color: var(--paper-grey-700); |
| 26 } | 25 } |
| 27 | 26 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 65 <paper-button class="action-button" on-tap="onPinSubmit_" | 64 <paper-button class="action-button" on-tap="onPinSubmit_" |
| 66 disabled$="[[!enableSubmit_]]"> | 65 disabled$="[[!enableSubmit_]]"> |
| 67 <span>[[getContinueMessage_(isConfirmStep_)]]</span> | 66 <span>[[getContinueMessage_(isConfirmStep_)]]</span> |
| 68 </paper-button> | 67 </paper-button> |
| 69 </div> | 68 </div> |
| 70 </dialog> | 69 </dialog> |
| 71 </template> | 70 </template> |
| 72 | 71 |
| 73 <script src="setup_pin_dialog.js"></script> | 72 <script src="setup_pin_dialog.js"></script> |
| 74 </dom-module> | 73 </dom-module> |
| OLD | NEW |