Stylus的功能是否与Less @import(参考)功能类似?

时间:2016-02-11 14:03:07

标签: stylus

在Less中,可以只导入被引用的样式表的那些部分 - 如下所述:http://lesscss.org/features/#import-options-reference

Stylus中是否有类似的功能?如果是这样,怎么办呢?

2 个答案:

答案 0 :(得分:0)

对于手写笔来说,如果你想要导入这样的块,你应该将该块移动到它自己的文件,然后导入这两个文件。您还可以使用导入的“索引样式”。

总的来说,它看起来并不具备特定的功能。

答案 1 :(得分:0)

Stylus通过mixinsplaceholder selectors实现此目的。占位符选择器可能更接近您的预期。

例如,如果您的参考文件有.clickable-button选择器,则必须将其重写为占位符:$clickable-button

// shared.styl
$clickable-button
    cursor: pointer
    &:hover
      color: light-blue

// main.styl
@require './shared'
.go-button
  @extend $clickable-button