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

Side by Side Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 2393643004: [MD Settings][People] Updates positions of username and sync status message (Closed)
Patch Set: Addressed comments Created 4 years, 2 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
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
3 <link rel="import" href="chrome://resources/html/icon.html"> 3 <link rel="import" href="chrome://resources/html/icon.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/web_ui_listener_behavior.html"> 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.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 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 10 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 <div id="picture-subpage-trigger" class="settings-box first two-line"> 86 <div id="picture-subpage-trigger" class="settings-box first two-line">
87 <div id="profile-icon" on-tap="onPictureTap_" actionable 87 <div id="profile-icon" on-tap="onPictureTap_" actionable
88 style="background-image: [[getIconImageset_(profileIconUrl_)]]"> 88 style="background-image: [[getIconImageset_(profileIconUrl_)]]">
89 </div> 89 </div>
90 <if expr="not chromeos"> 90 <if expr="not chromeos">
91 <div class="middle two-line" on-tap="onProfileNameTap_" actionable> 91 <div class="middle two-line" on-tap="onProfileNameTap_" actionable>
92 </if> 92 </if>
93 <if expr="chromeos"> 93 <if expr="chromeos">
94 <div class="middle two-line" on-tap="onPictureTap_" actionable> 94 <div class="middle two-line" on-tap="onPictureTap_" actionable>
95 </if> 95 </if>
96 <span class="flex" id="profile-name"> 96 <div class="flex">
97 [[profileName_]] 97 <span id="profile-name">[[profileName_]]</span>
98 </span> 98 <div class="secondary" hidden="[[!syncStatus.signedIn]]">
99 [[syncStatus.username]]
100 </div>
101 </div>
99 <button class="icon-arrow-right" is="paper-icon-button-light"> 102 <button class="icon-arrow-right" is="paper-icon-button-light">
100 </button> 103 </button>
101 </div> 104 </div>
102 <if expr="not chromeos"> 105 <if expr="not chromeos">
103 <template is="dom-if" if="[[showSignin_(syncStatus)]]"> 106 <template is="dom-if" if="[[showSignin_(syncStatus)]]">
104 <span class="secondary-action"> 107 <span class="secondary-action">
105 <paper-button class="primary-button" on-tap="onSigninTap_" 108 <paper-button class="primary-button" on-tap="onSigninTap_"
106 disabled="[[syncStatus.setupInProgress]]"> 109 disabled="[[syncStatus.setupInProgress]]">
107 $i18n{syncSignin} 110 $i18n{syncSignin}
108 </paper-button> 111 </paper-button>
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 343
341 <if expr="chromeos"> 344 <if expr="chromeos">
342 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 345 <template is="dom-if" if="[[easyUnlockEnabled_]]">
343 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 346 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
344 </easy-unlock-turn-off-dialog> 347 </easy-unlock-turn-off-dialog>
345 </template> 348 </template>
346 </if> 349 </if>
347 </template> 350 </template>
348 <script src="people_page.js"></script> 351 <script src="people_page.js"></script>
349 </dom-module> 352 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698