diff --git a/phpgwapi/templates/jerryr/print.css b/phpgwapi/templates/jerryr/print.css new file mode 100644 index 0000000000..681eb1bc1a --- /dev/null +++ b/phpgwapi/templates/jerryr/print.css @@ -0,0 +1,64 @@ +/* + The styles in this file are used for printing only! + + Additional UI Elements can be disabled for printing by adding their Id here or adding the noPrint class to them. +*/ +/* $Id: print.css 22862 2006-11-22 21:52:56Z jaytraxx $ */ + +#divLogo,#divAppIconBar,#tdSidebox,#divStatusBar,#sideboxdragarea,.noPrint { + display:none; +} + +#divMain { + border:none; + margin:0px; + padding:0px; +} + +#tdAppbox,#divAppboxHeader,#divSubContainer,#divAppbox { + border: none; + text-align: left; +} + +/* all tables */ +table { + border-collapse: collapse; +} + +/* cells in nextmatch/list rows */ +.th td,.row_on td,.row_off td{ + border-left: thin black solid; + border-right: thin black solid; + padding: 1mm; +} + +/* nextmatch/list rows */ +tr.row_on,tr.row_off{ + border-bottom: thin black dashed; +} + +/* nextmatch/list headers */ +tr.th { + border-bottom: thin black solid; +} +tr.th td { + font-weight: bold; +} + +/* cell in tables in nextmatch/list cells */ +.th table td,.row_on table td,.row_off table td { + border: none; + padding-left: 0mm; + padding-top: 0mm; +} + +/* show links as regular text */ +a,a:link,a:visited,a:hover { + font-style: normal; + color: black; +} + +/* hide background-image to save print costs and spool time */ +body { + background-image: none; +}