I'm attempting to multiply opacity values. I have experimented with the following: calc(@opacity * 100)
@opacity-ruleset {
filter:alpha(opacity= (@opacity * 100));
-moz-opacity:@opacity;
opacity: @opacity;
-webkit-opacity: @opacity;
}
Is there a way to properly execute this calculation?