Compare commits

...

2 Commits

Author SHA1 Message Date
BOHA
7b6365f6b3 1.4.4 2026-04-02 11:28:13 +02:00
BOHA
44867c79f8 fix: PDF item names bold on Linux — font-weight 500→600
Linux lacks Segoe UI semibold, so weight 500 rendered as regular.
Changed to 600 which maps to bold on both Windows and Linux.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-02 11:28:12 +02:00
4 changed files with 5 additions and 5 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "app-ts", "name": "app-ts",
"version": "1.4.3", "version": "1.4.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "app-ts", "name": "app-ts",
"version": "1.4.3", "version": "1.4.4",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@dnd-kit/core": "^6.3.1", "@dnd-kit/core": "^6.3.1",

View File

@@ -1,6 +1,6 @@
{ {
"name": "app-ts", "name": "app-ts",
"version": "1.4.3", "version": "1.4.4",
"description": "", "description": "",
"main": "dist/server.js", "main": "dist/server.js",
"scripts": { "scripts": {

View File

@@ -699,7 +699,7 @@ export default async function invoicesPdfRoutes(
} }
table.items tbody td.desc { table.items tbody td.desc {
font-size: 9.5pt; font-size: 9.5pt;
font-weight: 500; font-weight: 600;
color: #1a1a1a; color: #1a1a1a;
} }
table.items tbody td.total-cell { font-weight: 700; } table.items tbody td.total-cell { font-weight: 700; }

View File

@@ -517,7 +517,7 @@ ${indentCSS}
} }
table.items tbody td.desc { table.items tbody td.desc {
font-size: 10pt; font-size: 10pt;
font-weight: 500; font-weight: 600;
color: #1a1a1a; color: #1a1a1a;
} }
table.items tbody td.total-cell { table.items tbody td.total-cell {