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

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

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: The First Version. 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> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6
5 <script src="profiler.js"></script> 7 <script src="profiler.js"></script>
6 <script src="chrome://resources/js/util.js"></script> 8 <script src="chrome://resources/js/util.js"></script>
7 9
8 <style> 10 <style>
9 11
10 body {
11 font-family: sans-serif;
12 font-size: 80%;
13 }
14
15 /* 12 /*
16 * The following styles are for a TABLE that uses a thin collapsed border, and 13 * The following styles are for a TABLE that uses a thin collapsed border, and
17 * has a blue heading. When you hover over rows, they turn yellow. 14 * has a blue heading. When you hover over rows, they turn yellow.
18 */ 15 */
19 table.results-table { 16 table.results-table {
20 border-collapse:collapse; 17 border-collapse:collapse;
21 } 18 }
22 19
23 table.results-table, 20 table.results-table,
24 .results-table th, 21 .results-table th,
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 144
148 <div id='results-div'></div> 145 <div id='results-div'></div>
149 146
150 <!-- TODO(eroman): This should only be a short-lived solution, 147 <!-- TODO(eroman): This should only be a short-lived solution,
151 which will eventually be superceded by snapshotting --> 148 which will eventually be superceded by snapshotting -->
152 <span id=reset-data-link class=pseudo-link>[Reset tracking data]</span> 149 <span id=reset-data-link class=pseudo-link>[Reset tracking data]</span>
153 150
154 <a style="display: none" id="download-anchor" download="profile.json"></a> 151 <a style="display: none" id="download-anchor" download="profile.json"></a>
155 </body> 152 </body>
156 </html> 153 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698