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

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

Issue 2825493003: MD Settings: change outlinks to actually use <a> (Closed)
Patch Set: merge Created 3 years, 7 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/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html">
3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/icon.html"> 5 <link rel="import" href="chrome://resources/html/icon.html">
6 <link rel="import" href="chrome://resources/html/polymer.html"> 6 <link rel="import" href="chrome://resources/html/polymer.html">
7 <link rel="import" href="chrome://resources/html/util.html"> 7 <link rel="import" href="chrome://resources/html/util.html">
8 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 8 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 <if expr="not chromeos"> 224 <if expr="not chromeos">
225 <div class="settings-box" on-tap="onImportDataTap_" actionable> 225 <div class="settings-box" on-tap="onImportDataTap_" actionable>
226 <div class="start">$i18n{importTitle}</div> 226 <div class="start">$i18n{importTitle}</div>
227 <button id="importDataDialogTrigger" class="subpage-arrow" 227 <button id="importDataDialogTrigger" class="subpage-arrow"
228 is="paper-icon-button-light" aria-label="$i18n{importTitle}"> 228 is="paper-icon-button-light" aria-label="$i18n{importTitle}">
229 </button> 229 </button>
230 </div> 230 </div>
231 </if> 231 </if>
232 232
233 <template is="dom-if" if="[[profileManagesSupervisedUsers_]]"> 233 <template is="dom-if" if="[[profileManagesSupervisedUsers_]]">
234 <div id="manageSupervisedUsersContainer" class="settings-box" 234 <a id="manageSupervisedUsersContainer"
235 on-tap="onManageSupervisedUsers_" actionable> 235 class="settings-box inherit-color no-outline" tabindex="-1"
236 target="_blank" href="$i18n{supervisedUsersUrl}">
236 <div class="start">$i18n{manageSupervisedUsers}</div> 237 <div class="start">$i18n{manageSupervisedUsers}</div>
237 <button class="icon-external" is="paper-icon-button-light" 238 <button class="icon-external" is="paper-icon-button-light"
238 aria-label="$i18n{manageSupervisedUsers}"></button> 239 actionable aria-label="$i18n{manageSupervisedUsers}">
239 </div> 240 </button>
241 </a>
240 </template> 242 </template>
241 </neon-animatable> 243 </neon-animatable>
242 <template is="dom-if" route-path="/syncSetup" 244 <template is="dom-if" route-path="/syncSetup"
243 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]"> 245 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]">
244 <settings-subpage 246 <settings-subpage
245 associated-control="[[$$('#sync-status')]]" 247 associated-control="[[$$('#sync-status')]]"
246 page-title="$i18n{syncPageTitle}" 248 page-title="$i18n{syncPageTitle}"
247 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]"> 249 no-search$="[[!isAdvancedSyncSettingsVisible_(syncStatus)]]">
248 <settings-sync-page></settings-sync-page> 250 <settings-sync-page></settings-sync-page>
249 </settings-subpage> 251 </settings-subpage>
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 342
341 <template is="dom-if" if="[[showImportDataDialog_]]" restamp> 343 <template is="dom-if" if="[[showImportDataDialog_]]" restamp>
342 <settings-import-data-dialog prefs="{{prefs}}" 344 <settings-import-data-dialog prefs="{{prefs}}"
343 on-close="onImportDataDialogClosed_"> 345 on-close="onImportDataDialogClosed_">
344 </settings-import-data-dialog> 346 </settings-import-data-dialog>
345 </template> 347 </template>
346 348
347 </template> 349 </template>
348 <script src="people_page.js"></script> 350 <script src="people_page.js"></script>
349 </dom-module> 351 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698