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

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

Issue 333032: Ensure that Helvetica, if installed, is used instead of Arial. This should be... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/about_credits.html ('k') | chrome/browser/resources/about_stats.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <title>About Memory</title> 8 <title>About Memory</title>
9 9
10 <style> 10 <style>
11 body { 11 body {
12 font-size: 84%; 12 font-size: 84%;
13 font-family: Arial, Helvetica, sans-serif; 13 font-family: Helvetica, Arial, sans-serif;
14 padding: 0.75em; 14 padding: 0.75em;
15 margin: 0; 15 margin: 0;
16 min-width: 45em; 16 min-width: 45em;
17 } 17 }
18 18
19 h1 { 19 h1 {
20 font-size: 110%; 20 font-size: 110%;
21 font-weight: bold; 21 font-weight: bold;
22 color: #4a8ee6; 22 color: #4a8ee6;
23 letter-spacing: -1px; 23 letter-spacing: -1px;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 } 83 }
84 div#header div.navigation { 84 div#header div.navigation {
85 position: absolute; 85 position: absolute;
86 top: 0; 86 top: 0;
87 right: 1em; 87 right: 1em;
88 line-height: 3.5em; 88 line-height: 3.5em;
89 font-size: 92%; 89 font-size: 92%;
90 } 90 }
91 div#header select { 91 div#header select {
92 font-size: 100%; 92 font-size: 100%;
93 font-family: Arial, Helvetica, sans-serif; 93 font-family: Helvetica, Arial, sans-serif;
94 border: 1px solid #3a75bd; 94 border: 1px solid #3a75bd;
95 line-height: 140%; 95 line-height: 140%;
96 color: #315d94; 96 color: #315d94;
97 } 97 }
98 div#header select option { 98 div#header select option {
99 padding: 0 0.2em; 99 padding: 0 0.2em;
100 } 100 }
101 101
102 div#sidebar { 102 div#sidebar {
103 display: none; 103 display: none;
(...skipping 15 matching lines...) Expand all
119 font-size: 92%; 119 font-size: 92%;
120 color: #5f5f5f; 120 color: #5f5f5f;
121 margin-top: 1em; 121 margin-top: 1em;
122 } 122 }
123 hr { 123 hr {
124 visibility: hidden; 124 visibility: hidden;
125 display: inline; 125 display: inline;
126 padding: 0 0.5em; 126 padding: 0 0.5em;
127 } 127 }
128 div.viewOptions input { 128 div.viewOptions input {
129 font-family: Arial, Helvetica, sans-serif; 129 font-family: Helvetica, Arial, sans-serif;
130 font-size: 100%; 130 font-size: 100%;
131 border: 1px solid #b5b5b5; 131 border: 1px solid #b5b5b5;
132 -webkit-border-radius: 6px; 132 -webkit-border-radius: 6px;
133 padding: 0.3em 0.4em; 133 padding: 0.3em 0.4em;
134 } 134 }
135 div.viewOptions input:focus { 135 div.viewOptions input:focus {
136 border-color: white; 136 border-color: white;
137 } 137 }
138 138
139 .k { 139 .k {
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 -webkit-box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.33); 308 -webkit-box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.33);
309 border: 1px solid #a8cfff; 309 border: 1px solid #a8cfff;
310 -webkit-border-radius: 0; 310 -webkit-border-radius: 0;
311 line-height: 140%; 311 line-height: 140%;
312 font-size: 92%; 312 font-size: 92%;
313 } 313 }
314 #helpTooltip p { 314 #helpTooltip p {
315 margin: 0.6em 0; 315 margin: 0.6em 0;
316 } 316 }
317 div.otherbrowsers { 317 div.otherbrowsers {
318 font-family: Arial, Helvetica, sans-serif; 318 font-family: Helvetica, Arial, sans-serif;
319 font-size: 84%; 319 font-size: 84%;
320 width: 100%; 320 width: 100%;
321 text-align: center; 321 text-align: center;
322 } 322 }
323 </style> 323 </style>
324 <script> 324 <script>
325 function reload() { 325 function reload() {
326 if (document.getElementById('helpTooltip')) 326 if (document.getElementById('helpTooltip'))
327 return; 327 return;
328 history.go(0); 328 history.go(0);
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 No results found. 681 No results found.
682 </td> 682 </td>
683 </tr> 683 </tr>
684 </table> 684 </table>
685 </div> 685 </div>
686 </body> 686 </body>
687 <script> 687 <script>
688 enableHelpTooltips(); 688 enableHelpTooltips();
689 </script> 689 </script>
690 </html> 690 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/about_credits.html ('k') | chrome/browser/resources/about_stats.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698