OLD | NEW |
1 <link rel="import" href="chrome://md-user-manager/icons.html"> | 1 <link rel="import" href="chrome://md-user-manager/icons.html"> |
2 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> | 2 <link rel="import" href="chrome://md-user-manager/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.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.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"> | 9 <style include="shared-styles"> |
10 :host { | 10 :host { |
11 align-self: center; | 11 align-self: center; |
12 } | 12 } |
13 | 13 |
14 #container { | 14 #container { |
15 color: var(--primary-text-color); | 15 color: var(--primary-text-color); |
16 line-height: 20px; | 16 line-height: 20px; |
17 width: var(--page-width); | 17 width: var(--page-width); |
18 } | 18 } |
19 | 19 |
20 #title-area { | 20 #title-area { |
21 border-bottom: 1px solid rgba(0, 0, 0, .12); | 21 border-bottom: var(--user-manager-separator-line); |
22 font-size: 16px; | 22 font-size: 16px; |
23 padding-bottom: 16px; | 23 padding-bottom: 16px; |
24 } | 24 } |
25 | 25 |
26 #title-area iron-icon { | 26 #title-area iron-icon { |
27 --iron-icon-height: 20px; | 27 --iron-icon-height: 20px; |
28 --iron-icon-width: 20px; | 28 --iron-icon-width: 20px; |
29 color: var(--title-icon-color); | 29 color: var(--title-icon-color); |
30 } | 30 } |
31 | 31 |
(...skipping 24 matching lines...) Expand all Loading... |
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{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 |