mirror of
https://github.com/apache/superset.git
synced 2026-06-05 15:49:27 +00:00
fix(Actions): Improper spacing (#35724)
This commit is contained in:
@@ -103,6 +103,9 @@ const Actions = styled.div`
|
||||
}
|
||||
}
|
||||
color: ${theme.colorTextDisabled};
|
||||
&:hover {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.ant-menu-item:hover {
|
||||
cursor: default;
|
||||
}
|
||||
@@ -479,7 +482,7 @@ const DatasetList: FunctionComponent<DatasetListProps> = ({
|
||||
<span
|
||||
role="button"
|
||||
tabIndex={0}
|
||||
className={allowEdit ? 'action-button' : 'disabled'}
|
||||
className={`action-button ${allowEdit ? '' : 'disabled'}`}
|
||||
onClick={allowEdit ? handleEdit : undefined}
|
||||
>
|
||||
<Icons.EditOutlined iconSize="l" />
|
||||
|
||||
Reference in New Issue
Block a user