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

Side by Side Diff: chrome/browser/resources/components.html

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the presubmit warnings. Created 6 years 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 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="componentsTitle"></title> 5 <title i18n-content="componentsTitle"></title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <link rel="stylesheet" href="components.css"> 7 <link rel="stylesheet" href="components.css">
7 <if expr="chromeos"> 8 <if expr="chromeos">
8 <link rel="stylesheet" 9 <link rel="stylesheet"
9 href="chrome://resources/css/chromeos/ui_account_tweaks.css"> 10 href="chrome://resources/css/chromeos/ui_account_tweaks.css">
10 </if> 11 </if>
11 </head> 12 </head>
12 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 13 <body>
13 <div id="body-container" style="visibility:hidden"> 14 <div id="body-container" style="visibility:hidden">
14 15
15 <div id="header"><h1 i18n-content="componentsTitle">TITLE</h1></div> 16 <div id="header"><h1 i18n-content="componentsTitle">TITLE</h1></div>
16 <div id="component-placeholder"></div> 17 <div id="component-placeholder"></div>
17 <div id="component-template" hidden> 18 <div id="component-template" hidden>
18 19
19 <div id="container" class="vbox-container"> 20 <div id="container" class="vbox-container">
20 <div id="top" class="wbox"> 21 <div id="top" class="wbox">
21 22
22 <div class="section-header"> 23 <div class="section-header">
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 <if expr="chromeos"> 76 <if expr="chromeos">
76 <script src="chrome://resources/js/chromeos/ui_account_tweaks.js"></script> 77 <script src="chrome://resources/js/chromeos/ui_account_tweaks.js"></script>
77 </if> 78 </if>
78 79
79 <script src="chrome://resources/js/load_time_data.js"></script> 80 <script src="chrome://resources/js/load_time_data.js"></script>
80 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 81 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
81 <script src="chrome://components/strings.js"></script> 82 <script src="chrome://components/strings.js"></script>
82 <script src="chrome://resources/js/i18n_template2.js"></script> 83 <script src="chrome://resources/js/i18n_template2.js"></script>
83 </body> 84 </body>
84 </html> 85 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698