frappe_docker/frappe-bench/node_modules/less/test/less-bom/extend-clearfix.less
2017-07-31 15:51:51 +05:30

19 lines
217 B
Text

.clearfix {
*zoom: 1;
&:after {
content: '';
display: block;
clear: both;
height: 0;
}
}
.foo {
&:extend(.clearfix all);
color: red;
}
.bar {
&:extend(.clearfix all);
color: blue;
}