| 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/neon-animation/neon-ani
matable.html"> | 4 <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/paper-button/paper-butt
on.html"> | 5 <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-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"> |
| 7 <link rel="import" href="/appearance_page/appearance_browser_proxy.html"> | 7 <link rel="import" href="/appearance_page/appearance_browser_proxy.html"> |
| 8 <link rel="import" href="/controls/controlled_radio_button.html"> | 8 <link rel="import" href="/controls/controlled_radio_button.html"> |
| 9 <link rel="import" href="/controls/settings_dropdown_menu.html"> | 9 <link rel="import" href="/controls/settings_dropdown_menu.html"> |
| 10 <link rel="import" href="/controls/settings_input.html"> | 10 <link rel="import" href="/controls/settings_input.html"> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 <div class="settings-box first two-line" id="wallpaperButton" | 35 <div class="settings-box first two-line" id="wallpaperButton" |
| 36 on-tap="openWallpaperManager_" actionable | 36 on-tap="openWallpaperManager_" actionable |
| 37 hidden="[[!pageVisibility.setWallpaper]]"> | 37 hidden="[[!pageVisibility.setWallpaper]]"> |
| 38 <div class="start"> | 38 <div class="start"> |
| 39 $i18n{setWallpaper} | 39 $i18n{setWallpaper} |
| 40 <div class="secondary">$i18n{openWallpaperApp}</div> | 40 <div class="secondary">$i18n{openWallpaperApp}</div> |
| 41 </div> | 41 </div> |
| 42 <button class="icon-external" is="paper-icon-button-light"></button> | 42 <button class="icon-external" is="paper-icon-button-light"></button> |
| 43 </div> | 43 </div> |
| 44 <div class="settings-box two-line" | 44 <div class="settings-box two-line" |
| 45 hidden="[[!pageVisibility.setTheme]]" actionable> | 45 hidden="[[!pageVisibility.setTheme]]"> |
| 46 </if> | 46 </if> |
| 47 <if expr="not chromeos"> | 47 <if expr="not chromeos"> |
| 48 <div class="settings-box two-line first" | 48 <div class="settings-box two-line first" |
| 49 hidden="[[!pageVisibility.setTheme]]" actionable> | 49 hidden="[[!pageVisibility.setTheme]]"> |
| 50 </if> | 50 </if> |
| 51 <div class="start two-line" on-tap="openThemesGallery_"> | 51 <div class="start two-line" on-tap="onThemesTap_" actionable> |
| 52 <div class="flex"> | 52 <div class="flex"> |
| 53 <div>$i18n{themes}</div> | 53 <div>$i18n{themes}</div> |
| 54 <div class="secondary">[[themeSublabel_]]</div> | 54 <div class="secondary">[[themeSublabel_]]</div> |
| 55 </div> | 55 </div> |
| 56 <button class="icon-external" is="paper-icon-button-light"></button> | 56 <button class="icon-external" is="paper-icon-button-light"></button> |
| 57 </div> | 57 </div> |
| 58 <if expr="not is_linux or chromeos"> | 58 <if expr="not is_linux or chromeos"> |
| 59 <template is="dom-if" if="[[prefs.extensions.theme.id.value]]"> | 59 <template is="dom-if" if="[[prefs.extensions.theme.id.value]]"> |
| 60 <div class="secondary-action"> | 60 <div class="secondary-action"> |
| 61 <paper-button id="useDefault" on-tap="onUseDefaultTap_" | 61 <paper-button id="useDefault" on-tap="onUseDefaultTap_" |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" | 156 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" |
| 157 page-title="$i18n{customizeFonts}"> | 157 page-title="$i18n{customizeFonts}"> |
| 158 <settings-appearance-fonts-page prefs="{{prefs}}"> | 158 <settings-appearance-fonts-page prefs="{{prefs}}"> |
| 159 </settings-appearance-fonts-page> | 159 </settings-appearance-fonts-page> |
| 160 </settings-subpage> | 160 </settings-subpage> |
| 161 </template> | 161 </template> |
| 162 </settings-animated-pages> | 162 </settings-animated-pages> |
| 163 </template> | 163 </template> |
| 164 <script src="appearance_page.js"></script> | 164 <script src="appearance_page.js"></script> |
| 165 </dom-module> | 165 </dom-module> |
| OLD | NEW |