065ac9f0fb
git-svn-id: https://shellinabox.googlecode.com/svn/trunk@176 0da03de8-d603-11dd-86c2-0f8696b7b6f9
35 lines
611 B
CSS
35 lines
611 B
CSS
/* Set styles used when opening the printer window */
|
|
#print {
|
|
margin: 4ex 0px 0px 0px;
|
|
}
|
|
|
|
#options {
|
|
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;
|
|
}
|
|
|
|
@media print {
|
|
body {
|
|
margin: 0px;
|
|
}
|
|
|
|
#print {
|
|
margin: 0px;
|
|
}
|
|
|
|
#print .pagebreak {
|
|
page-break-before: always;
|
|
}
|
|
|
|
#print .pagebreak hr, #options {
|
|
display: none;
|
|
}
|
|
}
|