chore: Removes plugin-chart-pivot-table hard-coded colors (#19439)

This commit is contained in:
Michael S. Molina
2022-03-31 13:30:36 -03:00
committed by GitHub
parent 47abad8673
commit 31095a523d

View File

@@ -84,7 +84,7 @@ export const Styles = styled.div`
}
table.pvtTable tr th.active {
background-color: #d9dbe4;
background-color: ${theme.colors.primary.light3};
}
table.pvtTable .pvtTotalLabel {
@@ -97,7 +97,7 @@ export const Styles = styled.div`
}
table.pvtTable tbody tr td {
color: #2a3f5f;
color: ${theme.colors.primary.dark2};
padding: ${theme.gridUnit}px;
background-color: ${theme.colors.grayscale.light5};
border-top: 1px solid ${theme.colors.grayscale.light2};
@@ -133,7 +133,7 @@ export const Styles = styled.div`
}
.hoverable:hover {
background-color: #eceef2;
background-color: ${theme.colors.primary.light4};
cursor: pointer;
}
`}