@ -30,10 +30,42 @@ 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>
|
||||||
|
<CardHeader white radius>
|
||||||
<Padding left={2} right={2}>
|
<Padding left={2} right={2}>
|
||||||
<Flex full alignCenter>
|
<Flex full alignCenter>
|
||||||
<Margin right={2}>
|
<Margin right={2}>
|
||||||
@ -49,19 +81,19 @@ export const Image = ({ name, os, version, type }) => (
|
|||||||
</Padding>
|
</Padding>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<Flex justifyBetween>
|
<Flex justifyBetween>
|
||||||
<Padding left={2} top={2} bottom={2}>
|
<Content left={2} top={2} bottom={2}>
|
||||||
<Flex justifyBetween>
|
<Max justifyBetween>
|
||||||
<Flex>
|
<Max alignCenter>
|
||||||
<Flex>{version}</Flex>
|
<Flex>{version}</Flex>
|
||||||
<Margin left={1}>
|
<DividerContainer left={2}>
|
||||||
<Divider width={remcalc(1)} height="100%" />
|
<Divider width={remcalc(1)} height="100%" />
|
||||||
</Margin>
|
</DividerContainer>
|
||||||
<Padding left={2}>{ImageType[type]}</Padding>
|
<Type left={2}>{ImageType[type]}</Type>
|
||||||
</Flex>
|
</Max>
|
||||||
</Flex>
|
</Max>
|
||||||
</Padding>
|
</Content>
|
||||||
<PopoverContainer clickable>
|
<PopoverContainer clickable>
|
||||||
<FlexItem basis={remcalc(48)}>
|
<Actions>
|
||||||
<PopoverTarget box style={{ borderLeft: '1px solid #D8D8D8' }}>
|
<PopoverTarget box style={{ borderLeft: '1px solid #D8D8D8' }}>
|
||||||
<ActionsIcon />
|
<ActionsIcon />
|
||||||
</PopoverTarget>
|
</PopoverTarget>
|
||||||
@ -74,20 +106,23 @@ export const Image = ({ name, os, version, type }) => (
|
|||||||
Remove
|
Remove
|
||||||
</PopoverItem>
|
</PopoverItem>
|
||||||
</Popover>
|
</Popover>
|
||||||
</FlexItem>
|
</Actions>
|
||||||
</PopoverContainer>
|
</PopoverContainer>
|
||||||
</Flex>
|
</Flex>
|
||||||
</Card>
|
</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>
|
||||||
|
@ -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>
|
||||||
|
@ -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);
|
||||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
@ -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;
|
||||||
|
@ -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;
|
||||||
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
@ -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;
|
||||||
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
@ -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;
|
||||||
|
@ -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;
|
||||||
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
@ -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;
|
||||||
|
@ -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;
|
||||||
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 122 KiB |
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@ -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;
|
||||||
|
@ -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;
|
||||||
|
@ -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;
|
||||||
|
@ -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};
|
||||||
|
@ -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;
|
||||||
|
@ -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}
|
||||||
|
@ -114,6 +114,7 @@ const style = css`
|
|||||||
|
|
||||||
${is('fluid')`
|
${is('fluid')`
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
min-width: 100%;
|
||||||
`};
|
`};
|
||||||
|
|
||||||
${is('xSmall')`
|
${is('xSmall')`
|
||||||
|
@ -14,6 +14,14 @@ const StyledLabel = Label.extend`
|
|||||||
${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 => {
|
||||||
|
@ -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`
|
||||||
|