mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Improve highlighting of previewed formula
Summary: Also improves highlighting of columns when the "Click to insert" tooltip is shown, and improves highlighting of transforming columns. Test Plan: Manual. Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3962
This commit is contained in:
@@ -110,13 +110,20 @@
|
||||
color: var(--grist-actual-cell-color, unset);
|
||||
}
|
||||
|
||||
.field.selected > .field_selection {
|
||||
.gridview_row .field.selected > .selection {
|
||||
background-color: var(--grist-theme-selection, var(--grist-color-selection));
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.field.transform_field > .selection {
|
||||
background-color: var(--grist-theme-selection-darker, rgba(22,179,120,0.25));
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.field_clip.invalid, .field_clip.field-error-from-style {
|
||||
background-color: #ffb6c1;
|
||||
color: black;
|
||||
@@ -126,6 +133,10 @@
|
||||
background-color: unset;
|
||||
}
|
||||
|
||||
.field.transform_field > .field_clip.invalid + .selection {
|
||||
background-color: unset;
|
||||
}
|
||||
|
||||
.field_clip.field-error-P {
|
||||
color: #B0B0B0;
|
||||
background-color: unset;
|
||||
|
||||
Reference in New Issue
Block a user