Skip to content

Commit

Permalink
more touchups
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jan 5, 2025
1 parent 8007185 commit 510f234
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions superset-frontend/src/components/MetadataBar/MetadataBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ const Bar = styled.div<{ count: number }>`
display: flex;
align-items: center;
padding: ${VERTICAL_PADDING}px ${HORIZONTAL_PADDING}px;
background-color: ${theme.colors.grayscale.light4};
color: ${theme.colors.grayscale.base};
background-color: ${theme.antd.colorBgElevated};
color: ${theme.antd.colorTextTertiary};
font-size: ${theme.typography.sizes.s}px;
min-width: ${
HORIZONTAL_PADDING * 2 +
(ICON_WIDTH + SPACE_BETWEEN_ITEMS) * count -
SPACE_BETWEEN_ITEMS
}px;
border-radius: ${theme.borderRadius}px;
border-radius: ${theme.antd.borderRadiusOuter}px;
line-height: 1;
`}
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const DatasourceItemContainer = styled.div`
// hack to make the drag preview image corners rounded
transform: translate(0, 0);
background-color: inherit;
color: ${theme.antd.colorTextBase};
border-radius: 4px;
> div {
Expand Down

0 comments on commit 510f234

Please sign in to comment.