From 08fe240bcf1261bb4a525fcfece30a8ec977026b Mon Sep 17 00:00:00 2001 From: Dmitry S Date: Mon, 22 Feb 2021 13:46:20 -0500 Subject: [PATCH] (core) Restore default text color for Grist cells to black Summary: Diff https://phab.getgrist.com/D2720 inadvertently changed the default color of text in cells from black to #333 (inherited from bootstrap's default for ). This change reverts the default back to black. Test Plan: Checked manually. Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D2736 --- app/client/components/viewCommon.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/components/viewCommon.css b/app/client/components/viewCommon.css index 072778f6..4e117558 100644 --- a/app/client/components/viewCommon.css +++ b/app/client/components/viewCommon.css @@ -57,7 +57,7 @@ height: 100%; background-color: var(--grist-diff-background-color, var(--grist-cell-background-color, unset)); --grist-actual-cell-color: var(--grist-diff-color, var(--grist-cell-color)); - color: var(--grist-actual-cell-color, unset); + color: var(--grist-actual-cell-color, black); } .field_clip.invalid {