| 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-classes.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="/settings_shared_css.html"> | 5 <link rel="import" href="/settings_shared_css.html"> |
| 6 | 6 |
| 7 <dom-module id="settings-user-list"> | 7 <dom-module id="settings-user-list"> |
| 8 <template> | 8 <template> |
| 9 <style include="settings-shared"> | 9 <style include="iron-flex iron-flex-alignment settings-shared"> |
| 10 .soft-border { | 10 .soft-border { |
| 11 border: 1px solid #c4c4c4; | 11 border: 1px solid #c4c4c4; |
| 12 border-radius: 2px; | 12 border-radius: 2px; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .user { | 15 .user { |
| 16 -webkit-padding-end: 8px; | 16 -webkit-padding-end: 8px; |
| 17 -webkit-padding-start: 20px; | 17 -webkit-padding-start: 20px; |
| 18 font-size: 0.75em; | 18 font-size: 0.75em; |
| 19 height: 34px; | 19 height: 34px; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 35 <paper-icon-button icon="cr:clear" class="clear-icon" | 35 <paper-icon-button icon="cr:clear" class="clear-icon" |
| 36 on-tap="removeUser_"> | 36 on-tap="removeUser_"> |
| 37 </paper-icon-button> | 37 </paper-icon-button> |
| 38 </div> | 38 </div> |
| 39 </div> | 39 </div> |
| 40 </template> | 40 </template> |
| 41 </div> | 41 </div> |
| 42 </template> | 42 </template> |
| 43 <script src="user_list.js"></script> | 43 <script src="user_list.js"></script> |
| 44 </dom-module> | 44 </dom-module> |
| OLD | NEW |