嵌套扩展类(.button {&_red {}})时,为什么更少的`extend`不起作用?

时间:2019-02-18 13:16:18

标签: less

为什么extend在这种情况下不起作用?

.button {
  &_red {
    background-color: red;
  }
}

.panel {
  .button:extend(.button_red) {}
}

实际输出:

.button_red {
  background-color: red;
}

预期输出:

.button_red {
  background-color: red;
}
.panel .button {
  background-color: red;
}

OR

.button_red,
.panel .button {
  background-color: red;
}

1 个答案:

答案 0 :(得分:0)

我发现了有关此错误的问题:https://github.com/less/less.js/issues/1597