-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
Bug in Less mixins #844
Comments
Cool thanks. |
+1 Before: .loop_section_top_ul_li(@i) when (@i>0) {
section.top ul li.l@{i} a{
background-position: ((@i)-1)*-100px -20px;
&.now{
background-position: ((@i)-1)*-100px 0;
}
}
.loop_section_top_ul_li((@i)-1);
} After: .loop_section_top_ul_li(@i) when (@i>0) {
section.top ul li.l@ {
i
}
a {
background-position: ((@i)-1)*-100px -20px;
&.now {
background-position: ((@i)-1)*-100px 0;
}
}
.loop_section_top_ul_li((@i)-1);
} |
3ks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using package HTML-CSS-JS Prettify in Sublime Text 3.
Before:
After:
The text was updated successfully, but these errors were encountered: