quill editor

This commit is contained in:
2026-01-22 10:37:58 -06:00
parent e61907e557
commit 209292a61a
3 changed files with 70 additions and 4 deletions

View File

@@ -731,6 +731,33 @@ function generateQuoteHTML(quote) {
text-align: left;
}
/* Quill editor formatting in PDF */
.items-table td.description ul,
.items-table td.description ol {
margin: 5px 0;
padding-left: 20px;
}
.items-table td.description li {
margin: 2px 0;
}
.items-table td.description p {
margin: 5px 0;
}
.items-table td.description strong {
font-weight: bold;
}
.items-table td.description em {
font-style: italic;
}
.items-table td.description u {
text-decoration: underline;
}
.items-table td.rate,
.items-table td.amount {
text-align: right;
@@ -844,4 +871,4 @@ app.listen(PORT, () => {
process.on('SIGTERM', async () => {
await pool.end();
process.exit(0);
});
});