fix(images): fix small bugs from QA

fixes #1202
This commit is contained in:
Sara Vieira 2018-02-13 20:33:03 +00:00 committed by Sérgio Ramos
parent 29fc12d4dd
commit 4dc7b9179b
58 changed files with 163 additions and 69 deletions

View File

@ -30,64 +30,99 @@ const A = styled(Anchor)`
font-weight: ${props => props.theme.font.weight.semibold}; font-weight: ${props => props.theme.font.weight.semibold};
`; `;
const CardAnchor = styled(Anchor)`
color: ${props => props.theme.text};
text-decoration: none;
`;
const Type = styled(Margin)`
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
`;
const Content = styled(Padding)`
max-width: calc(100% - 48px);
overflow: hidden;
`;
const Max = styled(Flex)`
max-width: 100%;
height: 100%;
`;
const DividerContainer = styled(Margin)`
height: 100%;
`;
const Actions = styled(Flex)`
width: 48px;
height: 48px;
min-width: 48px;
`;
export const Image = ({ name, os, version, type }) => ( export const Image = ({ name, os, version, type }) => (
<Margin bottom={3}> <Margin bottom={3}>
<Card> <CardAnchor to={`/${name}`} component={Link}>
<CardHeader white> <Card radius>
<Padding left={2} right={2}> <CardHeader white radius>
<Flex full alignCenter> <Padding left={2} right={2}>
<Margin right={2}> <Flex full alignCenter>
{React.createElement(OS[os], { <Margin right={2}>
width: '24', {React.createElement(OS[os], {
height: '24' width: '24',
})} height: '24'
</Margin> })}
<A to={`/${name}`} component={Link}>
{name}
</A>
</Flex>
</Padding>
</CardHeader>
<Flex justifyBetween>
<Padding left={2} top={2} bottom={2}>
<Flex justifyBetween>
<Flex>
<Flex>{version}</Flex>
<Margin left={1}>
<Divider width={remcalc(1)} height="100%" />
</Margin> </Margin>
<Padding left={2}>{ImageType[type]}</Padding> <A to={`/${name}`} component={Link}>
{name}
</A>
</Flex> </Flex>
</Flex> </Padding>
</Padding> </CardHeader>
<PopoverContainer clickable> <Flex justifyBetween>
<FlexItem basis={remcalc(48)}> <Content left={2} top={2} bottom={2}>
<PopoverTarget box style={{ borderLeft: '1px solid #D8D8D8' }}> <Max justifyBetween>
<ActionsIcon /> <Max alignCenter>
</PopoverTarget> <Flex>{version}</Flex>
<Popover placement="bottom"> <DividerContainer left={2}>
<PopoverItem disabled={false} onClick={() => {}}> <Divider width={remcalc(1)} height="100%" />
Create Instance </DividerContainer>
</PopoverItem> <Type left={2}>{ImageType[type]}</Type>
<PopoverDivider /> </Max>
<PopoverItem disabled={false} onClick={() => {}}> </Max>
Remove </Content>
</PopoverItem> <PopoverContainer clickable>
</Popover> <Actions>
</FlexItem> <PopoverTarget box style={{ borderLeft: '1px solid #D8D8D8' }}>
</PopoverContainer> <ActionsIcon />
</Flex> </PopoverTarget>
</Card> <Popover placement="bottom">
<PopoverItem disabled={false} onClick={() => {}}>
Create Instance
</PopoverItem>
<PopoverDivider />
<PopoverItem disabled={false} onClick={() => {}}>
Remove
</PopoverItem>
</Popover>
</Actions>
</PopoverContainer>
</Flex>
</Card>
</CardAnchor>
</Margin> </Margin>
); );
export const Filters = () => ( export const Filters = ({ selected }) => (
<Fragment> <Fragment>
<FormGroup name="image-type" value="all" field={Field} type="radio"> <FormGroup name="image-type" value="all" field={Field} type="radio">
<Radio noMargin> <Radio noMargin>
<Flex alignCenter> <Flex alignCenter>
<Margin right={2}> <Margin right={2}>
<FormLabel>All</FormLabel> <FormLabel big normal={selected !== 'all'}>
All
</FormLabel>
</Margin> </Margin>
</Flex> </Flex>
</Radio> </Radio>
@ -101,7 +136,9 @@ export const Filters = () => (
<Radio noMargin> <Radio noMargin>
<Flex alignCenter> <Flex alignCenter>
<Margin right={2}> <Margin right={2}>
<FormLabel>Virtual machines</FormLabel> <FormLabel big normal={selected !== 'hardware-virtual-machine'}>
Virtual machines
</FormLabel>
</Margin> </Margin>
</Flex> </Flex>
</Radio> </Radio>
@ -115,7 +152,9 @@ export const Filters = () => (
<Radio noMargin> <Radio noMargin>
<Flex alignCenter> <Flex alignCenter>
<Margin right={2}> <Margin right={2}>
<FormLabel>Infrastructure container</FormLabel> <FormLabel big normal={selected !== 'infrastructure-container'}>
Infrastructure container
</FormLabel>
</Margin> </Margin>
</Flex> </Flex>
</Radio> </Radio>

View File

@ -19,7 +19,9 @@ import {
CopiableField, CopiableField,
DuplicateIcon, DuplicateIcon,
DeleteIcon, DeleteIcon,
DotIcon DotIcon,
FormLabel,
Input
} from 'joyent-ui-toolkit'; } from 'joyent-ui-toolkit';
import { ImageType, OS } from '@root/constants'; import { ImageType, OS } from '@root/constants';
@ -139,10 +141,17 @@ export default withTheme(({ theme = {}, ...image }) => (
</Margin> </Margin>
<CopiableField text={(image.id || '').split('-')[0]} label="ID" /> <CopiableField text={(image.id || '').split('-')[0]} label="ID" />
<CopiableField text={image.id} label="UUID" /> <CopiableField text={image.id} label="UUID" />
<CopiableField <Row>
text={titleCase(image.os)} <Col xs={12} md={7}>
label="Operating system" <FormLabel>Operating system</FormLabel>
/> <Input
monospace
onBlur={null}
fluid
value={titleCase(image.os)}
/>
</Col>
</Row>
</Padding> </Padding>
</CardOutlet> </CardOutlet>
</Card> </Card>

View File

@ -32,7 +32,8 @@ export const List = ({
allImages = [], allImages = [],
loading = false, loading = false,
error = null, error = null,
history history,
typeValue
}) => ( }) => (
<ViewContainer main> <ViewContainer main>
<Divider height={remcalc(30)} transparent /> <Divider height={remcalc(30)} transparent />
@ -63,7 +64,11 @@ export const List = ({
form={TOGGLE_FORM_DETAILS} form={TOGGLE_FORM_DETAILS}
initialValues={{ 'image-type': 'all' }} initialValues={{ 'image-type': 'all' }}
> >
{props => (allImages.length ? <Filters {...props} /> : null)} {props =>
allImages.length ? (
<Filters selected={typeValue} {...props} />
) : null
}
</ReduxForm> </ReduxForm>
</Margin> </Margin>
<Row> <Row>
@ -124,7 +129,8 @@ export default compose(
return true; return true;
} }
}), }),
allImages: images allImages: images,
typeValue
}; };
}) })
)(List); )(List);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -798,6 +798,7 @@ exports[`renders <Hostname values /> without throwing 1`] = `
cursor: not-allowed; cursor: not-allowed;
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;

