joyent-portal/packages/my-joyent/src/components/diskTypeForm/__tests__/__snapshots__/index.spec.js.snap

265 lines
5.0 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`renders <DiskTypeForm /> without throwing 1`] = `
.c7 {
font-family: sans-serif;
font-size: 100%;
line-height: 1.15;
margin: 0;
overflow: visible;
display: none;
}
.c7[type='checkbox'],
.c7[type='radio'] {
box-sizing: border-box;
padding: 0;
}
.c7[type='number']::-webkit-inner-spin-button,
.c7[type='number']::-webkit-outer-spin-button {
height: auto;
}
.c7[type='search'] {
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
outline-offset: -0.125rem;
}
.c7[type='search']::-webkit-search-cancel-button,
.c7[type='search']::-webkit-search-decoration {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.c7::-webkit-file-upload-button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
font: inherit;
}
.c7:checked + label::after {
opacity: 1;
}
.c7:selected + label::after {
opacity: 1;
}
.c7:disabled + label {
background-color: rgb(249,249,249);
}
.c7:disabled + label::after {
opacity: 0.3;
}
.c8 {
color: rgb(100,100,100);
position: absolute;
width: 1.125rem;
height: 1.125rem;
top: 0;
box-sizing: border-box;
cursor: pointer;
background-color: rgb(255,255,255);
box-shadow: none;
border: 1px solid;
cursor: pointer;
border-radius: 4px;
width: 1.125rem;
height: 1.125rem;
}
.c8::after {
opacity: 0;
content: '';
position: absolute;
width: 0.375rem;
height: 0.125rem;
background: transparent;
top: 0.3125rem;
left: 0.25rem;
border: 0.125rem solid;
border-top: none;
border-right: none;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.c6 {
display: inline-block;
vertical-align: text-bottom;
margin-right: 0.5rem;
width: 1.125rem;
height: 1.125rem;
position: relative;
cursor: pointer;
}
.c5 {
list-style-type: none;
font-weight: 400;
}
.c3 {
margin: 0;
padding: 0;
}
.c4 {
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;
}
.c1 {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal;
font-weight: 600;
}
.c0 {
margin-top: 0.75rem;
min-width: 12.5rem;
}
.c0 label {
font-size: 0.8125rem;
}
.c2 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 0.375rem;
}
<form
onChange={[Function]}
>
<section
className="c0"
>
<legend
className="c1"
>
Disk
</legend>
<ul
className="c2 c3"
>
<fieldset
className="c4"
style={undefined}
>
<div>
<li
checked={false}
className="c5"
name="magnetic"
onBlur={[Function]}
onChange={[Function]}
onDragStart={[Function]}
onDrop={[Function]}
onFocus={[Function]}
value=""
>
<div
className="c6"
type="checkbox"
>
<input
checked={false}
className="c7"
id="cjYpBB"
name="magnetic"
onBlur={[Function]}
onChange={[Function]}
onDragStart={[Function]}
onDrop={[Function]}
onFocus={[Function]}
type="checkbox"
value=""
/>
<label
className="c8"
htmlFor="cjYpBB"
/>
</div>
Magnetic
</li>
</div>
</fieldset>
<fieldset
className="c4"
style={undefined}
>
<div>
<li
checked={false}
className="c5"
name="ssd"
onBlur={[Function]}
onChange={[Function]}
onDragStart={[Function]}
onDrop={[Function]}
onFocus={[Function]}
value=""
>
<div
className="c6"
type="checkbox"
>
<input
checked={false}
className="c7"
id="cBnwtF"
name="ssd"
onBlur={[Function]}
onChange={[Function]}
onDragStart={[Function]}
onDrop={[Function]}
onFocus={[Function]}
type="checkbox"
value=""
/>
<label
className="c8"
htmlFor="cBnwtF"
/>
</div>
SSD
</li>
</div>
</fieldset>
</ul>
</section>
</form>
`;