Changeset - 5777a717aa35
[Not reviewed]
default
0 2 0
Ethan Zonca - 15 years ago 2010-10-23 14:06:05
ez@ethanzonca.com
Print output looks nicer now, but coloration is gone for some reason
2 files changed with 28 insertions and 2 deletions:
0 comments (0 inline, 0 general)
inc/class.page.php
Show inline comments
 
@@ -135,7 +135,8 @@ class page
 
	  <html ' . $this->htmlargs . '>
 
	  <head>
 
	    <title>' . $this->pagetitle . ' :: ' . $this->base_title . '</title>
 
           <link rel="stylesheet" href="styles/general.css" type="text/css" media="screen" charset="utf-8" />';
 
           <link rel="stylesheet" href="styles/general.css" type="text/css" media="screen" charset="utf-8" />
 
	   <link rel="stylesheet" type="text/css" media="print" href="styles/print.css" />';
 

	
 
    // Write out all passed scripts
 
    foreach ($this->scripts as $i){
styles/print.css
Show inline comments
 
@import url('general.css');
 
@import url('output.css');
 

	
 
/* Styling overrides for printing */
 

	
 

	
 
body {
 
  background: #fff;
 
}
 

	
 
#page {
 
  font: normal 9pt sans-serif!important;
 
  width: 100%!important;
 
  min-width: 0px!important;
 
  max-width: 10000px!important;
 
}
 

	
 
a img {
 
  border: none;
 
}
 
div.scroller { 
 
	border:0;
 
	padding:0;
 
@@ -25,7 +45,12 @@ div.scroller div.section div.txt {
 
  display: none;
 
}
 
#leftfoot {
 
  display: none; /* Hide feedback button */
 
  display: none; 
 
}
 

	
 

	
 
#rightfoot {
 
  text-align: right!important;
 
}
 
#possiblestats {
 
  text-align: center;
0 comments (0 inline, 0 general)