| OLD | NEW |
| 1 <link rel="import" href="chrome://md-user-manager/icons.html"> | 1 <link rel="import" href="/icons.html"> |
| 2 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html"> | 2 <link rel="import" href="/profile_browser_proxy.html"> |
| 3 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> | 3 <link rel="import" href="/shared_styles.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/html/util.html"> | 5 <link rel="import" href="chrome://resources/html/util.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 7 <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-button/paper-butt
on.html"> |
| 8 | 8 |
| 9 <dom-module id="supervised-user-create-confirm"> | 9 <dom-module id="supervised-user-create-confirm"> |
| 10 <template> | 10 <template> |
| 11 <style include="shared-styles"> | 11 <style include="shared-styles iron-flex iron-flex-alignment"> |
| 12 :host { | 12 :host { |
| 13 align-self: center; | 13 align-self: center; |
| 14 } | 14 } |
| 15 | 15 |
| 16 #container { | 16 #container { |
| 17 color: var(--primary-text-color); | 17 color: var(--primary-text-color); |
| 18 line-height: 20px; | 18 line-height: 20px; |
| 19 width: var(--page-width); | 19 width: var(--page-width); |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 <paper-button id="ok" class="action secondary" on-tap="onOkTap_"> | 60 <paper-button id="ok" class="action secondary" on-tap="onOkTap_"> |
| 61 $i18n{supervisedUserCreatedDone} | 61 $i18n{supervisedUserCreatedDone} |
| 62 </paper-button> | 62 </paper-button> |
| 63 <paper-button id="switchUser" class="action primary" | 63 <paper-button id="switchUser" class="action primary" |
| 64 on-tap="onSwitchUserTap_"> | 64 on-tap="onSwitchUserTap_"> |
| 65 [[switchUserText_(profileInfo)]] | 65 [[switchUserText_(profileInfo)]] |
| 66 </paper-button> | 66 </paper-button> |
| 67 </div> | 67 </div> |
| 68 </div> | 68 </div> |
| 69 </template> | 69 </template> |
| 70 <script src="chrome://md-user-manager/supervised_user_create_confirm.js"></scr
ipt> | 70 <script src="supervised_user_create_confirm.js"></script> |
| 71 </dom-module> | 71 </dom-module> |
| OLD | NEW |