|
|
|
|
|
import styled, { css } from 'styled-components'; |
|
|
import { Link } from 'react-router-dom'; |
|
|
import theme from 'shared/theme'; |
|
|
import { hexa, Truncate } from 'src/components/globals'; |
|
|
import { |
|
|
MEDIA_BREAK, |
|
|
NAVBAR_WIDTH, |
|
|
NAVBAR_EXPANDED_WIDTH, |
|
|
MIN_WIDTH_TO_EXPAND_NAVIGATION, |
|
|
} from 'src/components/layout'; |
|
|
|
|
|
export const Overlay = styled.div` |
|
|
position: fixed; |
|
|
display: ${props => (props.isOpen ? 'block' : 'none')}; |
|
|
width: 100%; |
|
|
height: 100%; |
|
|
top: 0; |
|
|
left: 0; |
|
|
right: 0; |
|
|
bottom: 0; |
|
|
z-index: 9998 /* on top of titlebar */; |
|
|
background: rgba(0, 0, 0, 0.4); |
|
|
`; |
|
|
|
|
|
export const RedDot = styled.span` |
|
|
width: 16px; |
|
|
height: 16px; |
|
|
border-radius: 8px; |
|
|
border: 3px solid ${theme.bg.default}; |
|
|
position: absolute; |
|
|
background: ${theme.warn.alt}; |
|
|
top: 0; |
|
|
right: 0px; |
|
|
`; |
|
|
|
|
|
export const BlackDot = styled.span` |
|
|
width: 16px; |
|
|
height: 16px; |
|
|
border-radius: 8px; |
|
|
border: 3px solid ${theme.bg.default}; |
|
|
position: absolute; |
|
|
background: ${theme.text.placeholder}; |
|
|
top: 2px; |
|
|
right: 10px; |
|
|
|
|
|
@media (max-width: ${MEDIA_BREAK}px) { |
|
|
background: ${theme.warn.alt}; |
|
|
left: 40px; |
|
|
top: 0px; |
|
|
} |
|
|
|
|
|
@media (min-width: ${MIN_WIDTH_TO_EXPAND_NAVIGATION}px) { |
|
|
background: ${theme.warn.alt}; |
|
|
left: 40px; |
|
|
top: 0px; |
|
|
} |
|
|
`; |
|
|
|
|
|
export const NavigationWrapper = styled.div` |
|
|
grid-area: navigation; |
|
|
position: sticky; |
|
|
top: 0; |
|
|
width: ${NAVBAR_WIDTH}px; |
|
|
height: 100vh; |
|
|
overflow: hidden; |
|
|
overflow-y: auto; |
|
|
|
|
|
@media (max-width: ${MEDIA_BREAK}px) { |
|
|
display: ${props => (props.isOpen ? 'block' : 'none')}; |
|
|
position: fixed; |
|
|
width: 100%; |
|
|
height: 100vh; |
|
|
z-index: 9997; |
|
|
box-shadow: 2px 0 8px rgba(0, 0, 0, 0.16); |
|
|
} |
|
|
|
|
|
@media (min-width: ${MIN_WIDTH_TO_EXPAND_NAVIGATION}px) { |
|
|
width: ${NAVBAR_EXPANDED_WIDTH}px; |
|
|
} |
|
|
`; |
|
|
|
|
|
export const DesktopMenuIconsCover = styled.div` |
|
|
position: fixed; |
|
|
width: ${NAVBAR_WIDTH - 1}px; |
|
|
height: 40px; |
|
|
border-bottom: 1px solid ${theme.bg.border}; |
|
|
background: #fff; |
|
|
top: 0; |
|
|
display: none; |
|
|
z-index: 1; |
|
|
|
|
|
@media (min-width: ${MIN_WIDTH_TO_EXPAND_NAVIGATION}px) { |
|
|
width: ${NAVBAR_EXPANDED_WIDTH - 1}px; |
|
|
} |
|
|
`; |
|
|
|
|
|
export const NavigationGrid = styled.div` |
|
|
display: grid; |
|
|
grid-template-columns: minmax(0, 1fr); |
|
|
align-content: start; |
|
|
grid-template-rows: auto; |
|
|
height: 100%; |
|
|
background: ${theme.bg.default}; |
|
|
border-right: 1px solid ${theme.bg.border}; |
|
|
position: fixed; |
|
|
top: 0; |
|
|
width: 100%; |
|
|
max-width: ${NAVBAR_WIDTH}px; |
|
|
overflow: hidden; |
|
|
overflow-y: auto; |
|
|
padding: 12px 0 16px; |
|
|
|
|
|
&::-webkit-scrollbar { |
|
|
width: 0px; |
|
|
height: 0px; |
|
|
background: transparent; /* make scrollbar transparent */ |
|
|
} |
|
|
|
|
|
@media (max-width: ${MEDIA_BREAK}px) { |
|
|
position: fixed; |
|
|
top: 0; |
|
|
z-index: 9999 /* on top of overlay and titlebar */; |
|
|
width: 100%; |
|
|
max-width: ${NAVBAR_EXPANDED_WIDTH}px; |
|
|
grid-gap: 0px; |
|
|
padding: 12px 0; |
|
|
} |
|
|
|
|
|
@media (min-width: ${MIN_WIDTH_TO_EXPAND_NAVIGATION}px) { |
|
|
z-index: 9999 /* on top of overlay and titlebar */; |
|
|
width: 100%; |
|
|
max-width: ${NAVBAR_EXPANDED_WIDTH}px; |
|
|
grid-gap: 0px; |
|
|
padding: 12px 0; |
|
|
} |
|
|
`; |
|
|
|
|
|
export const AvatarGrid = styled.div` |
|
|
display: grid; |
|
|
grid-template-columns: minmax(0, 1fr); |
|
|
align-content: start; |
|
|
color: ${props => (props.isActive ? theme.text.default : theme.text.alt)}; |
|
|
font-weight: ${props => (props.isActive ? '600' : '500')}; |
|
|
background: ${props => |
|
|
props.isActive ? hexa(theme.text.default, 0.04) : theme.bg.default}; |
|
|
|
|
|
a img { |
|
|
opacity: ${props => (props.isActive ? '1' : '0.4')}; |
|
|
filter: ${props => (props.isActive ? 'none' : 'grayscale(80%)')}; |
|
|
} |
|
|
|
|
|
${props => |
|
|
props.isActive && |
|
|
css` |
|
|
box-shadow: inset 3px 0 0 ${theme.text.default}; |
|
|
|
|
|
img, |
|
|
a img { |
|
|
filter: grayscale(0%) !important; |
|
|
opacity: 1 !important; |
|
|
} |
|
|
`} |
|
|
|
|
|
&:hover { |
|
|
box-shadow: inset 3px 0 0 |
|
|
${props => (props.isActive ? theme.brand.default : theme.bg.border)}; |
|
|
background: ${props => |
|
|
props.isActive ? hexa(theme.brand.default, 0.04) : theme.bg.wash}; |
|
|
color: ${props => |
|
|
props.isActive ? theme.brand.default : theme.text.secondary}; |
|
|
|
|
|
img, |
|
|
a img { |
|
|
filter: grayscale(0%); |
|
|
opacity: 1; |
|
|
} |
|
|
|
|
|
${BlackDot} { |
|
|
background-color: ${theme.warn.alt}; |
|
|
} |
|
|
} |
|
|
|
|
|
@media (max-width: ${MEDIA_BREAK}px) { |
|
|
img, |
|
|
a img { |
|
|
filter: grayscale(0%); |
|
|
opacity: 1; |
|
|
} |
|
|
} |
|
|
|
|
|
@media (min-width: ${MIN_WIDTH_TO_EXPAND_NAVIGATION}px) { |
|
|
img, |
|
|
a img { |
|
|
filter: grayscale(0%); |
|
|
opacity: 1; |
|
|
} |
|
|
} |
|
|
`; |
|
|
|
|
|
export const AvatarLink = styled(Link)` |
|
|
display: flex; |
|
|
flex-direction: column; |
|
|
align-items: center; |
|
|
justify-content: center; |
|
|
padding: 8px 12px; |
|
|
position: relative; |
|
|
|
|
|
@media (max-width: ${MEDIA_BREAK}px) { |
|
|
flex-direction: row; |
|
|
justify-content: flex-start; |
|
|
padding: 8px 20px 8px 12px; |
|
|
} |
|
|
|
|
|
@media (min-width: ${MIN_WIDTH_TO_EXPAND_NAVIGATION}px) { |
|
|
flex-direction: row; |
|
|
justify-content: flex-start; |
|
|
padding: 8px 20px 8px 12px; |
|
|
} |
|
|
`; |
|
|
|
|
|
export const Avatar = styled.img` |
|
|
width: ${props => props.size}px; |
|
|
height: ${props => props.size}px; |
|
|
border-radius: 6px; |
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16); |
|
|
transition: box-shadow 0.2s ease-in-out; |
|
|
|
|
|
&:hover { |
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); |
|
|
transition: box-shadow 0.2s ease-in-out; |
|
|
} |
|
|
`; |
|
|
|
|
|
export const Shortcut = styled.span` |
|
|
font-size: 12px; |
|
|
font-weight: 500; |
|
|
margin-top: 2px; |
|
|
text-align: center; |
|
|
margin-bottom: -4px; |
|
|
|
|
|
@media (max-width: ${MEDIA_BREAK}px) { |
|
|
display: none; |
|
|
} |
|
|
|
|
|
@media (min-width: ${MIN_WIDTH_TO_EXPAND_NAVIGATION}px) { |
|
|
display: none; |
|
|
} |
|
|
`; |
|
|
|
|
|
export const Label = styled.span` |
|
|
font-size: 15px; |
|
|
margin-left: 12px; |
|
|
padding-right: 12px; |
|
|
${Truncate}; |
|
|
display: none; |
|
|
|
|
|
@media (max-width: ${MEDIA_BREAK}px) { |
|
|
display: block; |
|
|
} |
|
|
|
|
|
@media (min-width: ${MIN_WIDTH_TO_EXPAND_NAVIGATION}px) { |
|
|
display: block; |
|
|
} |
|
|
`; |
|
|
|
|
|
export const IconWrapper = styled.div` |
|
|
display: flex; |
|
|
align-items: center; |
|
|
justify-content: center; |
|
|
border-radius: 6px; |
|
|
opacity: 1; |
|
|
position: relative; |
|
|
|
|
|
&:hover { |
|
|
color: ${theme.text.default}; |
|
|
} |
|
|
`; |
|
|
|
|
|
export const Divider = styled.div` |
|
|
height: 1px; |
|
|
background: ${theme.bg.border}; |
|
|
margin: 8px 0; |
|
|
`; |
|
|
|
|
|
|
|
|
|
|
|
export const SkipLink = styled.a` |
|
|
overflow: hidden; |
|
|
position: absolute; |
|
|
height: 1px; |
|
|
width: 1px; |
|
|
|
|
|
&:focus { |
|
|
height: auto; |
|
|
width: auto; |
|
|
} |
|
|
`; |
|
|
|