我最近使用 SASS 创建了一个 WordPress 主题。我使用了这样的技术(http://css-tricks.com/compass-compiling-and-wordpress-themes/)让 SASS 编译所需的 CSS doc 块没有问题。
现在我正在尝试使用 SASS 为子主题制作样式表 - 这需要父主题 style.css 的 CSS @import。这工作正常,但它在 CSS doc 块之前编译 @import !任何想法如何按预期顺序呈现它们?我试图将 CSS @import 放在部分的 SASS @import 中,但它仍然会发生!
例如,如果这是我的 SASS:
/*!
Theme Name: Themey Name
Description: Theme Description
Version: 1.0
Template: parent-theme
*/
@import url(../parent-theme/style.css);
它呈现如下:
@import url(../parent-theme/style.css);
/*
Theme Name: Themey Name
Description: Theme Description.
Version: 1.0
Template: parent-theme
*/
我真的很想要那个文档块!