| 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="/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 29 matching lines...) Expand all Loading... |
| 40 hidden="[[!pageVisibility.setTheme]]"> | 40 hidden="[[!pageVisibility.setTheme]]"> |
| 41 </if> | 41 </if> |
| 42 <if expr="not chromeos"> | 42 <if expr="not chromeos"> |
| 43 <div class="settings-box two-line first" | 43 <div class="settings-box two-line first" |
| 44 hidden="[[!pageVisibility.setTheme]]"> | 44 hidden="[[!pageVisibility.setTheme]]"> |
| 45 </if> | 45 </if> |
| 46 <div class="layout horizontal center flex" | 46 <div class="layout horizontal center flex" |
| 47 on-tap="openThemesGallery_" actionable> | 47 on-tap="openThemesGallery_" actionable> |
| 48 <iron-icon icon="settings:palette"></iron-icon> | 48 <iron-icon icon="settings:palette"></iron-icon> |
| 49 <div> | 49 <div> |
| 50 <div>$i18n{getThemes}</div> | 50 <div>$i18n{theme}</div> |
| 51 <div class="secondary">[[themeSublabel_]]</div> | 51 <div class="secondary">[[themeSublabel_]]</div> |
| 52 </div> | 52 </div> |
| 53 </div> | 53 </div> |
| 54 <template is="dom-if" if="[[allowResetTheme_]]"> | 54 <template is="dom-if" if="[[allowResetTheme_]]"> |
| 55 <div class="secondary-action"> | 55 <div class="secondary-action"> |
| 56 <paper-button id="resetTheme" on-tap="resetTheme_" | 56 <paper-button id="resetTheme" on-tap="resetTheme_" |
| 57 class="secondary-button"> | 57 class="secondary-button"> |
| 58 $i18n{resetToDefaultTheme} | 58 $i18n{resetToDefaultTheme} |
| 59 </paper-button> | 59 </paper-button> |
| 60 </div> | 60 </div> |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" | 129 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" |
| 130 page-title="$i18n{customizeFonts}"> | 130 page-title="$i18n{customizeFonts}"> |
| 131 <settings-appearance-fonts-page prefs="{{prefs}}"> | 131 <settings-appearance-fonts-page prefs="{{prefs}}"> |
| 132 </settings-appearance-fonts-page> | 132 </settings-appearance-fonts-page> |
| 133 </settings-subpage> | 133 </settings-subpage> |
| 134 </template> | 134 </template> |
| 135 </settings-animated-pages> | 135 </settings-animated-pages> |
| 136 </template> | 136 </template> |
| 137 <script src="appearance_page.js"></script> | 137 <script src="appearance_page.js"></script> |
| 138 </dom-module> | 138 </dom-module> |
| OLD | NEW |