From b35daaa7aae35e75dab0e783dbd8272d3a732d52 Mon Sep 17 00:00:00 2001 From: Christopher Lam Date: Fri, 15 Nov 2019 20:58:54 +0800 Subject: [PATCH] [html-fonts] enforce border-color grey to td & th elements Using class td.neg will cause border-color to be red on modern browser. We need to add td and th selectors to enforce grey border. --- gnucash/report/report-system/html-fonts.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnucash/report/report-system/html-fonts.scm b/gnucash/report/report-system/html-fonts.scm index eb30fe726e..cb2bd80b8a 100644 --- a/gnucash/report/report-system/html-fonts.scm +++ b/gnucash/report/report-system/html-fonts.scm @@ -143,6 +143,7 @@ "body, p, table, tr, td { vertical-align: top; " text-cell-font-info " }\n" "tr.alternate-row { background: " alternate-row-color " }\n" "tr { page-break-inside: avoid !important;}\n" + "td, th { border-color: grey }\n" "th.column-heading-left { text-align: left; " number-header-font-info " }\n" "th.column-heading-center { text-align: center; " number-header-font-info " }\n" "th.column-heading-right { text-align: right; " number-header-font-info " }\n"