Files
opensourcepos/css/ospos_print.css
jekkos 2a858b3f23 Collapse rows in detailed report after delete (#507, #293)
Hide columns without title in takings print view (#507)
Execute grunt after running bower uninstall
Try to fix integration tests
2016-05-12 18:02:26 +02:00

87 lines
911 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;
}
.fixed-table-container
{
border: none;
}
.fixed-table-container thead th .sortable
{
padding-right: 10px;
}
}