fix(table): improve conditional formatting text contrast (#38705)

(cherry picked from commit 02ffb52f4a)
This commit is contained in:
João Pedro Alves Barbosa
2026-03-22 18:59:15 -03:00
committed by Michael S. Molina
parent 493f6c0aed
commit a541d69019
14 changed files with 1698 additions and 82 deletions

View File

@@ -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);