| 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/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 3 <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-icon/iron-icon.htm
l"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 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_page/appearance_browser_proxy.html"> | 8 <link rel="import" href="/appearance_page/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/settings_dropdown_menu.html"> | 10 <link rel="import" href="/controls/settings_dropdown_menu.html"> |
| 11 <link rel="import" href="/controls/settings_input.html"> | 11 <link rel="import" href="/controls/settings_input.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="/icons.html"> | 13 <link rel="import" href="/icons.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="appearance_fonts_page.html"> | 18 <link rel="import" href="appearance_fonts_page.html"> |
| 19 | 19 |
| 20 <dom-module id="settings-appearance-page"> | 20 <dom-module id="settings-appearance-page"> |
| 21 <template> | 21 <template> |
| 22 <style include="settings-shared"></style> | 22 <style include="settings-shared"> |
| 23 :host { |
| 24 --paper-input-container-label: { |
| 25 font-size: inherit; |
| 26 font-weight: inherit; |
| 27 }; |
| 28 } |
| 29 </style> |
| 23 <settings-animated-pages id="pages" section="appearance"> | 30 <settings-animated-pages id="pages" section="appearance"> |
| 24 <neon-animatable route-path="default"> | 31 <neon-animatable route-path="default"> |
| 25 <if expr="chromeos"> | 32 <if expr="chromeos"> |
| 26 <div class="settings-box first two-line" id="wallpaperButton" | 33 <div class="settings-box first two-line" id="wallpaperButton" |
| 27 on-tap="openWallpaperManager_" actionable | 34 on-tap="openWallpaperManager_" actionable |
| 28 hidden="[[!pageVisibility.setWallpaper]]"> | 35 hidden="[[!pageVisibility.setWallpaper]]"> |
| 29 <div class="start"> | 36 <div class="start"> |
| 30 <div>$i18n{setWallpaper}</div> | 37 <div>$i18n{setWallpaper}</div> |
| 31 <div class="secondary">$i18n{openWallpaperApp}</div> | 38 <div class="secondary">$i18n{openWallpaperApp}</div> |
| 32 </div> | 39 </div> |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" | 133 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" |
| 127 page-title="$i18n{customizeFonts}"> | 134 page-title="$i18n{customizeFonts}"> |
| 128 <settings-appearance-fonts-page prefs="{{prefs}}"> | 135 <settings-appearance-fonts-page prefs="{{prefs}}"> |
| 129 </settings-appearance-fonts-page> | 136 </settings-appearance-fonts-page> |
| 130 </settings-subpage> | 137 </settings-subpage> |
| 131 </template> | 138 </template> |
| 132 </settings-animated-pages> | 139 </settings-animated-pages> |
| 133 </template> | 140 </template> |
| 134 <script src="appearance_page.js"></script> | 141 <script src="appearance_page.js"></script> |
| 135 </dom-module> | 142 </dom-module> |
| OLD | NEW |