added badge to make the severity display more accessible

This commit is contained in:
codebyalex 2019-04-11 22:46:40 -04:00
parent 4cb4de8da0
commit bdbd1534e9
2 changed files with 20 additions and 9 deletions

View File

@ -1,7 +1,6 @@
import React, { FunctionComponent } from 'react';
import { styled } from '@storybook/theming';
import { Icons } from '@storybook/components';
import { Badge, Icons } from '@storybook/components';
import { CheckResult } from 'axe-core';
const impactColors = {
@ -19,10 +18,22 @@ const List = styled.div({
fontWeight: '400',
} as any);
const Item = styled.div({
const Item = styled.div(() => {
return `
display: flex;
flex-direction: row;
margin-bottom: 6px;
@media (max-width: 665px) {
display: block;
}
`;
});
const BadgeWrapper = styled.div({
marginBottom: '5px',
marginLeft: '5px',
display: 'flex',
flexDirection: 'row',
marginBottom: '6px',
});
const Message = styled.div({
@ -47,9 +58,9 @@ interface RuleProps {
const Rule: FunctionComponent<RuleProps> = ({ rule, passes }) => (
<Item>
<Status passes={passes || undefined} impact={rule.impact}>
{passes ? <Icons icon="check" /> : <Icons icon="cross" />}
</Status>
<BadgeWrapper>
<Badge status={passes ? "positive" : "negative"}>{rule.impact}</Badge>
</BadgeWrapper>
<Message>{rule.message}</Message>
</Item>
);

View File

@ -3,9 +3,9 @@ import { styled, css } from '@storybook/theming';
const BadgeWrapper = styled.div`
display: inline-block;
vertical-align: top;
font-size: 11px;
line-height: 12px;
align-self: center;
padding: 4px 12px;
border-radius: 3em;
font-weight: ${props => props.theme.typography.weight.bold};