options button styles change
parent
ac960db9e1
commit
a8825a69d6
|
@ -4,6 +4,11 @@ const styles = () => ({
|
||||||
},
|
},
|
||||||
narrowTable: {
|
narrowTable: {
|
||||||
minWidth: 400
|
minWidth: 400
|
||||||
|
},
|
||||||
|
rowButton: {
|
||||||
|
width: 20,
|
||||||
|
height: 20,
|
||||||
|
padding: 10
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -86,11 +86,14 @@ const SessionForwardsComponent = ({
|
||||||
{row.optionId ? (
|
{row.optionId ? (
|
||||||
<Tooltip title={t("Session.Forwards.Options.Title")}>
|
<Tooltip title={t("Session.Forwards.Options.Title")}>
|
||||||
<IconButton
|
<IconButton
|
||||||
|
className={classes.rowButton}
|
||||||
aria-label="options"
|
aria-label="options"
|
||||||
size="small"
|
|
||||||
onClick={openOptionsDialog(row)}
|
onClick={openOptionsDialog(row)}
|
||||||
>
|
>
|
||||||
<DonutLargeRoundedIcon color="primary" />
|
<DonutLargeRoundedIcon
|
||||||
|
color="primary"
|
||||||
|
fontSize="small"
|
||||||
|
/>
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
) : (
|
) : (
|
||||||
|
|
Loading…
Reference in New Issue