From a09e6616b2a7d73fb4c70a6b7ec10c9996912bca Mon Sep 17 00:00:00 2001 From: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com> Date: Fri, 26 Sep 2025 17:49:48 +0530 Subject: [PATCH] update icons --- .../resources/ui/src/assets/svg/ic-column.svg | 12 +++++++++--- .../resources/ui/src/assets/svg/ic-table.svg | 16 +++++++++------- .../LineageTable/LineageTable.styled.tsx | 12 +++++++++--- 3 files changed, 27 insertions(+), 13 deletions(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/assets/svg/ic-column.svg b/openmetadata-ui/src/main/resources/ui/src/assets/svg/ic-column.svg index cd35ddd1f4b..78b4bf439fb 100644 --- a/openmetadata-ui/src/main/resources/ui/src/assets/svg/ic-column.svg +++ b/openmetadata-ui/src/main/resources/ui/src/assets/svg/ic-column.svg @@ -1,4 +1,10 @@ - - - + + + + + + + + + diff --git a/openmetadata-ui/src/main/resources/ui/src/assets/svg/ic-table.svg b/openmetadata-ui/src/main/resources/ui/src/assets/svg/ic-table.svg index ff7242e796c..364a684a374 100644 --- a/openmetadata-ui/src/main/resources/ui/src/assets/svg/ic-table.svg +++ b/openmetadata-ui/src/main/resources/ui/src/assets/svg/ic-table.svg @@ -1,8 +1,10 @@ - - - - - - - + + + + + + + + + diff --git a/openmetadata-ui/src/main/resources/ui/src/components/LineageTable/LineageTable.styled.tsx b/openmetadata-ui/src/main/resources/ui/src/components/LineageTable/LineageTable.styled.tsx index 5c62efd5aeb..0a4452b43ff 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/LineageTable/LineageTable.styled.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/LineageTable/LineageTable.styled.tsx @@ -24,16 +24,22 @@ export const StyledMenu = styled((props: MenuProps) => )( ({ theme }) => ({ '& .MuiPaper-root': { width: 'auto', + /* Shadows/shadow-xs */ + boxShadow: theme.shadows[1], '& .MuiMenu-list': { padding: '0', + borderRadius: '8px', + border: '1px solid #EAECF5', }, '& .MuiMenuItem-root': { margin: '0', padding: '10px 16px', borderRadius: '0px', + '& svg': { - height: 20, - marginRight: theme.spacing(1.5), + height: 16, + width: 16, + marginRight: theme.spacing(3), }, '&:active': { backgroundColor: theme.palette.allShades.blue[25], @@ -92,7 +98,7 @@ export const StyledIconButton = styled((props: IconButtonProps) => ( '& svg': { height: 20, width: 20, - color: theme.palette.allShades.gray[500], + color: theme.palette.allShades.gray[600], }, boxShadow: 'none', borderColor: theme.palette.allShades.gray[300],