2021-10-30 01:10:20 +08:00
|
|
|
import styled from 'styled-components';
|
|
|
|
import { smallOnly } from '/imports/ui/stylesheets/styled-components/breakpoints';
|
|
|
|
import { borderSize, borderSizeLarge } from '/imports/ui/stylesheets/styled-components/general';
|
|
|
|
import {
|
|
|
|
colorWhite,
|
|
|
|
colorLink,
|
2021-11-17 01:15:02 +08:00
|
|
|
colorGrayDark,
|
2021-10-30 01:10:20 +08:00
|
|
|
colorGrayLighter,
|
|
|
|
colorGrayLabel,
|
|
|
|
colorPrimary,
|
|
|
|
} from '/imports/ui/stylesheets/styled-components/palette';
|
|
|
|
import { HeaderElipsis } from '/imports/ui/stylesheets/styled-components/placeholders';
|
|
|
|
import Button from '/imports/ui/components/button/component';
|
|
|
|
import Modal from '/imports/ui/components/modal/simple/component';
|
|
|
|
|
|
|
|
const WriterMenuModal = styled(Modal)`
|
|
|
|
padding: 1.5rem;
|
|
|
|
min-height: 20rem;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const Header = styled.header`
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
line-height: 2rem;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const Title = styled(HeaderElipsis)`
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 1.3rem;
|
2021-11-17 01:15:02 +08:00
|
|
|
color: ${colorGrayDark};
|
2021-10-30 01:10:20 +08:00
|
|
|
white-space: normal;
|
|
|
|
flex: 1;
|
|
|
|
margin: 0;
|
|
|
|
align-self: flex-end;
|
|
|
|
|
|
|
|
@media ${smallOnly} {
|
|
|
|
font-size: 1rem;
|
|
|
|
padding: 0 1rem;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const Content = styled.div`
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: .3rem 0 0.5rem 0;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const StartBtn = styled(Button)`
|
|
|
|
align-self: center;
|
|
|
|
margin: 0;
|
|
|
|
width: 40%;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 20px;
|
|
|
|
color: ${colorWhite} !important;
|
|
|
|
background-color: ${colorLink} !important;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > i {
|
|
|
|
color: #3c5764;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const WriterMenuSelect = styled.div`
|
|
|
|
width: 40%;
|
|
|
|
|
|
|
|
& > select {
|
|
|
|
background-color: ${colorWhite};
|
|
|
|
border: ${borderSize} solid ${colorWhite};
|
|
|
|
border-radius: ${borderSize};
|
|
|
|
border-bottom: 0.1rem solid ${colorGrayLighter};
|
|
|
|
color: ${colorGrayLabel};
|
|
|
|
width: 100%;
|
|
|
|
height: 1.75rem;
|
|
|
|
padding: 1px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
outline: transparent;
|
|
|
|
outline-style: dotted;
|
|
|
|
outline-width: ${borderSize};
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
box-shadow: inset 0 0 0 ${borderSizeLarge} ${colorPrimary};
|
|
|
|
border-radius: ${borderSize};
|
|
|
|
outline: transparent;
|
|
|
|
outline-width: ${borderSize};
|
|
|
|
outline-style: solid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
WriterMenuModal,
|
|
|
|
Header,
|
|
|
|
Title,
|
|
|
|
Content,
|
|
|
|
StartBtn,
|
|
|
|
WriterMenuSelect,
|
|
|
|
};
|