-
Notifications
You must be signed in to change notification settings - Fork 213
Closed
Description
Hello,
the transparentize function does not work properly and renders invalid CSS like rgba(255, 255, 255, 0,5).
$scss = new Compiler();
echo $scss->compile('a { color:transparentize(rgba(255,255,255,1), 40%); }');
echo $scss->compile('a { color:transparentize(#fff, 40%); }');
echo $scss->compile('$white: #fff; a { color:transparentize($white, 40%); }');All three lines will result in:
a{color:rgba(255, 255, 255, 0,6)}
Instead of:
a{color:rgba(255, 255, 255, 0.6)}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels