forked from extern/egroupware
added print css to give focus on current app when printing
This commit is contained in:
parent
6d0e87b95e
commit
4f3ffcbba5
64
phpgwapi/templates/jerryr/print.css
Normal file
64
phpgwapi/templates/jerryr/print.css
Normal file
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user