From 898a1af7b50d428bf6ec4b346a6df6d4a81f7cb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Mon, 6 Mar 2023 07:00:53 +0800 Subject: [PATCH] Revised the separation lines in the table headers and footers of the ledger tables. --- src/accounting/static/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/accounting/static/css/style.css b/src/accounting/static/css/style.css index 4be6645..9f99a8a 100644 --- a/src/accounting/static/css/style.css +++ b/src/accounting/static/css/style.css @@ -111,7 +111,7 @@ /* The accounting report */ .accounting-ledger-table thead { - border-bottom: 1px double black; + border-bottom: thick double slategray; } .accounting-amount { text-align: right; @@ -123,7 +123,7 @@ td.accounting-amount { padding-left: 1rem; } .accounting-ledger-table tfoot { - border-top: 1px double black; + border-top: thick double slategray; font-weight: bolder; font-style: italic; }