| 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/profile_browser_proxy.html"> | 2 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html"> |
| 3 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> | 3 <link rel="import" href="chrome://md-user-manager/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.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"> |
| 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 |
| 22 #title-area { | 22 #title-area { |
| 23 border-bottom: 1px solid rgba(0, 0, 0, .12); | 23 border-bottom: var(--user-manager-separator-line); |
| 24 font-size: 16px; | 24 font-size: 16px; |
| 25 padding-bottom: 16px; | 25 padding-bottom: 16px; |
| 26 } | 26 } |
| 27 | 27 |
| 28 #title-area iron-icon { | 28 #title-area iron-icon { |
| 29 --iron-icon-height: 20px; | 29 --iron-icon-height: 20px; |
| 30 --iron-icon-width: 20px; | 30 --iron-icon-width: 20px; |
| 31 color: var(--title-icon-color); | 31 color: var(--title-icon-color); |
| 32 } | 32 } |
| 33 | 33 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 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="chrome://md-user-manager/supervised_user_create_confirm.js"></scr
ipt> |
| 71 </dom-module> | 71 </dom-module> |
| OLD | NEW |