remove border and use black color for nicer printing of input elements

This commit is contained in:
Ralf Becker 2010-07-17 15:52:16 +00:00
parent 3ed7a8445f
commit 2b016955d9

View File

@ -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;
}