PromucFlow_constructor/app/client/src/pages/UserAuth/StyledComponents.tsx

150 lines
3.7 KiB
TypeScript
Raw Normal View History

import styled from "styled-components";
2019-12-16 08:49:10 +00:00
import { Link } from "react-router-dom";
import Form from "components/editorComponents/Form";
import { Card } from "@blueprintjs/core";
feat: Renamed design system package (#19854) ## Description This PR includes changes for renaming design system package. Since we are building new package for the refactored design system components, the old package is renaming to design-system-old. Fixes #19536 ## Type of change - New feature (non-breaking change which adds functionality) - Breaking change (fix or feature that would cause existing functionality to not work as expected) ## How Has This Been Tested? - Manual - Jest - Cypress ### Test Plan > Add Testsmith test cases links that relate to this PR ### Issues raised during DP testing > Link issues raised during DP testing for better visiblity and tracking (copy link from comments dropped on this PR) ## Checklist: ### Dev activity - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] PR is being merged under a feature flag ### QA activity: - [ ] Test plan has been approved by relevant developers - [ ] Test plan has been peer reviewed by QA - [ ] Cypress test cases have been added and approved by either SDET or manual QA - [ ] Organized project review call with relevant stakeholders after Round 1/2 of QA - [ ] Added Test Plan Approved label after reveiwing all Cypress test
2023-01-23 03:50:47 +00:00
import { getTypographyByKey } from "design-system-old";
2019-12-16 08:49:10 +00:00
export const AuthContainer = styled.section`
2020-01-28 11:46:04 +00:00
position: absolute;
width: 100%;
height: ${(props) => `calc(100vh - ${props.theme.headerHeight})`};
background-color: ${(props) => props.theme.colors.auth.background};
display: flex;
flex-direction: column;
align-items: center;
overflow: auto;
`;
export const AuthCardContainer = styled.div`
display: flex;
flex-grow: 1;
flex-direction: column;
justify-content: center;
padding: ${(props) => props.theme.authCard.padding}px 0;
2019-12-16 08:49:10 +00:00
`;
export const AuthCard = styled(Card)`
display: flex;
flex-direction: column;
background-color: ${(props) => props.theme.colors.auth.cardBackground};
padding: ${(props) => props.theme.spaces[15]}px 64px;
width: ${(props) => props.theme.authCard.width}px;
border: none;
box-shadow: none;
border-radius: 0;
h1 {
text-align: center;
padding: 0;
margin: 0;
${getTypographyByKey("cardHeader")}
color: ${(props) => props.theme.colors.auth.headingText};
}
& .form-message-container {
width: ${(props) => props.theme.authCard.formMessageWidth}px;
align-self: center;
text-align: center;
}
.form-message-container ~ .form-message-container {
margin-top: ${(props) => props.theme.spaces[4]}px;
}
& > div {
margin-bottom: ${(props) => props.theme.spaces[14]}px;
}
& > div:last-child,
& > div:empty {
margin-bottom: 0;
2019-12-16 08:49:10 +00:00
}
`;
export const AuthCardHeader = styled.header`
& {
h1 {
2020-12-24 04:32:25 +00:00
font-size: ${(props) => props.theme.fontSizes[6]}px;
white-space: nowrap;
font-weight: 500;
2019-12-16 08:49:10 +00:00
}
h5 {
2020-12-24 04:32:25 +00:00
font-size: ${(props) => props.theme.fontSizes[4]}px;
2019-12-16 08:49:10 +00:00
}
2020-12-24 04:32:25 +00:00
margin-bottom: ${(props) => props.theme.authCard.dividerSpacing}px;
2019-12-16 08:49:10 +00:00
}
`;
export const AuthCardNavLink = styled(Link)`
border-bottom: 1px solid transparent;
color: ${(props) => props.theme.colors.auth.link};
&:hover {
border-bottom: 1px solid ${(props) => props.theme.colors.auth.link};
text-decoration: none;
color: ${(props) => props.theme.colors.auth.link};
}
`;
2019-12-16 08:49:10 +00:00
export const AuthCardFooter = styled.footer`
display: flex;
width: 100%;
justify-content: space-evenly;
align-items: baseline;
2020-12-24 04:32:25 +00:00
margin-top: ${(props) => props.theme.authCard.dividerSpacing}px;
2019-12-16 08:49:10 +00:00
`;
export const AuthCardBody = styled.div`
& a {
2020-12-24 04:32:25 +00:00
margin-top: ${(props) => props.theme.spaces[8]}px;
font-size: ${(props) => props.theme.fontSizes[2]}px;
2019-12-16 08:49:10 +00:00
}
`;
export const SpacedForm = styled(Form)``;
2019-12-16 08:49:10 +00:00
export const SpacedSubmitForm = styled.form`
2020-02-24 09:35:11 +00:00
& a {
2020-12-24 04:32:25 +00:00
font-size: ${(props) => props.theme.fontSizes[3]}px;
2020-02-24 09:35:11 +00:00
}
&:only-child {
margin-right: 0;
}
2019-12-16 08:49:10 +00:00
`;
export const FormActions = styled.div`
display: flex;
2020-02-24 09:35:11 +00:00
& button {
flex: 1;
}
2019-12-16 08:49:10 +00:00
justify-content: space-between;
align-items: baseline;
margin-top: ${(props) => props.theme.spaces[5]}px;
2019-12-16 08:49:10 +00:00
& > label {
2020-12-24 04:32:25 +00:00
margin-right: ${(props) => props.theme.spaces[11]}px;
2019-12-16 08:49:10 +00:00
}
`;
export const SignUpLinkSection = styled.div`
${getTypographyByKey("cardSubheader")}
color: ${(props) => props.theme.colors.auth.text};
text-align: center;
`;
export const ForgotPasswordLink = styled.div`
${getTypographyByKey("cardSubheader")}
color: ${(props) => props.theme.colors.auth.text};
text-align: center;
& a {
color: ${(props) => props.theme.colors.auth.text};
}
`;
export const FormMessagesContainer = styled.div`
display: flex;
flex-direction: column;
`;
export const BlackAuthCardNavLink = styled(AuthCardNavLink)`
color: #000;
border-bottom: 1px solid transparent;
&:hover {
color: #000;
border-bottom: 1px solid #000;
}
`;