| 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/iron-icons/device-icons
.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/device-icons
.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/image-icons.
html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/image-icons.
html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape
r-radio-button.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape
r-radio-button.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 <neon-animatable id="main"> | 33 <neon-animatable id="main"> |
| 34 <if expr="chromeos"> | 34 <if expr="chromeos"> |
| 35 <div class="settings-box first two-line" id="wallpaperButton" | 35 <div class="settings-box first two-line" id="wallpaperButton" |
| 36 on-tap="openWallpaperManager_"> | 36 on-tap="openWallpaperManager_"> |
| 37 <iron-icon icon="device:wallpaper"></iron-icon> | 37 <iron-icon icon="device:wallpaper"></iron-icon> |
| 38 <div class="start"> | 38 <div class="start"> |
| 39 <div>$i18n{setWallpaper}</div> | 39 <div>$i18n{setWallpaper}</div> |
| 40 <div class="secondary">$i18n{openWallpaperApp}</div> | 40 <div class="secondary">$i18n{openWallpaperApp}</div> |
| 41 </div> | 41 </div> |
| 42 </div> | 42 </div> |
| 43 <div class="settings-box two-line" on-tap="openThemesGallery_"> | 43 <div class="settings-box two-line"> |
| 44 </if> | 44 </if> |
| 45 <if expr="not chromeos"> | 45 <if expr="not chromeos"> |
| 46 <div class="settings-box two-line first"> | 46 <div class="settings-box two-line first"> |
| 47 </if> | 47 </if> |
| 48 <div class="layout horizontal center flex" | 48 <div class="layout horizontal center flex" |
| 49 on-tap="openThemesGallery_"> | 49 on-tap="openThemesGallery_"> |
| 50 <iron-icon icon="image:palette"></iron-icon> | 50 <iron-icon icon="image:palette"></iron-icon> |
| 51 <div> | 51 <div> |
| 52 <div>$i18n{getThemes}</div> | 52 <div>$i18n{getThemes}</div> |
| 53 <div class="secondary">[[themeSublabel_]]</div> | 53 <div class="secondary">[[themeSublabel_]]</div> |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 <template is="dom-if" name="appearance-fonts"> | 109 <template is="dom-if" name="appearance-fonts"> |
| 110 <settings-subpage page-title="$i18n{customizeFonts}"> | 110 <settings-subpage page-title="$i18n{customizeFonts}"> |
| 111 <settings-appearance-fonts-page prefs="{{prefs}}"> | 111 <settings-appearance-fonts-page prefs="{{prefs}}"> |
| 112 </settings-appearance-fonts-page> | 112 </settings-appearance-fonts-page> |
| 113 </settings-subpage> | 113 </settings-subpage> |
| 114 </template> | 114 </template> |
| 115 </settings-animated-pages> | 115 </settings-animated-pages> |
| 116 </template> | 116 </template> |
| 117 <script src="appearance_page.js"></script> | 117 <script src="appearance_page.js"></script> |
| 118 </dom-module> | 118 </dom-module> |
| OLD | NEW |