| 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"> | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 3 <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="/appearance_page/appearance_browser_proxy.html"> | 6 <link rel="import" href="/appearance_page/appearance_browser_proxy.html"> |
| 8 <link rel="import" href="/controls/controlled_radio_button.html"> | 7 <link rel="import" href="/controls/controlled_radio_button.html"> |
| 9 <link rel="import" href="/controls/settings_dropdown_menu.html"> | 8 <link rel="import" href="/controls/settings_dropdown_menu.html"> |
| 10 <link rel="import" href="/controls/settings_input.html"> | 9 <link rel="import" href="/controls/settings_input.html"> |
| 11 <link rel="import" href="/controls/settings_radio_group.html"> | 10 <link rel="import" href="/controls/settings_radio_group.html"> |
| 12 <link rel="import" href="/icons.html"> | 11 <link rel="import" href="/icons.html"> |
| 13 <link rel="import" href="/route.html"> | 12 <link rel="import" href="/route.html"> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 36 <div class="secondary">$i18n{openWallpaperApp}</div> | 35 <div class="secondary">$i18n{openWallpaperApp}</div> |
| 37 </div> | 36 </div> |
| 38 </div> | 37 </div> |
| 39 <div class="settings-box two-line" | 38 <div class="settings-box two-line" |
| 40 hidden="[[!pageVisibility.setTheme]]"> | 39 hidden="[[!pageVisibility.setTheme]]"> |
| 41 </if> | 40 </if> |
| 42 <if expr="not chromeos"> | 41 <if expr="not chromeos"> |
| 43 <div class="settings-box two-line first" | 42 <div class="settings-box two-line first" |
| 44 hidden="[[!pageVisibility.setTheme]]"> | 43 hidden="[[!pageVisibility.setTheme]]"> |
| 45 </if> | 44 </if> |
| 46 <div class="layout horizontal center flex" | 45 <iron-icon icon="settings:palette"></iron-icon> |
| 47 on-tap="openThemesGallery_" actionable> | 46 <div class="start" on-tap="openThemesGallery_" actionable> |
| 48 <iron-icon icon="settings:palette"></iron-icon> | 47 <div>$i18n{getThemes}</div> |
| 49 <div> | 48 <div class="secondary">[[themeSublabel_]]</div> |
| 50 <div>$i18n{getThemes}</div> | |
| 51 <div class="secondary">[[themeSublabel_]]</div> | |
| 52 </div> | |
| 53 </div> | 49 </div> |
| 54 <template is="dom-if" if="[[allowResetTheme_]]"> | 50 <template is="dom-if" if="[[allowResetTheme_]]"> |
| 55 <div class="secondary-action"> | 51 <div class="secondary-action"> |
| 56 <paper-button id="resetTheme" on-tap="resetTheme_" | 52 <paper-button id="resetTheme" on-tap="resetTheme_" |
| 57 class="secondary-button"> | 53 class="secondary-button"> |
| 58 $i18n{resetToDefaultTheme} | 54 $i18n{resetToDefaultTheme} |
| 59 </paper-button> | 55 </paper-button> |
| 60 </div> | 56 </div> |
| 61 </template> | 57 </template> |
| 62 </div> | 58 </div> |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" | 125 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" |
| 130 page-title="$i18n{customizeFonts}"> | 126 page-title="$i18n{customizeFonts}"> |
| 131 <settings-appearance-fonts-page prefs="{{prefs}}"> | 127 <settings-appearance-fonts-page prefs="{{prefs}}"> |
| 132 </settings-appearance-fonts-page> | 128 </settings-appearance-fonts-page> |
| 133 </settings-subpage> | 129 </settings-subpage> |
| 134 </template> | 130 </template> |
| 135 </settings-animated-pages> | 131 </settings-animated-pages> |
| 136 </template> | 132 </template> |
| 137 <script src="appearance_page.js"></script> | 133 <script src="appearance_page.js"></script> |
| 138 </dom-module> | 134 </dom-module> |
| OLD | NEW |