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/md_select_css.html"> | 2 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
4 <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-flex-layout/classe
s/iron-flex-layout.html"> |
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="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
8 <link rel="import" href="appearance_browser_proxy.html"> | 8 <link rel="import" href="appearance_browser_proxy.html"> |
9 <link rel="import" href="../controls/controlled_radio_button.html"> | 9 <link rel="import" href="../controls/controlled_radio_button.html"> |
10 <link rel="import" href="../controls/extension_controlled_indicator.html"> | 10 <link rel="import" href="../controls/extension_controlled_indicator.html"> |
(...skipping 16 matching lines...) Expand all Loading... |
27 } | 27 } |
28 | 28 |
29 #custom-input { | 29 #custom-input { |
30 margin-bottom: 1rem; | 30 margin-bottom: 1rem; |
31 } | 31 } |
32 | 32 |
33 #customHomePage { | 33 #customHomePage { |
34 --paper-input-container: { | 34 --paper-input-container: { |
35 width: 200px; | 35 width: 200px; |
36 }; | 36 }; |
| 37 width: 100%; /* Pushes policy indicators to end. */ |
37 } | 38 } |
38 </style> | 39 </style> |
39 <settings-animated-pages id="pages" section="appearance" | 40 <settings-animated-pages id="pages" section="appearance" |
40 focus-config="[[focusConfig_]]"> | 41 focus-config="[[focusConfig_]]"> |
41 <neon-animatable route-path="default"> | 42 <neon-animatable route-path="default"> |
42 <if expr="chromeos"> | 43 <if expr="chromeos"> |
43 <div class="settings-box first two-line" id="wallpaperButton" | 44 <div class="settings-box first two-line" id="wallpaperButton" |
44 on-tap="openWallpaperManager_" actionable | 45 on-tap="openWallpaperManager_" actionable |
45 hidden="[[!pageVisibility.setWallpaper]]"> | 46 hidden="[[!pageVisibility.setWallpaper]]"> |
46 <div class="start"> | 47 <div class="start"> |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" | 195 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" |
195 page-title="$i18n{customizeFonts}"> | 196 page-title="$i18n{customizeFonts}"> |
196 <settings-appearance-fonts-page prefs="{{prefs}}"> | 197 <settings-appearance-fonts-page prefs="{{prefs}}"> |
197 </settings-appearance-fonts-page> | 198 </settings-appearance-fonts-page> |
198 </settings-subpage> | 199 </settings-subpage> |
199 </template> | 200 </template> |
200 </settings-animated-pages> | 201 </settings-animated-pages> |
201 </template> | 202 </template> |
202 <script src="appearance_page.js"></script> | 203 <script src="appearance_page.js"></script> |
203 </dom-module> | 204 </dom-module> |
OLD | NEW |