| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 2 <link rel="import" href="chrome://resources/html/md_select_css.html"> | 4 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 8 <link rel="import" href="appearance_browser_proxy.html"> | 8 <link rel="import" href="appearance_browser_proxy.html"> |
| 9 <link rel="import" href="../controls/controlled_radio_button.html"> | 9 <link rel="import" href="../controls/controlled_radio_button.html"> |
| 10 <link rel="import" href="../controls/extension_controlled_indicator.html"> | 10 <link rel="import" href="../controls/extension_controlled_indicator.html"> |
| 11 <link rel="import" href="../controls/settings_dropdown_menu.html"> | 11 <link rel="import" href="../controls/settings_dropdown_menu.html"> |
| 12 <link rel="import" href="../controls/settings_radio_group.html"> | 12 <link rel="import" href="../controls/settings_radio_group.html"> |
| 13 <link rel="import" href="../controls/settings_toggle_button.html"> | 13 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 14 <link rel="import" href="../route.html"> | 14 <link rel="import" href="../route.html"> |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 <if expr="not is_linux or chromeos"> | 76 <if expr="not is_linux or chromeos"> |
| 77 <template is="dom-if" if="[[prefs.extensions.theme.id.value]]"> | 77 <template is="dom-if" if="[[prefs.extensions.theme.id.value]]"> |
| 78 <div class="separator"></div> | 78 <div class="separator"></div> |
| 79 <paper-button id="useDefault" on-tap="onUseDefaultTap_" | 79 <paper-button id="useDefault" on-tap="onUseDefaultTap_" |
| 80 class="secondary-button"> | 80 class="secondary-button"> |
| 81 $i18n{resetToDefaultTheme} | 81 $i18n{resetToDefaultTheme} |
| 82 </paper-button> | 82 </paper-button> |
| 83 </template> | 83 </template> |
| 84 </if> | 84 </if> |
| 85 <if expr="is_linux and not chromeos"> | 85 <if expr="is_linux and not chromeos"> |
| 86 <div class="layout horizontal center" hidden="[[!showThemesSecondary_( | 86 <div class="settings-row" hidden="[[!showThemesSecondary_( |
| 87 prefs.extensions.theme.id.value, useSystemTheme_)]]" | 87 prefs.extensions.theme.id.value, useSystemTheme_)]]" |
| 88 id="themesSecondaryActions"> | 88 id="themesSecondaryActions"> |
| 89 <div class="separator"></div> | 89 <div class="separator"></div> |
| 90 <template is="dom-if" if="[[showUseClassic_( | 90 <template is="dom-if" if="[[showUseClassic_( |
| 91 prefs.extensions.theme.id.value, useSystemTheme_)]]" restamp> | 91 prefs.extensions.theme.id.value, useSystemTheme_)]]" restamp> |
| 92 <paper-button id="useDefault" on-tap="onUseDefaultTap_" | 92 <paper-button id="useDefault" on-tap="onUseDefaultTap_" |
| 93 class="secondary-button"> | 93 class="secondary-button"> |
| 94 $i18n{useClassicTheme} | 94 $i18n{useClassicTheme} |
| 95 </paper-button> | 95 </paper-button> |
| 96 </template> | 96 </template> |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" | 196 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" |
| 197 page-title="$i18n{customizeFonts}"> | 197 page-title="$i18n{customizeFonts}"> |
| 198 <settings-appearance-fonts-page prefs="{{prefs}}"> | 198 <settings-appearance-fonts-page prefs="{{prefs}}"> |
| 199 </settings-appearance-fonts-page> | 199 </settings-appearance-fonts-page> |
| 200 </settings-subpage> | 200 </settings-subpage> |
| 201 </template> | 201 </template> |
| 202 </settings-animated-pages> | 202 </settings-animated-pages> |
| 203 </template> | 203 </template> |
| 204 <script src="appearance_page.js"></script> | 204 <script src="appearance_page.js"></script> |
| 205 </dom-module> | 205 </dom-module> |
| OLD | NEW |