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
I tried some test.
requirements (git submodule) for external scss framework
git submodule add --name bootstrap-sass git@github.com:twbs/bootstrap-sass.git
test.scss
@import "bootstrap-sass/assets/stylesheets/bootstrap"; .test { @extend .table; }
libsass-python
sassc
Output (I added some new line to pretty view)
.table > thead > tr > th, .table > thead > tr > .test, .table > thead > tr > td, .table > thead > tr > .test, .table > tbody > tr > th, .table > tbody > tr > .test, .table > tbody > tr > td, .table > tbody > tr > .test, .table > tfoot > tr > th, .table > tfoot > tr > .test, .table > tfoot > tr > td, .table > tfoot > tr > .test { padding: 8px; line-height: 1.42857; vertical-align: top; border-top: 1px solid #ddd; }
Result: wrong
sass
Output
.table > thead > tr > th, .test > thead > tr > th, .table > thead > tr > td, .test > thead > tr > td, .table > tbody > tr > th, .test > tbody > tr > th, .table > tbody > tr > td, .test > tbody > tr > td, .table > tfoot > tr > th, .test > tfoot > tr > th, .table > tfoot > tr > td, .test > tfoot > tr > td { padding: 8px; line-height: 1.42857; vertical-align: top; border-top: 1px solid #ddd; }
Result: correct
I (also) think it is libsass 2.0's problem. if someone faced problems like this, he must wait for supporting next libsass version.
The text was updated successfully, but these errors were encountered:
I tested in new version and checked it fixed.
Sorry, something went wrong.
Fixed by 8faeafd.
No branches or pull requests
I tried some test.
Conditions
requirements (git submodule) for external scss framework
git submodule add --name bootstrap-sass git@github.com:twbs/bootstrap-sass.git
test.scss
Tests
libsass-python
'ssassc
commandOutput (I added some new line to pretty view)
Result: wrong
ruby
sass
commandOutput
Result: correct
sassc (libsass CLI implementation)
Output
Result: correct
sassc v1.0.1 with libsass v2.0.0
Output
Result: wrong
I (also) think it is libsass 2.0's problem. if someone faced problems like this, he must wait for supporting next libsass version.
The text was updated successfully, but these errors were encountered: