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

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

Issue 2390053002: [MD settings] use arrow-forward to switch direction in rtl (Closed)
Patch Set: review changes 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 <span class="flex" id="profile-name">
97 [[profileName_]] 97 [[profileName_]]
98 </span> 98 </span>
99 <button class="icon-arrow-right" is="paper-icon-button-light"> 99 <button class="subpage-arrow" is="paper-icon-button-light">
100 </button> 100 </button>
101 </div> 101 </div>
102 <if expr="not chromeos"> 102 <if expr="not chromeos">
103 <template is="dom-if" if="[[showSignin_(syncStatus)]]"> 103 <template is="dom-if" if="[[showSignin_(syncStatus)]]">
104 <span class="secondary-action"> 104 <span class="secondary-action">
105 <paper-button class="primary-button" on-tap="onSigninTap_" 105 <paper-button class="primary-button" on-tap="onSigninTap_"
106 disabled="[[syncStatus.setupInProgress]]"> 106 disabled="[[syncStatus.setupInProgress]]">
107 $i18n{syncSignin} 107 $i18n{syncSignin}
108 </paper-button> 108 </paper-button>
109 </span> 109 </span>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 <div class="middle"> 153 <div class="middle">
154 <div>$i18n{sync}</div> 154 <div>$i18n{sync}</div>
155 <div class="secondary" hidden="[[syncStatus.hasError]]"> 155 <div class="secondary" hidden="[[syncStatus.hasError]]">
156 [[syncStatus.statusText]] 156 [[syncStatus.statusText]]
157 </div> 157 </div>
158 <div class="secondary sync-error" 158 <div class="secondary sync-error"
159 hidden="[[!syncStatus.hasError]]"> 159 hidden="[[!syncStatus.hasError]]">
160 [[syncStatus.statusText]] 160 [[syncStatus.statusText]]
161 </div> 161 </div>
162 </div> 162 </div>
163 <button class="icon-arrow-right" is="paper-icon-button-light"></butt on> 163 <button class="icon-arrow-right" is="paper-icon-button-light">
164 </button>
164 </div> 165 </div>
165 </template> 166 </template>
166 167
167 <div class="settings-box two-line" id="activity-controls" 168 <div class="settings-box two-line" id="activity-controls"
168 on-tap="onActivityControlsTap_" actionable 169 on-tap="onActivityControlsTap_" actionable
169 hidden="[[!syncStatus.signedIn]]"> 170 hidden="[[!syncStatus.signedIn]]">
170 <div class="icon-container"> 171 <div class="icon-container">
171 <div id="googleg-logo"></div> 172 <div id="googleg-logo"></div>
172 </div> 173 </div>
173 <div class="middle"> 174 <div class="middle">
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 341
341 <if expr="chromeos"> 342 <if expr="chromeos">
342 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 343 <template is="dom-if" if="[[easyUnlockEnabled_]]">
343 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 344 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
344 </easy-unlock-turn-off-dialog> 345 </easy-unlock-turn-off-dialog>
345 </template> 346 </template>
346 </if> 347 </if>
347 </template> 348 </template>
348 <script src="people_page.js"></script> 349 <script src="people_page.js"></script>
349 </dom-module> 350 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698