2006-01-06 05:53:44 +01:00
|
|
|
/*
|
|
|
|
The styles in this file are used for printing only!
|
2009-02-23 14:21:28 +01:00
|
|
|
|
2006-01-06 05:53:44 +01:00
|
|
|
Additional UI Elements can be disabled for printing by adding their Id here or adding the noPrint class to them.
|
|
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
|
2007-03-12 12:19:38 +01:00
|
|
|
#divLogo,#divAppIconBar,#tdSidebox,#divStatusBar,#sideboxdragarea,.noPrint,#topmenu {
|
2006-01-06 05:53:44 +01:00
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
2007-05-18 19:35:12 +02:00
|
|
|
#divMain,#popupMainDiv {
|
2006-01-06 05:53:44 +01:00
|
|
|
border:none;
|
|
|
|
margin:0px;
|
|
|
|
padding:0px;
|
2006-03-27 00:21:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#tdAppbox,#divAppboxHeader,#divSubContainer,#divAppbox {
|
|
|
|
border: none;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2007-07-08 12:14:55 +02:00
|
|
|
#divAppboxHeader {
|
|
|
|
background: none;
|
|
|
|
}
|
2006-03-27 00:21:22 +02:00
|
|
|
|
|
|
|
/* 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{
|
2007-05-08 18:52:04 +02:00
|
|
|
border-bottom: thin gray dotted;
|
|
|
|
padding-top: 0px; margin-top:0px;
|
|
|
|
padding-bottom: 0px; margin-bottom: 0px;
|
2006-03-27 00:21:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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 {
|
2006-08-19 09:08:52 +02:00
|
|
|
font-style: normal;
|
2006-03-27 00:21:22 +02:00
|
|
|
color: black;
|
2006-11-22 22:52:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* hide background-image to save print costs and spool time */
|
|
|
|
body {
|
|
|
|
background-image: none;
|
2009-02-23 14:21:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* MSIE needs these styles to repeat table header and footer part on each page */
|
|
|
|
thead { display: table-header-group; }
|
|
|
|
tfoot { display: table-footer-group; }
|