prettier/tests/css_parens/__snapshots__/jsfmt.spec.js.snap

55 lines
1.6 KiB
Plaintext
Raw Normal View History

2017-05-29 22:41:04 +03:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
2018-01-23 18:34:36 +03:00
exports[`parens.css 1`] = `
2017-05-29 22:41:04 +03:00
a {
box-shadow: inset 0 $size $size (-$size) black;
width: calc(100% - (#{var(--g-spacing)} - #{$iframe-x-padding}) * 2);
padding-right: (100% * $info-width / (1 - $image-width));
padding-bottom:
(
100% *
$image-height / ($image-width-responsive + $image-margin-responsive * 2)
);
}
2018-01-23 18:34:36 +03:00
.foo {
--paddingC: calc( var( --widthB ) / 2 );
content: attr( data-title );
color: var( --main-bg-color );
background-color: rgb( 255, 0, 0 );
background: element( #css-source );
width: calc( 100% - ( #{var(--g-spacing)} - #{$iframe-x-padding} ) * 2 );
padding-bottom:
(
100% *
$image-height / ( $image-width-responsive + $image-margin-responsive * 2 )
);
padding-top: var( --paddingC );
}
2017-05-29 22:41:04 +03:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
a {
box-shadow: inset 0 $size $size (-$size) black;
width: calc(100% - (#{var(--g-spacing)} - #{$iframe-x-padding}) * 2);
padding-right: (100% * $info-width / (1 - $image-width));
padding-bottom: (
100% * $image-height / ($image-width-responsive + $image-margin-responsive *
2)
2017-05-29 22:41:04 +03:00
);
}
2018-01-23 18:34:36 +03:00
.foo {
--paddingC: calc(var(--widthB) / 2);
content: attr(data-title);
color: var(--main-bg-color);
background-color: rgb(255, 0, 0);
background: element(#css-source);
width: calc(100% - (#{var(--g-spacing)} - #{$iframe-x-padding}) * 2);
padding-bottom: (
100% * $image-height / ($image-width-responsive + $image-margin-responsive *
2)
);
padding-top: var(--paddingC);
}
2017-05-29 22:41:04 +03:00
`;