69cfac0161
Cleanup the transparent printing HTML a little bit. git-svn-id: https://shellinabox.googlecode.com/svn/trunk@178 0da03de8-d603-11dd-86c2-0f8696b7b6f9
42 lines
734 B
CSS
42 lines
734 B
CSS
/* Set styles used when opening the printer window */
|
|
#print {
|
|
margin: 0.5ex 0px 0px 0px;
|
|
}
|
|
|
|
#options, #spacer {
|
|
font-family: sans;
|
|
font-size: smaller;
|
|
position: fixed;
|
|
top: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
background-color: #EEEEEE;
|
|
border-style: solid;
|
|
border-top: 0px solid black;
|
|
border-left: 0px solid black;
|
|
border-right: 0px solid black;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
|
|
#spacer {
|
|
position: static;
|
|
visibility: hidden;
|
|
}
|
|
|
|
@media print {
|
|
body {
|
|
margin: 0px;
|
|
}
|
|
|
|
#print {
|
|
margin: 0px;
|
|
}
|
|
|
|
#print .pagebreak {
|
|
page-break-before: always;
|
|
}
|
|
|
|
#print .pagebreak hr, #options {
|
|
display: none;
|
|
}
|
|
}
|