-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
In my project I am getting a lot of mismatched opacity levels. I inspected the generated CSS and found that "filter:alpha(opacity=x); != opacity:x;" for my calls to the ".opacity" mixin.
According to this Less Issue, the @op variable is getting cached, and I've applied the below fix to my project and it works.
.opacity(@op:100)
{
filter: alpha(opacity=@op);
needs to be changed to:
.opacity(@op:100)
{
filter: ~"alpha(opacity=@{op})";
Metadata
Metadata
Assignees
Labels
No labels