redoc/src/common-elements/fields.ts

80 lines
2.0 KiB
TypeScript
Raw Normal View History

2017-10-12 00:01:37 +03:00
import styled from 'styled-components';
import { transparentizeHex } from '../utils/styled';
2018-01-22 21:30:53 +03:00
import { PropertyNameCell } from './fields-layout';
2017-10-12 00:01:37 +03:00
export const ClickablePropertyNameCell = PropertyNameCell.extend`
cursor: pointer;
`;
export const FieldLabel = styled.span`
vertical-align: middle;
font-size: 0.929em;
line-height: 20px;
`;
export const TypePrefix = styled(FieldLabel)`
color: ${props => transparentizeHex(props.theme.colors.text, 0.4)};
`;
export const TypeName = styled(FieldLabel)`
2017-12-07 20:12:34 +03:00
color: ${props => transparentizeHex(props.theme.colors.text, 0.8)};
`;
export const TypeTitle = styled(FieldLabel)`
color: ${props => transparentizeHex(props.theme.colors.text, 0.5)};
2017-10-12 00:01:37 +03:00
`;
export const TypeFormat = TypeName;
2018-01-10 14:01:20 +03:00
export const RequiredLabel = styled(FieldLabel.withComponent('div'))`
2017-10-12 00:01:37 +03:00
color: #e53935;
2018-01-10 14:01:20 +03:00
font-size: 11px;
font-weight: normal;
margin-left: 20px;
line-height: 1;
font-weight: normal;
2017-10-12 00:01:37 +03:00
`;
2017-12-07 20:12:34 +03:00
export const RecursiveLabel = styled(FieldLabel)`
2017-10-12 00:01:37 +03:00
color: #dd9900;
font-size: 13px;
`;
export const NullableLabel = styled(FieldLabel)`
color: #3195a6;
font-size: 13px;
`;
export const PatternLabel = styled(FieldLabel)`
color: #3195a6;
&::before,
&::after {
content: '/';
font-weight: bold;
}
`;
export const ExampleValue = styled.span`
font-family: ${props => props.theme.code.fontFamily};
background-color: ${props => transparentizeHex(props.theme.colors.text, 0.02)};
border: 1px solid ${props => transparentizeHex(props.theme.colors.text, 0.15)};
margin: 0 3px;
padding: 0.4em 0.2em 0.2em;
font-size: 0.8em;
border-radius: 2px;
color: ${props => transparentizeHex(props.theme.colors.text, 0.9)};
display: inline-block;
min-width: 20px;
text-align: center;
line-height: 1;
vertical-align: middle;
`;
export const ConstraintItem = styled(FieldLabel)`
background-color: ${props => transparentizeHex(props.theme.colors.main, 0.15)};
color: ${props => transparentizeHex(props.theme.colors.main, 0.6)};
margin-right: 6px;
margin-left: 6px;
border-radius: 2px;
padding: 0 4px;
`;