在Less中,可以只导入被引用的样式表的那些部分 - 如下所述:http://lesscss.org/features/#import-options-reference
Stylus中是否有类似的功能?如果是这样,怎么办呢?
答案 0 :(得分:0)
对于手写笔来说,如果你想要导入这样的块,你应该将该块移动到它自己的文件,然后导入这两个文件。您还可以使用导入的“索引样式”。
总的来说,它看起来并不具备特定的功能。
答案 1 :(得分:0)
Stylus通过mixins或placeholder selectors实现此目的。占位符选择器可能更接近您的预期。
例如,如果您的参考文件有.clickable-button
选择器,则必须将其重写为占位符:$clickable-button
。
// shared.styl
$clickable-button
cursor: pointer
&:hover
color: light-blue
// main.styl
@require './shared'
.go-button
@extend $clickable-button