| OLD | NEW |
| 1 <link rel="import" href="/icons.html"> | 1 <link rel="import" href="/icons.html"> |
| 2 <link rel="import" href="/shared_styles.html"> | 2 <link rel="import" href="/shared_styles.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <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/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 6 | 6 |
| 7 <dom-module id="supervised-user-learn-more"> | 7 <dom-module id="supervised-user-learn-more"> |
| 8 <template> | 8 <template> |
| 9 <style include="shared-styles iron-flex iron-flex-alignment iron-positioning
"> | 9 <style include="shared-styles iron-flex iron-flex-alignment iron-positioning
"> |
| 10 :host { | 10 :host { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 :host-context([dir='rtl']) #actions { | 44 :host-context([dir='rtl']) #actions { |
| 45 left: 16px; | 45 left: 16px; |
| 46 right: auto; | 46 right: auto; |
| 47 } | 47 } |
| 48 </style> | 48 </style> |
| 49 <div id="container"> | 49 <div id="container"> |
| 50 <div id="title-area" class="horizontal justified layout"> | 50 <div id="title-area" class="horizontal justified layout"> |
| 51 <span id="title">$i18n{supervisedUserLearnMoreTitle}</span> | 51 <span id="title">$i18n{supervisedUserLearnMoreTitle}</span> |
| 52 <iron-icon icon="user-manager:supervisor-account"></iron-icon> | 52 <iron-icon icon="user-manager:supervisor-account"></iron-icon> |
| 53 </div> | 53 </div> |
| 54 <div class="content-area" | 54 <div class="content-area">$i18nRaw{supervisedUserLearnMoreText}</div> |
| 55 i18n-values=".innerHTML:supervisedUserLearnMoreText"> | |
| 56 </div> | |
| 57 <div id="actions"> | 55 <div id="actions"> |
| 58 <paper-button id="done" class="action primary" on-tap="onDoneTap_"> | 56 <paper-button id="done" class="action primary" on-tap="onDoneTap_"> |
| 59 $i18n{supervisedUserLearnMoreDone} | 57 $i18n{supervisedUserLearnMoreDone} |
| 60 </paper-button> | 58 </paper-button> |
| 61 </div> | 59 </div> |
| 62 </div> | 60 </div> |
| 63 </template> | 61 </template> |
| 64 <script src="supervised_user_learn_more.js"></script> | 62 <script src="supervised_user_learn_more.js"></script> |
| 65 </dom-module> | 63 </dom-module> |
| OLD | NEW |