| 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"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 4 <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"> | 5 <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"> | 6 <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"> | 7 <link rel="import" href="/appearance_page/appearance_browser_proxy.html"> |
| 9 <link rel="import" href="/controls/controlled_radio_button.html"> | 8 <link rel="import" href="/controls/controlled_radio_button.html"> |
| 10 <link rel="import" href="/controls/settings_dropdown_menu.html"> | 9 <link rel="import" href="/controls/settings_dropdown_menu.html"> |
| 11 <link rel="import" href="/controls/settings_input.html"> | 10 <link rel="import" href="/controls/settings_input.html"> |
| 12 <link rel="import" href="/controls/settings_radio_group.html"> | 11 <link rel="import" href="/controls/settings_radio_group.html"> |
| 13 <link rel="import" href="/icons.html"> | |
| 14 <link rel="import" href="/route.html"> | 12 <link rel="import" href="/route.html"> |
| 15 <link rel="import" href="/settings_page/settings_animated_pages.html"> | 13 <link rel="import" href="/settings_page/settings_animated_pages.html"> |
| 16 <link rel="import" href="/settings_page/settings_subpage.html"> | 14 <link rel="import" href="/settings_page/settings_subpage.html"> |
| 17 <link rel="import" href="/settings_shared_css.html"> | 15 <link rel="import" href="/settings_shared_css.html"> |
| 18 <link rel="import" href="appearance_fonts_page.html"> | 16 <link rel="import" href="appearance_fonts_page.html"> |
| 19 | 17 |
| 20 <dom-module id="settings-appearance-page"> | 18 <dom-module id="settings-appearance-page"> |
| 21 <template> | 19 <template> |
| 22 <style include="settings-shared"> | 20 <style include="settings-shared"> |
| 23 :host { | 21 :host { |
| 24 --paper-input-container-label: { | 22 --paper-input-container-label: { |
| 25 font-size: inherit; | 23 font-size: inherit; |
| 26 font-weight: inherit; | 24 font-weight: inherit; |
| 27 }; | 25 }; |
| 28 } | 26 } |
| 29 </style> | 27 </style> |
| 30 <settings-animated-pages id="pages" section="appearance"> | 28 <settings-animated-pages id="pages" section="appearance"> |
| 31 <neon-animatable route-path="default"> | 29 <neon-animatable route-path="default"> |
| 32 <if expr="chromeos"> | 30 <if expr="chromeos"> |
| 33 <div class="settings-box first two-line" id="wallpaperButton" | 31 <div class="settings-box first two-line" id="wallpaperButton" |
| 34 on-tap="openWallpaperManager_" actionable | 32 on-tap="openWallpaperManager_" actionable |
| 35 hidden="[[!pageVisibility.setWallpaper]]"> | 33 hidden="[[!pageVisibility.setWallpaper]]"> |
| 36 <div class="start"> | 34 <div class="start"> |
| 37 <div>$i18n{setWallpaper}</div> | 35 $i18n{setWallpaper} |
| 38 <div class="secondary">$i18n{openWallpaperApp}</div> | 36 <div class="secondary">$i18n{openWallpaperApp}</div> |
| 39 </div> | 37 </div> |
| 40 <button class="icon-external" is="paper-icon-button-light"></button> | 38 <button class="icon-external" is="paper-icon-button-light"></button> |
| 41 </div> | 39 </div> |
| 42 <div class="settings-box two-line" | 40 <div class="settings-box two-line" |
| 43 hidden="[[!pageVisibility.setTheme]]" actionable> | 41 hidden="[[!pageVisibility.setTheme]]" actionable> |
| 44 </if> | 42 </if> |
| 45 <if expr="not chromeos"> | 43 <if expr="not chromeos"> |
| 46 <div class="settings-box two-line first" | 44 <div class="settings-box two-line first" |
| 47 hidden="[[!pageVisibility.setTheme]]" actionable> | 45 hidden="[[!pageVisibility.setTheme]]" actionable> |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" | 131 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" |
| 134 page-title="$i18n{customizeFonts}"> | 132 page-title="$i18n{customizeFonts}"> |
| 135 <settings-appearance-fonts-page prefs="{{prefs}}"> | 133 <settings-appearance-fonts-page prefs="{{prefs}}"> |
| 136 </settings-appearance-fonts-page> | 134 </settings-appearance-fonts-page> |
| 137 </settings-subpage> | 135 </settings-subpage> |
| 138 </template> | 136 </template> |
| 139 </settings-animated-pages> | 137 </settings-animated-pages> |
| 140 </template> | 138 </template> |
| 141 <script src="appearance_page.js"></script> | 139 <script src="appearance_page.js"></script> |
| 142 </dom-module> | 140 </dom-module> |
| OLD | NEW |