2019-03-28 05:39:06 +07:00
|
|
|
import styled from 'react-emotion';
|
2019-02-03 17:23:33 +07:00
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
|
2019-06-20 19:37:28 +07:00
|
|
|
import Grid from '@material-ui/core/Grid';
|
|
|
|
import List from '@material-ui/core/List';
|
|
|
|
import ListItemText from '@material-ui/core/ListItemText';
|
|
|
|
import MuiIconButton from '@material-ui/core/IconButton';
|
2019-03-28 05:39:06 +07:00
|
|
|
import Photo from '@material-ui/core/Avatar';
|
2019-06-20 19:37:28 +07:00
|
|
|
import Typography from '@material-ui/core/Typography';
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-03-28 05:39:06 +07:00
|
|
|
import { breakpoints } from '../../utils/styles/media';
|
|
|
|
import Ico from '../Icon';
|
2019-02-03 17:23:33 +07:00
|
|
|
import Label from '../Label';
|
2019-03-28 05:39:06 +07:00
|
|
|
import colors from '../../utils/styles/colors';
|
2019-08-09 04:08:37 +07:00
|
|
|
import { fontWeight } from '../../utils/styles/sizes';
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-06-20 19:37:28 +07:00
|
|
|
export const OverviewItem = styled('span')`
|
2019-02-03 17:23:33 +07:00
|
|
|
&& {
|
|
|
|
display: flex;
|
2019-03-28 05:39:06 +07:00
|
|
|
align-items: center;
|
|
|
|
margin: 0 0 0 16px;
|
|
|
|
color: ${colors.greyLight2};
|
|
|
|
font-size: 12px;
|
|
|
|
@media (max-width: ${breakpoints.medium}px) {
|
|
|
|
&:nth-child(3) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: ${breakpoints.small}px) {
|
|
|
|
&:nth-child(4) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2019-02-03 17:23:33 +07:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const Icon = styled(Ico)({
|
|
|
|
'&&': {
|
2019-08-09 03:58:15 +07:00
|
|
|
margin: '2px 10px 0 0',
|
2019-07-15 16:57:32 +07:00
|
|
|
fill: colors.greyLight2,
|
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const Published = styled('span')({
|
|
|
|
'&&': {
|
|
|
|
color: colors.greyLight2,
|
2019-08-09 03:58:15 +07:00
|
|
|
margin: '0 5px 0 0',
|
2019-07-15 16:57:32 +07:00
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-06-20 19:37:28 +07:00
|
|
|
// @ts-ignore
|
2019-07-15 16:57:32 +07:00
|
|
|
export const Text = styled(Label)({
|
|
|
|
'&&': {
|
|
|
|
fontSize: '12px',
|
2019-08-09 04:08:37 +07:00
|
|
|
fontWeight: fontWeight.semiBold,
|
2019-07-15 16:57:32 +07:00
|
|
|
color: colors.greyLight2,
|
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const Details = styled('span')({
|
|
|
|
'&&': {
|
|
|
|
marginLeft: '5px',
|
|
|
|
lineHeight: 1.5,
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const Author = styled('div')({
|
|
|
|
'&&': {
|
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const Avatar = styled(Photo)({
|
|
|
|
'&&': {
|
|
|
|
width: '20px',
|
|
|
|
height: '20px',
|
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const WrapperLink = styled(Link)({
|
|
|
|
'&&': {
|
|
|
|
textDecoration: 'none',
|
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-06-20 19:37:28 +07:00
|
|
|
export const PackageTitle = styled('span')`
|
2019-02-03 17:23:33 +07:00
|
|
|
&& {
|
2019-03-28 05:39:06 +07:00
|
|
|
font-weight: 600;
|
|
|
|
font-size: 20px;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
color: ${colors.eclipse};
|
|
|
|
cursor: pointer;
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-03-28 05:39:06 +07:00
|
|
|
&:hover {
|
|
|
|
color: ${colors.black};
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: ${breakpoints.small}px) {
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 8px;
|
2019-02-03 17:23:33 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const GridRightAligned = styled(Grid)({
|
|
|
|
'&&': {
|
|
|
|
textAlign: 'right',
|
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const PackageList = styled(List)({
|
|
|
|
'&&': {
|
|
|
|
padding: '12px 0 12px 0',
|
2019-03-28 05:39:06 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
'&:hover': {
|
|
|
|
backgroundColor: colors.greyLight3,
|
|
|
|
},
|
2019-09-29 21:44:10 +07:00
|
|
|
|
|
|
|
'> :last-child': {
|
|
|
|
paddingTop: 0,
|
|
|
|
},
|
2019-07-15 16:57:32 +07:00
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const IconButton = styled(MuiIconButton)({
|
|
|
|
'&&': {
|
|
|
|
padding: '6px',
|
2019-03-28 05:39:06 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
svg: {
|
|
|
|
fontSize: '16px',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-06-20 19:37:28 +07:00
|
|
|
export const TagContainer = styled('span')`
|
2019-02-03 17:23:33 +07:00
|
|
|
&& {
|
2019-03-28 05:39:06 +07:00
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
display: block;
|
|
|
|
@media (max-width: ${breakpoints.medium}px) {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-02-03 17:23:33 +07:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const PackageListItemText = styled(ListItemText)({
|
|
|
|
'&&': {
|
|
|
|
paddingRight: 0,
|
|
|
|
},
|
|
|
|
});
|
2019-02-03 17:23:33 +07:00
|
|
|
|
2019-07-15 15:41:12 +07:00
|
|
|
export const Description = styled(Typography)({
|
|
|
|
color: colors.greyDark2,
|
|
|
|
fontSize: '14px',
|
|
|
|
paddingRight: 0,
|
|
|
|
});
|