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

Side by Side Diff: chrome/browser/resources/about_memory.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 2
3 <!-- 3 <!--
4 about:memory template page 4 about:memory template page
5 --> 5 -->
6 <html id="t"> 6 <html id="t">
7 <head> 7 <head>
8 <meta charset="utf-8"> 8 <meta charset="utf-8">
9 <title>About Memory</title> 9 <title>About Memory</title>
10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
10 <link rel="stylesheet" href="chrome://memory-redirect/about_memory.css"> 11 <link rel="stylesheet" href="chrome://memory-redirect/about_memory.css">
11 <style> 12 <style>
12 body { 13
13 font-family: Helvetica, Arial, sans-serif;
14 }
15 div#header select {
16 font-family: Helvetica, Arial, sans-serif;
17 }
18 div.otherbrowsers {
19 font-family: Helvetica, Arial, sans-serif;
20 }
21 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(1), 14 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(1),
22 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(4), 15 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(4),
23 table.list#browserComparison tr.firstRow th:nth-child(1), 16 table.list#browserComparison tr.firstRow th:nth-child(1),
24 table.list#browserComparison tr.firstRow th:nth-child(2) { 17 table.list#browserComparison tr.firstRow th:nth-child(2) {
25 border-right: 1px solid #b5c6de; 18 border-right: 1px solid #b5c6de;
26 } 19 }
27 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(2), 20 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(2),
28 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(5), 21 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(5),
29 table.list#memoryDetails tr.firstRow th:nth-child(2), 22 table.list#memoryDetails tr.firstRow th:nth-child(2),
30 table.list#memoryDetails tr.firstRow th:nth-child(3) { 23 table.list#memoryDetails tr.firstRow th:nth-child(3) {
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 <tr class="noResults"> 343 <tr class="noResults">
351 <td colspan="99"> 344 <td colspan="99">
352 No results found. 345 No results found.
353 </td> 346 </td>
354 </tr> 347 </tr>
355 </table> 348 </table>
356 </div> 349 </div>
357 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 350 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
358 </body> 351 </body>
359 </html> 352 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698