Blame view

node_modules/less/test/less-bom/import-reference-issues/global-scope-import.less 232 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
  .theOnlySelector {
    avoid: warning;
  }
  .unusedAndReference:extend(.theOnlySelector) {
      unused-and: reference;
  }
  
  @import (reference) "global-scope-nested.less";
  
  .test-b {
    background-color: green;
    &:extend(.test-a all);
  }