minor fixes
[redakcja.git] / apps / wiki / static--wiki--editor--node_modules--grunt-contrib-less--node_modules--less--test / less / extend-clearfix.less
1 .clearfix {
2   *zoom: 1;
3   &:after {
4     content: '';
5     display: block;
6     clear: both;
7     height: 0;
8   }
9 }
10
11 .foo {
12   &:extend(.clearfix all);
13   color: red;
14 }
15
16 .bar {
17   &:extend(.clearfix all);
18   color: blue;
19 }