Skip to content

Commit

Permalink
chore: Removes plugin-chart-pivot-table hard-coded colors (#19439)
Browse files Browse the repository at this point in the history
(cherry picked from commit 31095a5)
  • Loading branch information
michael-s-molina authored and villebro committed Apr 3, 2022
1 parent 95777d2 commit 2ff3b49
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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};
Expand Down Expand Up @@ -133,7 +133,7 @@ export const Styles = styled.div`
}
.hoverable:hover {
background-color: #eceef2;
background-color: ${theme.colors.primary.light4};
cursor: pointer;
}
`}
Expand Down

0 comments on commit 2ff3b49

Please sign in to comment.