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

Side by Side Diff: chrome/browser/resources/about_credits.tmpl

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert some changes that fail the tests. 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 <title>Credits</title> 5 <title>Credits</title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <style> 7 <style>
7 body { 8 body {
8 font-family:Helvetica,Arial,sans-serif;
9 background-color:white; 9 background-color:white;
10 font-size:84%; 10 font-size:84%;
11 max-width:1020px; 11 max-width:1020px;
12 } 12 }
13 .page-title { 13 .page-title {
14 font-size:164%; 14 font-size:164%;
15 font-weight:bold; 15 font-weight:bold;
16 } 16 }
17 .product { 17 .product {
18 background-color:#c3d9ff; 18 background-color:#c3d9ff;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 <body> 67 <body>
68 <span class="page-title" style="float:left;">Credits</span> 68 <span class="page-title" style="float:left;">Credits</span>
69 <a id="print-link" href="#" style="float:right;">Print</a> 69 <a id="print-link" href="#" style="float:right;">Print</a>
70 <div style="clear:both; overflow:auto;"><!-- Chromium <3s the following projects --> 70 <div style="clear:both; overflow:auto;"><!-- Chromium <3s the following projects -->
71 {{entries}} 71 {{entries}}
72 </div> 72 </div>
73 <script src="chrome://credits/credits.js"></script> 73 <script src="chrome://credits/credits.js"></script>
74 <script src="chrome://credits/keyboard_utils.js"></script> 74 <script src="chrome://credits/keyboard_utils.js"></script>
75 </body> 75 </body>
76 </html> 76 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698