OLD | NEW |
| (Empty) |
1 <link rel="import" href="chrome://md-user-manager/shared_styles.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"> | |
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | |
6 | |
7 <dom-module id="supervised-user-learn-more"> | |
8 <link rel="import" type="css" | |
9 href="chrome://md-user-manager/supervised_user_learn_more.css"> | |
10 <template> | |
11 <style include="shared-styles"></style> | |
12 <div id="container"> | |
13 <div id="title-area" class="horizontal justified layout"> | |
14 <span id="title" i18n-content="supervisedUserLearnMoreTitle"></span> | |
15 <iron-icon icon="supervisor-account"></iron-icon> | |
16 </div> | |
17 <div class="content-area" | |
18 i18n-values=".innerHTML:supervisedUserLearnMoreText"> | |
19 </div> | |
20 <div id="actions"> | |
21 <paper-button id="done" on-tap="onDoneTap_" | |
22 i18n-content="supervisedUserLearnMoreDone"> | |
23 </paper-button> | |
24 </div> | |
25 </div> | |
26 </template> | |
27 <script src="chrome://md-user-manager/supervised_user_learn_more.js"></script> | |
28 </dom-module> | |
OLD | NEW |