Changeset 4008
- Timestamp:
- 05/15/07 20:04:07 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfPrinterFriendlyPlugin/lib/sfPrinterFriendlyFilter.class.php
r4004 r4008 20 20 21 21 // Add printer friendly stylesheets and javascript 22 22 23 $response->addStylesheet('/sfPrinterFriendlyPlugin/css/printer_friendly', 'last', array('media' => 'print')); 24 $response->addStylesheet('/sfPrinterFriendlyPlugin/css/printer_friendly', 'last'); 23 25 $response->addStylesheet('printer_friendly', 'last', array('media' => 'print')); 26 $response->addStylesheet('printer_friendly', 'last'); 24 27 } 25 28 plugins/sfPrinterFriendlyPlugin/web/css/printer_friendly.css
r4004 r4008 1 body 2 { 3 padding: 2%; 4 line-height: 1.2; 5 word-spacing: 1px; 6 } 7 8 a 9 { 10 color:#000000; 11 text-decoration: underline; 12 } 13 14 img 15 { 16 border: 0px solid black; 17 }