Files
opensourcepos/public/css/ospos_print.css
BudsieBuds e83c23cf0c Improve code style and PSR-12 compliance (#4204)
* Improve code style and PSR-12 compliance
- refactored code formatting to adhere to PSR-12 guidelines
- standardized coding conventions across the codebase
- added missing framework files and reverted markup changes
- reformatted arrays for enhanced readability
- updated language files for consistent styling and clarity
- minor miscellaneous improvements
2025-05-02 19:37:06 +02:00

67 lines
1.0 KiB
CSS

@media print {
.no-print,
.no-print * {
display: none !important;
}
#receipt_wrapper,
#table {
/* background-color:#FFFFFF; */
font-size: 75%;
}
.topbar {
display: none;
}
#menubar,
#footer {
display: none;
}
#sale_return_policy {
width: 100%;
text-align: center;
}
/* 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;
}
}