Skip to content

Commit 9d48082

Browse files
committed
style:ChartDrillPaths
1 parent c24477a commit 9d48082

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

frontend/src/app/components/ChartDrill/ChartDrillPaths.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const ChartDrillPaths: FC<{}> = memo(() => {
3333

3434
const drilledFields = drillOption.getDrilledFields();
3535
return (
36-
<StyledChartDrillPaths className="chart-drill-path">
36+
<StyledChartDrillPaths>
3737
<Breadcrumb>
3838
{drilledFields.map(f => {
3939
return (
@@ -64,6 +64,7 @@ export default ChartDrillPaths;
6464

6565
const StyledChartDrillPaths = styled.div`
6666
padding: ${SPACE_XS} ${SPACE_SM};
67+
background-color: ${p => p.theme.componentBackground};
6768
`;
6869

6970
const StyledDrillNode = styled(Breadcrumb.Item)<{ isActive: boolean }>`

frontend/src/app/pages/MainPage/pages/VizPage/ChartPreview/ChartPreview.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -444,9 +444,6 @@ const PreviewBlock = styled.div`
444444
padding: ${SPACE_LG};
445445
overflow: hidden;
446446
box-shadow: ${p => p.theme.shadowBlock};
447-
.chart-drill-path {
448-
background-color: ${p => p.theme.componentBackground};
449-
}
450447
`;
451448

452449
const ChartWrapper = styled.div`

0 commit comments

Comments
 (0)