| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.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/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 5 <link rel="import" href="/route.html"> | 5 <link rel="import" href="../route.html"> |
| 6 <link rel="import" href="/settings_shared_css.html"> | 6 <link rel="import" href="../settings_shared_css.html"> |
| 7 | 7 |
| 8 <dom-module id="settings-user-list"> | 8 <dom-module id="settings-user-list"> |
| 9 <template> | 9 <template> |
| 10 <style include="settings-shared"> | 10 <style include="settings-shared"> |
| 11 .user-list { | 11 .user-list { |
| 12 /* 4 users (the extra 1px is to account for the border-bottom) */ | 12 /* 4 users (the extra 1px is to account for the border-bottom) */ |
| 13 max-height: calc(4 * (var(--settings-row-two-line-min-height) + 1px)); | 13 max-height: calc(4 * (var(--settings-row-two-line-min-height) + 1px)); |
| 14 overflow-y: auto; | 14 overflow-y: auto; |
| 15 } | 15 } |
| 16 | 16 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 46 <paper-icon-button icon="cr:clear" class="clear-icon" | 46 <paper-icon-button icon="cr:clear" class="clear-icon" |
| 47 on-tap="removeUser_" | 47 on-tap="removeUser_" |
| 48 hidden="[[shouldHideCloseButton_(disabled, item.isOwner)]]"> | 48 hidden="[[shouldHideCloseButton_(disabled, item.isOwner)]]"> |
| 49 </paper-icon-button> | 49 </paper-icon-button> |
| 50 </div> | 50 </div> |
| 51 </template> | 51 </template> |
| 52 </div> | 52 </div> |
| 53 </template> | 53 </template> |
| 54 <script src="user_list.js"></script> | 54 <script src="user_list.js"></script> |
| 55 </dom-module> | 55 </dom-module> |
| OLD | NEW |