We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code breaks in LibSass 3.2.5 with error parsing interpolated value on line 5 at column 32:
error parsing interpolated value on line 5 at column 32
$ease-in-cubic: cubic-bezier(0.550, 0.055, 0.675, 0.190); $transition: 0.2s #{$ease-in-cubic}; .foo { transition: background-color #{$transition}, box-shadow #{$transition}; }
It used to work in 3.2.2 and works in Ruby Sass 3.4.14.
If you wrap the first #{$transition} in an (), then it works:
#{$transition}
()
$ease-in-cubic: cubic-bezier(0.550, 0.055, 0.675, 0.190); $transition: 0.2s #{$ease-in-cubic}; .foo { transition: background-color (#{$transition}), box-shadow #{$transition}; }
The text was updated successfully, but these errors were encountered:
This will be fixed once the parser refactoring is merged!
Sorry, something went wrong.
Add specs for issue 1277
3689b83
This PR add specs for sass/libsass#1277
Specs added sass/sass-spec#416
We now have a passing spec test since #1249 was merged 🎈
workarround for libsass/issues/1277
00ca082
check: sass/libsass#1277
mgreter
No branches or pull requests
The following code breaks in LibSass 3.2.5 with
error parsing interpolated value on line 5 at column 32
:It used to work in 3.2.2 and works in Ruby Sass 3.4.14.
If you wrap the first
#{$transition}
in an()
, then it works:The text was updated successfully, but these errors were encountered: