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

Side by Side Diff: chrome/browser/resources/about_stats.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 <html id="t"> 3 <html id="t">
4 <head> 4 <head>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title>About Stats</title> 6 <title>About Stats</title>
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <style> 8 <style>
8 body { 9 body {
9 border-top: 10px solid #3B85E3; 10 border-top: 10px solid #3B85E3;
10 color: #333; 11 color: #333;
11 font-family: Verdana, Helvetica, Arial, sans-serif;
12 } 12 }
13 body, td { 13 body, td {
14 font-size: 11px; 14 font-size: 11px;
15 } 15 }
16 a:link, a:visited { 16 a:link, a:visited {
17 color: #2C3EBA; 17 color: #2C3EBA;
18 text-decoration: none; 18 text-decoration: none;
19 } 19 }
20 a:hover { 20 a:hover {
21 color: red; 21 color: red;
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 </tr> 126 </tr>
127 </tbody> 127 </tbody>
128 </table> 128 </table>
129 </td> 129 </td>
130 </tr> 130 </tr>
131 </tbody> 131 </tbody>
132 </table><br> 132 </table><br>
133 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 133 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
134 </body> 134 </body>
135 </html> 135 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698