Add css3 appearance mixin
This commit is contained in:
parent
65cf2f9812
commit
d9fdb0d0c7
@ -14,3 +14,4 @@
|
||||
@import "css3/font-face";
|
||||
@import "css3/transform";
|
||||
@import "css3/transition";
|
||||
@import "css3/appearance";
|
13
frameworks/compass/stylesheets/compass/css3/_appearance.scss
Normal file
13
frameworks/compass/stylesheets/compass/css3/_appearance.scss
Normal 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
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue
Block a user