我的所有 sass 文件都在 main.css 中,由 grunt 编译。
结构如下:
主文件
/* Extended CSS */
@import '_extend.scss';
/* Generic CSS */
@import 'general.scss';
/* View based CSS */
@import 'create-obj.scss';
@import 'css2.scss';
/* Module based CSS **/
@import 'css3.scss';
_extend.scss
%width-100 {
width: 100%;
}
创建-obj.scss
ul.form-fields {
> li {
@extend %width-100;
@extend %float-l;
position: relative;
input {
padding-right: 160px;
}
}
}
当它由 grunt 编译时,我收到以下错误:
Running "compass:server" (compass) task
error src/main/webapp/assets/scss/create-obj.scss (Line 14: "ul.form-fields > li" failed to @extend "%width-100".
The selector "%width-100" was not found.
Use "@extend %width-100 !optional" if the extend should be able to fail.
)
write src/main/webapp/assets/css/main.css (0.049s)
Compilation failed in 1 files.
Warning: ↑ Use --force to continue.
由于警告而中止。
当我重新保存_extend.scss 时,它就会成功。
简而言之,每次我在 css1.scss 中添加一些 css 并保存它。Grunt 给了我编译错误,然后我需要保存 _extend.scss 以完成编译。
任何反馈表示赞赏。