mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
chore: Removes plugin-chart-pivot-table hard-coded colors (#19439)
This commit is contained in:
committed by
GitHub
parent
47abad8673
commit
31095a523d
@@ -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;
|
||||
}
|
||||
`}
|
||||
|
||||
Reference in New Issue
Block a user