Skip to content

Commit

Permalink
Added css3 appearance mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil LaPier committed Nov 18, 2011
1 parent 4588c5c commit e888e0a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/assets/stylesheets/_bourbon.scss
Expand Up @@ -6,6 +6,7 @@

// CSS3 Mixins
@import "css3/animation";
@import "css3/appearance";
@import "css3/background-image";
@import "css3/background-size";
@import "css3/border-image";
Expand Down
7 changes: 7 additions & 0 deletions app/assets/stylesheets/css3/_appearance.scss
@@ -0,0 +1,7 @@
@mixin appearance ($value) {
-webkit-appearance: $value;
-moz-appearance: $value;
-ms-appearance: $value;
-o-appearance: $value;
appearance: $value;
}

0 comments on commit e888e0a

Please sign in to comment.