File tree Expand file tree Collapse file tree
test/test-cases/options-exportEmptyLocals-true Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ._input__layer1A {
2+ color : red;
3+ }
4+
5+ ._input__layer2A {
6+ }
7+
8+ ._input__layer1B {
9+ }
10+
11+ ._input__layer2B {
12+ background : blue;
13+ }
14+
15+ ._input__layer3 {
16+ }
17+
18+ : export {
19+ layer1A : _input__layer1A;
20+ layer2A : _input__layer2A _input__layer1A;
21+ layer1B : _input__layer1B;
22+ layer2B : _input__layer2B _input__layer1B;
23+ layer3 : _input__layer3 _input__layer2A _input__layer1A _input__layer2B _input__layer1B;
24+ }
Original file line number Diff line number Diff line change 1+ : local (.layer1A ) {
2+ color : red;
3+ }
4+
5+ : local (.layer2A ) {
6+ composes : layer1A;
7+ }
8+
9+ : local (.layer1B ) {
10+ }
11+
12+ : local (.layer2B ) {
13+ background : blue;
14+ composes : layer1B;
15+ }
16+
17+ : local (.layer3 ) {
18+ composes : layer2A;
19+ composes : layer2B;
20+ }
You can’t perform that action at this time.
0 commit comments