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

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

Issue 2664503004: MD Settings: Make all HTML import href's relative. (Closed)
Patch Set: resolve more conflicts Created 3 years, 10 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_toggle_button.html"> 3 <link rel="import" href="../controls/settings_toggle_button.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>
11 <style include="settings-shared"> 11 <style include="settings-shared">
12 h2 { 12 h2 {
13 -webkit-padding-start: var(--settings-box-row-padding); 13 -webkit-padding-start: var(--settings-box-row-padding);
14 } 14 }
15 15
16 .list-item settings-dropdown-menu { 16 .list-item settings-dropdown-menu {
17 -webkit-margin-start: 16px; 17 -webkit-margin-start: 16px;
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 <div class="settings-box two-line" on-tap="onMoreFeaturesTap_" actionable> 159 <div class="settings-box two-line" on-tap="onMoreFeaturesTap_" actionable>
160 <div class="start"> 160 <div class="start">
161 $i18n{additionalFeaturesTitle} 161 $i18n{additionalFeaturesTitle}
162 <div class="secondary">$i18n{a11yWebStore}</div> 162 <div class="secondary">$i18n{a11yWebStore}</div>
163 </div> 163 </div>
164 <button class="icon-external" is="paper-icon-button-light"></button> 164 <button class="icon-external" is="paper-icon-button-light"></button>
165 </div> 165 </div>
166 </template> 166 </template>
167 <script src="manage_a11y_page.js"></script> 167 <script src="manage_a11y_page.js"></script>
168 </dom-module> 168 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698