The original fadein(rgba(0,0,0,.1), 15%) cannot be compiled under SCSS/SASS. It will result in the same fadein(rgba(0,0,0,.1), 15%) in compiled CSS stylesheets.
SCSS/SASS, however, provide a similar function opacify (or aliased as fade-in), which take the amount parameter from 0 to 1. This fix should make the compiled results correct again.
The original
fadein(rgba(0,0,0,.1), 15%)
cannot be compiled under SCSS/SASS. It will result in the samefadein(rgba(0,0,0,.1), 15%)
in compiled CSS stylesheets.SCSS/SASS, however, provide a similar function
opacify
(or aliased asfade-in
), which take the amount parameter from 0 to 1. This fix should make the compiled results correct again.Ref: http://sass-lang.com/docs/yardoc/Sass/Script/Functions.html#fade_in-instance_method