mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
fix(table): improve conditional formatting text contrast (#38705)
(cherry picked from commit 02ffb52f4a)
This commit is contained in:
committed by
Michael S. Molina
parent
493f6c0aed
commit
a541d69019
@@ -309,6 +309,17 @@ export const StyledChartContainer = styled.div<{
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.ag-cell {
|
||||
color: var(--ag-cell-value-color, inherit);
|
||||
}
|
||||
|
||||
.ag-row-hover .ag-cell {
|
||||
color: var(
|
||||
--ag-cell-value-hover-color,
|
||||
var(--ag-cell-value-color, inherit)
|
||||
);
|
||||
}
|
||||
|
||||
.ag-container {
|
||||
border-radius: 0px;
|
||||
border: var(--ag-wrapper-border);
|
||||
|
||||
Reference in New Issue
Block a user