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

Side by Side Diff: chrome/browser/resources/print_preview/print_preview_page.html

Issue 11275302: Use 'sans-serif' instead of 'sans' to print headers and footers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « no previous file | no next file » | 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 <head> 2 <head>
3 <style> 3 <style>
4 body { 4 body {
5 margin: 0px; 5 margin: 0px;
6 width: 0px; 6 width: 0px;
7 } 7 }
8 .row { 8 .row {
9 display: table-row; 9 display: table-row;
10 vertical-align: inherit; 10 vertical-align: inherit;
11 } 11 }
12 #header, #footer { 12 #header, #footer {
13 display: table; 13 display: table;
14 table-layout:fixed; 14 table-layout:fixed;
15 width: inherit; 15 width: inherit;
16 } 16 }
17 #header { 17 #header {
18 vertical-align: top; 18 vertical-align: top;
19 } 19 }
20 #footer { 20 #footer {
21 vertical-align: bottom; 21 vertical-align: bottom;
22 } 22 }
23 .text { 23 .text {
24 display: table-cell; 24 display: table-cell;
25 font-family: Sans; 25 font-family: sans-serif;
26 font-size: 8px; 26 font-size: 8px;
27 vertical-align: inherit; 27 vertical-align: inherit;
28 white-space: nowrap; 28 white-space: nowrap;
29 } 29 }
30 #page_number { 30 #page_number {
31 text-align: right; 31 text-align: right;
32 } 32 }
33 #title { 33 #title {
34 text-align: center; 34 text-align: center;
35 } 35 }
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 <div id="content"> 106 <div id="content">
107 </div> 107 </div>
108 <div id="footer"> 108 <div id="footer">
109 <div class="row"> 109 <div class="row">
110 <div id="url" class="text"><span/></div> 110 <div id="url" class="text"><span/></div>
111 <div id="page_number" class="text"><span/></div> 111 <div id="page_number" class="text"><span/></div>
112 </div> 112 </div>
113 </div> 113 </div>
114 </body> 114 </body>
115 </html> 115 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698