joyent-portal/packages/ui-toolkit/src/anchor/__tests___/__snapshots__/anchor.spec.js.snap

90 lines
1.8 KiB
Plaintext
Raw Normal View History

2017-12-22 03:08:27 +02:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Anchor Default Anchor 1`] = `
.c2 {
2017-12-22 03:08:27 +02:00
background-color: transparent;
-webkit-text-decoration-skip: objects;
2017-12-22 03:08:27 +02:00
text-decoration-skip: objects;
}
.c1 {
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
2017-12-22 03:08:27 +02:00
}
.c0 {
color: rgb(59,70,204);
-webkit-text-fill-color: currentcolor;
2018-05-25 18:27:05 +03:00
cursor: pointer;
-webkit-text-decoration: underline;
text-decoration: underline;
2017-12-22 03:08:27 +02:00
}
<a
className="c0 c1 c2"
2017-12-22 03:08:27 +02:00
href="https://joyent.com"
>
Inspire the lazy
</a>
`;
exports[`Anchor Disabled Anchor 1`] = `
.c2 {
2017-12-22 03:08:27 +02:00
background-color: transparent;
-webkit-text-decoration-skip: objects;
2017-12-22 03:08:27 +02:00
text-decoration-skip: objects;
}
.c1 {
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
2017-12-22 03:08:27 +02:00
}
.c0 {
color: rgb(59,70,204);
-webkit-text-fill-color: currentcolor;
2018-05-25 18:27:05 +03:00
cursor: pointer;
-webkit-text-decoration: underline;
text-decoration: underline;
2017-12-22 03:08:27 +02:00
color: rgb(216,216,216);
-webkit-text-fill-color: currentcolor;
pointer-events: none;
}
<a
className="c0 c1 c2"
2017-12-22 03:08:27 +02:00
disabled={true}
href="https://joyent.com"
>
Inspire the lazy
</a>
`;
exports[`Anchor Reversed Anchor 1`] = `
.c2 {
2017-12-22 03:08:27 +02:00
background-color: transparent;
-webkit-text-decoration-skip: objects;
2017-12-22 03:08:27 +02:00
text-decoration-skip: objects;
}
.c1 {
font-family: "Libre Franklin",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica,sans-serif;
2017-12-22 03:08:27 +02:00
}
.c0 {
color: rgb(59,70,204);
-webkit-text-fill-color: currentcolor;
2018-05-25 18:27:05 +03:00
cursor: pointer;
-webkit-text-decoration: underline;
text-decoration: underline;
2017-12-22 03:08:27 +02:00
color: rgb(255,255,255);
-webkit-text-fill-color: currentcolor;
}
<a
className="c0 c1 c2"
2017-12-22 03:08:27 +02:00
href="https://joyent.com"
reversed={true}
>
Inspire the lazy
</a>
`;