feat(ui-toolkit, cp-frontend): Remove options button from instances list

This commit is contained in:
JUDIT GRESKOVITS 2017-07-13 14:41:18 +01:00 committed by Sérgio Ramos
parent fe760dcca6
commit 7b8c4f1de9
2 changed files with 1 additions and 4 deletions

View File

@ -11,7 +11,6 @@ import {
CardMeta,
CardTitle,
CardDescription,
CardOptions,
typography
} from 'joyent-ui-toolkit';
@ -86,7 +85,7 @@ const StatusBadge = ({ status }) => {
const StyledCard = Card.extend`
flex-direction: row;
&:not(:last-child) {
margin-bottom: 0;
box-shadow: none;
@ -116,7 +115,6 @@ const InstanceCard = ({
</CardDescription>
</CardMeta>
</CardView>
<CardOptions onClick={onOptionsClick} />
</StyledCard>;
InstanceCard.propTypes = {

View File

@ -18,7 +18,6 @@ const InnerRow = Row.extend`
${is('collapsed')`
width: 100%;
display: flex;
padding-right: ${remcalc(47)};
`};
`;