mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Fixing background color in frozen columns for zebra stripes
Summary: Background for frozen columns was set to transparent in recent PR, this diff is reverting it. Test Plan: Updated Reviewers: georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D3680
This commit is contained in:
@@ -53,10 +53,11 @@
|
||||
* We can't use background inheritance, because row background color is more important then static (aka default)
|
||||
* column color defined on a field (so lower in the dom).
|
||||
*/
|
||||
background-color: var(--grist-diff-background-color,
|
||||
var(--grist-column-rule-background-color,
|
||||
var(--grist-row-rule-background-color,
|
||||
var(--grist-cell-background-color, unset))));
|
||||
--field-background-color: var(--grist-diff-background-color,
|
||||
var(--grist-column-rule-background-color,
|
||||
var(--grist-row-rule-background-color,
|
||||
var(--grist-cell-background-color))));
|
||||
background-color: var(--field-background-color, unset);
|
||||
}
|
||||
|
||||
/** Similar order is for detail view, but there is no row rules */
|
||||
@@ -67,11 +68,11 @@
|
||||
}
|
||||
|
||||
.record.record-zebra.record-even .field {
|
||||
background-color: var(--grist-diff-background-color,
|
||||
var(--grist-column-rule-background-color,
|
||||
var(--grist-row-rule-background-color-zebra,
|
||||
var(--grist-row-rule-background-color,
|
||||
var(--grist-cell-background-color, unset)))));
|
||||
--field-background-color: var(--grist-diff-background-color,
|
||||
var(--grist-column-rule-background-color,
|
||||
var(--grist-row-rule-background-color-zebra,
|
||||
var(--grist-row-rule-background-color,
|
||||
var(--grist-cell-background-color)))));
|
||||
}
|
||||
|
||||
.record.record-add .field {
|
||||
|
||||
Reference in New Issue
Block a user