Add css3 appearance mixin

This commit is contained in:
Zee Agency 2011-02-14 14:37:22 +01:00 committed by Chris Eppstein
parent 65cf2f9812
commit d9fdb0d0c7
2 changed files with 14 additions and 0 deletions

View File

@ -14,3 +14,4 @@
@import "css3/font-face";
@import "css3/transform";
@import "css3/transition";
@import "css3/appearance";

View File

@ -0,0 +1,13 @@
@import "shared";
// Change the appearance for Mozilla, Webkit and the future
//
// @param $ap
// [ none | normal | icon | window | button | menu | field ]
@mixin appearance($ap) {
$ap: unquote($ap);
@include experimental(appearance, $ap,
-moz, -webkit, not -o, not -ms, not -khtml, official
);
}