| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |