| OLD | NEW |
| 1 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> | 1 <link rel="import" href="chrome://md-user-manager/shared_styles.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.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 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"> | 9 <style include="shared-styles"> |
| 10 :host { | 10 :host { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 right: 16px; | 41 right: 16px; |
| 42 } | 42 } |
| 43 | 43 |
| 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-content="supervisedUserLearnMoreTitle"></span> | 51 <span id="title">$i18n{supervisedUserLearnMoreTitle}</span> |
| 52 <iron-icon icon="supervisor-account"></iron-icon> | 52 <iron-icon icon="supervisor-account"></iron-icon> |
| 53 </div> | 53 </div> |
| 54 <div class="content-area" | 54 <div class="content-area" |
| 55 i18n-values=".innerHTML:supervisedUserLearnMoreText"> | 55 i18n-values=".innerHTML:supervisedUserLearnMoreText"> |
| 56 </div> | 56 </div> |
| 57 <div id="actions"> | 57 <div id="actions"> |
| 58 <paper-button id="done" class="action primary" on-tap="onDoneTap_" | 58 <paper-button id="done" class="action primary" on-tap="onDoneTap_"> |
| 59 i18n-content="supervisedUserLearnMoreDone"> | 59 $i18n{supervisedUserLearnMoreDone} |
| 60 </paper-button> | 60 </paper-button> |
| 61 </div> | 61 </div> |
| 62 </div> | 62 </div> |
| 63 </template> | 63 </template> |
| 64 <script src="chrome://md-user-manager/supervised_user_learn_more.js"></script> | 64 <script src="chrome://md-user-manager/supervised_user_learn_more.js"></script> |
| 65 </dom-module> | 65 </dom-module> |
| OLD | NEW |