mirror of
https://github.com/yldio/copilot.git
synced 2024-11-14 15:20: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 {
|
||||
background-color: ${props => props.theme.background};
|
||||
}`
|
||||
}
|
||||
}`};
|
||||
`;
|
||||
|
||||
const StatusContainer = styled.div`
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: center;
|
||||
align-content: center;
|
||||
justify-content: flex-start;
|
||||
align-items: 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 = ({
|
||||
@ -107,7 +121,7 @@ const InstanceCard = ({
|
||||
);
|
||||
|
||||
const label = (instance.healthy || 'UNKNOWN').toLowerCase();
|
||||
const icon = <HealthyIcon healthy={instance.healthy} />;
|
||||
const icon = <HealthyIconStyled healthy={instance.healthy} />;
|
||||
|
||||
const handleHealthMouseOver = evt => {
|
||||
onHealthMouseOver(evt, instance);
|
||||
@ -126,24 +140,26 @@ const InstanceCard = ({
|
||||
<CardView>
|
||||
<CardTitle>{instance.name}</CardTitle>
|
||||
<CardDescription>
|
||||
<CardInfo
|
||||
icon={icon}
|
||||
iconPosition="left"
|
||||
label={label}
|
||||
color="dark"
|
||||
onMouseOver={handleHealthMouseOver}
|
||||
onMouseOut={handleMouseOut}
|
||||
/>
|
||||
<CardInfoStyled>
|
||||
<CardInfo
|
||||
icon={icon}
|
||||
iconPosition="left"
|
||||
label={label}
|
||||
color="dark"
|
||||
onMouseOver={handleHealthMouseOver}
|
||||
onMouseOut={handleMouseOut}
|
||||
/>
|
||||
</CardInfoStyled>
|
||||
</CardDescription>
|
||||
<CardDescription>
|
||||
<StatusContainer
|
||||
onMouseOver={handleStatusMouseOver}
|
||||
onMouseOut={handleMouseOut}
|
||||
>
|
||||
<Label>
|
||||
<Status>
|
||||
<Dot {...statusProps} />
|
||||
{titleCase(instance.status)}
|
||||
</Label>
|
||||
<Label>{titleCase(instance.status)}</Label>
|
||||
</Status>
|
||||
</StatusContainer>
|
||||
</CardDescription>
|
||||
</CardView>
|
||||
|
@ -24,9 +24,7 @@ import {
|
||||
Anchor
|
||||
} from 'joyent-ui-toolkit';
|
||||
|
||||
const StyledCardHeader = styled(CardHeader)`
|
||||
position: relative;
|
||||
`;
|
||||
const StyledCardHeader = styled(CardHeader)`position: relative;`;
|
||||
|
||||
const TitleInnerContainer = styled.div`
|
||||
display: flex;
|
||||
@ -82,15 +80,18 @@ const GraphTitle = Small.extend`
|
||||
color: #494949;
|
||||
`;
|
||||
|
||||
const HealthyIconStyled = styled(HealthyIcon)`
|
||||
/* I SAID NO PRETTIER */
|
||||
display: flex;
|
||||
`;
|
||||
|
||||
const ChildTitle = styled(CardTitle)`
|
||||
padding: 0;
|
||||
flex: 0 1 auto;
|
||||
align-self: stretch;
|
||||
`;
|
||||
|
||||
const ServiceView = styled(CardView)`
|
||||
height: ${remcalc(120)};
|
||||
`;
|
||||
const ServiceView = styled(CardView)`height: ${remcalc(120)};`;
|
||||
|
||||
const StatusContainer = styled(CardDescription)`
|
||||
display: flex;
|
||||
@ -170,7 +171,7 @@ const ServiceListItem = ({
|
||||
if (service.instancesActive) {
|
||||
const { total, healthy } = service.instancesHealthy;
|
||||
const iconHealthy = total === healthy ? 'HEALTHY' : 'NOT HEALTHY';
|
||||
const icon = <HealthyIcon healthy={iconHealthy} />;
|
||||
const icon = <HealthyIconStyled healthy={iconHealthy} />;
|
||||
const label = `${healthy} of ${total} healthy`;
|
||||
|
||||
healthyInfo = (
|
||||
@ -229,4 +230,4 @@ ServiceListItem.propTypes = {
|
||||
service: PropTypes.object.isRequired // Define better
|
||||
};
|
||||
|
||||
export default ServiceListItem;
|
||||
export default ServiceListItem;
|
||||
|
@ -1,4 +1,5 @@
|
||||
import React from 'react';
|
||||
import styled from 'styled-components';
|
||||
import PropTypes from 'prop-types';
|
||||
import { compose } from 'react-apollo';
|
||||
import { Col, Row } from 'react-styled-flexboxgrid';
|
||||
@ -12,14 +13,16 @@ import { FormGroup, Toggle, ToggleList, Legend } from 'joyent-ui-toolkit';
|
||||
|
||||
const StyledLegend = Legend.extend`
|
||||
float: left;
|
||||
padding-top: ${unitcalc(2)};
|
||||
margin-right: ${unitcalc(1.5)};
|
||||
margin-bottom: ${unitcalc(1.5)};
|
||||
`;
|
||||
|
||||
const PaddedRow = Row.extend`
|
||||
margin-bottom: ${remcalc(18)}
|
||||
`;
|
||||
const PaddedRow = Row.extend`margin-bottom: ${remcalc(18)};`;
|
||||
|
||||
const ToggleStyled = styled(Toggle)`
|
||||
& + label {
|
||||
padding: ${remcalc(16)};
|
||||
}
|
||||
`;
|
||||
|
||||
export const ServicesMenu = ({ location: { pathname }, history: { push } }) => {
|
||||
const toggleValue = pathname.split('-').pop();
|
||||
@ -38,15 +41,15 @@ export const ServicesMenu = ({ location: { pathname }, history: { push } }) => {
|
||||
<Title>Services</Title>
|
||||
<PaddedRow>
|
||||
<Col xs={5}>
|
||||
<StyledLegend>Show</StyledLegend>
|
||||
<FormGroup name="service-view" value={toggleValue}>
|
||||
<StyledLegend>View</StyledLegend>
|
||||
<ToggleList>
|
||||
<Toggle value="list" onChange={handleToggle}>
|
||||
<ToggleStyled value="list" onChange={handleToggle}>
|
||||
List
|
||||
</Toggle>
|
||||
<Toggle value="topology" onChange={handleToggle}>
|
||||
</ToggleStyled>
|
||||
<ToggleStyled value="topology" onChange={handleToggle}>
|
||||
Topology
|
||||
</Toggle>
|
||||
</ToggleStyled>
|
||||
</ToggleList>
|
||||
</FormGroup>
|
||||
</Col>
|
||||
|
@ -41,14 +41,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
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,
|
||||
@ -69,12 +64,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
.c4:focus {
|
||||
outline: 0;
|
||||
text-decoration: none;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c4:hover {
|
||||
background-color: ;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
|
||||
@ -83,8 +75,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
.c4:active:focus {
|
||||
background-image: none;
|
||||
outline: 0;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c4[disabled] {
|
||||
@ -92,23 +82,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
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;
|
||||
}
|
||||
@ -153,9 +126,7 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
vertical-align: middle;
|
||||
touch-action: manipulation;
|
||||
cursor: pointer;
|
||||
color: ;
|
||||
background-image: none;
|
||||
background-color: ;
|
||||
border-radius: 0.25rem;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
@ -178,12 +149,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
.c5:focus {
|
||||
outline: 0;
|
||||
text-decoration: none;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c5:hover {
|
||||
background-color: ;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
|
||||
@ -192,8 +160,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
.c5:active:focus {
|
||||
background-image: none;
|
||||
outline: 0;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c5[disabled] {
|
||||
@ -220,29 +186,15 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
|
||||
.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
|
||||
<h2
|
||||
className="c0 c1"
|
||||
>
|
||||
Deleting a deployment group:
|
||||
@ -250,235 +202,19 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
|
||||
Wordpress Blog Example
|
||||
</h2>
|
||||
.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;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
color: ;
|
||||
margin: 0.75rem 0 1.875rem 0;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0 c1"
|
||||
<p
|
||||
className="c2 c3"
|
||||
>
|
||||
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>
|
||||
.c0 {
|
||||
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: ;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c4"
|
||||
onClick={[Function]}
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c5"
|
||||
onClick={[Function]}
|
||||
>
|
||||
Delete deployment group
|
||||
|
@ -49,44 +49,11 @@ exports[`renders <EmtpyInstances /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<div
|
||||
className="c1"
|
||||
>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c2"
|
||||
>
|
||||
You don't have any instances
|
||||
</p>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -2,17 +2,11 @@
|
||||
|
||||
exports[`renders <EEditor /> without throwing 1`] = `
|
||||
.c1 {
|
||||
-webkit-fill: ;
|
||||
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;
|
||||
@ -20,9 +14,6 @@ exports[`renders <EEditor /> without throwing 1`] = `
|
||||
}
|
||||
|
||||
.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;
|
||||
@ -77,105 +68,34 @@ exports[`renders <EEditor /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c0 {
|
||||
-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
|
||||
<svg
|
||||
height="10"
|
||||
width="28"
|
||||
>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
stroke: ;
|
||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c1"
|
||||
height="6"
|
||||
width="6"
|
||||
x="2"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c2"
|
||||
height="6"
|
||||
width="6"
|
||||
x="11"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c3"
|
||||
height="6"
|
||||
width="6"
|
||||
x="20"
|
||||
y="2"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c4"
|
||||
>
|
||||
Loading...
|
||||
</p>
|
||||
@ -184,17 +104,11 @@ exports[`renders <EEditor /> without throwing 1`] = `
|
||||
|
||||
exports[`renders <EEditor /> without throwing 2`] = `
|
||||
.c1 {
|
||||
-webkit-fill: ;
|
||||
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;
|
||||
@ -202,9 +116,6 @@ exports[`renders <EEditor /> without throwing 2`] = `
|
||||
}
|
||||
|
||||
.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;
|
||||
@ -259,105 +170,34 @@ exports[`renders <EEditor /> without throwing 2`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c0 {
|
||||
-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
|
||||
<svg
|
||||
height="10"
|
||||
width="28"
|
||||
>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
stroke: ;
|
||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c1"
|
||||
height="6"
|
||||
width="6"
|
||||
x="2"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c2"
|
||||
height="6"
|
||||
width="6"
|
||||
x="11"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c3"
|
||||
height="6"
|
||||
width="6"
|
||||
x="20"
|
||||
y="2"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c4"
|
||||
>
|
||||
Loading...
|
||||
</p>
|
||||
@ -366,17 +206,11 @@ exports[`renders <EEditor /> without throwing 2`] = `
|
||||
|
||||
exports[`renders <MEditor /> without throwing 1`] = `
|
||||
.c1 {
|
||||
-webkit-fill: ;
|
||||
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;
|
||||
@ -384,9 +218,6 @@ exports[`renders <MEditor /> without throwing 1`] = `
|
||||
}
|
||||
|
||||
.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;
|
||||
@ -441,105 +272,34 @@ exports[`renders <MEditor /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c0 {
|
||||
-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
|
||||
<svg
|
||||
height="10"
|
||||
width="28"
|
||||
>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
stroke: ;
|
||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c1"
|
||||
height="6"
|
||||
width="6"
|
||||
x="2"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c2"
|
||||
height="6"
|
||||
width="6"
|
||||
x="11"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c3"
|
||||
height="6"
|
||||
width="6"
|
||||
x="20"
|
||||
y="2"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c4"
|
||||
>
|
||||
Loading...
|
||||
</p>
|
||||
@ -548,17 +308,11 @@ exports[`renders <MEditor /> without throwing 1`] = `
|
||||
|
||||
exports[`renders <MEditor /> without throwing 2`] = `
|
||||
.c1 {
|
||||
-webkit-fill: ;
|
||||
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;
|
||||
@ -566,9 +320,6 @@ exports[`renders <MEditor /> without throwing 2`] = `
|
||||
}
|
||||
|
||||
.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;
|
||||
@ -623,105 +374,34 @@ exports[`renders <MEditor /> without throwing 2`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c0 {
|
||||
-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
|
||||
<svg
|
||||
height="10"
|
||||
width="28"
|
||||
>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
stroke: ;
|
||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c1"
|
||||
height="6"
|
||||
width="6"
|
||||
x="2"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c2"
|
||||
height="6"
|
||||
width="6"
|
||||
x="11"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c3"
|
||||
height="6"
|
||||
width="6"
|
||||
x="20"
|
||||
y="2"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c4"
|
||||
>
|
||||
Loading...
|
||||
</p>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -2,17 +2,11 @@
|
||||
|
||||
exports[`renders <Files /> without throwing 1`] = `
|
||||
.c7 {
|
||||
-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;
|
||||
@ -20,9 +14,6 @@ exports[`renders <Files /> without throwing 1`] = `
|
||||
}
|
||||
|
||||
.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;
|
||||
@ -54,14 +45,12 @@ exports[`renders <Files /> without throwing 1`] = `
|
||||
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;
|
||||
@ -69,7 +58,6 @@ exports[`renders <Files /> without throwing 1`] = `
|
||||
}
|
||||
|
||||
.c5:focus {
|
||||
border-color: ;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
@ -95,7 +83,6 @@ exports[`renders <Files /> without throwing 1`] = `
|
||||
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;
|
||||
@ -160,9 +147,9 @@ exports[`renders <Files /> without throwing 1`] = `
|
||||
-webkit-flex-wrap: nowrap;
|
||||
-ms-flex-wrap: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
-webkit-box-pack: space-between;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-ms-flex-pack: space-between;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-align-content: stretch;
|
||||
-ms-flex-line-pack: stretch;
|
||||
@ -191,459 +178,21 @@ exports[`renders <Files /> without throwing 1`] = `
|
||||
}
|
||||
|
||||
<div>
|
||||
.c7 {
|
||||
-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
|
||||
<div
|
||||
className="c0 c1"
|
||||
name="card"
|
||||
>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<fieldset
|
||||
className="c2"
|
||||
style={undefined}
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
<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"
|
||||
<div>
|
||||
<span
|
||||
className="c3"
|
||||
>
|
||||
.c1 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<input
|
||||
className="c4 c5"
|
||||
id="SlzVp"
|
||||
placeholder="Filename including extension…"
|
||||
type="text"
|
||||
value={undefined}
|
||||
@ -651,181 +200,37 @@ exports[`renders <Files /> without throwing 1`] = `
|
||||
</span>
|
||||
</div>
|
||||
</fieldset>
|
||||
.c1 {
|
||||
-webkit-fill: ;
|
||||
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"
|
||||
<div
|
||||
className="c6"
|
||||
>
|
||||
.c0 {
|
||||
-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
|
||||
<svg
|
||||
height="10"
|
||||
width="28"
|
||||
>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
stroke: ;
|
||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c7"
|
||||
height="6"
|
||||
width="6"
|
||||
x="2"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c8"
|
||||
height="6"
|
||||
width="6"
|
||||
x="11"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c9"
|
||||
height="6"
|
||||
width="6"
|
||||
x="20"
|
||||
y="2"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c10"
|
||||
>
|
||||
Loading...
|
||||
</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 {
|
||||
position: relative;
|
||||
margin-bottom: 0.75rem;
|
||||
background-color: ;
|
||||
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
||||
border: 0.0625rem solid;
|
||||
}
|
||||
@ -22,7 +21,6 @@ exports[`renders <Error /> without throwing 1`] = `
|
||||
left: 0;
|
||||
width: 2.25rem;
|
||||
height: 100%;
|
||||
background-color: ;
|
||||
}
|
||||
|
||||
.c2 {
|
||||
@ -36,50 +34,15 @@ exports[`renders <Error /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c0 {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 2.25rem;
|
||||
height: 100%;
|
||||
background-color: ;
|
||||
}
|
||||
|
||||
<div
|
||||
className="c0"
|
||||
type="MESSAGE"
|
||||
<div
|
||||
className="c1"
|
||||
type="ERROR"
|
||||
/>
|
||||
.c2 {
|
||||
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 {
|
||||
padding: 0.75rem 0 0.84375rem 0;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
margin: 0.09375rem 3.375rem 0 3.375rem;
|
||||
}
|
||||
|
||||
<div
|
||||
className="c0"
|
||||
<div
|
||||
className="c2"
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
margin: 0.09375rem 3.375rem 0 3.375rem;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0 c1"
|
||||
<p
|
||||
className="c3 c4"
|
||||
>
|
||||
Ooops, there's been an error
|
||||
</p>
|
||||
|
@ -2,17 +2,11 @@
|
||||
|
||||
exports[`renders <Loader /> without throwing 1`] = `
|
||||
.c1 {
|
||||
-webkit-fill: ;
|
||||
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;
|
||||
@ -20,9 +14,6 @@ exports[`renders <Loader /> without throwing 1`] = `
|
||||
}
|
||||
|
||||
.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;
|
||||
@ -77,105 +68,34 @@ exports[`renders <Loader /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c0 {
|
||||
-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
|
||||
<svg
|
||||
height="10"
|
||||
width="28"
|
||||
>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
stroke: ;
|
||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c1"
|
||||
height="6"
|
||||
width="6"
|
||||
x="2"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c2"
|
||||
height="6"
|
||||
width="6"
|
||||
x="11"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c3"
|
||||
height="6"
|
||||
width="6"
|
||||
x="20"
|
||||
y="2"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c4"
|
||||
>
|
||||
Loading...
|
||||
</p>
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`renders <ModalError /> without throwing 1`] = `
|
||||
.c5 {
|
||||
.c4 {
|
||||
font-family: sans-serif;
|
||||
font-size: 100%;
|
||||
line-height: 1.15;
|
||||
@ -41,127 +41,58 @@ exports[`renders <ModalError /> without throwing 1`] = `
|
||||
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: ;
|
||||
}
|
||||
|
||||
.c5::-moz-focus-inner,
|
||||
.c5[type='button']::-moz-focus-inner,
|
||||
.c5[type='reset']::-moz-focus-inner,
|
||||
.c5[type='submit']::-moz-focus-inner {
|
||||
.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;
|
||||
}
|
||||
|
||||
.c5:-moz-focusring,
|
||||
.c5[type='button']:-moz-focusring,
|
||||
.c5[type='reset']:-moz-focusring,
|
||||
.c5[type='submit']:-moz-focusring {
|
||||
.c4:-moz-focusring,
|
||||
.c4[type='button']:-moz-focusring,
|
||||
.c4[type='reset']:-moz-focusring,
|
||||
.c4[type='submit']:-moz-focusring {
|
||||
outline: 0.0625rem dotted ButtonText;
|
||||
}
|
||||
|
||||
.c5:focus {
|
||||
.c4:focus {
|
||||
outline: 0;
|
||||
text-decoration: none;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c5:hover {
|
||||
background-color: ;
|
||||
.c4:hover {
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
|
||||
.c5:active,
|
||||
.c5:active:hover,
|
||||
.c5:active:focus {
|
||||
.c4:active,
|
||||
.c4:active:hover,
|
||||
.c4:active:focus {
|
||||
background-image: none;
|
||||
outline: 0;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c5[disabled] {
|
||||
.c4[disabled] {
|
||||
cursor: not-allowed;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.c5:focus {
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c5:hover {
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c5:active,
|
||||
.c5:active:hover,
|
||||
.c5:active:focus {
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c5 + button {
|
||||
.c4 + button {
|
||||
margin-left: 1.25rem;
|
||||
}
|
||||
|
||||
.c2 {
|
||||
.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;
|
||||
}
|
||||
|
||||
.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 {
|
||||
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-weight: 400;
|
||||
line-height: 1.5rem;
|
||||
@ -169,129 +100,25 @@ exports[`renders <ModalError /> without throwing 1`] = `
|
||||
}
|
||||
|
||||
.c0 {
|
||||
color: ;
|
||||
line-height: 1.25;
|
||||
margin: 0 0 0.75rem 0;
|
||||
}
|
||||
|
||||
.c2 {
|
||||
margin: 0.75rem 0 1.875rem 0;
|
||||
}
|
||||
|
||||
<p
|
||||
<div>
|
||||
<h2
|
||||
className="c0 c1"
|
||||
/>
|
||||
<p
|
||||
className="c2 c3"
|
||||
>
|
||||
Modal error message
|
||||
</p>
|
||||
.c0 {
|
||||
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: ;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c4"
|
||||
onClick={[Function]}
|
||||
>
|
||||
Close
|
||||
|
@ -11,7 +11,6 @@ exports[`renders <Warning /> without throwing 1`] = `
|
||||
.c0 {
|
||||
position: relative;
|
||||
margin-bottom: 0.75rem;
|
||||
background-color: ;
|
||||
box-shadow: 0 0.125rem 0 0 rgba(0,0,0,0.05);
|
||||
border: 0.0625rem solid;
|
||||
}
|
||||
@ -22,7 +21,6 @@ exports[`renders <Warning /> without throwing 1`] = `
|
||||
left: 0;
|
||||
width: 2.25rem;
|
||||
height: 100%;
|
||||
background-color: ;
|
||||
}
|
||||
|
||||
.c2 {
|
||||
@ -36,50 +34,15 @@ exports[`renders <Warning /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c0 {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 2.25rem;
|
||||
height: 100%;
|
||||
background-color: ;
|
||||
}
|
||||
|
||||
<div
|
||||
className="c0"
|
||||
type="MESSAGE"
|
||||
<div
|
||||
className="c1"
|
||||
type="WARNING"
|
||||
/>
|
||||
.c2 {
|
||||
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 {
|
||||
padding: 0.75rem 0 0.84375rem 0;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
margin: 0.09375rem 3.375rem 0 3.375rem;
|
||||
}
|
||||
|
||||
<div
|
||||
className="c0"
|
||||
<div
|
||||
className="c2"
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
margin: 0.09375rem 3.375rem 0 3.375rem;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0 c1"
|
||||
<p
|
||||
className="c3 c4"
|
||||
>
|
||||
Warning message
|
||||
</p>
|
||||
|
@ -69,132 +69,14 @@ exports[`renders <Breadcrumb /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c0 {
|
||||
margin-right: auto;
|
||||
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"
|
||||
<div
|
||||
className="c1"
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<div
|
||||
className="c2"
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
<div
|
||||
className="c0"
|
||||
<div
|
||||
className="c3"
|
||||
name="breadcrum"
|
||||
/>
|
||||
</div>
|
||||
|
@ -6,7 +6,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
font-weight: 500;
|
||||
font-size: 1.5rem;
|
||||
text-transform: uppercase;
|
||||
color: ;
|
||||
font-size: 1.8125rem;
|
||||
margin: 0;
|
||||
}
|
||||
@ -31,7 +30,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
font-size: 0.9375rem;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
color: ;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@ -61,9 +59,9 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
-webkit-flex-wrap: nowrap;
|
||||
-ms-flex-wrap: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
-webkit-box-pack: space-between;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-ms-flex-pack: space-between;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-align-content: stretch;
|
||||
-ms-flex-line-pack: stretch;
|
||||
@ -72,7 +70,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
-webkit-box-align: stretch;
|
||||
-ms-flex-align: stretch;
|
||||
align-items: stretch;
|
||||
background-color: ;
|
||||
max-height: 3.3125rem;
|
||||
min-height: 3.3125rem;
|
||||
padding: 0 1.125rem;
|
||||
@ -92,130 +89,28 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.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;
|
||||
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"
|
||||
<div
|
||||
className="c1"
|
||||
>
|
||||
.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;
|
||||
text-transform: uppercase;
|
||||
color: ;
|
||||
font-size: 1.8125rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
border-style: none;
|
||||
width: 5.4375rem;
|
||||
height: 1.5625rem;
|
||||
}
|
||||
|
||||
<h2
|
||||
className="c0"
|
||||
<h2
|
||||
className="c2"
|
||||
>
|
||||
.c0 {
|
||||
border-style: none;
|
||||
width: 5.4375rem;
|
||||
height: 1.5625rem;
|
||||
}
|
||||
|
||||
<a
|
||||
<a
|
||||
href="/"
|
||||
onClick={[Function]}
|
||||
>
|
||||
.c0 {
|
||||
border-style: none;
|
||||
width: 5.4375rem;
|
||||
height: 1.5625rem;
|
||||
}
|
||||
|
||||
<img
|
||||
className="c0"
|
||||
<img
|
||||
className="c3"
|
||||
src="test-file-mock"
|
||||
/>
|
||||
</a>
|
||||
</h2>
|
||||
</div>
|
||||
.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;
|
||||
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"
|
||||
<div
|
||||
className="c4"
|
||||
>
|
||||
.c0 {
|
||||
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;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
color: ;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c5"
|
||||
>
|
||||
<svg
|
||||
className=""
|
||||
@ -252,65 +147,16 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
transform="translate(-1174 -21)"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
<span
|
||||
className="c0"
|
||||
<span
|
||||
className="c6"
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
.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;
|
||||
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"
|
||||
<div
|
||||
className="c4"
|
||||
>
|
||||
.c0 {
|
||||
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;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
color: ;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c5"
|
||||
>
|
||||
<svg
|
||||
className=""
|
||||
@ -346,12 +192,8 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
fillRule="nonzero"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
<span
|
||||
className="c0"
|
||||
<span
|
||||
className="c6"
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
|
@ -34,14 +34,8 @@ exports[`renders <Menu /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c0 {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
<ul
|
||||
className="c0"
|
||||
<ul
|
||||
className="c1"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
|
@ -32,9 +32,7 @@ exports[`renders <NotFound /> without throwing 1`] = `
|
||||
vertical-align: middle;
|
||||
touch-action: manipulation;
|
||||
cursor: pointer;
|
||||
color: ;
|
||||
background-image: none;
|
||||
background-color: ;
|
||||
border-radius: 0.25rem;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
@ -42,12 +40,9 @@ exports[`renders <NotFound /> without throwing 1`] = `
|
||||
.c6:focus {
|
||||
outline: 0;
|
||||
text-decoration: none;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c6:hover {
|
||||
background-color: ;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
|
||||
@ -56,8 +51,6 @@ exports[`renders <NotFound /> without throwing 1`] = `
|
||||
.c6:active:focus {
|
||||
background-image: none;
|
||||
outline: 0;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c6[disabled] {
|
||||
@ -131,209 +124,21 @@ exports[`renders <NotFound /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c5 {
|
||||
display: inline-block;
|
||||
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"
|
||||
<div
|
||||
className="c1"
|
||||
>
|
||||
.c1 {
|
||||
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;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
font-weight: normal;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
<h1
|
||||
className="c0 c1"
|
||||
<h1
|
||||
className="c2 c3"
|
||||
>
|
||||
I have no memory of this place
|
||||
</h1>
|
||||
.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;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
margin-bottom: 1.875rem;
|
||||
max-width: 30.625rem;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0 c1"
|
||||
<p
|
||||
className="c4 c5"
|
||||
>
|
||||
HTTP 404: We can’t find what you are looking for. Next time, always follow your nose.
|
||||
</p>
|
||||
.c0 {
|
||||
display: inline-block;
|
||||
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"
|
||||
<a
|
||||
className="c6"
|
||||
href="/deployment-groups"
|
||||
onClick={[Function]}
|
||||
primary={true}
|
||||
|
@ -41,14 +41,9 @@ exports[`renders <Delete /> without throwing 1`] = `
|
||||
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,
|
||||
@ -69,12 +64,9 @@ exports[`renders <Delete /> without throwing 1`] = `
|
||||
.c4:focus {
|
||||
outline: 0;
|
||||
text-decoration: none;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c4:hover {
|
||||
background-color: ;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
|
||||
@ -83,8 +75,6 @@ exports[`renders <Delete /> without throwing 1`] = `
|
||||
.c4:active:focus {
|
||||
background-image: none;
|
||||
outline: 0;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c4[disabled] {
|
||||
@ -92,23 +82,6 @@ exports[`renders <Delete /> without throwing 1`] = `
|
||||
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;
|
||||
}
|
||||
@ -153,9 +126,7 @@ exports[`renders <Delete /> without throwing 1`] = `
|
||||
vertical-align: middle;
|
||||
touch-action: manipulation;
|
||||
cursor: pointer;
|
||||
color: ;
|
||||
background-image: none;
|
||||
background-color: ;
|
||||
border-radius: 0.25rem;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
@ -178,12 +149,9 @@ exports[`renders <Delete /> without throwing 1`] = `
|
||||
.c5:focus {
|
||||
outline: 0;
|
||||
text-decoration: none;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c5:hover {
|
||||
background-color: ;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
|
||||
@ -192,8 +160,6 @@ exports[`renders <Delete /> without throwing 1`] = `
|
||||
.c5:active:focus {
|
||||
background-image: none;
|
||||
outline: 0;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c5[disabled] {
|
||||
@ -220,29 +186,15 @@ exports[`renders <Delete /> without throwing 1`] = `
|
||||
|
||||
.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
|
||||
<h2
|
||||
className="c0 c1"
|
||||
>
|
||||
Deleting a service:
|
||||
@ -250,235 +202,19 @@ exports[`renders <Delete /> without throwing 1`] = `
|
||||
|
||||
Nginx
|
||||
</h2>
|
||||
.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;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
color: ;
|
||||
margin: 0.75rem 0 1.875rem 0;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0 c1"
|
||||
<p
|
||||
className="c2 c3"
|
||||
>
|
||||
Deleting a service can lead to irreversible loss of data and failures in your application. Are you sure you want to continue?
|
||||
</p>
|
||||
.c0 {
|
||||
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: ;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c4"
|
||||
onClick={[Function]}
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c5"
|
||||
onClick={[Function]}
|
||||
>
|
||||
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;
|
||||
touch-action: manipulation;
|
||||
cursor: pointer;
|
||||
color: ;
|
||||
background-image: none;
|
||||
background-color: ;
|
||||
border-radius: 0.25rem;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
@ -66,12 +64,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
.c4:focus {
|
||||
outline: 0;
|
||||
text-decoration: none;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c4:hover {
|
||||
background-color: ;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
|
||||
@ -80,8 +75,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
.c4:active:focus {
|
||||
background-image: none;
|
||||
outline: 0;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c4[disabled] {
|
||||
@ -133,14 +126,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
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: ;
|
||||
}
|
||||
|
||||
.c9::-moz-focus-inner,
|
||||
@ -161,12 +149,9 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
.c9:focus {
|
||||
outline: 0;
|
||||
text-decoration: none;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c9:hover {
|
||||
background-color: ;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
|
||||
@ -175,8 +160,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
.c9:active:focus {
|
||||
background-image: none;
|
||||
outline: 0;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c9[disabled] {
|
||||
@ -184,23 +167,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
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 {
|
||||
margin-left: 1.25rem;
|
||||
}
|
||||
@ -251,7 +217,6 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
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;
|
||||
@ -266,404 +231,22 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
|
||||
.c5 {
|
||||
line-height: 1.25;
|
||||
color: ;
|
||||
margin: 0 0 0.75rem 0;
|
||||
}
|
||||
|
||||
.c7 {
|
||||
color: ;
|
||||
margin: 0.75rem 0 1.875rem 0;
|
||||
}
|
||||
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c3 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<div
|
||||
className="c1"
|
||||
width={460}
|
||||
>
|
||||
.c2 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c2 c3 c4"
|
||||
onClick={[Function]}
|
||||
>
|
||||
<svg
|
||||
@ -683,484 +266,28 @@ exports[`renders <DeploymentGroupDelete /> without throwing 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</button>
|
||||
.c5 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<div>
|
||||
<h2
|
||||
className="c5 c6"
|
||||
>
|
||||
Deleting a deployment group:
|
||||
<br />
|
||||
|
||||
Wordpress Blog Example
|
||||
</h2>
|
||||
.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;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
color: ;
|
||||
margin: 0.75rem 0 1.875rem 0;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0 c1"
|
||||
<p
|
||||
className="c7 c8"
|
||||
>
|
||||
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>
|
||||
.c0 {
|
||||
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: ;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c9"
|
||||
onClick={[Function]}
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c4"
|
||||
onClick={[Function]}
|
||||
>
|
||||
Delete deployment group
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -36,17 +36,11 @@ exports[`renders <DeploymentGroupImport /> without throwing 1`] = `
|
||||
}
|
||||
|
||||
.c3 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
stroke: ;
|
||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
}
|
||||
|
||||
.c4 {
|
||||
-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;
|
||||
@ -54,9 +48,6 @@ exports[`renders <DeploymentGroupImport /> without throwing 1`] = `
|
||||
}
|
||||
|
||||
.c5 {
|
||||
-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;
|
||||
@ -142,199 +133,42 @@ exports[`renders <DeploymentGroupImport /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.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;
|
||||
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"
|
||||
<h2
|
||||
className="c1"
|
||||
>
|
||||
Importing deployment group
|
||||
</h2>
|
||||
.c1 {
|
||||
-webkit-fill: ;
|
||||
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"
|
||||
<div
|
||||
className="c2"
|
||||
>
|
||||
.c0 {
|
||||
-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
|
||||
<svg
|
||||
height="10"
|
||||
width="28"
|
||||
>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
stroke: ;
|
||||
-webkit-animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
animation: iCqDak 1.5s ease-out 0s infinite;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c3"
|
||||
height="6"
|
||||
width="6"
|
||||
x="2"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c4"
|
||||
height="6"
|
||||
width="6"
|
||||
x="11"
|
||||
y="2"
|
||||
/>
|
||||
.c0 {
|
||||
-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;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c5"
|
||||
height="6"
|
||||
width="6"
|
||||
x="20"
|
||||
y="2"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c6"
|
||||
>
|
||||
Loading...
|
||||
</p>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -12,7 +12,6 @@ exports[`renders <InstancesTooltip /> without throwing 1`] = `
|
||||
position: absolute;
|
||||
top: auto;
|
||||
left: auto;
|
||||
bottom: ;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
@ -27,7 +26,6 @@ exports[`renders <InstancesTooltip /> without throwing 1`] = `
|
||||
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;
|
||||
@ -46,20 +44,17 @@ exports[`renders <InstancesTooltip /> without throwing 1`] = `
|
||||
}
|
||||
|
||||
.c2:after {
|
||||
border-bottom-color: ;
|
||||
border-width: 0.1875rem;
|
||||
margin-left: -0.1875rem;
|
||||
}
|
||||
|
||||
.c2:before {
|
||||
border-bottom-color: ;
|
||||
border-width: 0.3125rem;
|
||||
margin-left: -0.3125rem;
|
||||
}
|
||||
|
||||
.c3 {
|
||||
margin: 0 1.125rem;
|
||||
color: ;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@ -72,139 +67,14 @@ exports[`renders <InstancesTooltip /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.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 {
|
||||
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"
|
||||
<div
|
||||
className="c1"
|
||||
>
|
||||
.c2 {
|
||||
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 {
|
||||
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"
|
||||
<div
|
||||
className="c2"
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
margin: 0 1.125rem;
|
||||
color: ;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0 c1"
|
||||
<p
|
||||
className="c3 c4"
|
||||
>
|
||||
Your instance is operating as expected
|
||||
</p>
|
||||
|
@ -39,7 +39,6 @@ exports[`renders <Breadcrumb /> without throwing 1`] = `
|
||||
font-weight: 500;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 400;
|
||||
color: ;
|
||||
margin: 1.25rem 0 1.125rem 0;
|
||||
display: inline-block;
|
||||
}
|
||||
@ -90,248 +89,25 @@ exports[`renders <Breadcrumb /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c0 {
|
||||
margin-right: auto;
|
||||
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"
|
||||
<div
|
||||
className="c1"
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<div
|
||||
className="c2"
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<div
|
||||
className="c3"
|
||||
name="breadcrum"
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<div>
|
||||
<h2
|
||||
className="c4"
|
||||
name="breadcrum-item"
|
||||
>
|
||||
Dashboard
|
||||
</h2>
|
||||
.c0 {
|
||||
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"
|
||||
<div
|
||||
className="c5"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -6,7 +6,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
font-weight: 500;
|
||||
font-size: 1.5rem;
|
||||
text-transform: uppercase;
|
||||
color: ;
|
||||
font-size: 1.8125rem;
|
||||
margin: 0;
|
||||
}
|
||||
@ -31,7 +30,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
font-size: 0.9375rem;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
color: ;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@ -61,9 +59,9 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
-webkit-flex-wrap: nowrap;
|
||||
-ms-flex-wrap: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
-webkit-box-pack: space-between;
|
||||
-webkit-box-pack: justify;
|
||||
-webkit-justify-content: space-between;
|
||||
-ms-flex-pack: space-between;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-webkit-align-content: stretch;
|
||||
-ms-flex-line-pack: stretch;
|
||||
@ -72,7 +70,6 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
-webkit-box-align: stretch;
|
||||
-ms-flex-align: stretch;
|
||||
align-items: stretch;
|
||||
background-color: ;
|
||||
max-height: 3.3125rem;
|
||||
min-height: 3.3125rem;
|
||||
padding: 0 1.125rem;
|
||||
@ -92,130 +89,28 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.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;
|
||||
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"
|
||||
<div
|
||||
className="c1"
|
||||
>
|
||||
.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;
|
||||
text-transform: uppercase;
|
||||
color: ;
|
||||
font-size: 1.8125rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
border-style: none;
|
||||
width: 5.4375rem;
|
||||
height: 1.5625rem;
|
||||
}
|
||||
|
||||
<h2
|
||||
className="c0"
|
||||
<h2
|
||||
className="c2"
|
||||
>
|
||||
.c0 {
|
||||
border-style: none;
|
||||
width: 5.4375rem;
|
||||
height: 1.5625rem;
|
||||
}
|
||||
|
||||
<a
|
||||
<a
|
||||
href="/"
|
||||
onClick={[Function]}
|
||||
>
|
||||
.c0 {
|
||||
border-style: none;
|
||||
width: 5.4375rem;
|
||||
height: 1.5625rem;
|
||||
}
|
||||
|
||||
<img
|
||||
className="c0"
|
||||
<img
|
||||
className="c3"
|
||||
src="test-file-mock"
|
||||
/>
|
||||
</a>
|
||||
</h2>
|
||||
</div>
|
||||
.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;
|
||||
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"
|
||||
<div
|
||||
className="c4"
|
||||
>
|
||||
.c0 {
|
||||
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;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
color: ;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c5"
|
||||
>
|
||||
<svg
|
||||
className=""
|
||||
@ -252,65 +147,16 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
transform="translate(-1174 -21)"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
<span
|
||||
className="c0"
|
||||
<span
|
||||
className="c6"
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
.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;
|
||||
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"
|
||||
<div
|
||||
className="c4"
|
||||
>
|
||||
.c0 {
|
||||
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;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
color: ;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0"
|
||||
<p
|
||||
className="c5"
|
||||
>
|
||||
<svg
|
||||
className=""
|
||||
@ -346,12 +192,8 @@ exports[`renders <Header /> without throwing 1`] = `
|
||||
fillRule="nonzero"
|
||||
/>
|
||||
</svg>
|
||||
.c0 {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
<span
|
||||
className="c0"
|
||||
<span
|
||||
className="c6"
|
||||
/>
|
||||
</p>
|
||||
</div>
|
||||
|
@ -41,9 +41,7 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
||||
vertical-align: middle;
|
||||
touch-action: manipulation;
|
||||
cursor: pointer;
|
||||
color: ;
|
||||
background-image: none;
|
||||
background-color: ;
|
||||
border-radius: 0.25rem;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
@ -66,12 +64,9 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
||||
.c4:focus {
|
||||
outline: 0;
|
||||
text-decoration: none;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c4:hover {
|
||||
background-color: ;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
|
||||
@ -80,8 +75,6 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
||||
.c4:active:focus {
|
||||
background-image: none;
|
||||
outline: 0;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c4[disabled] {
|
||||
@ -133,14 +126,9 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
||||
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: ;
|
||||
}
|
||||
|
||||
.c9::-moz-focus-inner,
|
||||
@ -161,12 +149,9 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
||||
.c9:focus {
|
||||
outline: 0;
|
||||
text-decoration: none;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c9:hover {
|
||||
background-color: ;
|
||||
border: solid 0.0625rem;
|
||||
}
|
||||
|
||||
@ -175,8 +160,6 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
||||
.c9:active:focus {
|
||||
background-image: none;
|
||||
outline: 0;
|
||||
background-color: ;
|
||||
border-color: ;
|
||||
}
|
||||
|
||||
.c9[disabled] {
|
||||
@ -184,23 +167,6 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
||||
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 {
|
||||
margin-left: 1.25rem;
|
||||
}
|
||||
@ -251,7 +217,6 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
||||
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;
|
||||
@ -266,404 +231,22 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
||||
|
||||
.c5 {
|
||||
line-height: 1.25;
|
||||
color: ;
|
||||
margin: 0 0 0.75rem 0;
|
||||
}
|
||||
|
||||
.c7 {
|
||||
color: ;
|
||||
margin: 0.75rem 0 1.875rem 0;
|
||||
}
|
||||
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.c3 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<div
|
||||
className="c1"
|
||||
width={460}
|
||||
>
|
||||
.c2 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c2 c3 c4"
|
||||
onClick={[Function]}
|
||||
>
|
||||
<svg
|
||||
@ -683,484 +266,28 @@ exports[`renders <ServiceDelete /> without throwing 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</button>
|
||||
.c5 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<div>
|
||||
<h2
|
||||
className="c5 c6"
|
||||
>
|
||||
Deleting a service:
|
||||
<br />
|
||||
|
||||
Nginx
|
||||
</h2>
|
||||
.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;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
color: ;
|
||||
margin: 0.75rem 0 1.875rem 0;
|
||||
}
|
||||
|
||||
<p
|
||||
className="c0 c1"
|
||||
<p
|
||||
className="c7 c8"
|
||||
>
|
||||
Deleting a service can lead to irreversible loss of data and failures in your application. Are you sure you want to continue?
|
||||
</p>
|
||||
.c0 {
|
||||
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: ;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c9"
|
||||
onClick={[Function]}
|
||||
>
|
||||
Cancel
|
||||
</button>
|
||||
.c0 {
|
||||
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;
|
||||
}
|
||||
|
||||
.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"
|
||||
<button
|
||||
className="c4"
|
||||
onClick={[Function]}
|
||||
>
|
||||
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`] = `
|
||||
.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-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;
|
||||
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>
|
||||
.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-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;
|
||||
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 {
|
||||
@ -229,200 +35,33 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.c5 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
.c7 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
.c8 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
.c2 {
|
||||
width: 100%;
|
||||
height: 1000px;
|
||||
}
|
||||
|
||||
.c1:not(:root) {
|
||||
.c2:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
.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;
|
||||
}
|
||||
|
||||
<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"
|
||||
<div
|
||||
className="c0"
|
||||
>
|
||||
<div
|
||||
className="c1"
|
||||
>
|
||||
<div>
|
||||
<svg
|
||||
className="c2"
|
||||
id="topology-svg"
|
||||
onMouseMove={[Function]}
|
||||
onMouseUp={[Function]}
|
||||
@ -430,194 +69,20 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
||||
onTouchEnd={[Function]}
|
||||
onTouchMove={[Function]}
|
||||
>
|
||||
.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>
|
||||
.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
|
||||
<g>
|
||||
<g
|
||||
transform="translate(0, 0)"
|
||||
>
|
||||
.c0 {
|
||||
stroke: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
stroke-width: 1.5;
|
||||
rx: 4;
|
||||
ry: 4;
|
||||
stroke: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c3"
|
||||
height={114}
|
||||
width={180}
|
||||
x={0}
|
||||
y={0}
|
||||
/>
|
||||
.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;
|
||||
}
|
||||
|
||||
<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"
|
||||
<g>
|
||||
<text
|
||||
className="c4"
|
||||
onClick={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
x={12}
|
||||
@ -626,94 +91,36 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
||||
Nginx
|
||||
</text>
|
||||
</g>
|
||||
.c0 {
|
||||
stroke: ;
|
||||
stroke-width: 1.5;
|
||||
stroke: ;
|
||||
}
|
||||
|
||||
.c2 {
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.c2:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<g
|
||||
<g
|
||||
transform="translate(140, 0)"
|
||||
>
|
||||
.c0 {
|
||||
stroke: ;
|
||||
stroke-width: 1.5;
|
||||
stroke: ;
|
||||
}
|
||||
|
||||
<line
|
||||
className="c0"
|
||||
<line
|
||||
className="c5"
|
||||
x1={0}
|
||||
x2={0}
|
||||
y1={0}
|
||||
y2={48}
|
||||
/>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<circle
|
||||
className="c0"
|
||||
<circle
|
||||
className=""
|
||||
cx={20}
|
||||
cy={18}
|
||||
r={2}
|
||||
/>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<circle
|
||||
className="c0"
|
||||
<circle
|
||||
className=""
|
||||
cx={20}
|
||||
cy={24}
|
||||
r={2}
|
||||
/>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<circle
|
||||
className="c0"
|
||||
<circle
|
||||
className=""
|
||||
cx={20}
|
||||
cy={30}
|
||||
r={2}
|
||||
/>
|
||||
.c0 {
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.c0:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
<rect
|
||||
className="c0"
|
||||
<rect
|
||||
className="c6"
|
||||
height={48}
|
||||
onClick={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
@ -722,92 +129,24 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
||||
width={40}
|
||||
/>
|
||||
</g>
|
||||
.c0 {
|
||||
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
|
||||
<g
|
||||
transform="translate(0, 48)"
|
||||
>
|
||||
.c0 {
|
||||
stroke: ;
|
||||
stroke-width: 1.5;
|
||||
stroke: ;
|
||||
}
|
||||
|
||||
<line
|
||||
className="c0"
|
||||
<line
|
||||
className="c5"
|
||||
x1={0}
|
||||
x2={180}
|
||||
y1={0}
|
||||
y2={0}
|
||||
/>
|
||||
.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: 12px;
|
||||
opacity: 0.8;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
.c1 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<g
|
||||
<g
|
||||
transform="translate(12, 11)"
|
||||
>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<g
|
||||
<g
|
||||
transform="translate(0, 0)"
|
||||
>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<svg
|
||||
className="c0"
|
||||
<svg
|
||||
className=""
|
||||
healthy="UNHEALTHY"
|
||||
height="18"
|
||||
viewBox="0 0 18 18"
|
||||
@ -832,26 +171,12 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
||||
</g>
|
||||
</svg>
|
||||
</g>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<g
|
||||
<g
|
||||
transform="translate(30, 4.5)"
|
||||
>
|
||||
.c0 {
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<svg
|
||||
<svg
|
||||
active={undefined}
|
||||
className="c0"
|
||||
className=""
|
||||
consul={undefined}
|
||||
height="9"
|
||||
viewBox="0 0 18 9"
|
||||
@ -867,51 +192,18 @@ exports[`renders <ServicesTopology /> without throwing 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</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: 12px;
|
||||
opacity: 0.8;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<text
|
||||
className="c0"
|
||||
<text
|
||||
className="c7"
|
||||
x={54}
|
||||
y={14}
|
||||
>
|
||||
1 inst.
|
||||
</text>
|
||||
.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: 12px;
|
||||
opacity: 0.8;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<g
|
||||
<g
|
||||
transform="translate(54, 36)"
|
||||
>
|
||||
.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: 12px;
|
||||
opacity: 0.8;
|
||||
-webkit-fill: ;
|
||||
fill: ;
|
||||
}
|
||||
|
||||
<text
|
||||
className="c0"
|
||||
<text
|
||||
className="c7"
|
||||
>
|
||||
1
|
||||
running
|
||||
|
Loading…
Reference in New Issue
Block a user