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
Related: #733
Input:
$important: ' !important'; @function getColor() { @return black; } @mixin black() { color: getColor()#{$important}; color: getColor() #{$important}; } .black-color { @include black(); }
Expected output:
.black-color { color: black !important; color: black !important; }
Actual output:
.black-color { color: getColor !important; color: black !important; }
The text was updated successfully, but these errors were encountered:
Thanks @Frexus I can confirm this is still an issue.
Sorry, something went wrong.
Add specs for issue 1333
f9e8035
This PR add specs for sass/libsass#1333
Spec added sass/sass-spec#444
Blocked #1249.
This is partially fixed by #1330 ... but quoted strings get inserted unquoted.
Fix special eval case for String_Schema
String_Schema
473075a
Fixes sass#1333
5b0bedd
mgreter
No branches or pull requests
Related: #733
Input:
Expected output:
Actual output:
The text was updated successfully, but these errors were encountered: