File size: 2,783 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
// @flow
import theme from 'shared/theme';
import styled from 'styled-components';
import { zIndex } from 'src/components/globals';
import { Link } from 'react-router-dom';
import { MEDIA_BREAK } from 'src/components/layout';
export const HoverWrapper = styled.div`
padding: 12px;
margin-left: -12px;
z-index: ${zIndex.tooltip};
width: 256px;
${props => props.popperStyle};
@media (max-width: ${MEDIA_BREAK}px) {
display: none;
pointer-events: none;
}
&:hover {
display: inline-block;
}
`;
export const Span = styled.span`
display: flex;
flex: none;
align-items: center;
position: relative;
`;
export const PopperWrapper = styled.div`
z-index: 6001;
${props => props.popperStyle};
`;
export const ProfileCard = styled.div`
width: 256px;
background: ${theme.bg.default};
border-radius: 4px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
min-height: 128px;
overflow: hidden;
`;
export const Content = styled.div`
padding: 0 12px;
`;
export const Title = styled.h2`
font-size: 20px;
font-weight: 700;
color: ${theme.text.default};
line-height: 1.2;
`;
export const Username = styled.h3`
font-size: 16px;
font-weight: 400;
color: ${theme.text.alt};
line-height: 1.2;
margin-top: 4px;
`;
export const Description = styled.div`
font-size: 14px;
font-weight: 400;
color: ${theme.text.secondary};
margin-top: 8px;
line-height: 1.4;
white-space: pre-wrap;
a {
font-weight: 500;
color: ${theme.text.default};
}
a:hover {
text-decoration: none;
}
`;
export const Actions = styled.div`
padding: 16px 12px 12px;
display: flex;
flex: 1 0 auto;
> div {
display: flex;
flex: 1;
}
a,
button {
display: flex;
flex: 1;
justify-content: center;
}
`;
export const CoverContainer = styled.div`
width: 100%;
position: relative;
`;
export const CoverPhoto = styled.div`
width: 100%;
height: 88px;
background-color: ${props =>
props.src ? props.theme.text.default : props.theme.brand.alt};
background-image: ${props => (props.src ? `url("${props.src}")` : 'none')};
background-repeat: no-repeat;
background-size: cover;
`;
export const ProfilePhotoContainer = styled.div`
position: relative;
left: 12px;
top: 50%;
transform: translateY(-50%);
margin-bottom: -16px;
img {
box-shadow: 0 0 0 2px ${theme.bg.default};
}
`;
/*
CHANNEL SPECIFIC
*/
export const ChannelCommunityLabel = styled.h5`
font-size: 14px;
font-weight: 500;
color: ${theme.text.alt};
`;
export const ChannelCommunityRow = styled(Link)`
display: flex;
flex: 1;
align-items: center;
padding: 8px;
img {
margin-right: 8px;
}
&:hover {
${ChannelCommunityLabel} {
color: ${theme.text.secondary};
}
}
`;
|