如何为Mixin类添加更少的元信息? (phpStorm)

时间:2016-01-07 13:58:55

标签: less phpstorm mixins less-mixins

是否可以在Less中设置可以读取phpStorm的mixin信息?

我写了这样的Mixin:

.action-btn(@size: 32px, @color: #fff, @bgColor: @overlayStyleBlack, @bgColorHover: @red) {
  a {
    width: @size;
    display: block;
    color: @color;
    text-align: center;
    line-height: @size;
    background-color: @bgColor;
    &:hover {
      cursor: pointer;
      background-color: @bgColorHover;
    }
  }
}

我现在想要的是,当我在另一个较少的文件中使用这个mixin时:" .action-btn();"然后我想看到我在这个Mixin 4设置,我可以安装。在php Classes中,我可以使用:

/**
 * @param string $xxx
 * function to check and change user is_online flag in sphinx and in mysql
 */

但是这不适用于Less Mixin文件。

我怎么能跳过一些设置?这里有一个例子来解释我的意思。 (这个没用了)

.action-btn(64px, , , #fff);

0 个答案:

没有答案