Files
opensourcepos/css/ospos_print.css
2016-03-13 16:19:44 +00:00

77 lines
791 B
CSS

@media print {
.no-print, .no-print *
{
display: none !important;
}
#receipt_wrapper
{
/*background-color:#FFFFFF;*/
font-size:75%;
}
.topbar
{
display:none;
}
#menubar, #footer
{
display:none;
}
#sale_return_policy
{
width:100%;
text-align:center;
}
.short_name
{
display:inline;
}
#receipt_items td
{
white-space:nowrap;
}
/* Hide links in table for printing */
table.innertable
{
display: table;
}
table.innertable a
{
color: #000000;
text-decoration: none;
}
table.report a.expand
{
visibility: hidden;
}
table.report a
{
color: #000000;
text-decoration: none;
}
table.innertable thead
{
/*display:none;*/
}
.print_show
{
display:block !important;
}
.print_hide
{
display:none !important;
}
}