From 2b016955d999897b6ab56f28c9819a9de86a5741 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 17 Jul 2010 15:52:16 +0000 Subject: [PATCH] remove border and use black color for nicer printing of input elements --- phpgwapi/templates/idots/print.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/phpgwapi/templates/idots/print.css b/phpgwapi/templates/idots/print.css index 720ebf3323..463ec4a79e 100644 --- a/phpgwapi/templates/idots/print.css +++ b/phpgwapi/templates/idots/print.css @@ -71,3 +71,11 @@ body { /* MSIE needs these styles to repeat table header and footer part on each page */ thead { display: table-header-group; } tfoot { display: table-footer-group; } + +/** + * remove border and use black color for input elements + */ +input, select, textarea { + border: none; + color: black; +}