Skip to content

Commit

Permalink
Add css fallbacks for background-color
Browse files Browse the repository at this point in the history
  • Loading branch information
dsagal committed Nov 14, 2023
1 parent d2dd0ec commit eecba30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions invoices/invoice.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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;
}

Expand Down
4 changes: 2 additions & 2 deletions purchase-orders/purchase_order.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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;
}

Expand Down

0 comments on commit eecba30

Please sign in to comment.