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 Wiki shows the following example:
#defaults { @width: 960px; @color: black; } .article { color: #294366; } .comment { width: #defaults[@width]; color: .article['color']; }
BUT the following fails with 1.3:
@width: 10px; #ns { @paneW: @width; } // and using it .pane { width: #ns[@paneW]; }
The text was updated successfully, but these errors were encountered:
Actually, both the namespace accessors from the wiki example fail under less 1.3.0... :(
Sorry, something went wrong.
I didn't think of testing the examples :/
And yes, both fail; just tested on my code
This is a serious letdown for me. I was planning on sniffing element dimensions and using them to position other elements.
/MarS
On Tue, Apr 3, 2012 at 4:50 AM, Ionut Costica reply@reply.github.com wrote:
Actually, both the namespace accessors from the example fail under less 1.3.0... :( Reply to this email directly or view it on GitHub: #747 (comment)
Actually, both the namespace accessors from the example fail under less 1.3.0... :(
Reply to this email directly or view it on GitHub: #747 (comment)
duplicate of #76
No branches or pull requests
The Wiki shows the following example:
BUT the following fails with 1.3:
The text was updated successfully, but these errors were encountered: