Development

Changeset 4008

You must first sign up to be able to contribute.

Changeset 4008

Show
Ignore:
Timestamp:
05/15/07 20:04:07 (2 years ago)
Author:
Jonathan.Wage
Message:

sfPrinterFriendlyPlugin: Fixed css for printer friendly version.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfPrinterFriendlyPlugin/lib/sfPrinterFriendlyFilter.class.php

    r4004 r4008  
    2020 
    2121      // Add printer friendly stylesheets and javascript 
     22 
    2223      $response->addStylesheet('/sfPrinterFriendlyPlugin/css/printer_friendly', 'last', array('media' => 'print')); 
     24      $response->addStylesheet('/sfPrinterFriendlyPlugin/css/printer_friendly', 'last'); 
    2325      $response->addStylesheet('printer_friendly', 'last', array('media' => 'print')); 
     26      $response->addStylesheet('printer_friendly', 'last'); 
    2427    } 
    2528 
  • plugins/sfPrinterFriendlyPlugin/web/css/printer_friendly.css

    r4004 r4008  
     1body 
     2{ 
     3  padding: 2%; 
     4  line-height: 1.2; 
     5  word-spacing: 1px; 
     6} 
     7 
     8a 
     9{ 
     10  color:#000000; 
     11  text-decoration: underline; 
     12} 
     13 
     14img 
     15{ 
     16  border: 0px solid black; 
     17}