View File

@ -3042,6 +3042,7 @@ exports[`renders <KeyValue input="textarea" /> without throwing 1`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -1094,10 +1094,6 @@ exports[`renders <Package /> without throwing 1`] = `
align-items: center; align-items: center;
} }
.c3 label {
font-weight: 400;
}
.c1 { .c1 {
border-width: 0.0625rem; border-width: 0.0625rem;
border-style: solid; border-style: solid;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -769,6 +769,7 @@ exports[`renders <AddForm /> without throwing 1`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -1833,6 +1834,7 @@ exports[`renders <EditForm /> without throwing 1`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;

View File

@ -860,6 +860,7 @@ exports[`renders <Summary /> without throwing 1`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
@ -938,6 +939,7 @@ exports[`renders <Summary /> without throwing 1`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;
@ -2822,6 +2824,7 @@ exports[`renders <Summary instance /> without throwing 1`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;
@ -4883,6 +4886,7 @@ exports[`renders <Summary instance /> without throwing 2`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;
@ -6832,6 +6836,7 @@ exports[`renders <Summary starting stopping rebooting removing /> without throwi
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
@ -6910,6 +6915,7 @@ exports[`renders <Summary starting stopping rebooting removing /> without throwi
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;
@ -8846,6 +8852,7 @@ exports[`renders <Summary state /> without throwing 1`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
@ -8924,6 +8931,7 @@ exports[`renders <Summary state /> without throwing 1`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;
@ -10808,6 +10816,7 @@ exports[`renders <Summary state /> without throwing 2`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
@ -10886,6 +10895,7 @@ exports[`renders <Summary state /> without throwing 2`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;
@ -12606,6 +12616,7 @@ exports[`renders <Summary state /> without throwing 3`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
@ -12684,6 +12695,7 @@ exports[`renders <Summary state /> without throwing 3`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -1186,6 +1186,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -3124,6 +3125,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -4241,6 +4243,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -5629,6 +5632,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -6765,6 +6769,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;

View File

@ -849,6 +849,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -2039,6 +2040,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -3873,6 +3875,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -5172,6 +5175,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -6509,6 +6513,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -7780,6 +7785,7 @@ Array [
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 KiB

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 KiB

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -1622,6 +1622,7 @@ exports[`renders <Cns hostnames /> without throwing 1`] = `
cursor: not-allowed; cursor: not-allowed;
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;
@ -4069,6 +4070,7 @@ exports[`renders <Cns mutating /> without throwing 1`] = `
cursor: not-allowed; cursor: not-allowed;
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;

View File

@ -1427,6 +1427,7 @@ exports[`renders <Metadata addOpen /> without throwing 1`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;
@ -4065,6 +4066,7 @@ exports[`renders <Metadata metadata /> without throwing 1`] = `
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
text-overflow: ellipsis; text-overflow: ellipsis;
resize: vertical; resize: vertical;
font-size: 0.9375rem; font-size: 0.9375rem;

View File

@ -1928,6 +1928,7 @@ exports[`renders <Summary starting stopping rebooting removing /> without throwi
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;
@ -4027,6 +4028,7 @@ exports[`renders <Summary starting stopping rebooting removing /> without throwi
color: rgba(73,73,73,1); color: rgba(73,73,73,1);
font-family: "Roboto Mono",monospace; font-family: "Roboto Mono",monospace;
width: 100%; width: 100%;
min-width: 100%;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: normal !important; line-height: normal !important;
font-style: normal; font-style: normal;

View File

@ -44,6 +44,10 @@ export const BaseCard = styled.div`
background-color: ${props => props.theme.white}; background-color: ${props => props.theme.white};
border-color: ${props => props.theme.grey}; border-color: ${props => props.theme.grey};
${is('radius')`
border-radius: ${remcalc(4)};
`}
${is('shadow')` ${is('shadow')`
/* primary */ /* primary */
box-shadow: ${props => props.theme.shadows.bottomShadow}; box-shadow: ${props => props.theme.shadows.bottomShadow};

View File

@ -17,6 +17,12 @@ const BaseHeader = BaseCard.extend`
margin: ${remcalc(-1)} ${remcalc(-1)} 0 ${remcalc(-1)}; margin: ${remcalc(-1)} ${remcalc(-1)} 0 ${remcalc(-1)};
${is('radius')`
border-radius: ${remcalc(4)};
border-bottom-right-radius: ${remcalc(0)};
border-bottom-left-radius: ${remcalc(0)};
`}
${is('parentCollapsed')` ${is('parentCollapsed')`
margin: ${remcalc(-1)}; margin: ${remcalc(-1)};
box-shadow: none; box-shadow: none;

View File

@ -525,10 +525,6 @@ exports[`Form Radio 1`] = `
align-items: center; align-items: center;
} }
.c0 label {
font-weight: 400;
}
<li <li
className="c0" className="c0"
disabled={false} disabled={false}

View File

@ -114,6 +114,7 @@ const style = css`
${is('fluid')` ${is('fluid')`
width: 100%; width: 100%;
min-width: 100%;
`}; `};
${is('xSmall')` ${is('xSmall')`

View File

@ -11,9 +11,17 @@ const StyledLabel = Label.extend`
white-space: pre; white-space: pre;
font-size: ${remcalc(13)}; font-size: ${remcalc(13)};
${is('disabled')` ${is('disabled') `
color: ${props => props.theme.grey}; color: ${props => props.theme.grey};
`}; `};
${is('big') `
font-size: ${remcalc(15)};
`};
${is('normal') `
font-weight: ${props => props.theme.font.weight.normal};
`};
`; `;
export default props => { export default props => {

View File

@ -10,10 +10,6 @@ const Li = styled.li`
list-style-type: none; list-style-type: none;
display: flex; display: flex;
align-items: center; align-items: center;
label {
font-weight: 400;
}
`; `;
const Ul = styled.ul` const Ul = styled.ul`