Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(699)

Side by Side Diff: chrome/browser/resources/settings/appearance_page/appearance_page.html

Issue 2664503004: MD Settings: Make all HTML import href's relative. (Closed)
Patch Set: Fix wrong path. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_page/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">
11 <link rel="import" href="/controls/settings_dropdown_menu.html"> 11 <link rel="import" href="../controls/settings_dropdown_menu.html">
12 <link rel="import" href="/controls/settings_input.html"> 12 <link rel="import" href="../controls/settings_input.html">
13 <link rel="import" href="/controls/settings_radio_group.html"> 13 <link rel="import" href="../controls/settings_radio_group.html">
14 <link rel="import" href="/controls/settings_toggle_button.html"> 14 <link rel="import" href="../controls/settings_toggle_button.html">
15 <link rel="import" href="/route.html"> 15 <link rel="import" href="../route.html">
16 <link rel="import" href="/settings_page/settings_animated_pages.html"> 16 <link rel="import" href="../settings_page/settings_animated_pages.html">
17 <link rel="import" href="/settings_page/settings_subpage.html"> 17 <link rel="import" href="../settings_page/settings_subpage.html">
18 <link rel="import" href="/settings_shared_css.html"> 18 <link rel="import" href="../settings_shared_css.html">
19 <link rel="import" href="/settings_vars_css.html"> 19 <link rel="import" href="../settings_vars_css.html">
20 <link rel="import" href="appearance_fonts_page.html"> 20 <link rel="import" href="appearance_fonts_page.html">
Dan Beam 2017/01/31 03:10:16 nit: alpha
dpapad 2017/01/31 18:29:23 Will address in a different CL. Leaning towards wr
21 21
22 <dom-module id="settings-appearance-page"> 22 <dom-module id="settings-appearance-page">
23 <template> 23 <template>
24 <style include="settings-shared md-select"> 24 <style include="settings-shared md-select">
25 :host { 25 :host {
26 --paper-input-container-label: { 26 --paper-input-container-label: {
27 font-size: inherit; 27 font-size: inherit;
28 font-weight: inherit; 28 font-weight: inherit;
29 }; 29 };
30 } 30 }
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 associated-control="[[$$('#customize-fonts-subpage-trigger')]]" 183 associated-control="[[$$('#customize-fonts-subpage-trigger')]]"
184 page-title="$i18n{customizeFonts}"> 184 page-title="$i18n{customizeFonts}">
185 <settings-appearance-fonts-page prefs="{{prefs}}"> 185 <settings-appearance-fonts-page prefs="{{prefs}}">
186 </settings-appearance-fonts-page> 186 </settings-appearance-fonts-page>
187 </settings-subpage> 187 </settings-subpage>
188 </template> 188 </template>
189 </settings-animated-pages> 189 </settings-animated-pages>
190 </template> 190 </template>
191 <script src="appearance_page.js"></script> 191 <script src="appearance_page.js"></script>
192 </dom-module> 192 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698