removed test files

This commit is contained in:
Federico Zivolo 2014-09-19 09:06:43 +02:00
parent 7c582dd03f
commit 3ad877b128
2 changed files with 0 additions and 49 deletions

View File

@ -1,10 +0,0 @@
/* Generated by less 1.7.5 */
.btn-default {
color: #000000;
}
.btn-primary {
color: #4285f4;
}
.btn-success {
color: #0f9d58;
}

View File

@ -1,39 +0,0 @@
@import "variables.less";
.color(@default) {
&-default {
color: @default;
}
&-primary {
color: @primary;
}
&-success {
color: @success;
}
// etc
}
.btn {
.color(black);
}
.background(@default) {
&-default {
color: @default;
}
&-primary {
color: @primary;
}
&-success {
color: @success;
}
}
.variations(@extra, @property) {
&-default@{extra} { &:extend(.@{property}-default); }
&-primary@{extra} { &:extend(.@{property}-primary); }
// etc
}
.label {
.variations(~"", btn);
}