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

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

Issue 2224613003: Switch MD Settings to paper-dropdown-menu-light (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@RollPaperDropdown
Patch Set: rebase 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/settings/appearance_page/appearance_fonts_page.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="/controls/settings_checkbox.html"> 2 <link rel="import" href="/controls/settings_checkbox.html">
3 <link rel="import" href="/i18n_setup.html"> 3 <link rel="import" href="/i18n_setup.html">
4 <link rel="import" href="/route.html"> 4 <link rel="import" href="/route.html">
5 <link rel="import" href="/settings_shared_css.html"> 5 <link rel="import" href="/settings_shared_css.html">
6 <link rel="import" href="/settings_vars_css.html"> 6 <link rel="import" href="/settings_vars_css.html">
7 7
8 <dom-module id="settings-manage-a11y-page"> 8 <dom-module id="settings-manage-a11y-page">
9 <template> 9 <template>
10 <style include="settings-shared"> 10 <style include="settings-shared">
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 114
115 <h3>$i18n{mouseAndTouchpadHeading}</h3> 115 <h3>$i18n{mouseAndTouchpadHeading}</h3>
116 <div class="settings-box block first indented"> 116 <div class="settings-box block first indented">
117 <settings-checkbox label="$i18n{clickOnStopLabel}" 117 <settings-checkbox label="$i18n{clickOnStopLabel}"
118 pref="{{prefs.settings.a11y.autoclick}}"> 118 pref="{{prefs.settings.a11y.autoclick}}">
119 </settings-checkbox> 119 </settings-checkbox>
120 <div class="list-item settings-checkbox-spacer"> 120 <div class="list-item settings-checkbox-spacer">
121 <div>$i18n{delayBeforeClickLabel}</div> 121 <div>$i18n{delayBeforeClickLabel}</div>
122 <settings-dropdown-menu 122 <settings-dropdown-menu
123 pref="{{prefs.settings.a11y.autoclick_delay_ms}}" 123 pref="{{prefs.settings.a11y.autoclick_delay_ms}}"
124 menu-options="[[autoClickDelayOptions_]]" no-label-float> 124 menu-options="[[autoClickDelayOptions_]]">
125 </settings-dropdown-menu> 125 </settings-dropdown-menu>
126 </div> 126 </div>
127 <settings-checkbox label="$i18n{tapDraggingLabel}" 127 <settings-checkbox label="$i18n{tapDraggingLabel}"
128 pref="{{prefs.settings.touchpad.enable_tap_dragging}}"> 128 pref="{{prefs.settings.touchpad.enable_tap_dragging}}">
129 </settings-checkbox> 129 </settings-checkbox>
130 <settings-checkbox label="$i18n{largeMouseCursorLabel}" 130 <settings-checkbox label="$i18n{largeMouseCursorLabel}"
131 pref="{{prefs.settings.a11y.large_cursor_enabled}}"> 131 pref="{{prefs.settings.a11y.large_cursor_enabled}}">
132 </settings-checkbox> 132 </settings-checkbox>
133 <settings-checkbox pref="{{prefs.settings.a11y.cursor_highlight}}" 133 <settings-checkbox pref="{{prefs.settings.a11y.cursor_highlight}}"
134 label="$i18n{cursorHighlightLabel}"> 134 label="$i18n{cursorHighlightLabel}">
(...skipping 18 matching lines...) Expand all
153 153
154 <div class="settings-box two-line" on-tap="onMoreFeaturesTap_" actionable> 154 <div class="settings-box two-line" on-tap="onMoreFeaturesTap_" actionable>
155 <div class="start"> 155 <div class="start">
156 <div>$i18n{additionalFeaturesTitle}</div> 156 <div>$i18n{additionalFeaturesTitle}</div>
157 <div class="secondary">$i18n{additionalFeaturesDescription}</div> 157 <div class="secondary">$i18n{additionalFeaturesDescription}</div>
158 </div> 158 </div>
159 </div> 159 </div>
160 </template> 160 </template>
161 <script src="manage_a11y_page.js"></script> 161 <script src="manage_a11y_page.js"></script>
162 </dom-module> 162 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/appearance_page/appearance_fonts_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698