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
When LESS version of Twitter Bootstrap is wrapped with a class:
.Bootstrap { @import "bower_components/bootstrap/less/bootstrap"; }
It produces:
.Bootstrap .Bootstrap .nav:before, .Bootstrap .Bootstrap .nav:after { content: " "; display: table; }
All other definitions are correctly wrapped with only one .Bootstrap class.
.Bootstrap
Definition of .nav:
.nav { &:extend(.clearfix all); ... .clearfix() { &:before, &:after { content: " "; // 1 display: table; // 2 } &:after { clear: both; } }
The text was updated successfully, but these errors were encountered:
See #2052 (and #1850 for more details).
Sorry, something went wrong.
Closing as duplicate of #2052.
No branches or pull requests
When LESS version of Twitter Bootstrap is wrapped with a class:
It produces:
All other definitions are correctly wrapped with only one
.Bootstrap
class.Definition of .nav:
The text was updated successfully, but these errors were encountered: