Merge branch 'less.js/1.5.0-wip'

Conflicts:
	.jshintrc
	Makefile
	package.json
This commit is contained in:
Jon Schlinkert
2013-08-01 06:51:59 -04:00
parent aa7e3cc015
commit 38a8664013
68 changed files with 1285 additions and 679 deletions

View File

@@ -0,0 +1,26 @@
@var: black;
.a() {
color: red;
}
.b {
color: green;
.a();
color: blue;
background: @var;
}
.a, .b {
background: green;
.c, .d {
background: gray;
& + & {
color: red;
}
}
}
.extend:extend(.a all) {
color: pink;
}