seitime-frappe/frappe/public/scss/print.bundle.scss
mergify[bot] c4a714e20e
fix: Barcode rendering in server side printing (backport #15383) (#15384)
Co-authored-by: Suraj Shetty <surajshetty3416@gmail.com>
Co-authored-by: gavin <gavin18d@gmail.com>
Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com>
2021-12-21 12:06:59 +05:30

14 lines
358 B
SCSS

@import "frappe/public/css/bootstrap.css";
@import "./common/quill";
@import "./desk/css_variables";
// !! PDF Barcode hack !!
// Workaround for rendering barcodes prior to https://github.com/frappe/frappe/pull/15307
@media print {
svg[data-barcode-value] > rect {
fill: white !important;
}
svg[data-barcode-value] > g {
fill: black !important;
}
}