Chromium Code Reviews| Index: chrome/browser/resources/settings/people_page/people_page.html |
| diff --git a/chrome/browser/resources/settings/people_page/people_page.html b/chrome/browser/resources/settings/people_page/people_page.html |
| index ec8a304cbda559c8ad46968f27912e168ee18a39..d999df377c3ef20e107795b37ddc392d169d9df8 100644 |
| --- a/chrome/browser/resources/settings/people_page/people_page.html |
| +++ b/chrome/browser/resources/settings/people_page/people_page.html |
| @@ -44,17 +44,11 @@ |
| cursor: pointer; |
| } |
| -<if expr="not chromeos"> |
| - #profile-name:hover { |
| - cursor: pointer; |
| - } |
| -</if> |
|
Dan Beam
2016/06/23 19:20:01
redundant
|
| - |
| #sync-icon { |
| margin: 0 10px; |
| } |
| - iron-icon[icon="settings:sync-problem"] { |
| + iron-icon[icon='settings:sync-problem'] { |
|
Dan Beam
2016/06/23 19:20:01
presubmit
|
| --iron-icon-fill-color: var(--settings-error-color); |
| } |
| @@ -80,14 +74,14 @@ |
| <neon-animatable id="main"> |
| <div class="settings-box first two-line"> |
| <img id="profile-icon" src="[[profileIconUrl_]]" |
| - on-tap="onPictureTap_"> |
| + on-tap="onPictureTap_" actionable> |
| <div class="middle"> |
| -<if expr="chromeos"> |
| - <span id="profile-name" on-tap="onProfileNameTap_"> |
| +<if expr="not chromeos"> |
| + <span id="profile-name" on-tap="onProfileNameTap_" actionable> |
| [[profileName_]] |
| </span> |
| </if> |
| -<if expr="not chromeos"> |
|
Dan Beam
2016/06/23 19:20:00
talked with tommycli@: this was reversed (as I sus
|
| +<if expr="chromeos"> |
| <span id="profile-name"> |
| [[profileName_]] |
| </span> |
| @@ -118,7 +112,7 @@ |
| <template is="dom-if" |
| if="[[isAdvancedSyncSettingsVisible_(syncStatus)]]"> |
| - <div class="settings-box two-line" on-tap="onSyncTap_"> |
| + <div class="settings-box two-line" on-tap="onSyncTap_" actionable> |
| <iron-icon id="sync-icon" icon$="[[getSyncIcon_(syncStatus)]]"> |
| </iron-icon> |
| <div class="middle"> |
| @@ -135,7 +129,7 @@ |
| </template> |
| <div class="settings-box two-line" id="activity-controls" |
| - on-tap="onActivityControlsTap_"> |
| + on-tap="onActivityControlsTap_" actionable> |
| <div id="googleg-logo-container"> |
| <div id="googleg-logo"></div> |
| </div> |