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

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

Issue 2178303003: MD Settings: disable cursor: pointer when sync is disabled (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
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/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 5 <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-checkbox/paper-ch eckbox.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
8 <link rel="import" href="/controls/settings_checkbox.html"> 8 <link rel="import" href="/controls/settings_checkbox.html">
9 <link rel="import" href="/people_page/sync_page.html"> 9 <link rel="import" href="/people_page/sync_page.html">
10 <link rel="import" href="/people_page/profile_info_browser_proxy.html"> 10 <link rel="import" href="/people_page/profile_info_browser_proxy.html">
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 </div> 117 </div>
118 <div class="middle" 118 <div class="middle"
119 inner-h-t-m-l="[[getDomainHtml_(syncStatus.domain)]]"> 119 inner-h-t-m-l="[[getDomainHtml_(syncStatus.domain)]]">
120 </div> 120 </div>
121 </div> 121 </div>
122 </template> 122 </template>
123 </if> 123 </if>
124 124
125 <template is="dom-if" 125 <template is="dom-if"
126 if="[[isAdvancedSyncSettingsVisible_(syncStatus)]]"> 126 if="[[isAdvancedSyncSettingsVisible_(syncStatus)]]">
127 <div class="settings-box two-line" on-tap="onSyncTap_" actionable> 127 <div class="settings-box two-line" on-tap="onSyncTap_"
128 actionable$="[[isSyncEnabled_(syncStatus)]]">
128 <div class="icon-container"> 129 <div class="icon-container">
129 <iron-icon id="sync-icon" icon$="[[getSyncIcon_(syncStatus)]]"> 130 <iron-icon id="sync-icon" icon$="[[getSyncIcon_(syncStatus)]]">
130 </iron-icon> 131 </iron-icon>
131 </div> 132 </div>
132 <div class="middle"> 133 <div class="middle">
133 <div>$i18n{sync}</div> 134 <div>$i18n{sync}</div>
134 <div class="secondary" hidden="[[syncStatus.hasError]]"> 135 <div class="secondary" hidden="[[syncStatus.hasError]]">
135 [[syncStatus.statusText]] 136 [[syncStatus.statusText]]
136 </div> 137 </div>
137 <div class="secondary sync-error" 138 <div class="secondary sync-error"
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 313
313 <if expr="chromeos"> 314 <if expr="chromeos">
314 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 315 <template is="dom-if" if="[[easyUnlockEnabled_]]">
315 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 316 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
316 </easy-unlock-turn-off-dialog> 317 </easy-unlock-turn-off-dialog>
317 </template> 318 </template>
318 </if> 319 </if>
319 </template> 320 </template>
320 <script src="people_page.js"></script> 321 <script src="people_page.js"></script>
321 </dom-module> 322 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698