rename is-* functions to is*

This commit is contained in:
Alexis Sellier
2012-01-07 01:33:54 +01:00
parent 66833352fd
commit e69433b8d1
2 changed files with 17 additions and 17 deletions

View File

@@ -32,15 +32,15 @@
color: color("#ff0011");
.is-a {
color: is-color(#ddd);
color: is-color(red);
color: is-color(rgb(0, 0, 0));
keyword: is-keyword(hello);
number: is-number(32);
string: is-string("hello");
pixel: is-pixel(32px);
percent: is-percentage(32%);
em: is-em(32em);
color: iscolor(#ddd);
color: iscolor(red);
color: iscolor(rgb(0, 0, 0));
keyword: iskeyword(hello);
number: isnumber(32);
string: isstring("hello");
pixel: ispixel(32px);
percent: ispercentage(32%);
em: isem(32em);
}
}