(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
<body>). This change reverts the default back to black.

Test Plan: Checked manually.

Reviewers: paulfitz

Reviewed By: paulfitz

Differential Revision: https://phab.getgrist.com/D2736
pull/3/head
Dmitry S 3 years ago
parent e7c4686536
commit 08fe240bcf

@ -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 {

Loading…
Cancel
Save