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
.theme-chooser(@c0, @c1, @c3) { span.theme-chooser-@{c3} { background-color: @c1; color: @c0; height: 10px; width: 20px; cursor: pointer; border: 2px solid #c4c4c4; display: inline-block; } span.active.theme-chooser-@{c3} { background-color: @c0; color: @c1; border: 2px solid #F4BD13; } } .theme-chooser(#a9a9a9, #d8d8d8, gray);
will result in:
span.theme-chooser-#808080 { background-color: #d8d8d8; color: #a9a9a9; height: 10px; width: 20px; cursor: pointer; border: 2px solid #c4c4c4; display: inline-block; } span.active.theme-chooser-#808080 { background-color: #a9a9a9; color: #d8d8d8; border: 2px solid #F4BD13; }
but i want
span.theme-chooser-gray { background-color: #d8d8d8; color: #a9a9a9; height: 10px; width: 20px; cursor: pointer; border: 2px solid #c4c4c4; display: inline-block; } span.active.theme-chooser-gray { background-color: #a9a9a9; color: #d8d8d8; border: 2px solid #F4BD13; }
The text was updated successfully, but these errors were encountered:
This is fixed in the 2.0 branch. And for earlier versions you can use escaped values, e.g.:
.theme-chooser(#a9a9a9, #d8d8d8, ~'gray');
Sorry, something went wrong.
Closing as duplicate of #1595.
No branches or pull requests
will result in:
but i want
The text was updated successfully, but these errors were encountered: