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

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

Issue 2812983004: [MD settings] link to font settings from a11y subpage (Closed)
Patch Set: Created 3 years, 8 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/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
5 <link rel="import" href="../controls/settings_slider.html"> 5 <link rel="import" href="../controls/settings_slider.html">
6 <link rel="import" href="../controls/settings_toggle_button.html"> 6 <link rel="import" href="../controls/settings_toggle_button.html">
7 <link rel="import" href="../i18n_setup.html"> 7 <link rel="import" href="../i18n_setup.html">
8 <link rel="import" href="../route.html"> 8 <link rel="import" href="../route.html">
9 <link rel="import" href="../settings_shared_css.html"> 9 <link rel="import" href="../settings_shared_css.html">
10 <link rel="import" href="../settings_vars_css.html"> 10 <link rel="import" href="../settings_vars_css.html">
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 <div class="start"> 83 <div class="start">
84 $i18n{displaySettingsTitle} 84 $i18n{displaySettingsTitle}
85 <div class="secondary" id="deisplaySettingsSecondary"> 85 <div class="secondary" id="deisplaySettingsSecondary">
86 $i18n{displaySettingsDescription} 86 $i18n{displaySettingsDescription}
87 </div> 87 </div>
88 </div> 88 </div>
89 <button class="subpage-arrow" is="paper-icon-button-light" 89 <button class="subpage-arrow" is="paper-icon-button-light"
90 aria-label="$i18n{displaySettingsTitle}" 90 aria-label="$i18n{displaySettingsTitle}"
91 aria-describedby="displaySettingsSecondary"></button> 91 aria-describedby="displaySettingsSecondary"></button>
92 </div> 92 </div>
93 <div class="settings-box two-line" on-tap="onAppearanceTap_" actionable> 93 <div class="settings-box two-line" on-tap="onFontTap_" actionable>
94 <div class="start"> 94 <div class="start">
95 $i18n{appearanceSettingsTitle} 95 $i18n{fontSettingsTitle}
96 <div class="secondary" id="appearanceSettingsSecondary"> 96 <div class="secondary" id="fontSettingsSecondary">
97 $i18n{appearanceSettingsDescription} 97 $i18n{fontSettingsDescription}
98 </div> 98 </div>
99 </div> 99 </div>
100 <button class="subpage-arrow" is="paper-icon-button-light" 100 <button class="subpage-arrow" is="paper-icon-button-light"
101 aria-label="$i18n{appearanceSettingsTitle}" 101 aria-label="$i18n{fontSettingsTitle}"
102 aria-describedby="appearanceSettingsSecondary"></button> 102 aria-describedby="fontSettingsSecondary"></button>
103 </div> 103 </div>
104 104
105 <h2>$i18n{keyboardHeading}</h2> 105 <h2>$i18n{keyboardHeading}</h2>
106 <div class="settings-box block first"> 106 <div class="settings-box block first">
107 <settings-toggle-button 107 <settings-toggle-button
108 pref="{{prefs.settings.a11y.sticky_keys_enabled}}" 108 pref="{{prefs.settings.a11y.sticky_keys_enabled}}"
109 label="$i18n{stickyKeysLabel}"> 109 label="$i18n{stickyKeysLabel}">
110 </settings-toggle-button> 110 </settings-toggle-button>
111 <settings-toggle-button 111 <settings-toggle-button
112 pref="{{prefs.settings.a11y.virtual_keyboard}}" 112 pref="{{prefs.settings.a11y.virtual_keyboard}}"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 </div> 214 </div>
215 </div> 215 </div>
216 <button class="icon-external" is="paper-icon-button-light" 216 <button class="icon-external" is="paper-icon-button-light"
217 aria-label="$i18n{additionalFeaturesTitle}" 217 aria-label="$i18n{additionalFeaturesTitle}"
218 aria-describedby="moreFeaturesSecondary"></button> 218 aria-describedby="moreFeaturesSecondary"></button>
219 </div> 219 </div>
220 </template> 220 </template>
221 </template> 221 </template>
222 <script src="manage_a11y_page.js"></script> 222 <script src="manage_a11y_page.js"></script>
223 </dom-module> 223 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/chromeos_strings.grdp ('k') | chrome/browser/resources/settings/a11y_page/manage_a11y_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698