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

Side by Side Diff: chrome/browser/resources/settings/a11y_page/manage_a11y_page.html

Issue 2390053002: [MD settings] use arrow-forward to switch direction in rtl (Closed)
Patch Set: Created 4 years, 2 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/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
3 <link rel="import" href="/controls/settings_checkbox.html"> 3 <link rel="import" href="/controls/settings_checkbox.html">
4 <link rel="import" href="/i18n_setup.html"> 4 <link rel="import" href="/i18n_setup.html">
5 <link rel="import" href="/route.html"> 5 <link rel="import" href="/route.html">
6 <link rel="import" href="/settings_shared_css.html"> 6 <link rel="import" href="/settings_shared_css.html">
7 <link rel="import" href="/settings_vars_css.html"> 7 <link rel="import" href="/settings_vars_css.html">
8 8
9 <dom-module id="settings-manage-a11y-page"> 9 <dom-module id="settings-manage-a11y-page">
10 <template> 10 <template>
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 <settings-checkbox pref="{{prefs.settings.a11y.cursor_highlight}}" 129 <settings-checkbox pref="{{prefs.settings.a11y.cursor_highlight}}"
130 label="$i18n{cursorHighlightLabel}"> 130 label="$i18n{cursorHighlightLabel}">
131 </settings-checkbox> 131 </settings-checkbox>
132 </div> 132 </div>
133 <div class="settings-box two-line indented" on-tap="onMouseTap_" 133 <div class="settings-box two-line indented" on-tap="onMouseTap_"
134 actionable> 134 actionable>
135 <iron-icon icon="settings:mouse"></iron-icon> 135 <iron-icon icon="settings:mouse"></iron-icon>
136 <div class="middle"> 136 <div class="middle">
137 <div>$i18n{mouseSettingsTitle}</div> 137 <div>$i18n{mouseSettingsTitle}</div>
138 <div class="secondary">$i18n{mouseSettingsDescription}</div> 138 <div class="secondary">$i18n{mouseSettingsDescription}</div>
139 <button class="icon-arrow-right" is="paper-icon-button-light"> 139 <button class="subpage-arrow" is="paper-icon-button-light"></button>
140 </button>
141 </div> 140 </div>
142 </div> 141 </div>
143 142
144 <h2>$i18n{audioHeading}</h2> 143 <h2>$i18n{audioHeading}</h2>
145 <div class="settings-box block first indented"> 144 <div class="settings-box block first indented">
146 <settings-checkbox pref="{{prefs.settings.a11y.mono_audio}}" 145 <settings-checkbox pref="{{prefs.settings.a11y.mono_audio}}"
147 label="$i18n{monoAudioLabel}"> 146 label="$i18n{monoAudioLabel}">
148 </settings-checkbox> 147 </settings-checkbox>
149 </div> 148 </div>
150 </div> 149 </div>
151 150
152 <div class="settings-box two-line" on-tap="onMoreFeaturesTap_" actionable> 151 <div class="settings-box two-line" on-tap="onMoreFeaturesTap_" actionable>
153 <div class="start"> 152 <div class="start">
154 <div>$i18n{additionalFeaturesTitle}</div> 153 <div>$i18n{additionalFeaturesTitle}</div>
155 <div class="secondary">$i18n{a11yWebStore}</div> 154 <div class="secondary">$i18n{a11yWebStore}</div>
156 </div> 155 </div>
157 <button class="icon-external" is="paper-icon-button-light"></button> 156 <button class="icon-external" is="paper-icon-button-light"></button>
158 </div> 157 </div>
159 </template> 158 </template>
160 <script src="manage_a11y_page.js"></script> 159 <script src="manage_a11y_page.js"></script>
161 </dom-module> 160 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698