| OLD | NEW |
| 1 <link rel="import" href="chrome://md-user-manager/profile_browser_proxy.html"> | 1 <link rel="import" href="/profile_browser_proxy.html"> |
| 2 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> | 2 <link rel="import" href="/shared_styles.html"> |
| 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/i18n_behavior.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/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 7 | 7 |
| 8 <dom-module id="control-bar"> | 8 <dom-module id="control-bar"> |
| 9 <template> | 9 <template> |
| 10 <style include="shared-styles"> | 10 <style include="shared-styles iron-flex iron-flex-alignment"> |
| 11 #container { | 11 #container { |
| 12 -webkit-padding-end: 8px; | 12 -webkit-padding-end: 8px; |
| 13 -webkit-padding-start: 24px; | 13 -webkit-padding-start: 24px; |
| 14 align-items: center; | 14 align-items: center; |
| 15 min-height: 32px; | 15 min-height: 32px; |
| 16 padding-bottom: 12px; | 16 padding-bottom: 12px; |
| 17 padding-top: 12px; | 17 padding-top: 12px; |
| 18 } | 18 } |
| 19 | 19 |
| 20 #logo { | 20 #logo { |
| 21 -webkit-margin-end: auto; | 21 -webkit-margin-end: auto; |
| 22 content: -webkit-image-set( | |
| 23 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_lo
go_name_22.png) 1x, | |
| 24 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_lo
go_name_22.png) 2x); | |
| 25 height: 22px; | |
| 26 } | 22 } |
| 27 </style> | 23 </style> |
| 28 <div id="container" class="layout horizontal end-justified"> | 24 <div id="container" class="layout horizontal end-justified"> |
| 29 <div id="logo" alt=""></div> | 25 <div id="logo" class="product-logo" alt=""></div> |
| 30 <paper-button id="launchGuest" class="action secondary" | 26 <paper-button id="launchGuest" class="action secondary" |
| 31 on-tap="onLaunchGuestTap_" | 27 on-tap="onLaunchGuestTap_" |
| 32 i18n-content="browseAsGuest" hidden="[[!showGuest]]"></paper-button> | 28 i18n-content="browseAsGuest" hidden="[[!showGuest]]"></paper-button> |
| 33 <paper-button id="addUser" class="action secondary" on-tap="onAddUserTap_" | 29 <paper-button id="addUser" class="action secondary" on-tap="onAddUserTap_" |
| 34 i18n-content="addUser" hidden="[[!showAddPerson]]"></paper-button> | 30 i18n-content="addUser" hidden="[[!showAddPerson]]"></paper-button> |
| 35 </div> | 31 </div> |
| 36 </template> | 32 </template> |
| 37 <script src="chrome://md-user-manager/control_bar.js"></script> | 33 <script src="control_bar.js"></script> |
| 38 </dom-module> | 34 </dom-module> |
| OLD | NEW |