mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Implementing row conditional formatting
Summary: Conditional formatting can now be used for whole rows. Related fix: - Font styles weren't applicable for summary columns. - Checkbox and slider weren't using colors properly Test Plan: Existing and new tests Reviewers: paulfitz, georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D3547
This commit is contained in:
@@ -42,8 +42,8 @@
|
||||
position: relative;
|
||||
width: 3px;
|
||||
height: 12px;
|
||||
background-color: var(--grist-cell-color, #606060);
|
||||
border: 1px solid var(--grist-cell-color, #606060);
|
||||
background-color: var(--grist-actual-cell-color, #606060);
|
||||
border: 1px solid var(--grist-actual-cell-color, #606060);
|
||||
left: 3px;
|
||||
top: -5px;
|
||||
}
|
||||
@@ -52,7 +52,7 @@
|
||||
position: relative;
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background-color: var(--grist-cell-color, #606060);
|
||||
border: 1px solid var(--grist-cell-color, #606060);
|
||||
background-color: var(--grist-actual-cell-color, #606060);
|
||||
border: 1px solid var(--grist-actual-cell-color, #606060);
|
||||
top: 7px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user