redoc/src/common-elements/tabs.ts

101 lines
2.3 KiB
TypeScript
Raw Normal View History

import { darken } from 'polished';
import { Tabs as ReactTabs } from 'react-tabs';
import styled from '../styled-components';
2017-10-12 00:01:37 +03:00
export { Tab, TabList, TabPanel } from 'react-tabs';
export const Tabs = styled(ReactTabs)`
> ul {
list-style: none;
padding: 0;
margin: 0;
2018-05-28 21:50:26 +03:00
margin: 0 -5px;
2017-10-12 00:01:37 +03:00
> li {
padding: 5px 10px;
display: inline-block;
2018-05-28 21:50:26 +03:00
background-color: ${({ theme }) => darken(0.05, theme.rightPanel.backgroundColor)};
2018-01-24 13:32:25 +03:00
border-bottom: 1px solid rgba(0, 0, 0, 0.5);
2017-10-12 00:01:37 +03:00
cursor: pointer;
text-align: center;
outline: none;
color: ${({ theme }) => darken(theme.colors.tonalOffset, theme.rightPanel.textColor)};
2018-05-28 21:50:26 +03:00
margin: 5px;
border: 1px solid ${({ theme }) => darken(0.1, theme.rightPanel.backgroundColor)};
2018-05-28 21:50:26 +03:00
border-radius: 5px;
min-width: 60px;
font-size: 0.9em;
font-weight: bold;
2017-10-12 00:01:37 +03:00
&.react-tabs__tab--selected {
2018-07-19 13:05:53 +03:00
color: ${props => props.theme.colors.text.primary};
background: ${({ theme }) => theme.rightPanel.textColor};
2017-10-12 00:01:37 +03:00
}
&:only-child {
flex: none;
min-width: 100px;
}
&.tab-success {
2018-07-19 13:05:53 +03:00
color: ${props => props.theme.colors.responses.success.color};
2017-10-12 00:01:37 +03:00
}
&.tab-redirect {
2018-07-19 13:05:53 +03:00
color: ${props => props.theme.colors.responses.redirect.color};
2017-10-12 00:01:37 +03:00
}
&.tab-info {
2018-07-19 13:05:53 +03:00
color: ${props => props.theme.colors.responses.info.color};
2017-10-12 00:01:37 +03:00
}
&.tab-error {
2018-07-19 13:05:53 +03:00
color: ${props => props.theme.colors.responses.error.color};
2017-10-12 00:01:37 +03:00
}
}
}
> .react-tabs__tab-panel {
background: ${({ theme }) => theme.codeSample.backgroundColor};
2017-10-12 00:01:37 +03:00
& > div,
& > pre {
padding: 20px;
margin: 0;
}
}
`;
export const SmallTabs = styled(Tabs)`
2017-10-12 00:01:37 +03:00
> ul {
display: block;
> li {
2018-05-28 21:50:26 +03:00
padding: 2px 5px;
min-width: auto;
margin: 0 15px 0 0;
font-size: 13px;
font-weight: normal;
2017-10-12 00:01:37 +03:00
border-bottom: 1px dashed;
color: ${({ theme }) => darken(theme.colors.tonalOffset, theme.rightPanel.textColor)};
2018-05-28 21:50:26 +03:00
border-radius: 0;
background: none;
2017-10-12 00:01:37 +03:00
&:last-child {
margin-right: 0;
}
&.react-tabs__tab--selected {
color: ${({ theme }) => theme.rightPanel.textColor};
2018-05-28 21:50:26 +03:00
background: none;
2017-10-12 00:01:37 +03:00
}
}
}
> .react-tabs__tab-panel {
& > div,
& > pre {
padding: 10px 0;
margin: 0;
}
}
`;