Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Side by Side Diff: chrome/browser/resources/md_user_manager/control_bar.html

Issue 2224303003: MD User Manager: change last of i18n-* to $i18n{} (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/md_user_manager/supervised_user_learn_more.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_user_manager/supervised_user_learn_more.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698