From 1660e667661e2f6e9de0876d9fa8452437da9254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 8 Apr 2023 18:46:51 +0800 Subject: [PATCH] Revised the background color of the report tables, for better look on non-white backgrounds. --- src/accounting/static/css/style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/accounting/static/css/style.css b/src/accounting/static/css/style.css index ad47d0d..d5ade96 100644 --- a/src/accounting/static/css/style.css +++ b/src/accounting/static/css/style.css @@ -209,11 +209,14 @@ a.accounting-report-table-row { .accounting-report-table-body .accounting-amount { font-style: italic; } +.accounting-report-table-body .accounting-report-table-row { + background-color: #f8f9fa; +} .accounting-report-table-body .accounting-report-table-row:nth-child(2n+1) { - background-color: #f2f2f2; + background-color: #ecedee; } .accounting-report-table-body .accounting-report-table-row:hover { - background-color: rgba(0, 0, 0, 0.075); + background-color: #e5e6e7; } .accounting-journal-table .accounting-report-table-row { grid-template-columns: 1fr 1fr 2fr 4fr 1fr 1fr;