| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/html/assert.html"> | 4 <link rel="import" href="chrome://resources/html/assert.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.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-button/paper-butt
on.html"> |
| 5 <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"> |
| 6 <link rel="import" href="../settings_shared_css.html"> | 7 <link rel="import" href="../settings_shared_css.html"> |
| 7 | 8 |
| 8 <dom-module id="settings-users-add-user-dialog"> | 9 <dom-module id="settings-users-add-user-dialog"> |
| 9 <template> | 10 <template> |
| 10 <style include="settings-shared"> | 11 <style include="settings-shared"> |
| 11 paper-input { | 12 paper-input { |
| 12 width: var(--paper-input-max-width); | 13 width: var(--paper-input-max-width); |
| 13 --paper-input-container-focus-color: var(--google-blue-500); | 14 --paper-input-container-focus-color: var(--google-blue-500); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 29 </paper-button> | 30 </paper-button> |
| 30 <paper-button on-tap="addUser_" class="action-button" | 31 <paper-button on-tap="addUser_" class="action-button" |
| 31 disabled$="[[!isValid_]]"> | 32 disabled$="[[!isValid_]]"> |
| 32 $i18n{add} | 33 $i18n{add} |
| 33 </paper-button> | 34 </paper-button> |
| 34 </div> | 35 </div> |
| 35 </dialog> | 36 </dialog> |
| 36 </template> | 37 </template> |
| 37 <script src="users_add_user_dialog.js"></script> | 38 <script src="users_add_user_dialog.js"></script> |
| 38 </dom-module> | 39 </dom-module> |
| OLD | NEW |