尝试使用mixin'user-select'时出现以下错误。我正在使用版本0.12.2,我很确定支持罗盘的user-select。那么为什么我不能使用这个mixin?
错误
Syntax error: Undefined mixin \'user-select\'
含
// css3
@import "compass/css3";
@import "partials/deposit";
拨打
//File: partials/_deposit.scss
@include user-select(none);
那为什么我不能使用这个mixin?
答案 0 :(得分:21)
从@import "compass/css3/"
开始,这是导入内容的列表:
据此,我们可以说指南针用户界面(css3/user-interface
)未与compass/css3
捆绑在一起,因此您需要在css3调用之后调用它:
@import "compass/css3"
@import "compass/css3/user-interface"
//other imports
自imports user-interface as well更新以来,看起来像0.13.alpha.10指南针documentation page:
还添加了动画:
因此,现在只需@import "compass/css3"
即可。