| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/action_link.html"> | 1 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 2 <link rel="import" href="chrome://resources/html/action_link_css.html"> | 2 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.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="/controls/settings_toggle_button.html"> | 6 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 7 <link rel="import" href="/settings_shared_css.html"> | 7 <link rel="import" href="../settings_shared_css.html"> |
| 8 <link rel="import" href="user_list.html"> | 8 <link rel="import" href="user_list.html"> |
| 9 <link rel="import" href="users_add_user_dialog.html"> | 9 <link rel="import" href="users_add_user_dialog.html"> |
| 10 | 10 |
| 11 <dom-module id="settings-users-page"> | 11 <dom-module id="settings-users-page"> |
| 12 <template> | 12 <template> |
| 13 <style include="settings-shared action-link"> | 13 <style include="settings-shared action-link"> |
| 14 .users { | 14 .users { |
| 15 /* The users box must line up with the checkbox text. */ | 15 /* The users box must line up with the checkbox text. */ |
| 16 -webkit-margin-start: var(--settings-indent-width); | 16 -webkit-margin-start: var(--settings-indent-width); |
| 17 } | 17 } |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 $i18n{addUsers} | 68 $i18n{addUsers} |
| 69 </a> | 69 </a> |
| 70 </div> | 70 </div> |
| 71 </div> | 71 </div> |
| 72 </div> | 72 </div> |
| 73 <settings-users-add-user-dialog id="addUserDialog"> | 73 <settings-users-add-user-dialog id="addUserDialog"> |
| 74 </settings-users-add-user-dialog> | 74 </settings-users-add-user-dialog> |
| 75 </template> | 75 </template> |
| 76 <script src="users_page.js"></script> | 76 <script src="users_page.js"></script> |
| 77 </dom-module> | 77 </dom-module> |
| OLD | NEW |