| OLD | NEW |
| 1 <link rel="import" href="/profile_browser_proxy.html"> | 1 <link rel="import" href="/profile_browser_proxy.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/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/iron-f
lex-layout-classes.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 iron-flex iron-flex-alignment iron-positioning
"> | 10 <style include="shared-styles iron-flex iron-flex-alignment iron-positioning
"> |
| 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 } | 22 } |
| 23 </style> | 23 </style> |
| 24 <div id="container" class="layout horizontal end-justified"> | 24 <div id="container" class="layout horizontal end-justified"> |
| 25 <div id="logo" class="product-logo" alt=""></div> | 25 <div id="logo" class="product-logo" alt=""></div> |
| 26 <paper-button id="launchGuest" class="action secondary" | 26 <paper-button id="launchGuest" class="action secondary" |
| 27 on-tap="onLaunchGuestTap_" | 27 on-tap="onLaunchGuestTap_" |
| 28 i18n-content="browseAsGuest" hidden="[[!showGuest]]"></paper-button> | 28 hidden="[[!showGuest]]">$i18n{browseAsGuest}</paper-button> |
| 29 <paper-button id="addUser" class="action secondary" on-tap="onAddUserTap_" | 29 <paper-button id="addUser" class="action secondary" on-tap="onAddUserTap_" |
| 30 i18n-content="addUser" hidden="[[!showAddPerson]]"></paper-button> | 30 hidden="[[!showAddPerson]]">$i18n{addUser}</paper-button> |
| 31 </div> | 31 </div> |
| 32 </template> | 32 </template> |
| 33 <script src="control_bar.js"></script> | 33 <script src="control_bar.js"></script> |
| 34 </dom-module> | 34 </dom-module> |
| OLD | NEW |