mirror of
https://github.com/yldio/copilot.git
synced 2024-11-28 06:00:06 +02:00
fix(cp-frontend): polish instance list (status) and service toggle
This commit is contained in:
parent
3c8b2b0c8f
commit
b151b4fd4a
0
packages/cp-frontend/.yarnclean
Normal file
0
packages/cp-frontend/.yarnclean
Normal file
@ -79,17 +79,31 @@ const StyledCard = Card.extend`
|
|||||||
|
|
||||||
& [name="card-options"] > button {
|
& [name="card-options"] > button {
|
||||||
background-color: ${props => props.theme.background};
|
background-color: ${props => props.theme.background};
|
||||||
}`
|
}`};
|
||||||
}
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StatusContainer = styled.div`
|
const StatusContainer = styled.div`
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
justify-content: flex-start;
|
||||||
flex-wrap: nowrap;
|
align-items: center;
|
||||||
justify-content: center;
|
`;
|
||||||
align-content: center;
|
|
||||||
|
const HealthyIconStyled = styled(HealthyIcon)`
|
||||||
|
transform: translateY(-50%);
|
||||||
|
position: absolute;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const CardInfoStyled = styled.div`
|
||||||
|
height: 100%;
|
||||||
|
& > div {
|
||||||
|
min-width: 115px;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Status = styled.div`
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const InstanceCard = ({
|
const InstanceCard = ({
|
||||||
@ -107,7 +121,7 @@ const InstanceCard = ({
|
|||||||
);
|
);
|
||||||
|
|
||||||
const label = (instance.healthy || 'UNKNOWN').toLowerCase();
|
const label = (instance.healthy || 'UNKNOWN').toLowerCase();
|
||||||
const icon = <HealthyIcon healthy={instance.healthy} />;
|
const icon = <HealthyIconStyled healthy={instance.healthy} />;
|
||||||
|
|
||||||
const handleHealthMouseOver = evt => {
|
const handleHealthMouseOver = evt => {
|
||||||
onHealthMouseOver(evt, instance);
|
onHealthMouseOver(evt, instance);
|
||||||
@ -126,6 +140,7 @@ const InstanceCard = ({
|
|||||||
<CardView>
|
<CardView>
|
||||||
<CardTitle>{instance.name}</CardTitle>
|
<CardTitle>{instance.name}</CardTitle>
|
||||||
<CardDescription>
|
<CardDescription>
|
||||||
|
<CardInfoStyled>
|
||||||
<CardInfo
|
<CardInfo
|
||||||
icon={icon}
|
icon={icon}
|
||||||
iconPosition="left"
|
iconPosition="left"
|
||||||
@ -134,16 +149,17 @@ const InstanceCard = ({
|
|||||||
onMouseOver={handleHealthMouseOver}
|
onMouseOver={handleHealthMouseOver}
|
||||||
onMouseOut={handleMouseOut}
|
onMouseOut={handleMouseOut}
|
||||||
/>
|
/>
|
||||||
|
</CardInfoStyled>
|
||||||
</CardDescription>
|
</CardDescription>
|
||||||
<CardDescription>
|
<CardDescription>
|
||||||
<StatusContainer
|
<StatusContainer
|
||||||
onMouseOver={handleStatusMouseOver}
|
onMouseOver={handleStatusMouseOver}
|
||||||
onMouseOut={handleMouseOut}
|
onMouseOut={handleMouseOut}
|
||||||
>
|
>
|
||||||
<Label>
|
<Status>
|
||||||
<Dot {...statusProps} />
|
<Dot {...statusProps} />
|
||||||
{titleCase(instance.status)}
|
<Label>{titleCase(instance.status)}</Label>
|
||||||
</Label>
|
</Status>
|
||||||
</StatusContainer>
|
</StatusContainer>
|
||||||
</CardDescription>
|
</CardDescription>
|
||||||
</CardView>
|
</CardView>
|
||||||
|
@ -24,9 +24,7 @@ import {
|
|||||||
Anchor
|
Anchor
|
||||||
} from 'joyent-ui-toolkit';
|
} from 'joyent-ui-toolkit';
|
||||||
|
|
||||||
const StyledCardHeader = styled(CardHeader)`
|
const StyledCardHeader = styled(CardHeader)`position: relative;`;
|
||||||
position: relative;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const TitleInnerContainer = styled.div`
|
const TitleInnerContainer = styled.div`
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -82,15 +80,18 @@ const GraphTitle = Small.extend`
|
|||||||
color: #494949;
|
color: #494949;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const HealthyIconStyled = styled(HealthyIcon)`
|
||||||
|
/* I SAID NO PRETTIER */
|
||||||
|
display: flex;
|
||||||
|
`;
|
||||||
|
|
||||||
const ChildTitle = styled(CardTitle)`
|
const ChildTitle = styled(CardTitle)`
|
||||||
padding: 0;
|
padding: 0;
|
||||||
flex: 0 1 auto;
|
flex: 0 1 auto;
|
||||||
align-self: stretch;
|
align-self: stretch;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const ServiceView = styled(CardView)`
|
const ServiceView = styled(CardView)`height: ${remcalc(120)};`;
|
||||||
height: ${remcalc(120)};
|
|
||||||
`;
|
|
||||||
|
|
||||||
const StatusContainer = styled(CardDescription)`
|
const StatusContainer = styled(CardDescription)`
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -170,7 +171,7 @@ const ServiceListItem = ({
|
|||||||
if (service.instancesActive) {
|
if (service.instancesActive) {
|
||||||
const { total, healthy } = service.instancesHealthy;
|
const { total, healthy } = service.instancesHealthy;
|
||||||
const iconHealthy = total === healthy ? 'HEALTHY' : 'NOT HEALTHY';
|
const iconHealthy = total === healthy ? 'HEALTHY' : 'NOT HEALTHY';
|
||||||
const icon = <HealthyIcon healthy={iconHealthy} />;
|
const icon = <HealthyIconStyled healthy={iconHealthy} />;
|
||||||
const label = `${healthy} of ${total} healthy`;
|
const label = `${healthy} of ${total} healthy`;
|
||||||
|
|
||||||
healthyInfo = (
|
healthyInfo = (
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import styled from 'styled-components';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { compose } from 'react-apollo';
|
import { compose } from 'react-apollo';
|
||||||
import { Col, Row } from 'react-styled-flexboxgrid';
|
import { Col, Row } from 'react-styled-flexboxgrid';
|
||||||
@ -12,14 +13,16 @@ import { FormGroup, Toggle, ToggleList, Legend } from 'joyent-ui-toolkit';
|
|||||||
|
|
||||||
const StyledLegend = Legend.extend`
|
const StyledLegend = Legend.extend`
|
||||||
float: left;
|
float: left;
|
||||||
padding-top: ${unitcalc(2)};
|
margin-bottom: ${unitcalc(1.5)};
|
||||||
margin-right: ${unitcalc(1.5)};
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const PaddedRow = Row.extend`
|
const PaddedRow = Row.extend`margin-bottom: ${remcalc(18)};`;
|
||||||
margin-bottom: ${remcalc(18)}
|
|
||||||
`;
|
|
||||||
|
|
||||||
|
const ToggleStyled = styled(Toggle)`
|
||||||
|
& + label {
|
||||||
|
padding: ${remcalc(16)};
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
export const ServicesMenu = ({ location: { pathname }, history: { push } }) => {
|
export const ServicesMenu = ({ location: { pathname }, history: { push } }) => {
|
||||||
const toggleValue = pathname.split('-').pop();
|
const toggleValue = pathname.split('-').pop();
|
||||||
@ -38,15 +41,15 @@ export const ServicesMenu = ({ location: { pathname }, history: { push } }) => {
|
|||||||
<Title>Services</Title>
|
<Title>Services</Title>
|
||||||
<PaddedRow>
|
<PaddedRow>
|
||||||
<Col xs={5}>
|
<Col xs={5}>
|
||||||
|
<StyledLegend>Show</StyledLegend>
|
||||||
<FormGroup name="service-view" value={toggleValue}>
|
<FormGroup name="service-view" value={toggleValue}>
|
||||||
<StyledLegend>View</StyledLegend>
|
|
||||||
<ToggleList>
|
<ToggleList>
|
||||||
<Toggle value="list" onChange={handleToggle}>
|
<ToggleStyled value="list" onChange={handleToggle}>
|
||||||
List
|
List
|
||||||
</Toggle>
|
</ToggleStyled>
|
||||||
<Toggle value="topology" onChange={handleToggle}>
|
<ToggleStyled value="topology" onChange={handleToggle}>
|
||||||
Topology
|
Topology
|
||||||
</Toggle>
|
</ToggleStyled>
|
||||||
</ToggleList>
|
</ToggleList>
|
||||||
</FormGroup>
|
</FormGroup>
|
||||||
</Col>
|
</Col>
|
||||||
|
@ -41,14 +41,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: ;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4::-moz-focus-inner,
|
.c4::-moz-focus-inner,
|
||||||
@ -69,12 +64,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
.c4:focus {
|
.c4:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4:hover {
|
.c4:hover {
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,8 +75,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
.c4:active:focus {
|
.c4:active:focus {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4[disabled] {
|
.c4[disabled] {
|
||||||
@ -92,23 +82,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:active,
|
|
||||||
.c4:active:hover,
|
|
||||||
.c4:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 + button {
|
.c4 + button {
|
||||||
margin-left: 1.25rem;
|
margin-left: 1.25rem;
|
||||||
}
|
}
|
||||||
@ -153,9 +126,7 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: ;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
@ -178,12 +149,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
.c5:focus {
|
.c5:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5:hover {
|
.c5:hover {
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -192,8 +160,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
.c5:active:focus {
|
.c5:active:focus {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5[disabled] {
|
.c5[disabled] {
|
||||||
@ -220,29 +186,15 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
|
|
||||||
.c0 {
|
.c0 {
|
||||||
line-height: 1.25;
|
line-height: 1.25;
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
margin: 0 0 0.75rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c2 {
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
margin: 0.75rem 0 1.875rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
.c1 {
|
<h2
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
line-height: 1.25;
|
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<h2
|
|
||||||
className="c0 c1"
|
className="c0 c1"
|
||||||
>
|
>
|
||||||
Deleting a deployment group:
|
Deleting a deployment group:
|
||||||
@ -250,235 +202,19 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
|
|
||||||
Wordpress Blog Example
|
Wordpress Blog Example
|
||||||
</h2>
|
</h2>
|
||||||
.c1 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c2 c3"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
Deleting a deployment group will also remove all of the services and instances associated with that deployment group. Are you sure you want to continue?
|
Deleting a deployment group will also remove all of the services and instances associated with that deployment group. Are you sure you want to continue?
|
||||||
</p>
|
</p>
|
||||||
.c0 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c4"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0::-moz-focus-inner,
|
|
||||||
.c0[type='button']::-moz-focus-inner,
|
|
||||||
.c0[type='reset']::-moz-focus-inner,
|
|
||||||
.c0[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:-moz-focusring,
|
|
||||||
.c0[type='button']:-moz-focusring,
|
|
||||||
.c0[type='reset']:-moz-focusring,
|
|
||||||
.c0[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
.c0 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c5"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0::-moz-focus-inner,
|
|
||||||
.c0[type='button']::-moz-focus-inner,
|
|
||||||
.c0[type='reset']::-moz-focus-inner,
|
|
||||||
.c0[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:-moz-focusring,
|
|
||||||
.c0[type='button']:-moz-focusring,
|
|
||||||
.c0[type='reset']:-moz-focusring,
|
|
||||||
.c0[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
Delete deployment group
|
Delete deployment group
|
||||||
|
@ -49,44 +49,11 @@ exports[`renders <EmtpyInstances /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<div
|
||||||
box-sizing: border-box;
|
className="c1"
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
padding-right: 0.5rem;
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:0em) {
|
|
||||||
.c0 {
|
|
||||||
-webkit-flex-basis: 100%;
|
|
||||||
-ms-flex-basis: 100%;
|
|
||||||
flex-basis: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c2"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
You don't have any instances
|
You don't have any instances
|
||||||
</p>
|
</p>
|
||||||
|
@ -1,25 +1,18 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`renders <InstanceCard /> without throwing 1`] = `
|
exports[`renders <InstanceCard /> without throwing 1`] = `
|
||||||
.c12 {
|
.c15 {
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-stretch: normal;
|
font-stretch: normal;
|
||||||
display: block;
|
display: block;
|
||||||
color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c3 {
|
.c3 {
|
||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
color: ;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
@ -108,7 +101,6 @@ exports[`renders <InstanceCard /> without throwing 1`] = `
|
|||||||
min-height: 7.875rem;
|
min-height: 7.875rem;
|
||||||
margin-bottom: 0.625rem;
|
margin-bottom: 0.625rem;
|
||||||
border: 0.0625rem solid;
|
border: 0.0625rem solid;
|
||||||
background-color: ;
|
|
||||||
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
||||||
-webkit-flex-direction: column;
|
-webkit-flex-direction: column;
|
||||||
-ms-flex-direction: column;
|
-ms-flex-direction: column;
|
||||||
@ -118,7 +110,6 @@ exports[`renders <InstanceCard /> without throwing 1`] = `
|
|||||||
min-height: auto;
|
min-height: auto;
|
||||||
height: 3rem;
|
height: 3rem;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
background-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c2 {
|
||||||
@ -150,27 +141,26 @@ exports[`renders <InstanceCard /> without throwing 1`] = `
|
|||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c10 {
|
.c11 {
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-stretch: normal;
|
font-stretch: normal;
|
||||||
display: block;
|
display: block;
|
||||||
color: ;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 1.5rem;
|
margin-left: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c10::first-letter {
|
.c11::first-letter {
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c8 {
|
.c9 {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c7 {
|
.c8 {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
float: right;
|
float: right;
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
@ -192,20 +182,18 @@ exports[`renders <InstanceCard /> without throwing 1`] = `
|
|||||||
align-content: center;
|
align-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c13 {
|
.c14 {
|
||||||
margin-right: 0.375rem;
|
margin-right: 0.375rem;
|
||||||
width: 0.375rem;
|
width: 0.375rem;
|
||||||
height: 0.375rem;
|
height: 0.375rem;
|
||||||
border-radius: 0.1875rem;
|
border-radius: 0.1875rem;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c0 {
|
.c0 {
|
||||||
-webkit-flex-direction: row;
|
-webkit-flex-direction: row;
|
||||||
-ms-flex-direction: row;
|
-ms-flex-direction: row;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
background-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c0:not(:last-child) {
|
.c0:not(:last-child) {
|
||||||
@ -214,533 +202,87 @@ exports[`renders <InstanceCard /> without throwing 1`] = `
|
|||||||
border-bottom-width: 0;
|
border-bottom-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c11 {
|
.c12 {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -webkit-flex;
|
display: -webkit-flex;
|
||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
display: flex;
|
display: flex;
|
||||||
-webkit-flex-direction: column;
|
-webkit-box-pack: start;
|
||||||
-ms-flex-direction: column;
|
-webkit-justify-content: flex-start;
|
||||||
flex-direction: column;
|
-ms-flex-pack: start;
|
||||||
-webkit-flex-wrap: nowrap;
|
justify-content: flex-start;
|
||||||
-ms-flex-wrap: nowrap;
|
-webkit-align-items: center;
|
||||||
flex-wrap: nowrap;
|
-webkit-box-align: center;
|
||||||
-webkit-box-pack: center;
|
-ms-flex-align: center;
|
||||||
-webkit-justify-content: center;
|
align-items: center;
|
||||||
-ms-flex-pack: center;
|
}
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
.c10 {
|
||||||
-ms-flex-line-pack: center;
|
-webkit-transform: translateY(-50%);
|
||||||
align-content: center;
|
-ms-transform: translateY(-50%);
|
||||||
|
transform: translateY(-50%);
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c7 {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c7 > div {
|
||||||
|
min-width: 115px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c13 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
<div
|
<div
|
||||||
className="c0 c1"
|
className="c0 c1"
|
||||||
name="card"
|
name="card"
|
||||||
>
|
>
|
||||||
.c10 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c2"
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
display: block;
|
|
||||||
color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
line-height: 1.5;
|
|
||||||
color: ;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 600;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-box-pack: start;
|
|
||||||
-webkit-justify-content: flex-start;
|
|
||||||
-ms-flex-pack: start;
|
|
||||||
justify-content: flex-start;
|
|
||||||
-webkit-flex-grow: 2;
|
|
||||||
-ms-flex-grow: 2;
|
|
||||||
flex-grow: 2;
|
|
||||||
-webkit-flex-basis: 5.625rem;
|
|
||||||
-ms-flex-basis: 5.625rem;
|
|
||||||
flex-basis: 5.625rem;
|
|
||||||
width: 100%;
|
|
||||||
padding: 0.75rem 1.125rem 0 1.125rem;
|
|
||||||
-webkit-flex-grow: 6;
|
|
||||||
-ms-flex-grow: 6;
|
|
||||||
flex-grow: 6;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
width: auto;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 0 1.125rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-flex-grow: 1;
|
|
||||||
-ms-flex-grow: 1;
|
|
||||||
flex-grow: 1;
|
|
||||||
-webkit-flex-basis: 5.625rem;
|
|
||||||
-ms-flex-basis: 5.625rem;
|
|
||||||
flex-basis: 5.625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
-webkit-box-pack: start;
|
|
||||||
-webkit-justify-content: flex-start;
|
|
||||||
-ms-flex-pack: start;
|
|
||||||
justify-content: flex-start;
|
|
||||||
height: 100%;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: wrap;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin-right: -0.5rem;
|
|
||||||
margin-left: -0.5rem;
|
|
||||||
-webkit-flex: 1;
|
|
||||||
-ms-flex: 1;
|
|
||||||
flex: 1;
|
|
||||||
margin: 0;
|
|
||||||
height: auto;
|
|
||||||
padding-top: 0;
|
|
||||||
min-width: auto;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
display: block;
|
|
||||||
color: ;
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8::first-letter {
|
|
||||||
text-transform: capitalize;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 {
|
|
||||||
height: 100%;
|
|
||||||
float: right;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c11 {
|
|
||||||
margin-right: 0.375rem;
|
|
||||||
width: 0.375rem;
|
|
||||||
height: 0.375rem;
|
|
||||||
border-radius: 0.1875rem;
|
|
||||||
display: inline-block;
|
|
||||||
background-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9 {
|
|
||||||
height: 100%;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
name="card-view"
|
name="card-view"
|
||||||
>
|
>
|
||||||
.c0 {
|
<div
|
||||||
font-size: 0.9375rem;
|
className="c3"
|
||||||
line-height: 1.5;
|
|
||||||
color: ;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 600;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-box-pack: start;
|
|
||||||
-webkit-justify-content: flex-start;
|
|
||||||
-ms-flex-pack: start;
|
|
||||||
justify-content: flex-start;
|
|
||||||
-webkit-flex-grow: 2;
|
|
||||||
-ms-flex-grow: 2;
|
|
||||||
flex-grow: 2;
|
|
||||||
-webkit-flex-basis: 5.625rem;
|
|
||||||
-ms-flex-basis: 5.625rem;
|
|
||||||
flex-basis: 5.625rem;
|
|
||||||
width: 100%;
|
|
||||||
padding: 0.75rem 1.125rem 0 1.125rem;
|
|
||||||
-webkit-flex-grow: 6;
|
|
||||||
-ms-flex-grow: 6;
|
|
||||||
flex-grow: 6;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
width: auto;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 0 1.125rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
name="container"
|
name="container"
|
||||||
>
|
>
|
||||||
.c0 {
|
<span
|
||||||
display: inline-block;
|
className="c4"
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
<span
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
wordpress_01
|
wordpress_01
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
.c5 {
|
<div
|
||||||
-webkit-fill: ;
|
className="c5 c3"
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
line-height: 1.5;
|
|
||||||
color: ;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 600;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-box-pack: start;
|
|
||||||
-webkit-justify-content: flex-start;
|
|
||||||
-ms-flex-pack: start;
|
|
||||||
justify-content: flex-start;
|
|
||||||
-webkit-flex-grow: 2;
|
|
||||||
-ms-flex-grow: 2;
|
|
||||||
flex-grow: 2;
|
|
||||||
-webkit-flex-basis: 5.625rem;
|
|
||||||
-ms-flex-basis: 5.625rem;
|
|
||||||
flex-basis: 5.625rem;
|
|
||||||
width: 100%;
|
|
||||||
padding: 0.75rem 1.125rem 0 1.125rem;
|
|
||||||
-webkit-flex-grow: 6;
|
|
||||||
-ms-flex-grow: 6;
|
|
||||||
flex-grow: 6;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
width: auto;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 0 1.125rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-flex-grow: 1;
|
|
||||||
-ms-flex-grow: 1;
|
|
||||||
flex-grow: 1;
|
|
||||||
-webkit-flex-basis: 5.625rem;
|
|
||||||
-ms-flex-basis: 5.625rem;
|
|
||||||
flex-basis: 5.625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-box-pack: start;
|
|
||||||
-webkit-justify-content: flex-start;
|
|
||||||
-ms-flex-pack: start;
|
|
||||||
justify-content: flex-start;
|
|
||||||
height: 100%;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
display: block;
|
|
||||||
color: ;
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6::first-letter {
|
|
||||||
text-transform: capitalize;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
height: 100%;
|
|
||||||
float: right;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0 c1"
|
|
||||||
name="container"
|
name="container"
|
||||||
>
|
>
|
||||||
.c3 {
|
<div
|
||||||
-webkit-fill: ;
|
className="c6"
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
-webkit-box-pack: start;
|
|
||||||
-webkit-justify-content: flex-start;
|
|
||||||
-ms-flex-pack: start;
|
|
||||||
justify-content: flex-start;
|
|
||||||
height: 100%;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
display: block;
|
|
||||||
color: ;
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4::first-letter {
|
|
||||||
text-transform: capitalize;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
height: 100%;
|
|
||||||
float: right;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c2 {
|
<div
|
||||||
-webkit-fill: ;
|
className="c7"
|
||||||
fill: ;
|
>
|
||||||
}
|
<div
|
||||||
|
className="c8"
|
||||||
.c3 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
display: block;
|
|
||||||
color: ;
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3::first-letter {
|
|
||||||
text-transform: capitalize;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
height: 100%;
|
|
||||||
float: right;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
onMouseOut={[Function]}
|
onMouseOut={[Function]}
|
||||||
onMouseOver={[Function]}
|
onMouseOver={[Function]}
|
||||||
>
|
>
|
||||||
.c1 {
|
<div
|
||||||
-webkit-fill: ;
|
className="c9"
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
color="dark"
|
color="dark"
|
||||||
>
|
>
|
||||||
.c0 {
|
<svg
|
||||||
-webkit-fill: ;
|
className="c10 "
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
className="c0"
|
|
||||||
healthy="HEALTHY"
|
healthy="HEALTHY"
|
||||||
height="18"
|
height="18"
|
||||||
viewBox="0 0 18 18"
|
viewBox="0 0 18 18"
|
||||||
@ -765,24 +307,8 @@ exports[`renders <InstanceCard /> without throwing 1`] = `
|
|||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
.c0 {
|
<label
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c11"
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
display: block;
|
|
||||||
color: ;
|
|
||||||
display: inline-block;
|
|
||||||
margin-left: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0::first-letter {
|
|
||||||
text-transform: capitalize;
|
|
||||||
}
|
|
||||||
|
|
||||||
<label
|
|
||||||
className="c0"
|
|
||||||
color="dark"
|
color="dark"
|
||||||
>
|
>
|
||||||
healthy
|
healthy
|
||||||
@ -790,245 +316,34 @@ exports[`renders <InstanceCard /> without throwing 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
.c4 {
|
</div>
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
<div
|
||||||
font-weight: 400;
|
className="c5 c3"
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
display: block;
|
|
||||||
color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
line-height: 1.5;
|
|
||||||
color: ;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 600;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-box-pack: start;
|
|
||||||
-webkit-justify-content: flex-start;
|
|
||||||
-ms-flex-pack: start;
|
|
||||||
justify-content: flex-start;
|
|
||||||
-webkit-flex-grow: 2;
|
|
||||||
-ms-flex-grow: 2;
|
|
||||||
flex-grow: 2;
|
|
||||||
-webkit-flex-basis: 5.625rem;
|
|
||||||
-ms-flex-basis: 5.625rem;
|
|
||||||
flex-basis: 5.625rem;
|
|
||||||
width: 100%;
|
|
||||||
padding: 0.75rem 1.125rem 0 1.125rem;
|
|
||||||
-webkit-flex-grow: 6;
|
|
||||||
-ms-flex-grow: 6;
|
|
||||||
flex-grow: 6;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
width: auto;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 0 1.125rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-flex-grow: 1;
|
|
||||||
-ms-flex-grow: 1;
|
|
||||||
flex-grow: 1;
|
|
||||||
-webkit-flex-basis: 5.625rem;
|
|
||||||
-ms-flex-basis: 5.625rem;
|
|
||||||
flex-basis: 5.625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-box-pack: start;
|
|
||||||
-webkit-justify-content: flex-start;
|
|
||||||
-ms-flex-pack: start;
|
|
||||||
justify-content: flex-start;
|
|
||||||
height: 100%;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 {
|
|
||||||
margin-right: 0.375rem;
|
|
||||||
width: 0.375rem;
|
|
||||||
height: 0.375rem;
|
|
||||||
border-radius: 0.1875rem;
|
|
||||||
display: inline-block;
|
|
||||||
background-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
height: 100%;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0 c1"
|
|
||||||
name="container"
|
name="container"
|
||||||
>
|
>
|
||||||
.c2 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c6"
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
display: block;
|
|
||||||
color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
-webkit-box-pack: start;
|
|
||||||
-webkit-justify-content: flex-start;
|
|
||||||
-ms-flex-pack: start;
|
|
||||||
justify-content: flex-start;
|
|
||||||
height: 100%;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
margin-right: 0.375rem;
|
|
||||||
width: 0.375rem;
|
|
||||||
height: 0.375rem;
|
|
||||||
border-radius: 0.1875rem;
|
|
||||||
display: inline-block;
|
|
||||||
background-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
height: 100%;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c1 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c12"
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
display: block;
|
|
||||||
color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
margin-right: 0.375rem;
|
|
||||||
width: 0.375rem;
|
|
||||||
height: 0.375rem;
|
|
||||||
border-radius: 0.1875rem;
|
|
||||||
display: inline-block;
|
|
||||||
background-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
height: 100%;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
onMouseOut={[Function]}
|
onMouseOut={[Function]}
|
||||||
onMouseOver={[Function]}
|
onMouseOver={[Function]}
|
||||||
>
|
>
|
||||||
.c0 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c13"
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
display: block;
|
|
||||||
color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
margin-right: 0.375rem;
|
|
||||||
width: 0.375rem;
|
|
||||||
height: 0.375rem;
|
|
||||||
border-radius: 0.1875rem;
|
|
||||||
display: inline-block;
|
|
||||||
background-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<label
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<span
|
||||||
margin-right: 0.375rem;
|
className="c14"
|
||||||
width: 0.375rem;
|
|
||||||
height: 0.375rem;
|
|
||||||
border-radius: 0.1875rem;
|
|
||||||
display: inline-block;
|
|
||||||
background-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<span
|
|
||||||
className="c0"
|
|
||||||
/>
|
/>
|
||||||
|
<label
|
||||||
|
className="c15"
|
||||||
|
>
|
||||||
Running
|
Running
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
@ -2,17 +2,11 @@
|
|||||||
|
|
||||||
exports[`renders <EEditor /> without throwing 1`] = `
|
exports[`renders <EEditor /> without throwing 1`] = `
|
||||||
.c1 {
|
.c1 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c2 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 0.5s;
|
-webkit-animation-delay: 0.5s;
|
||||||
@ -20,9 +14,6 @@ exports[`renders <EEditor /> without throwing 1`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c3 {
|
.c3 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 1s;
|
-webkit-animation-delay: 1s;
|
||||||
@ -77,105 +68,34 @@ exports[`renders <EEditor /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<svg
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
height="10"
|
height="10"
|
||||||
width="28"
|
width="28"
|
||||||
>
|
>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c1"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="2"
|
x="2"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c2"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="11"
|
x="11"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c3"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="20"
|
x="20"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
Loading...
|
Loading...
|
||||||
</p>
|
</p>
|
||||||
@ -184,17 +104,11 @@ exports[`renders <EEditor /> without throwing 1`] = `
|
|||||||
|
|
||||||
exports[`renders <EEditor /> without throwing 2`] = `
|
exports[`renders <EEditor /> without throwing 2`] = `
|
||||||
.c1 {
|
.c1 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c2 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 0.5s;
|
-webkit-animation-delay: 0.5s;
|
||||||
@ -202,9 +116,6 @@ exports[`renders <EEditor /> without throwing 2`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c3 {
|
.c3 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 1s;
|
-webkit-animation-delay: 1s;
|
||||||
@ -259,105 +170,34 @@ exports[`renders <EEditor /> without throwing 2`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<svg
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
height="10"
|
height="10"
|
||||||
width="28"
|
width="28"
|
||||||
>
|
>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c1"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="2"
|
x="2"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c2"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="11"
|
x="11"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c3"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="20"
|
x="20"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
Loading...
|
Loading...
|
||||||
</p>
|
</p>
|
||||||
@ -366,17 +206,11 @@ exports[`renders <EEditor /> without throwing 2`] = `
|
|||||||
|
|
||||||
exports[`renders <MEditor /> without throwing 1`] = `
|
exports[`renders <MEditor /> without throwing 1`] = `
|
||||||
.c1 {
|
.c1 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c2 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 0.5s;
|
-webkit-animation-delay: 0.5s;
|
||||||
@ -384,9 +218,6 @@ exports[`renders <MEditor /> without throwing 1`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c3 {
|
.c3 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 1s;
|
-webkit-animation-delay: 1s;
|
||||||
@ -441,105 +272,34 @@ exports[`renders <MEditor /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<svg
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
height="10"
|
height="10"
|
||||||
width="28"
|
width="28"
|
||||||
>
|
>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c1"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="2"
|
x="2"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c2"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="11"
|
x="11"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c3"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="20"
|
x="20"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
Loading...
|
Loading...
|
||||||
</p>
|
</p>
|
||||||
@ -548,17 +308,11 @@ exports[`renders <MEditor /> without throwing 1`] = `
|
|||||||
|
|
||||||
exports[`renders <MEditor /> without throwing 2`] = `
|
exports[`renders <MEditor /> without throwing 2`] = `
|
||||||
.c1 {
|
.c1 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c2 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 0.5s;
|
-webkit-animation-delay: 0.5s;
|
||||||
@ -566,9 +320,6 @@ exports[`renders <MEditor /> without throwing 2`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c3 {
|
.c3 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 1s;
|
-webkit-animation-delay: 1s;
|
||||||
@ -623,105 +374,34 @@ exports[`renders <MEditor /> without throwing 2`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<svg
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
height="10"
|
height="10"
|
||||||
width="28"
|
width="28"
|
||||||
>
|
>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c1"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="2"
|
x="2"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c2"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="11"
|
x="11"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c3"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="20"
|
x="20"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
Loading...
|
Loading...
|
||||||
</p>
|
</p>
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -2,17 +2,11 @@
|
|||||||
|
|
||||||
exports[`renders <Files /> without throwing 1`] = `
|
exports[`renders <Files /> without throwing 1`] = `
|
||||||
.c7 {
|
.c7 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c8 {
|
.c8 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 0.5s;
|
-webkit-animation-delay: 0.5s;
|
||||||
@ -20,9 +14,6 @@ exports[`renders <Files /> without throwing 1`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c9 {
|
.c9 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 1s;
|
-webkit-animation-delay: 1s;
|
||||||
@ -54,14 +45,12 @@ exports[`renders <Files /> without throwing 1`] = `
|
|||||||
margin-top: 0.5rem;
|
margin-top: 0.5rem;
|
||||||
padding: 0.8125rem 1.125rem;
|
padding: 0.8125rem 1.125rem;
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
background-color: ;
|
|
||||||
border: 0.0625rem solid;
|
border: 0.0625rem solid;
|
||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
line-height: normal !important;
|
line-height: normal !important;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-stretch: normal;
|
font-stretch: normal;
|
||||||
color: ;
|
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
@ -69,7 +58,6 @@ exports[`renders <Files /> without throwing 1`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c5:focus {
|
.c5:focus {
|
||||||
border-color: ;
|
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -95,7 +83,6 @@ exports[`renders <Files /> without throwing 1`] = `
|
|||||||
min-height: 7.875rem;
|
min-height: 7.875rem;
|
||||||
margin-bottom: 0.625rem;
|
margin-bottom: 0.625rem;
|
||||||
border: 0.0625rem solid;
|
border: 0.0625rem solid;
|
||||||
background-color: ;
|
|
||||||
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
||||||
-webkit-flex-direction: column;
|
-webkit-flex-direction: column;
|
||||||
-ms-flex-direction: column;
|
-ms-flex-direction: column;
|
||||||
@ -160,9 +147,9 @@ exports[`renders <Files /> without throwing 1`] = `
|
|||||||
-webkit-flex-wrap: nowrap;
|
-webkit-flex-wrap: nowrap;
|
||||||
-ms-flex-wrap: nowrap;
|
-ms-flex-wrap: nowrap;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
-webkit-box-pack: space-between;
|
-webkit-box-pack: justify;
|
||||||
-webkit-justify-content: space-between;
|
-webkit-justify-content: space-between;
|
||||||
-ms-flex-pack: space-between;
|
-ms-flex-pack: justify;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
-webkit-align-content: stretch;
|
-webkit-align-content: stretch;
|
||||||
-ms-flex-line-pack: stretch;
|
-ms-flex-line-pack: stretch;
|
||||||
@ -191,459 +178,21 @@ exports[`renders <Files /> without throwing 1`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
.c7 {
|
<div
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
padding: 0.35em 0.75em 0.625em;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
border: none;
|
|
||||||
overflow: hidden;
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
-webkit-margin-start: 0;
|
|
||||||
-webkit-margin-end: 0;
|
|
||||||
-webkit-padding-before: 0;
|
|
||||||
-webkit-padding-start: 0;
|
|
||||||
-webkit-padding-end: 0;
|
|
||||||
-webkit-padding-after: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
width: 100%;
|
|
||||||
height: 3rem;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
padding: 0.8125rem 1.125rem;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
background-color: ;
|
|
||||||
border: 0.0625rem solid;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
line-height: normal !important;
|
|
||||||
font-weight: 400;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
color: ;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:focus {
|
|
||||||
border-color: ;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: wrap;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin-right: -0.5rem;
|
|
||||||
margin-left: -0.5rem;
|
|
||||||
position: relative;
|
|
||||||
height: auto;
|
|
||||||
min-height: 7.875rem;
|
|
||||||
margin-bottom: 0.625rem;
|
|
||||||
border: 0.0625rem solid;
|
|
||||||
background-color: ;
|
|
||||||
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
margin-right: 0rem;
|
|
||||||
margin-left: 0rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-flex: 1 0 auto;
|
|
||||||
-ms-flex: 1 0 auto;
|
|
||||||
flex: 1 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c10 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: space-between;
|
|
||||||
-webkit-justify-content: space-between;
|
|
||||||
-ms-flex-pack: space-between;
|
|
||||||
justify-content: space-between;
|
|
||||||
-webkit-align-content: stretch;
|
|
||||||
-ms-flex-line-pack: stretch;
|
|
||||||
align-content: stretch;
|
|
||||||
-webkit-align-items: stretch;
|
|
||||||
-webkit-box-align: stretch;
|
|
||||||
-ms-flex-align: stretch;
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
-webkit-flex: 1 1 auto;
|
|
||||||
-ms-flex: 1 1 auto;
|
|
||||||
flex: 1 1 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
margin: 0 0 0.8125rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
padding: 1.5rem 1.1875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0 c1"
|
className="c0 c1"
|
||||||
name="card"
|
name="card"
|
||||||
>
|
>
|
||||||
.c0 {
|
<fieldset
|
||||||
padding: 0.35em 0.75em 0.625em;
|
className="c2"
|
||||||
display: inline-block;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
border: none;
|
|
||||||
overflow: hidden;
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
-webkit-margin-start: 0;
|
|
||||||
-webkit-margin-end: 0;
|
|
||||||
-webkit-padding-before: 0;
|
|
||||||
-webkit-padding-start: 0;
|
|
||||||
-webkit-padding-end: 0;
|
|
||||||
-webkit-padding-after: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
width: 100%;
|
|
||||||
height: 3rem;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
padding: 0.8125rem 1.125rem;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
background-color: ;
|
|
||||||
border: 0.0625rem solid;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
line-height: normal !important;
|
|
||||||
font-weight: 400;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
color: ;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3:focus {
|
|
||||||
border-color: ;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: space-between;
|
|
||||||
-webkit-justify-content: space-between;
|
|
||||||
-ms-flex-pack: space-between;
|
|
||||||
justify-content: space-between;
|
|
||||||
-webkit-align-content: stretch;
|
|
||||||
-ms-flex-line-pack: stretch;
|
|
||||||
align-content: stretch;
|
|
||||||
-webkit-align-items: stretch;
|
|
||||||
-webkit-box-align: stretch;
|
|
||||||
-ms-flex-align: stretch;
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
-webkit-flex: 1 1 auto;
|
|
||||||
-ms-flex: 1 1 auto;
|
|
||||||
flex: 1 1 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
margin: 0 0 0.8125rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<fieldset
|
|
||||||
className="c0"
|
|
||||||
style={undefined}
|
style={undefined}
|
||||||
>
|
>
|
||||||
.c2 {
|
<div>
|
||||||
box-sizing: border-box;
|
<span
|
||||||
width: 100%;
|
className="c3"
|
||||||
height: 3rem;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
padding: 0.8125rem 1.125rem;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
background-color: ;
|
|
||||||
border: 0.0625rem solid;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
line-height: normal !important;
|
|
||||||
font-weight: 400;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
color: ;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:focus {
|
|
||||||
border-color: ;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: space-between;
|
|
||||||
-webkit-justify-content: space-between;
|
|
||||||
-ms-flex-pack: space-between;
|
|
||||||
justify-content: space-between;
|
|
||||||
-webkit-align-content: stretch;
|
|
||||||
-ms-flex-line-pack: stretch;
|
|
||||||
align-content: stretch;
|
|
||||||
-webkit-align-items: stretch;
|
|
||||||
-webkit-box-align: stretch;
|
|
||||||
-ms-flex-align: stretch;
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
-webkit-flex: 1 1 auto;
|
|
||||||
-ms-flex: 1 1 auto;
|
|
||||||
flex: 1 1 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
margin: 0 0 0.8125rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div>
|
|
||||||
.c2 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
width: 100%;
|
|
||||||
height: 3rem;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
padding: 0.8125rem 1.125rem;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
background-color: ;
|
|
||||||
border: 0.0625rem solid;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
line-height: normal !important;
|
|
||||||
font-weight: 400;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
color: ;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:focus {
|
|
||||||
border-color: ;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: space-between;
|
|
||||||
-webkit-justify-content: space-between;
|
|
||||||
-ms-flex-pack: space-between;
|
|
||||||
justify-content: space-between;
|
|
||||||
-webkit-align-content: stretch;
|
|
||||||
-ms-flex-line-pack: stretch;
|
|
||||||
align-content: stretch;
|
|
||||||
-webkit-align-items: stretch;
|
|
||||||
-webkit-box-align: stretch;
|
|
||||||
-ms-flex-align: stretch;
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
-webkit-flex: 1 1 auto;
|
|
||||||
-ms-flex: 1 1 auto;
|
|
||||||
flex: 1 1 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
margin: 0 0 0.8125rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<span
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c1 {
|
<input
|
||||||
box-sizing: border-box;
|
className="c4 c5"
|
||||||
width: 100%;
|
id="SlzVp"
|
||||||
height: 3rem;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
padding: 0.8125rem 1.125rem;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
background-color: ;
|
|
||||||
border: 0.0625rem solid;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
line-height: normal !important;
|
|
||||||
font-weight: 400;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
color: ;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1:focus {
|
|
||||||
border-color: ;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
-webkit-flex: 1 1 auto;
|
|
||||||
-ms-flex: 1 1 auto;
|
|
||||||
flex: 1 1 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
margin: 0 0 0.8125rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<input
|
|
||||||
className="c0 c1"
|
|
||||||
id="paxzb"
|
|
||||||
placeholder="Filename including extension…"
|
placeholder="Filename including extension…"
|
||||||
type="text"
|
type="text"
|
||||||
value={undefined}
|
value={undefined}
|
||||||
@ -651,181 +200,37 @@ exports[`renders <Files /> without throwing 1`] = `
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
.c1 {
|
<div
|
||||||
-webkit-fill: ;
|
className="c6"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-flex: 1 0 auto;
|
|
||||||
-ms-flex: 1 0 auto;
|
|
||||||
flex: 1 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<svg
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
height="10"
|
height="10"
|
||||||
width="28"
|
width="28"
|
||||||
>
|
>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c7"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="2"
|
x="2"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c8"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="11"
|
x="11"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c9"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="20"
|
x="20"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c10"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
Loading...
|
Loading...
|
||||||
</p>
|
</p>
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -11,7 +11,6 @@ exports[`renders <Error /> without throwing 1`] = `
|
|||||||
.c0 {
|
.c0 {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-bottom: 0.75rem;
|
margin-bottom: 0.75rem;
|
||||||
background-color: ;
|
|
||||||
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
||||||
border: 0.0625rem solid;
|
border: 0.0625rem solid;
|
||||||
}
|
}
|
||||||
@ -22,7 +21,6 @@ exports[`renders <Error /> without throwing 1`] = `
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 2.25rem;
|
width: 2.25rem;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c2 {
|
||||||
@ -36,50 +34,15 @@ exports[`renders <Error /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<div
|
||||||
position: absolute;
|
className="c1"
|
||||||
top: 0;
|
type="ERROR"
|
||||||
left: 0;
|
|
||||||
width: 2.25rem;
|
|
||||||
height: 100%;
|
|
||||||
background-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
type="MESSAGE"
|
|
||||||
/>
|
/>
|
||||||
.c2 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c2"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
padding: 0.75rem 0 0.84375rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
margin: 0.09375rem 3.375rem 0 3.375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c1 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c3 c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
margin: 0.09375rem 3.375rem 0 3.375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
Ooops, there's been an error
|
Ooops, there's been an error
|
||||||
</p>
|
</p>
|
||||||
|
@ -2,17 +2,11 @@
|
|||||||
|
|
||||||
exports[`renders <Loader /> without throwing 1`] = `
|
exports[`renders <Loader /> without throwing 1`] = `
|
||||||
.c1 {
|
.c1 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c2 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 0.5s;
|
-webkit-animation-delay: 0.5s;
|
||||||
@ -20,9 +14,6 @@ exports[`renders <Loader /> without throwing 1`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c3 {
|
.c3 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 1s;
|
-webkit-animation-delay: 1s;
|
||||||
@ -77,105 +68,34 @@ exports[`renders <Loader /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<svg
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
height="10"
|
height="10"
|
||||||
width="28"
|
width="28"
|
||||||
>
|
>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c1"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="2"
|
x="2"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c2"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="11"
|
x="11"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c3"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="20"
|
x="20"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
Loading...
|
Loading...
|
||||||
</p>
|
</p>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`renders <ModalError /> without throwing 1`] = `
|
exports[`renders <ModalError /> without throwing 1`] = `
|
||||||
.c5 {
|
.c4 {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
line-height: 1.15;
|
line-height: 1.15;
|
||||||
@ -41,127 +41,58 @@ exports[`renders <ModalError /> without throwing 1`] = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: ;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5::-moz-focus-inner,
|
.c4::-moz-focus-inner,
|
||||||
.c5[type='button']::-moz-focus-inner,
|
.c4[type='button']::-moz-focus-inner,
|
||||||
.c5[type='reset']::-moz-focus-inner,
|
.c4[type='reset']::-moz-focus-inner,
|
||||||
.c5[type='submit']::-moz-focus-inner {
|
.c4[type='submit']::-moz-focus-inner {
|
||||||
border-style: none;
|
border-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5:-moz-focusring,
|
.c4:-moz-focusring,
|
||||||
.c5[type='button']:-moz-focusring,
|
.c4[type='button']:-moz-focusring,
|
||||||
.c5[type='reset']:-moz-focusring,
|
.c4[type='reset']:-moz-focusring,
|
||||||
.c5[type='submit']:-moz-focusring {
|
.c4[type='submit']:-moz-focusring {
|
||||||
outline: 0.0625rem dotted ButtonText;
|
outline: 0.0625rem dotted ButtonText;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5:focus {
|
.c4:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5:hover {
|
.c4:hover {
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5:active,
|
.c4:active,
|
||||||
.c5:active:hover,
|
.c4:active:hover,
|
||||||
.c5:active:focus {
|
.c4:active:focus {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5[disabled] {
|
.c4[disabled] {
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5:focus {
|
.c4 + button {
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:active,
|
|
||||||
.c5:active:hover,
|
|
||||||
.c5:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 + button {
|
|
||||||
margin-left: 1.25rem;
|
margin-left: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c1 {
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
line-height: 1.25;
|
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
.c3 {
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div>
|
|
||||||
.c2 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
line-height: 1.25;
|
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<h2
|
|
||||||
className="c0 c1 c2"
|
|
||||||
/>
|
|
||||||
.c1 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
line-height: 1.5rem;
|
line-height: 1.5rem;
|
||||||
@ -169,129 +100,25 @@ exports[`renders <ModalError /> without throwing 1`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c0 {
|
.c0 {
|
||||||
color: ;
|
line-height: 1.25;
|
||||||
|
margin: 0 0 0.75rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c2 {
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
margin: 0.75rem 0 1.875rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
<p
|
<div>
|
||||||
|
<h2
|
||||||
className="c0 c1"
|
className="c0 c1"
|
||||||
|
/>
|
||||||
|
<p
|
||||||
|
className="c2 c3"
|
||||||
>
|
>
|
||||||
Modal error message
|
Modal error message
|
||||||
</p>
|
</p>
|
||||||
.c0 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c4"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0::-moz-focus-inner,
|
|
||||||
.c0[type='button']::-moz-focus-inner,
|
|
||||||
.c0[type='reset']::-moz-focus-inner,
|
|
||||||
.c0[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:-moz-focusring,
|
|
||||||
.c0[type='button']:-moz-focusring,
|
|
||||||
.c0[type='reset']:-moz-focusring,
|
|
||||||
.c0[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
Close
|
Close
|
||||||
|
@ -11,7 +11,6 @@ exports[`renders <Warning /> without throwing 1`] = `
|
|||||||
.c0 {
|
.c0 {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-bottom: 0.75rem;
|
margin-bottom: 0.75rem;
|
||||||
background-color: ;
|
|
||||||
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
||||||
border: 0.0625rem solid;
|
border: 0.0625rem solid;
|
||||||
}
|
}
|
||||||
@ -22,7 +21,6 @@ exports[`renders <Warning /> without throwing 1`] = `
|
|||||||
left: 0;
|
left: 0;
|
||||||
width: 2.25rem;
|
width: 2.25rem;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c2 {
|
||||||
@ -36,50 +34,15 @@ exports[`renders <Warning /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<div
|
||||||
position: absolute;
|
className="c1"
|
||||||
top: 0;
|
type="WARNING"
|
||||||
left: 0;
|
|
||||||
width: 2.25rem;
|
|
||||||
height: 100%;
|
|
||||||
background-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
type="MESSAGE"
|
|
||||||
/>
|
/>
|
||||||
.c2 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c2"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
padding: 0.75rem 0 0.84375rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
margin: 0.09375rem 3.375rem 0 3.375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c1 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c3 c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
margin: 0.09375rem 3.375rem 0 3.375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
Warning message
|
Warning message
|
||||||
</p>
|
</p>
|
||||||
|
@ -69,132 +69,14 @@ exports[`renders <Breadcrumb /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<div
|
||||||
margin-right: auto;
|
className="c1"
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: wrap;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin-right: -0.5rem;
|
|
||||||
margin-left: -0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
padding-right: 0.5rem;
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:48em) {
|
|
||||||
.c0 {
|
|
||||||
width: 46rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:64em) {
|
|
||||||
.c0 {
|
|
||||||
width: 61rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:75em) {
|
|
||||||
.c0 {
|
|
||||||
width: 76rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:0em) {
|
|
||||||
.c1 {
|
|
||||||
-webkit-flex-basis: 100%;
|
|
||||||
-ms-flex-basis: 100%;
|
|
||||||
flex-basis: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c1 {
|
<div
|
||||||
box-sizing: border-box;
|
className="c2"
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: wrap;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin-right: -0.5rem;
|
|
||||||
margin-left: -0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
padding-right: 0.5rem;
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:0em) {
|
|
||||||
.c0 {
|
|
||||||
-webkit-flex-basis: 100%;
|
|
||||||
-ms-flex-basis: 100%;
|
|
||||||
flex-basis: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<div
|
||||||
box-sizing: border-box;
|
className="c3"
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: wrap;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin-right: -0.5rem;
|
|
||||||
margin-left: -0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
name="breadcrum"
|
name="breadcrum"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,7 +6,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: ;
|
|
||||||
font-size: 1.8125rem;
|
font-size: 1.8125rem;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
@ -31,7 +30,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: ;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,9 +59,9 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
-webkit-flex-wrap: nowrap;
|
-webkit-flex-wrap: nowrap;
|
||||||
-ms-flex-wrap: nowrap;
|
-ms-flex-wrap: nowrap;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
-webkit-box-pack: space-between;
|
-webkit-box-pack: justify;
|
||||||
-webkit-justify-content: space-between;
|
-webkit-justify-content: space-between;
|
||||||
-ms-flex-pack: space-between;
|
-ms-flex-pack: justify;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
-webkit-align-content: stretch;
|
-webkit-align-content: stretch;
|
||||||
-ms-flex-line-pack: stretch;
|
-ms-flex-line-pack: stretch;
|
||||||
@ -72,7 +70,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
-webkit-box-align: stretch;
|
-webkit-box-align: stretch;
|
||||||
-ms-flex-align: stretch;
|
-ms-flex-align: stretch;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
background-color: ;
|
|
||||||
max-height: 3.3125rem;
|
max-height: 3.3125rem;
|
||||||
min-height: 3.3125rem;
|
min-height: 3.3125rem;
|
||||||
padding: 0 1.125rem;
|
padding: 0 1.125rem;
|
||||||
@ -92,130 +89,28 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c1 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c1"
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
text-transform: uppercase;
|
|
||||||
color: ;
|
|
||||||
font-size: 1.8125rem;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
-webkit-flex: 1 1 auto;
|
|
||||||
-ms-flex: 1 1 auto;
|
|
||||||
flex: 1 1 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
padding: 0.9375rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
border-style: none;
|
|
||||||
width: 5.4375rem;
|
|
||||||
height: 1.5625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<h2
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c2"
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
text-transform: uppercase;
|
|
||||||
color: ;
|
|
||||||
font-size: 1.8125rem;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
border-style: none;
|
|
||||||
width: 5.4375rem;
|
|
||||||
height: 1.5625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<h2
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<a
|
||||||
border-style: none;
|
|
||||||
width: 5.4375rem;
|
|
||||||
height: 1.5625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<a
|
|
||||||
href="/"
|
href="/"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
.c0 {
|
<img
|
||||||
border-style: none;
|
className="c3"
|
||||||
width: 5.4375rem;
|
|
||||||
height: 1.5625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<img
|
|
||||||
className="c0"
|
|
||||||
src="test-file-mock"
|
src="test-file-mock"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
.c1 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-weight: 600;
|
|
||||||
text-align: center;
|
|
||||||
color: ;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-align-self: auto;
|
|
||||||
-ms-flex-item-align: auto;
|
|
||||||
align-self: auto;
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
padding: 0.9375rem 0;
|
|
||||||
width: 6.25rem;
|
|
||||||
max-width: 6.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c5"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-weight: 600;
|
|
||||||
text-align: center;
|
|
||||||
color: ;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
className=""
|
className=""
|
||||||
@ -252,65 +147,16 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
transform="translate(-1174 -21)"
|
transform="translate(-1174 -21)"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<span
|
||||||
padding-left: 5px;
|
className="c6"
|
||||||
}
|
|
||||||
|
|
||||||
<span
|
|
||||||
className="c0"
|
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
.c1 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-weight: 600;
|
|
||||||
text-align: center;
|
|
||||||
color: ;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-align-self: auto;
|
|
||||||
-ms-flex-item-align: auto;
|
|
||||||
align-self: auto;
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
padding: 0.9375rem 0;
|
|
||||||
width: 6.25rem;
|
|
||||||
max-width: 6.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c5"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-weight: 600;
|
|
||||||
text-align: center;
|
|
||||||
color: ;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
className=""
|
className=""
|
||||||
@ -346,12 +192,8 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
fillRule="nonzero"
|
fillRule="nonzero"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<span
|
||||||
padding-left: 5px;
|
className="c6"
|
||||||
}
|
|
||||||
|
|
||||||
<span
|
|
||||||
className="c0"
|
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -34,14 +34,8 @@ exports[`renders <Menu /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<ul
|
||||||
list-style-type: none;
|
className="c1"
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<ul
|
|
||||||
className="c0"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
@ -32,9 +32,7 @@ exports[`renders <NotFound /> without throwing 1`] = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: ;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
@ -42,12 +40,9 @@ exports[`renders <NotFound /> without throwing 1`] = `
|
|||||||
.c6:focus {
|
.c6:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c6:hover {
|
.c6:hover {
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,8 +51,6 @@ exports[`renders <NotFound /> without throwing 1`] = `
|
|||||||
.c6:active:focus {
|
.c6:active:focus {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c6[disabled] {
|
.c6[disabled] {
|
||||||
@ -131,209 +124,21 @@ exports[`renders <NotFound /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c5 {
|
<div
|
||||||
display: inline-block;
|
className="c1"
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:active,
|
|
||||||
.c5:active:hover,
|
|
||||||
.c5:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
font-size: 2rem;
|
|
||||||
margin: 0.625rem 0;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 2.25rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
margin-top: 3.75rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
margin-bottom: 1.875rem;
|
|
||||||
max-width: 30.625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c1 {
|
<h1
|
||||||
font-size: 2rem;
|
className="c2 c3"
|
||||||
margin: 0.625rem 0;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 2.25rem;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<h1
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
I have no memory of this place
|
I have no memory of this place
|
||||||
</h1>
|
</h1>
|
||||||
.c1 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c4 c5"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
margin-bottom: 1.875rem;
|
|
||||||
max-width: 30.625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
HTTP 404: We can’t find what you are looking for. Next time, always follow your nose.
|
HTTP 404: We can’t find what you are looking for. Next time, always follow your nose.
|
||||||
</p>
|
</p>
|
||||||
.c0 {
|
<a
|
||||||
display: inline-block;
|
className="c6"
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
<a
|
|
||||||
className="c0"
|
|
||||||
href="/deployment-groups"
|
href="/deployment-groups"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
primary={true}
|
primary={true}
|
||||||
|
@ -41,14 +41,9 @@ exports[`renders <Delete /> without throwing 1`] = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: ;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4::-moz-focus-inner,
|
.c4::-moz-focus-inner,
|
||||||
@ -69,12 +64,9 @@ exports[`renders <Delete /> without throwing 1`] = `
|
|||||||
.c4:focus {
|
.c4:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4:hover {
|
.c4:hover {
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,8 +75,6 @@ exports[`renders <Delete /> without throwing 1`] = `
|
|||||||
.c4:active:focus {
|
.c4:active:focus {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4[disabled] {
|
.c4[disabled] {
|
||||||
@ -92,23 +82,6 @@ exports[`renders <Delete /> without throwing 1`] = `
|
|||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:active,
|
|
||||||
.c4:active:hover,
|
|
||||||
.c4:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 + button {
|
.c4 + button {
|
||||||
margin-left: 1.25rem;
|
margin-left: 1.25rem;
|
||||||
}
|
}
|
||||||
@ -153,9 +126,7 @@ exports[`renders <Delete /> without throwing 1`] = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: ;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
@ -178,12 +149,9 @@ exports[`renders <Delete /> without throwing 1`] = `
|
|||||||
.c5:focus {
|
.c5:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5:hover {
|
.c5:hover {
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -192,8 +160,6 @@ exports[`renders <Delete /> without throwing 1`] = `
|
|||||||
.c5:active:focus {
|
.c5:active:focus {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5[disabled] {
|
.c5[disabled] {
|
||||||
@ -220,29 +186,15 @@ exports[`renders <Delete /> without throwing 1`] = `
|
|||||||
|
|
||||||
.c0 {
|
.c0 {
|
||||||
line-height: 1.25;
|
line-height: 1.25;
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
margin: 0 0 0.75rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2 {
|
.c2 {
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
margin: 0.75rem 0 1.875rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
.c1 {
|
<h2
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
line-height: 1.25;
|
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<h2
|
|
||||||
className="c0 c1"
|
className="c0 c1"
|
||||||
>
|
>
|
||||||
Deleting a service:
|
Deleting a service:
|
||||||
@ -250,235 +202,19 @@ exports[`renders <Delete /> without throwing 1`] = `
|
|||||||
|
|
||||||
Nginx
|
Nginx
|
||||||
</h2>
|
</h2>
|
||||||
.c1 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c2 c3"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
Deleting a service can lead to irreversible loss of data and failures in your application. Are you sure you want to continue?
|
Deleting a service can lead to irreversible loss of data and failures in your application. Are you sure you want to continue?
|
||||||
</p>
|
</p>
|
||||||
.c0 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c4"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0::-moz-focus-inner,
|
|
||||||
.c0[type='button']::-moz-focus-inner,
|
|
||||||
.c0[type='reset']::-moz-focus-inner,
|
|
||||||
.c0[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:-moz-focusring,
|
|
||||||
.c0[type='button']:-moz-focusring,
|
|
||||||
.c0[type='reset']:-moz-focusring,
|
|
||||||
.c0[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
.c0 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c5"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0::-moz-focus-inner,
|
|
||||||
.c0[type='button']::-moz-focus-inner,
|
|
||||||
.c0[type='reset']::-moz-focus-inner,
|
|
||||||
.c0[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:-moz-focusring,
|
|
||||||
.c0[type='button']:-moz-focusring,
|
|
||||||
.c0[type='reset']:-moz-focusring,
|
|
||||||
.c0[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
Delete service
|
Delete service
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -41,9 +41,7 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: ;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
@ -66,12 +64,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
.c4:focus {
|
.c4:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4:hover {
|
.c4:hover {
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -80,8 +75,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
.c4:active:focus {
|
.c4:active:focus {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4[disabled] {
|
.c4[disabled] {
|
||||||
@ -133,14 +126,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: ;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c9::-moz-focus-inner,
|
.c9::-moz-focus-inner,
|
||||||
@ -161,12 +149,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
.c9:focus {
|
.c9:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c9:hover {
|
.c9:hover {
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,8 +160,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
.c9:active:focus {
|
.c9:active:focus {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c9[disabled] {
|
.c9[disabled] {
|
||||||
@ -184,23 +167,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c9:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9:active,
|
|
||||||
.c9:active:hover,
|
|
||||||
.c9:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9 + button {
|
.c9 + button {
|
||||||
margin-left: 1.25rem;
|
margin-left: 1.25rem;
|
||||||
}
|
}
|
||||||
@ -251,7 +217,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
left: 50%;
|
left: 50%;
|
||||||
top: 33.33%;
|
top: 33.33%;
|
||||||
padding: 2.25rem 2.25rem 2.25rem 2.25rem;
|
padding: 2.25rem 2.25rem 2.25rem 2.25rem;
|
||||||
background-color: ;
|
|
||||||
box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1);
|
box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1);
|
||||||
width: 28.75rem;
|
width: 28.75rem;
|
||||||
margin: 0 auto 0 -14.375rem;
|
margin: 0 auto 0 -14.375rem;
|
||||||
@ -266,404 +231,22 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
|
|
||||||
.c5 {
|
.c5 {
|
||||||
line-height: 1.25;
|
line-height: 1.25;
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
margin: 0 0 0.75rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c7 {
|
.c7 {
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
margin: 0.75rem 0 1.875rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c3 {
|
<div
|
||||||
font-family: sans-serif;
|
className="c1"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3::-moz-focus-inner,
|
|
||||||
.c3[type='button']::-moz-focus-inner,
|
|
||||||
.c3[type='reset']::-moz-focus-inner,
|
|
||||||
.c3[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3:-moz-focusring,
|
|
||||||
.c3[type='button']:-moz-focusring,
|
|
||||||
.c3[type='reset']:-moz-focusring,
|
|
||||||
.c3[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3:active,
|
|
||||||
.c3:active:hover,
|
|
||||||
.c3:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 {
|
|
||||||
font-family: sans-serif;
|
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8::-moz-focus-inner,
|
|
||||||
.c8[type='button']::-moz-focus-inner,
|
|
||||||
.c8[type='reset']::-moz-focus-inner,
|
|
||||||
.c8[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:-moz-focusring,
|
|
||||||
.c8[type='button']:-moz-focusring,
|
|
||||||
.c8[type='reset']:-moz-focusring,
|
|
||||||
.c8[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:active,
|
|
||||||
.c8:active:hover,
|
|
||||||
.c8:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:active,
|
|
||||||
.c8:active:hover,
|
|
||||||
.c8:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
background-color: #FFFFFF;
|
|
||||||
padding: 0.75rem;
|
|
||||||
min-width: auto;
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:hover,
|
|
||||||
.c2:focus,
|
|
||||||
.c2:active,
|
|
||||||
.c2:active:hover,
|
|
||||||
.c2:active:focus {
|
|
||||||
background-color: #FFFFFF;
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
position: absolute;
|
|
||||||
left: 50%;
|
|
||||||
top: 33.33%;
|
|
||||||
padding: 2.25rem 2.25rem 2.25rem 2.25rem;
|
|
||||||
background-color: ;
|
|
||||||
box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1);
|
|
||||||
width: 28.75rem;
|
|
||||||
margin: 0 auto 0 -14.375rem;
|
|
||||||
z-index: 101;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
position: absolute;
|
|
||||||
right: 0.375rem;
|
|
||||||
top: 0.1875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
line-height: 1.25;
|
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
width={460}
|
width={460}
|
||||||
>
|
>
|
||||||
.c2 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c2 c3 c4"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2::-moz-focus-inner,
|
|
||||||
.c2[type='button']::-moz-focus-inner,
|
|
||||||
.c2[type='reset']::-moz-focus-inner,
|
|
||||||
.c2[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:-moz-focusring,
|
|
||||||
.c2[type='button']:-moz-focusring,
|
|
||||||
.c2[type='reset']:-moz-focusring,
|
|
||||||
.c2[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:active,
|
|
||||||
.c2:active:hover,
|
|
||||||
.c2:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
background-color: #FFFFFF;
|
|
||||||
padding: 0.75rem;
|
|
||||||
min-width: auto;
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1:hover,
|
|
||||||
.c1:focus,
|
|
||||||
.c1:active,
|
|
||||||
.c1:active:hover,
|
|
||||||
.c1:active:focus {
|
|
||||||
background-color: #FFFFFF;
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
position: absolute;
|
|
||||||
right: 0.375rem;
|
|
||||||
top: 0.1875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0 c1 c2"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
@ -683,484 +266,28 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
|||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
.c5 {
|
<div>
|
||||||
font-family: sans-serif;
|
<h2
|
||||||
font-size: 100%;
|
className="c5 c6"
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5::-moz-focus-inner,
|
|
||||||
.c5[type='button']::-moz-focus-inner,
|
|
||||||
.c5[type='reset']::-moz-focus-inner,
|
|
||||||
.c5[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:-moz-focusring,
|
|
||||||
.c5[type='button']:-moz-focusring,
|
|
||||||
.c5[type='reset']:-moz-focusring,
|
|
||||||
.c5[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:active,
|
|
||||||
.c5:active:hover,
|
|
||||||
.c5:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
font-family: sans-serif;
|
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4::-moz-focus-inner,
|
|
||||||
.c4[type='button']::-moz-focus-inner,
|
|
||||||
.c4[type='reset']::-moz-focus-inner,
|
|
||||||
.c4[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:-moz-focusring,
|
|
||||||
.c4[type='button']:-moz-focusring,
|
|
||||||
.c4[type='reset']:-moz-focusring,
|
|
||||||
.c4[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:active,
|
|
||||||
.c4:active:hover,
|
|
||||||
.c4:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:active,
|
|
||||||
.c4:active:hover,
|
|
||||||
.c4:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
line-height: 1.25;
|
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div>
|
|
||||||
.c1 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
line-height: 1.25;
|
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<h2
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
Deleting a deployment group:
|
Deleting a deployment group:
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
Wordpress Blog Example
|
Wordpress Blog Example
|
||||||
</h2>
|
</h2>
|
||||||
.c1 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c7 c8"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
Deleting a deployment group will also remove all of the services and instances associated with that deployment group. Are you sure you want to continue?
|
Deleting a deployment group will also remove all of the services and instances associated with that deployment group. Are you sure you want to continue?
|
||||||
</p>
|
</p>
|
||||||
.c0 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c9"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0::-moz-focus-inner,
|
|
||||||
.c0[type='button']::-moz-focus-inner,
|
|
||||||
.c0[type='reset']::-moz-focus-inner,
|
|
||||||
.c0[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:-moz-focusring,
|
|
||||||
.c0[type='button']:-moz-focusring,
|
|
||||||
.c0[type='reset']:-moz-focusring,
|
|
||||||
.c0[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
.c0 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c4"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0::-moz-focus-inner,
|
|
||||||
.c0[type='button']::-moz-focus-inner,
|
|
||||||
.c0[type='reset']::-moz-focus-inner,
|
|
||||||
.c0[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:-moz-focusring,
|
|
||||||
.c0[type='button']:-moz-focusring,
|
|
||||||
.c0[type='reset']:-moz-focusring,
|
|
||||||
.c0[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
Delete deployment group
|
Delete deployment group
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -36,17 +36,11 @@ exports[`renders <DeploymentGroupImport /> without throwing 1`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c3 {
|
.c3 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4 {
|
.c4 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 0.5s;
|
-webkit-animation-delay: 0.5s;
|
||||||
@ -54,9 +48,6 @@ exports[`renders <DeploymentGroupImport /> without throwing 1`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c5 {
|
.c5 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||||
-webkit-animation-delay: 1s;
|
-webkit-animation-delay: 1s;
|
||||||
@ -142,199 +133,42 @@ exports[`renders <DeploymentGroupImport /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<h2
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c1"
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
margin-top: 0.125rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
|
|
||||||
<h2
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
Importing deployment group
|
Importing deployment group
|
||||||
</h2>
|
</h2>
|
||||||
.c1 {
|
<div
|
||||||
-webkit-fill: ;
|
className="c2"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex-direction: column;
|
|
||||||
-ms-flex-direction: column;
|
|
||||||
flex-direction: column;
|
|
||||||
-webkit-flex-wrap: nowrap;
|
|
||||||
-ms-flex-wrap: nowrap;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-content: center;
|
|
||||||
-ms-flex-line-pack: center;
|
|
||||||
align-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
-webkit-flex: 1 0 auto;
|
|
||||||
-ms-flex: 1 0 auto;
|
|
||||||
flex: 1 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<svg
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
height="10"
|
height="10"
|
||||||
width="28"
|
width="28"
|
||||||
>
|
>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c3"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="2"
|
x="2"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c4"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 0.5s;
|
|
||||||
animation-delay: 0.5s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="11"
|
x="11"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
-webkit-fill: ;
|
className="c5"
|
||||||
fill: ;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
|
||||||
-webkit-animation-delay: 1s;
|
|
||||||
animation-delay: 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height="6"
|
height="6"
|
||||||
width="6"
|
width="6"
|
||||||
x="20"
|
x="20"
|
||||||
y="2"
|
y="2"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c6"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
Loading...
|
Loading...
|
||||||
</p>
|
</p>
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -12,7 +12,6 @@ exports[`renders <InstancesTooltip /> without throwing 1`] = `
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: auto;
|
top: auto;
|
||||||
left: auto;
|
left: auto;
|
||||||
bottom: ;
|
|
||||||
right: auto;
|
right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -27,7 +26,6 @@ exports[`renders <InstancesTooltip /> without throwing 1`] = `
|
|||||||
left: -50%;
|
left: -50%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0.75rem 0;
|
padding: 0.75rem 0;
|
||||||
background-color: ;
|
|
||||||
border: 0.0625rem solid;
|
border: 0.0625rem solid;
|
||||||
box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1);
|
box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1);
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
@ -46,20 +44,17 @@ exports[`renders <InstancesTooltip /> without throwing 1`] = `
|
|||||||
}
|
}
|
||||||
|
|
||||||
.c2:after {
|
.c2:after {
|
||||||
border-bottom-color: ;
|
|
||||||
border-width: 0.1875rem;
|
border-width: 0.1875rem;
|
||||||
margin-left: -0.1875rem;
|
margin-left: -0.1875rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c2:before {
|
.c2:before {
|
||||||
border-bottom-color: ;
|
|
||||||
border-width: 0.3125rem;
|
border-width: 0.3125rem;
|
||||||
margin-left: -0.3125rem;
|
margin-left: -0.3125rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c3 {
|
.c3 {
|
||||||
margin: 0 1.125rem;
|
margin: 0 1.125rem;
|
||||||
color: ;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -72,139 +67,14 @@ exports[`renders <InstancesTooltip /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c3 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c1"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
position: absolute;
|
|
||||||
top: auto;
|
|
||||||
left: auto;
|
|
||||||
bottom: ;
|
|
||||||
right: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
top: 0.3125rem;
|
|
||||||
left: -50%;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.75rem 0;
|
|
||||||
background-color: ;
|
|
||||||
border: 0.0625rem solid;
|
|
||||||
box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1);
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
z-index: 1000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1:after,
|
|
||||||
.c1:before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
bottom: 100%;
|
|
||||||
left: 50%;
|
|
||||||
height: 0;
|
|
||||||
width: 0;
|
|
||||||
border: solid transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1:after {
|
|
||||||
border-bottom-color: ;
|
|
||||||
border-width: 0.1875rem;
|
|
||||||
margin-left: -0.1875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1:before {
|
|
||||||
border-bottom-color: ;
|
|
||||||
border-width: 0.3125rem;
|
|
||||||
margin-left: -0.3125rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
margin: 0 1.125rem;
|
|
||||||
color: ;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c2 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c2"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
top: 0.3125rem;
|
|
||||||
left: -50%;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.75rem 0;
|
|
||||||
background-color: ;
|
|
||||||
border: 0.0625rem solid;
|
|
||||||
box-shadow: 0 0.125rem 0.375rem 0.0625rem rgba(0,0,0,0.1);
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
z-index: 1000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:after,
|
|
||||||
.c0:before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
bottom: 100%;
|
|
||||||
left: 50%;
|
|
||||||
height: 0;
|
|
||||||
width: 0;
|
|
||||||
border: solid transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:after {
|
|
||||||
border-bottom-color: ;
|
|
||||||
border-width: 0.1875rem;
|
|
||||||
margin-left: -0.1875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:before {
|
|
||||||
border-bottom-color: ;
|
|
||||||
border-width: 0.3125rem;
|
|
||||||
margin-left: -0.3125rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
margin: 0 1.125rem;
|
|
||||||
color: ;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c1 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c3 c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
margin: 0 1.125rem;
|
|
||||||
color: ;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
Your instance is operating as expected
|
Your instance is operating as expected
|
||||||
</p>
|
</p>
|
||||||
|
@ -39,7 +39,6 @@ exports[`renders <Breadcrumb /> without throwing 1`] = `
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: ;
|
|
||||||
margin: 1.25rem 0 1.125rem 0;
|
margin: 1.25rem 0 1.125rem 0;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
@ -90,248 +89,25 @@ exports[`renders <Breadcrumb /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c0 {
|
<div
|
||||||
margin-right: auto;
|
className="c1"
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: wrap;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin-right: -0.5rem;
|
|
||||||
margin-left: -0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
padding-right: 0.5rem;
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: 400;
|
|
||||||
color: ;
|
|
||||||
margin: 1.25rem 0 1.125rem 0;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
border: solid;
|
|
||||||
border-width: 0 0.125rem 0.125rem 0;
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0.125rem;
|
|
||||||
-webkit-transform: rotate(-45deg);
|
|
||||||
-ms-transform: rotate(-45deg);
|
|
||||||
transform: rotate(-45deg);
|
|
||||||
margin: 0.1875rem 0.625rem 0.1875rem 0.625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:48em) {
|
|
||||||
.c0 {
|
|
||||||
width: 46rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:64em) {
|
|
||||||
.c0 {
|
|
||||||
width: 61rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:75em) {
|
|
||||||
.c0 {
|
|
||||||
width: 76rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:0em) {
|
|
||||||
.c1 {
|
|
||||||
-webkit-flex-basis: 100%;
|
|
||||||
-ms-flex-basis: 100%;
|
|
||||||
flex-basis: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c1 {
|
<div
|
||||||
box-sizing: border-box;
|
className="c2"
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: wrap;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin-right: -0.5rem;
|
|
||||||
margin-left: -0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
-webkit-flex: 0 0 auto;
|
|
||||||
-ms-flex: 0 0 auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
padding-right: 0.5rem;
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: 400;
|
|
||||||
color: ;
|
|
||||||
margin: 1.25rem 0 1.125rem 0;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
border: solid;
|
|
||||||
border-width: 0 0.125rem 0.125rem 0;
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0.125rem;
|
|
||||||
-webkit-transform: rotate(-45deg);
|
|
||||||
-ms-transform: rotate(-45deg);
|
|
||||||
transform: rotate(-45deg);
|
|
||||||
margin: 0.1875rem 0.625rem 0.1875rem 0.625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width:0em) {
|
|
||||||
.c0 {
|
|
||||||
-webkit-flex-basis: 100%;
|
|
||||||
-ms-flex-basis: 100%;
|
|
||||||
flex-basis: 100%;
|
|
||||||
max-width: 100%;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<div
|
||||||
box-sizing: border-box;
|
className="c3"
|
||||||
display: -webkit-box;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-flex-direction: row;
|
|
||||||
-ms-flex-direction: row;
|
|
||||||
flex-direction: row;
|
|
||||||
-webkit-flex-wrap: wrap;
|
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
margin-right: -0.5rem;
|
|
||||||
margin-left: -0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: 400;
|
|
||||||
color: ;
|
|
||||||
margin: 1.25rem 0 1.125rem 0;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
border: solid;
|
|
||||||
border-width: 0 0.125rem 0.125rem 0;
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0.125rem;
|
|
||||||
-webkit-transform: rotate(-45deg);
|
|
||||||
-ms-transform: rotate(-45deg);
|
|
||||||
transform: rotate(-45deg);
|
|
||||||
margin: 0.1875rem 0.625rem 0.1875rem 0.625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
name="breadcrum"
|
name="breadcrum"
|
||||||
>
|
>
|
||||||
.c0 {
|
<div>
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
<h2
|
||||||
font-weight: 500;
|
className="c4"
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: 400;
|
|
||||||
color: ;
|
|
||||||
margin: 1.25rem 0 1.125rem 0;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
border: solid;
|
|
||||||
border-width: 0 0.125rem 0.125rem 0;
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0.125rem;
|
|
||||||
-webkit-transform: rotate(-45deg);
|
|
||||||
-ms-transform: rotate(-45deg);
|
|
||||||
transform: rotate(-45deg);
|
|
||||||
margin: 0.1875rem 0.625rem 0.1875rem 0.625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div>
|
|
||||||
.c0 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: 400;
|
|
||||||
color: ;
|
|
||||||
margin: 1.25rem 0 1.125rem 0;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
<h2
|
|
||||||
className="c0"
|
|
||||||
name="breadcrum-item"
|
name="breadcrum-item"
|
||||||
>
|
>
|
||||||
Dashboard
|
Dashboard
|
||||||
</h2>
|
</h2>
|
||||||
.c0 {
|
<div
|
||||||
border: solid;
|
className="c5"
|
||||||
border-width: 0 0.125rem 0.125rem 0;
|
|
||||||
display: inline-block;
|
|
||||||
padding: 0.125rem;
|
|
||||||
-webkit-transform: rotate(-45deg);
|
|
||||||
-ms-transform: rotate(-45deg);
|
|
||||||
transform: rotate(-45deg);
|
|
||||||
margin: 0.1875rem 0.625rem 0.1875rem 0.625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,7 +6,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: ;
|
|
||||||
font-size: 1.8125rem;
|
font-size: 1.8125rem;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
@ -31,7 +30,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
font-size: 0.9375rem;
|
font-size: 0.9375rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: ;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,9 +59,9 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
-webkit-flex-wrap: nowrap;
|
-webkit-flex-wrap: nowrap;
|
||||||
-ms-flex-wrap: nowrap;
|
-ms-flex-wrap: nowrap;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
-webkit-box-pack: space-between;
|
-webkit-box-pack: justify;
|
||||||
-webkit-justify-content: space-between;
|
-webkit-justify-content: space-between;
|
||||||
-ms-flex-pack: space-between;
|
-ms-flex-pack: justify;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
-webkit-align-content: stretch;
|
-webkit-align-content: stretch;
|
||||||
-ms-flex-line-pack: stretch;
|
-ms-flex-line-pack: stretch;
|
||||||
@ -72,7 +70,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
-webkit-box-align: stretch;
|
-webkit-box-align: stretch;
|
||||||
-ms-flex-align: stretch;
|
-ms-flex-align: stretch;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
background-color: ;
|
|
||||||
max-height: 3.3125rem;
|
max-height: 3.3125rem;
|
||||||
min-height: 3.3125rem;
|
min-height: 3.3125rem;
|
||||||
padding: 0 1.125rem;
|
padding: 0 1.125rem;
|
||||||
@ -92,130 +89,28 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c1 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c1"
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
text-transform: uppercase;
|
|
||||||
color: ;
|
|
||||||
font-size: 1.8125rem;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
-webkit-flex: 1 1 auto;
|
|
||||||
-ms-flex: 1 1 auto;
|
|
||||||
flex: 1 1 auto;
|
|
||||||
-webkit-align-self: stretch;
|
|
||||||
-ms-flex-item-align: stretch;
|
|
||||||
align-self: stretch;
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
padding: 0.9375rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
border-style: none;
|
|
||||||
width: 5.4375rem;
|
|
||||||
height: 1.5625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<h2
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c2"
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
text-transform: uppercase;
|
|
||||||
color: ;
|
|
||||||
font-size: 1.8125rem;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
border-style: none;
|
|
||||||
width: 5.4375rem;
|
|
||||||
height: 1.5625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<h2
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<a
|
||||||
border-style: none;
|
|
||||||
width: 5.4375rem;
|
|
||||||
height: 1.5625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<a
|
|
||||||
href="/"
|
href="/"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
.c0 {
|
<img
|
||||||
border-style: none;
|
className="c3"
|
||||||
width: 5.4375rem;
|
|
||||||
height: 1.5625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<img
|
|
||||||
className="c0"
|
|
||||||
src="test-file-mock"
|
src="test-file-mock"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
.c1 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-weight: 600;
|
|
||||||
text-align: center;
|
|
||||||
color: ;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-align-self: auto;
|
|
||||||
-ms-flex-item-align: auto;
|
|
||||||
align-self: auto;
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
padding: 0.9375rem 0;
|
|
||||||
width: 6.25rem;
|
|
||||||
max-width: 6.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c5"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-weight: 600;
|
|
||||||
text-align: center;
|
|
||||||
color: ;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
className=""
|
className=""
|
||||||
@ -252,65 +147,16 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
transform="translate(-1174 -21)"
|
transform="translate(-1174 -21)"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<span
|
||||||
padding-left: 5px;
|
className="c6"
|
||||||
}
|
|
||||||
|
|
||||||
<span
|
|
||||||
className="c0"
|
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
.c1 {
|
<div
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c4"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-weight: 600;
|
|
||||||
text-align: center;
|
|
||||||
color: ;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
-webkit-flex: 0 1 auto;
|
|
||||||
-ms-flex: 0 1 auto;
|
|
||||||
flex: 0 1 auto;
|
|
||||||
-webkit-align-self: auto;
|
|
||||||
-ms-flex-item-align: auto;
|
|
||||||
align-self: auto;
|
|
||||||
-webkit-order: 0;
|
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
|
||||||
padding: 0.9375rem 0;
|
|
||||||
width: 6.25rem;
|
|
||||||
max-width: 6.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
.c0 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c5"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
font-weight: 600;
|
|
||||||
text-align: center;
|
|
||||||
color: ;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
className=""
|
className=""
|
||||||
@ -346,12 +192,8 @@ exports[`renders <Header /> without throwing 1`] = `
|
|||||||
fillRule="nonzero"
|
fillRule="nonzero"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
.c0 {
|
<span
|
||||||
padding-left: 5px;
|
className="c6"
|
||||||
}
|
|
||||||
|
|
||||||
<span
|
|
||||||
className="c0"
|
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -41,9 +41,7 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: ;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
@ -66,12 +64,9 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
|||||||
.c4:focus {
|
.c4:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4:hover {
|
.c4:hover {
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -80,8 +75,6 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
|||||||
.c4:active:focus {
|
.c4:active:focus {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4[disabled] {
|
.c4[disabled] {
|
||||||
@ -133,14 +126,9 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
touch-action: manipulation;
|
touch-action: manipulation;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: ;
|
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c9::-moz-focus-inner,
|
.c9::-moz-focus-inner,
|
||||||
@ -161,12 +149,9 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
|||||||
.c9:focus {
|
.c9:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c9:hover {
|
.c9:hover {
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
border: solid 0.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,8 +160,6 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
|||||||
.c9:active:focus {
|
.c9:active:focus {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c9[disabled] {
|
.c9[disabled] {
|
||||||
@ -184,23 +167,6 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
|||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c9:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9:active,
|
|
||||||
.c9:active:hover,
|
|
||||||
.c9:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9 + button {
|
.c9 + button {
|
||||||
margin-left: 1.25rem;
|
margin-left: 1.25rem;
|
||||||
}
|
}
|
||||||
@ -251,7 +217,6 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
|||||||
left: 50%;
|
left: 50%;
|
||||||
top: 33.33%;
|
top: 33.33%;
|
||||||
padding: 2.25rem 2.25rem 2.25rem 2.25rem;
|
padding: 2.25rem 2.25rem 2.25rem 2.25rem;
|
||||||
background-color: ;
|
|
||||||
box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1);
|
box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1);
|
||||||
width: 28.75rem;
|
width: 28.75rem;
|
||||||
margin: 0 auto 0 -14.375rem;
|
margin: 0 auto 0 -14.375rem;
|
||||||
@ -266,404 +231,22 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
|||||||
|
|
||||||
.c5 {
|
.c5 {
|
||||||
line-height: 1.25;
|
line-height: 1.25;
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
margin: 0 0 0.75rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c7 {
|
.c7 {
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
margin: 0.75rem 0 1.875rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
<div
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c3 {
|
<div
|
||||||
font-family: sans-serif;
|
className="c1"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3::-moz-focus-inner,
|
|
||||||
.c3[type='button']::-moz-focus-inner,
|
|
||||||
.c3[type='reset']::-moz-focus-inner,
|
|
||||||
.c3[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3:-moz-focusring,
|
|
||||||
.c3[type='button']:-moz-focusring,
|
|
||||||
.c3[type='reset']:-moz-focusring,
|
|
||||||
.c3[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3:active,
|
|
||||||
.c3:active:hover,
|
|
||||||
.c3:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 {
|
|
||||||
font-family: sans-serif;
|
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8::-moz-focus-inner,
|
|
||||||
.c8[type='button']::-moz-focus-inner,
|
|
||||||
.c8[type='reset']::-moz-focus-inner,
|
|
||||||
.c8[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:-moz-focusring,
|
|
||||||
.c8[type='button']:-moz-focusring,
|
|
||||||
.c8[type='reset']:-moz-focusring,
|
|
||||||
.c8[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:active,
|
|
||||||
.c8:active:hover,
|
|
||||||
.c8:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8:active,
|
|
||||||
.c8:active:hover,
|
|
||||||
.c8:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
background-color: #FFFFFF;
|
|
||||||
padding: 0.75rem;
|
|
||||||
min-width: auto;
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:hover,
|
|
||||||
.c2:focus,
|
|
||||||
.c2:active,
|
|
||||||
.c2:active:hover,
|
|
||||||
.c2:active:focus {
|
|
||||||
background-color: #FFFFFF;
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
position: absolute;
|
|
||||||
left: 50%;
|
|
||||||
top: 33.33%;
|
|
||||||
padding: 2.25rem 2.25rem 2.25rem 2.25rem;
|
|
||||||
background-color: ;
|
|
||||||
box-shadow: 0 0 0.375rem 0.0625rem rgba(0,0,0,0.1);
|
|
||||||
width: 28.75rem;
|
|
||||||
margin: 0 auto 0 -14.375rem;
|
|
||||||
z-index: 101;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
position: absolute;
|
|
||||||
right: 0.375rem;
|
|
||||||
top: 0.1875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
line-height: 1.25;
|
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
width={460}
|
width={460}
|
||||||
>
|
>
|
||||||
.c2 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c2 c3 c4"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2::-moz-focus-inner,
|
|
||||||
.c2[type='button']::-moz-focus-inner,
|
|
||||||
.c2[type='reset']::-moz-focus-inner,
|
|
||||||
.c2[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:-moz-focusring,
|
|
||||||
.c2[type='button']:-moz-focusring,
|
|
||||||
.c2[type='reset']:-moz-focusring,
|
|
||||||
.c2[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:active,
|
|
||||||
.c2:active:hover,
|
|
||||||
.c2:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
background-color: #FFFFFF;
|
|
||||||
padding: 0.75rem;
|
|
||||||
min-width: auto;
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1:hover,
|
|
||||||
.c1:focus,
|
|
||||||
.c1:active,
|
|
||||||
.c1:active:hover,
|
|
||||||
.c1:active:focus {
|
|
||||||
background-color: #FFFFFF;
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
position: absolute;
|
|
||||||
right: 0.375rem;
|
|
||||||
top: 0.1875rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0 c1 c2"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
@ -683,484 +266,28 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
|||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
.c5 {
|
<div>
|
||||||
font-family: sans-serif;
|
<h2
|
||||||
font-size: 100%;
|
className="c5 c6"
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5::-moz-focus-inner,
|
|
||||||
.c5[type='button']::-moz-focus-inner,
|
|
||||||
.c5[type='reset']::-moz-focus-inner,
|
|
||||||
.c5[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:-moz-focusring,
|
|
||||||
.c5[type='button']:-moz-focusring,
|
|
||||||
.c5[type='reset']:-moz-focusring,
|
|
||||||
.c5[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:active,
|
|
||||||
.c5:active:hover,
|
|
||||||
.c5:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
font-family: sans-serif;
|
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4::-moz-focus-inner,
|
|
||||||
.c4[type='button']::-moz-focus-inner,
|
|
||||||
.c4[type='reset']::-moz-focus-inner,
|
|
||||||
.c4[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:-moz-focusring,
|
|
||||||
.c4[type='button']:-moz-focusring,
|
|
||||||
.c4[type='reset']:-moz-focusring,
|
|
||||||
.c4[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:active,
|
|
||||||
.c4:active:hover,
|
|
||||||
.c4:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:active,
|
|
||||||
.c4:active:hover,
|
|
||||||
.c4:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
line-height: 1.25;
|
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div>
|
|
||||||
.c1 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
line-height: 1.25;
|
|
||||||
color: ;
|
|
||||||
margin: 0 0 0.75rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<h2
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
Deleting a service:
|
Deleting a service:
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
Nginx
|
Nginx
|
||||||
</h2>
|
</h2>
|
||||||
.c1 {
|
<p
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c7 c8"
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1.5rem;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
color: ;
|
|
||||||
margin: 0.75rem 0 1.875rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
<p
|
|
||||||
className="c0 c1"
|
|
||||||
>
|
>
|
||||||
Deleting a service can lead to irreversible loss of data and failures in your application. Are you sure you want to continue?
|
Deleting a service can lead to irreversible loss of data and failures in your application. Are you sure you want to continue?
|
||||||
</p>
|
</p>
|
||||||
.c0 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c9"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
color: ;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0::-moz-focus-inner,
|
|
||||||
.c0[type='button']::-moz-focus-inner,
|
|
||||||
.c0[type='reset']::-moz-focus-inner,
|
|
||||||
.c0[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:-moz-focusring,
|
|
||||||
.c0[type='button']:-moz-focusring,
|
|
||||||
.c0[type='reset']:-moz-focusring,
|
|
||||||
.c0[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
.c0 {
|
<button
|
||||||
font-family: sans-serif;
|
className="c4"
|
||||||
font-size: 100%;
|
|
||||||
line-height: 1.15;
|
|
||||||
margin: 0;
|
|
||||||
overflow: visible;
|
|
||||||
text-transform: none;
|
|
||||||
-webkit-appearance: button;
|
|
||||||
-moz-appearance: button;
|
|
||||||
appearance: button;
|
|
||||||
min-width: 7.5rem;
|
|
||||||
box-sizing: border-box;
|
|
||||||
display: inline-block;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.9375rem 1.125rem;
|
|
||||||
position: relative;
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 0.9375rem;
|
|
||||||
text-align: center;
|
|
||||||
font-style: normal;
|
|
||||||
font-stretch: normal;
|
|
||||||
line-height: normal;
|
|
||||||
-webkit-letter-spacing: normal;
|
|
||||||
-moz-letter-spacing: normal;
|
|
||||||
-ms-letter-spacing: normal;
|
|
||||||
letter-spacing: normal;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
vertical-align: middle;
|
|
||||||
touch-action: manipulation;
|
|
||||||
cursor: pointer;
|
|
||||||
color: ;
|
|
||||||
background-image: none;
|
|
||||||
background-color: ;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0::-moz-focus-inner,
|
|
||||||
.c0[type='button']::-moz-focus-inner,
|
|
||||||
.c0[type='reset']::-moz-focus-inner,
|
|
||||||
.c0[type='submit']::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:-moz-focusring,
|
|
||||||
.c0[type='button']:-moz-focusring,
|
|
||||||
.c0[type='reset']:-moz-focusring,
|
|
||||||
.c0[type='submit']:-moz-focusring {
|
|
||||||
outline: 0.0625rem dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: 0;
|
|
||||||
text-decoration: none;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:hover {
|
|
||||||
background-color: ;
|
|
||||||
border: solid 0.0625rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:active,
|
|
||||||
.c0:active:hover,
|
|
||||||
.c0:active:focus {
|
|
||||||
background-image: none;
|
|
||||||
outline: 0;
|
|
||||||
background-color: ;
|
|
||||||
border-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0[disabled] {
|
|
||||||
cursor: not-allowed;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 + button {
|
|
||||||
margin-left: 1.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
<button
|
|
||||||
className="c0"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
Delete service
|
Delete service
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -2,222 +2,28 @@
|
|||||||
|
|
||||||
exports[`renders <ServicesTopology /> without throwing 1`] = `
|
exports[`renders <ServicesTopology /> without throwing 1`] = `
|
||||||
.c5 {
|
.c5 {
|
||||||
stroke: ;
|
|
||||||
stroke-width: 1.5;
|
stroke-width: 1.5;
|
||||||
stroke: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c3 {
|
.c3 {
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke-width: 1.5;
|
stroke-width: 1.5;
|
||||||
rx: 4;
|
rx: 4;
|
||||||
ry: 4;
|
ry: 4;
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c4 {
|
.c4 {
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c10 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7 {
|
.c7 {
|
||||||
opacity: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
width: 100%;
|
|
||||||
height: 1000px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:not(:root) {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
padding: 1.5rem;
|
|
||||||
background-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div>
|
|
||||||
.c5 {
|
|
||||||
stroke: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
stroke: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
rx: 4;
|
|
||||||
ry: 4;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 600;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c10 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7 {
|
|
||||||
opacity: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
width: 100%;
|
|
||||||
height: 1000px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:not(:root) {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
padding: 1.5rem;
|
|
||||||
background-color: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div
|
|
||||||
className="c0"
|
|
||||||
>
|
|
||||||
.c4 {
|
|
||||||
stroke: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
stroke: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
rx: 4;
|
|
||||||
ry: 4;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 600;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c9 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.c6 {
|
.c6 {
|
||||||
@ -229,200 +35,33 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
|||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c5 {
|
.c2 {
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 1000px;
|
height: 1000px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c1:not(:root) {
|
.c2:not(:root) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c0 {
|
.c0 {
|
||||||
|
padding: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c1 {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
<div
|
<div>
|
||||||
|
<div
|
||||||
className="c0"
|
className="c0"
|
||||||
>
|
>
|
||||||
.c3 {
|
<div
|
||||||
stroke: ;
|
className="c1"
|
||||||
stroke-width: 1.5;
|
>
|
||||||
stroke: ;
|
<div>
|
||||||
}
|
<svg
|
||||||
|
className="c2"
|
||||||
.c1 {
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
rx: 4;
|
|
||||||
ry: 4;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 600;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 {
|
|
||||||
opacity: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
width: 100%;
|
|
||||||
height: 1000px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:not(:root) {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
<div>
|
|
||||||
.c3 {
|
|
||||||
stroke: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
stroke: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
rx: 4;
|
|
||||||
ry: 4;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 600;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c8 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 {
|
|
||||||
opacity: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
width: 100%;
|
|
||||||
height: 1000px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:not(:root) {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
className="c0"
|
|
||||||
id="topology-svg"
|
id="topology-svg"
|
||||||
onMouseMove={[Function]}
|
onMouseMove={[Function]}
|
||||||
onMouseUp={[Function]}
|
onMouseUp={[Function]}
|
||||||
@ -430,194 +69,20 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
|||||||
onTouchEnd={[Function]}
|
onTouchEnd={[Function]}
|
||||||
onTouchMove={[Function]}
|
onTouchMove={[Function]}
|
||||||
>
|
>
|
||||||
.c2 {
|
<g>
|
||||||
stroke: ;
|
<g
|
||||||
stroke-width: 1.5;
|
|
||||||
stroke: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
rx: 4;
|
|
||||||
ry: 4;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 600;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
opacity: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<g>
|
|
||||||
.c2 {
|
|
||||||
stroke: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
stroke: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
rx: 4;
|
|
||||||
ry: 4;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 600;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c7 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4 {
|
|
||||||
opacity: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c4:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c5 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c6 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<g
|
|
||||||
transform="translate(0, 0)"
|
transform="translate(0, 0)"
|
||||||
>
|
>
|
||||||
.c0 {
|
<rect
|
||||||
stroke: ;
|
className="c3"
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
rx: 4;
|
|
||||||
ry: 4;
|
|
||||||
stroke: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height={114}
|
height={114}
|
||||||
width={180}
|
width={180}
|
||||||
x={0}
|
x={0}
|
||||||
y={0}
|
y={0}
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<g>
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
<text
|
||||||
font-weight: 400;
|
className="c4"
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 600;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
<g>
|
|
||||||
.c0 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 600;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
<text
|
|
||||||
className="c0"
|
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
x={12}
|
x={12}
|
||||||
@ -626,94 +91,36 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
|||||||
Nginx
|
Nginx
|
||||||
</text>
|
</text>
|
||||||
</g>
|
</g>
|
||||||
.c0 {
|
<g
|
||||||
stroke: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
stroke: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
opacity: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<g
|
|
||||||
transform="translate(140, 0)"
|
transform="translate(140, 0)"
|
||||||
>
|
>
|
||||||
.c0 {
|
<line
|
||||||
stroke: ;
|
className="c5"
|
||||||
stroke-width: 1.5;
|
|
||||||
stroke: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<line
|
|
||||||
className="c0"
|
|
||||||
x1={0}
|
x1={0}
|
||||||
x2={0}
|
x2={0}
|
||||||
y1={0}
|
y1={0}
|
||||||
y2={48}
|
y2={48}
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<circle
|
||||||
-webkit-fill: ;
|
className=""
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<circle
|
|
||||||
className="c0"
|
|
||||||
cx={20}
|
cx={20}
|
||||||
cy={18}
|
cy={18}
|
||||||
r={2}
|
r={2}
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<circle
|
||||||
-webkit-fill: ;
|
className=""
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<circle
|
|
||||||
className="c0"
|
|
||||||
cx={20}
|
cx={20}
|
||||||
cy={24}
|
cy={24}
|
||||||
r={2}
|
r={2}
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<circle
|
||||||
-webkit-fill: ;
|
className=""
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<circle
|
|
||||||
className="c0"
|
|
||||||
cx={20}
|
cx={20}
|
||||||
cy={30}
|
cy={30}
|
||||||
r={2}
|
r={2}
|
||||||
/>
|
/>
|
||||||
.c0 {
|
<rect
|
||||||
opacity: 0;
|
className="c6"
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
<rect
|
|
||||||
className="c0"
|
|
||||||
height={48}
|
height={48}
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
@ -722,92 +129,24 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
|||||||
width={40}
|
width={40}
|
||||||
/>
|
/>
|
||||||
</g>
|
</g>
|
||||||
.c0 {
|
<g
|
||||||
stroke: ;
|
|
||||||
stroke-width: 1.5;
|
|
||||||
stroke: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c3 {
|
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c2 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<g
|
|
||||||
transform="translate(0, 48)"
|
transform="translate(0, 48)"
|
||||||
>
|
>
|
||||||
.c0 {
|
<line
|
||||||
stroke: ;
|
className="c5"
|
||||||
stroke-width: 1.5;
|
|
||||||
stroke: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<line
|
|
||||||
className="c0"
|
|
||||||
x1={0}
|
x1={0}
|
||||||
x2={180}
|
x2={180}
|
||||||
y1={0}
|
y1={0}
|
||||||
y2={0}
|
y2={0}
|
||||||
/>
|
/>
|
||||||
.c2 {
|
<g
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c0 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
.c1 {
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<g
|
|
||||||
transform="translate(12, 11)"
|
transform="translate(12, 11)"
|
||||||
>
|
>
|
||||||
.c0 {
|
<g
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<g
|
|
||||||
transform="translate(0, 0)"
|
transform="translate(0, 0)"
|
||||||
>
|
>
|
||||||
.c0 {
|
<svg
|
||||||
-webkit-fill: ;
|
className=""
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
className="c0"
|
|
||||||
healthy="UNHEALTHY"
|
healthy="UNHEALTHY"
|
||||||
height="18"
|
height="18"
|
||||||
viewBox="0 0 18 18"
|
viewBox="0 0 18 18"
|
||||||
@ -832,26 +171,12 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
|||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
</g>
|
</g>
|
||||||
.c0 {
|
<g
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<g
|
|
||||||
transform="translate(30, 4.5)"
|
transform="translate(30, 4.5)"
|
||||||
>
|
>
|
||||||
.c0 {
|
<svg
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<svg
|
|
||||||
active={undefined}
|
active={undefined}
|
||||||
className="c0"
|
className=""
|
||||||
consul={undefined}
|
consul={undefined}
|
||||||
height="9"
|
height="9"
|
||||||
viewBox="0 0 18 9"
|
viewBox="0 0 18 9"
|
||||||
@ -867,51 +192,18 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
|||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</g>
|
</g>
|
||||||
.c0 {
|
<text
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c7"
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<text
|
|
||||||
className="c0"
|
|
||||||
x={54}
|
x={54}
|
||||||
y={14}
|
y={14}
|
||||||
>
|
>
|
||||||
1 inst.
|
1 inst.
|
||||||
</text>
|
</text>
|
||||||
.c0 {
|
<g
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<g
|
|
||||||
transform="translate(54, 36)"
|
transform="translate(54, 36)"
|
||||||
>
|
>
|
||||||
.c0 {
|
<text
|
||||||
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
|
className="c7"
|
||||||
font-weight: 400;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
font-size: 12px;
|
|
||||||
opacity: 0.8;
|
|
||||||
-webkit-fill: ;
|
|
||||||
fill: ;
|
|
||||||
}
|
|
||||||
|
|
||||||
<text
|
|
||||||
className="c0"
|
|
||||||
>
|
>
|
||||||
1
|
1
|
||||||
running
|
running
|
||||||
|
Loading…
Reference in New Issue
Block a user