local changes from server
[redakcja.git] / apps / wiki / static--wiki--editor--node_modules--grunt-contrib-less--node_modules--less--test / less / sourcemaps / basic.less
1 @var: black;
2
3 .a() {
4   color: red;
5 }
6
7 .b {
8   color: green;
9   .a();
10   color: blue;
11   background: @var;
12 }
13
14 .a, .b {
15   background: green;
16   .c, .d {
17     background: gray;
18     & + & {
19       color: red;
20     }
21   }
22 }
23
24 .extend:extend(.a all) {
25   color: pink;
26 }
27 @import (inline) "imported.css";