| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 2 <link rel="import" href="chrome://resources/html/md_select_css.html"> | 2 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.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"> |
| 15 <link rel="import" href="../settings_page/settings_animated_pages.html"> | 15 <link rel="import" href="../settings_page/settings_animated_pages.html"> |
| 16 <link rel="import" href="../settings_page/settings_subpage.html"> | 16 <link rel="import" href="../settings_page/settings_subpage.html"> |
| 17 <link rel="import" href="../settings_shared_css.html"> | 17 <link rel="import" href="../settings_shared_css.html"> |
| 18 <link rel="import" href="../settings_vars_css.html"> | 18 <link rel="import" href="../settings_vars_css.html"> |
| 19 <link rel="import" href="appearance_fonts_page.html"> | 19 <link rel="import" href="appearance_fonts_page.html"> |
| 20 <link rel="import" href="home_url_input.html"> | 20 <link rel="import" href="home_url_input.html"> |
| 21 | 21 |
| 22 <dom-module id="settings-appearance-page"> | 22 <dom-module id="settings-appearance-page"> |
| 23 <template> | 23 <template> |
| 24 <style include="settings-shared md-select"> | 24 <style include="settings-shared md-select iron-flex"> |
| 25 .secondary-button ~ .secondary-button { | 25 .secondary-button ~ .secondary-button { |
| 26 -webkit-margin-start: 12px; | 26 -webkit-margin-start: 12px; |
| 27 } | 27 } |
| 28 | 28 |
| 29 #custom-input { | 29 #custom-input { |
| 30 margin-bottom: 1rem; | 30 margin-bottom: 1rem; |
| 31 } | 31 } |
| 32 | 32 |
| 33 #customHomePage { | 33 #customHomePage { |
| 34 --paper-input-container: { | 34 --paper-input-container: { |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" | 195 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" |
| 196 page-title="$i18n{customizeFonts}"> | 196 page-title="$i18n{customizeFonts}"> |
| 197 <settings-appearance-fonts-page prefs="{{prefs}}"> | 197 <settings-appearance-fonts-page prefs="{{prefs}}"> |
| 198 </settings-appearance-fonts-page> | 198 </settings-appearance-fonts-page> |
| 199 </settings-subpage> | 199 </settings-subpage> |
| 200 </template> | 200 </template> |
| 201 </settings-animated-pages> | 201 </settings-animated-pages> |
| 202 </template> | 202 </template> |
| 203 <script src="appearance_page.js"></script> | 203 <script src="appearance_page.js"></script> |
| 204 </dom-module> | 204 </dom-module> |
| OLD | NEW |