使用指南针编译一些 SCSS 文件时遇到问题。基本上tint
andshade
函数被忽略了。所以这:
border:solid 1px tint( $custom-ui-base-color, 5% );
background-color:shade( $custom-ui-base-color, 15% );
变成这样:
border: solid 1px tint(#096fcb, 5%);
background-color: shade(#096fcb, 15%);
这显然不是有效的 CSS。Compass 已替换变量但未计算函数,是否有任何原因可能会出现这种情况?指南针中的设置或命令行参数可能吗?