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

Unified Diff: chrome/browser/resources/settings/a11y_page/manage_a11y_page.html

Issue 2848973003: MD Settings: convert paper-icon-button to paper-icon-button-light. (Closed)
Patch Set: add missing files 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/a11y_page/manage_a11y_page.html
diff --git a/chrome/browser/resources/settings/a11y_page/manage_a11y_page.html b/chrome/browser/resources/settings/a11y_page/manage_a11y_page.html
index 31e0da37185fe51e5a6f5b42fe32af4298a005ce..5b35c073bc87d23dff5ab02d53f52739451352ca 100644
--- a/chrome/browser/resources/settings/a11y_page/manage_a11y_page.html
+++ b/chrome/browser/resources/settings/a11y_page/manage_a11y_page.html
@@ -1,7 +1,6 @@
<link rel="import" href="chrome://resources/cr_elements/icons.html">
<link rel="import" href="chrome://resources/html/polymer.html">
<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button-light.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
<link rel="import" href="../controls/settings_slider.html">
<link rel="import" href="../controls/settings_toggle_button.html">
<link rel="import" href="../i18n_setup.html">
@@ -45,11 +44,10 @@
<settings-toggle-button class="start"
pref="{{prefs.settings.accessibility}}"
label="$i18n{chromeVoxLabel}">
- <paper-icon-button icon="cr:settings_icon"
- class="more-actions"
+ <button is="paper-icon-button-light" class="icon-settings more-actions"
on-tap="onChromeVoxSettingsTap_"
hidden="[[!prefs.settings.accessibility.value]]"
- aria-label="$i18n{chromeVoxOptionsLabel}"></paper-icon-button>
+ aria-label="$i18n{chromeVoxOptionsLabel}"></button>
</settings-toggle-button>
</div>
<template is="dom-if" if="[[showExperimentalFeatures_]]">
@@ -58,12 +56,12 @@
pref="{{prefs.settings.a11y.select_to_speak}}"
label="$i18n{selectToSpeakTitle}"
sub-label="$i18n{selectToSpeakDescription}">
- <paper-icon-button icon="cr:settings_icon"
- class="more-actions"
+ <button is="paper-icon-button-light"
+ class="icon-settings more-actions"
on-tap="onSelectToSpeakSettingsTap_"
hidden="[[!prefs.settings.a11y.select_to_speak.value]]"
aria-label="$i18n{selectToSpeakOptionsLabel}">
- </paper-icon-button>
+ </button>
</settings-toggle-button>
</div>
</template>
@@ -126,12 +124,12 @@
<settings-toggle-button
pref="{{prefs.settings.a11y.switch_access}}"
label="$i18n{switchAccessLabel}">
- <paper-icon-button icon="cr:settings_icon"
- class="more-actions"
+ <button is="paper-icon-button-light"
+ class="icon-settings more-actions"
on-tap="onSwitchAccessSettingsTap_"
hidden="[[!prefs.settings.a11y.switch_access.value]]"
aria-label="$i18n{selectToSpeakOptionsLabel}">
- </paper-icon-button>
+ </button>
</settings-toggle-button>
</div>
</template>

Powered by Google App Engine
This is Rietveld 408576698