From eecba300678ce3f5ac138440a85a9c23f778167a Mon Sep 17 00:00:00 2001 From: Dmitry S Date: Tue, 14 Nov 2023 12:18:29 -0500 Subject: [PATCH] Add css fallbacks for background-color --- invoices/invoice.css | 4 ++-- purchase-orders/purchase_order.css | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/invoices/invoice.css b/invoices/invoice.css index 43390195..070a0877 100644 --- a/invoices/invoice.css +++ b/invoices/invoice.css @@ -53,7 +53,7 @@ body { .client .details, .summary .details { padding: 4px; - background-color: var(--grist-theme-page-panels-main-panel-bg); + background-color: var(--grist-theme-page-panels-main-panel-bg, white); } table.items { @@ -71,7 +71,7 @@ table.items th { } table.items td { - background-color: var(--grist-theme-page-panels-main-panel-bg); + background-color: var(--grist-theme-page-panels-main-panel-bg, white); padding: 4px; } diff --git a/purchase-orders/purchase_order.css b/purchase-orders/purchase_order.css index c56c410f..20914c6f 100644 --- a/purchase-orders/purchase_order.css +++ b/purchase-orders/purchase_order.css @@ -56,7 +56,7 @@ body { .vendor .details { padding: 4px; - background-color: var(--grist-theme-page-panels-main-panel-bg); + background-color: var(--grist-theme-page-panels-main-panel-bg, white); } table.items { @@ -74,7 +74,7 @@ table.items th { } table.items td { - background-color: var(--grist-theme-page-panels-main-panel-bg); + background-color: var(--grist-theme-page-panels-main-panel-bg, white); padding: 4px; }