Blame view

node_modules/less/test/less-bom/import-reference-issues/mixin-1968.less 171 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
  .mixin-no-parent-selector() {
    background-color: red;
  }
  .mixin-with-parent-selector() {
    &:first-child{ //  USING AN & SELECTOR HERE
      background-color: blue;
   }
  }