-
Notifications
You must be signed in to change notification settings - Fork 3.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
Lazy variables of css custom properties with less functions (even if it's overwritten) will break building #3563
Comments
Same issue in my project. IMO the |
+1 |
+1 |
Same issue, any news ? I also posted a question on stack overflow but no solution nor workaround yet. |
same issue |
Sorry for slow response, I will investgate this issue. 🕵️ |
same issue |
same issue |
I'm having a similar issue: #3611 (comment) |
Looks like #3721 |
Looks like #4275. Do we have any update this? It really blocks much of our work.. |
Hitting the same issue when trying to use css variables in a UIkit theme. |
To simplify the issue, let's assume a third-party-library which contains:
And my app would like to override the colors to css custom properties:
In which I want to override both the
@base-color
and@dark-color
less variables. However, the less will fail withLessError: error evaluating function `darken`: Argument cannot be evaluated to a color
, even if the@dark-color
in library is actually overridden in my app, and nodarken()
function should be called.The text was updated successfully, but these errors were encountered: