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

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

Issue 2356653002: [MD settings] icons for clickable rows (Closed)
Patch Set: review nits Created 4 years, 3 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
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | chrome/browser/resources/settings/a11y_page/manage_a11y_page.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/a11y_page/a11y_page.html
diff --git a/chrome/browser/resources/settings/a11y_page/a11y_page.html b/chrome/browser/resources/settings/a11y_page/a11y_page.html
index 1977b0a72bef49715de55465cbeac17ba0441311..f0f24882ea0b34664857db8b443cf439aee029b3 100644
--- a/chrome/browser/resources/settings/a11y_page/a11y_page.html
+++ b/chrome/browser/resources/settings/a11y_page/a11y_page.html
@@ -1,5 +1,5 @@
<link rel="import" href="chrome://resources/html/polymer.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button-light.html">
<link rel="import" href="/i18n_setup.html">
<link rel="import" href="/settings_shared_css.html">
@@ -19,18 +19,19 @@
section="a11y">
<neon-animatable route-path="default">
<div class="settings-box first">
- <div class="start">
- $i18n{optionsInMenuLabel}
- </div>
+ <div class="start">$i18n{optionsInMenuLabel}</div>
<paper-toggle-button id="optionsInMenuToggle"
checked="{{prefs.settings.a11y.enable_menu.value}}">
</paper-toggle-button>
</div>
- <div id="subpage-trigger" class="settings-box">
- <paper-button class="primary-button"
- on-tap="onManageAccessibilityFeaturesTap_">
+ <div id="subpage-trigger" class="settings-box two-line"
+ on-tap="onManageAccessibilityFeaturesTap_" actionable>
+ <div class="start">
$i18n{manageAccessibilityFeatures}
- </paper-button>
+ <div class="secondary">$i18n{moreFeaturesLinkDescription}</div>
+ </div>
+ <button class="icon-arrow-right" is="paper-icon-button-light">
+ </button>
</div>
</neon-animatable>
<template is="dom-if" route-path="/manageAccessibility">
@@ -45,10 +46,13 @@
</if>
<if expr="not chromeos">
- <div class="settings-box first">
- <paper-button class="primary-button" on-tap="onMoreFeaturesTap_">
+ <div class="settings-box first two-line" on-tap="onMoreFeaturesTap_"
+ actionable>
+ <div class="start">
$i18n{moreFeaturesLink}
- </paper-button>
+ <div class="secondary">$i18n{a11yWebStore}</div>
+ </div>
+ <button class="icon-external" is="paper-icon-button-light"></button>
</div>
</if>
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | chrome/browser/resources/settings/a11y_page/manage_a11y_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698