| OLD | NEW |
| 1 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> | 1 <link rel="import" href="/shared_styles.html"> |
| 2 <link rel="import" href="chrome://md-user-manager/user_manager_dialog.html"> | 2 <link rel="import" href="/user_manager_dialog.html"> |
| 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/html/polymer.html"> | 4 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 5 <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/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h
tml"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h
tml"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-listbox/paper-lis
tbox.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-listbox/paper-lis
tbox.html"> |
| 9 | 9 |
| 10 <dom-module id="import-supervised-user"> | 10 <dom-module id="import-supervised-user"> |
| 11 <template> | 11 <template> |
| 12 <style include="shared-styles"> | 12 <style include="shared-styles iron-flex iron-flex-alignment"> |
| 13 :host { | 13 :host { |
| 14 --item-height: 52px; | 14 --item-height: 52px; |
| 15 --items-container-max-height: calc(var(--item-height) * 4); | 15 --items-container-max-height: calc(var(--item-height) * 4); |
| 16 } | 16 } |
| 17 | 17 |
| 18 #message { | 18 #message { |
| 19 margin-bottom: 16px; | 19 margin-bottom: 16px; |
| 20 margin-top: 20px; | 20 margin-top: 20px; |
| 21 white-space: pre-wrap; | 21 white-space: pre-wrap; |
| 22 word-wrap: break-word; | 22 word-wrap: break-word; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 $i18n{cancel} | 86 $i18n{cancel} |
| 87 </paper-button> | 87 </paper-button> |
| 88 <paper-button id="import" class="action primary" | 88 <paper-button id="import" class="action primary" |
| 89 on-tap="onImportTap_" | 89 on-tap="onImportTap_" |
| 90 disabled="[[isImportDisabled_(supervisedUserIndex_)]]"> | 90 disabled="[[isImportDisabled_(supervisedUserIndex_)]]"> |
| 91 $i18n{supervisedUserImportOk} | 91 $i18n{supervisedUserImportOk} |
| 92 </paper-button> | 92 </paper-button> |
| 93 </div> | 93 </div> |
| 94 </user-manager-dialog> | 94 </user-manager-dialog> |
| 95 </template> | 95 </template> |
| 96 <script src="chrome://md-user-manager/import_supervised_user.js"></script> | 96 <script src="import_supervised_user.js"></script> |
| 97 </dom-module> | 97 </dom-module> |
| OLD | NEW |