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

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

Issue 2816553002: MD Settings: fix visual glitch in a11y section (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
« no previous file with comments | « no previous file | no next file » | 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="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="../i18n_setup.html"> 3 <link rel="import" href="../i18n_setup.html">
4 <link rel="import" href="../settings_shared_css.html"> 4 <link rel="import" href="../settings_shared_css.html">
5 5
6 <if expr="chromeos"> 6 <if expr="chromeos">
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
8 <link rel="import" href="manage_a11y_page.html"> 8 <link rel="import" href="manage_a11y_page.html">
9 <link rel="import" href="../controls/settings_toggle_button.html"> 9 <link rel="import" href="../controls/settings_toggle_button.html">
10 <link rel="import" href="../settings_page/settings_animated_pages.html"> 10 <link rel="import" href="../settings_page/settings_animated_pages.html">
11 <link rel="import" href="../settings_page/settings_subpage.html"> 11 <link rel="import" href="../settings_page/settings_subpage.html">
12 </if> 12 </if>
13 13
14 <dom-module id="settings-a11y-page"> 14 <dom-module id="settings-a11y-page">
15 <template> 15 <template>
16 <style include="settings-shared"></style> 16 <style include="settings-shared"></style>
17 <if expr="chromeos"> 17 <if expr="chromeos">
18 <settings-animated-pages id="pages" current-route="{{currentRoute}}" 18 <settings-animated-pages id="pages" current-route="{{currentRoute}}"
19 section="a11y" focus-config="[[focusConfig_]]"> 19 section="a11y" focus-config="[[focusConfig_]]">
20 <neon-animatable route-path="default"> 20 <neon-animatable route-path="default">
21 <div class="settings-box"> 21 <div class="settings-box">
22 <settings-toggle-button id="optionsInMenuToggle" 22 <settings-toggle-button id="optionsInMenuToggle" class="start"
23 label="$i18n{optionsInMenuLabel}" 23 label="$i18n{optionsInMenuLabel}"
24 pref="{{prefs.settings.a11y.enable_menu}}"> 24 pref="{{prefs.settings.a11y.enable_menu}}">
25 </settings-toggle-button> 25 </settings-toggle-button>
26 </div> 26 </div>
27 <div id="subpage-trigger" class="settings-box two-line" 27 <div id="subpage-trigger" class="settings-box two-line"
28 on-tap="onManageAccessibilityFeaturesTap_" actionable> 28 on-tap="onManageAccessibilityFeaturesTap_" actionable>
29 <div class="start"> 29 <div class="start">
30 $i18n{manageAccessibilityFeatures} 30 $i18n{manageAccessibilityFeatures}
31 <div class="secondary" id="themesSecondary"> 31 <div class="secondary" id="themesSecondary">
32 $i18n{moreFeaturesLinkDescription} 32 $i18n{moreFeaturesLinkDescription}
(...skipping 27 matching lines...) Expand all
60 </div> 60 </div>
61 <button class="icon-external" is="paper-icon-button-light" 61 <button class="icon-external" is="paper-icon-button-light"
62 aria-label="$i18n{moreFeaturesLink}" 62 aria-label="$i18n{moreFeaturesLink}"
63 aria-describedby="moreFeaturesSecondary"></button> 63 aria-describedby="moreFeaturesSecondary"></button>
64 </div> 64 </div>
65 </if> 65 </if>
66 66
67 </template> 67 </template>
68 <script src="a11y_page.js"></script> 68 <script src="a11y_page.js"></script>
69 </dom-module> 69 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698