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

This commit is contained in:
Ralf Becker 2010-07-17 15:53:43 +00:00
parent f68be7acfd
commit db4a6020b2

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